/*
	Theme Name: Hello Elementor
	Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
	Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
	Author: Elementor Team
	Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
	Version: 3.4.9
	Stable tag: 3.4.9
	Requires at least: 6.0
	Tested up to: 6.8
	Requires PHP: 7.4
	License: GNU General Public License v3 or later.
	License URI: https://www.gnu.org/licenses/gpl-3.0.html
	Text Domain: hello-elementor
	Tags: accessibility-ready, flexible-header, custom-colors, custom-menu, custom-logo, featured-images, rtl-language-support, threaded-comments, translation-ready,
*/
/* ============================================================
   WebTrue.in — Complete Production Stylesheet
   Agency: WebTrue, Baraut, UP, India
   Version: 1.0.0
   ============================================================ */

/* ----------------------------------------------------------
   1. CSS CUSTOM PROPERTIES (Design Tokens)
   ---------------------------------------------------------- */
:root {
  /* Colors */
 --primary: #84D233;
  --primary-glow: rgba(132, 210, 51, 0.4);
  --primary-dark: #6ab029;
  --primary-10: rgba(132, 210, 51, 0.1);
  --primary-15: rgba(132, 210, 51, 0.15);
  --primary-20: rgba(132, 210, 51, 0.2);
  --primary-03: rgba(132, 210, 51, 0.03);
  --primary-05: rgba(132, 210, 51, 0.05);
  --primary-08: rgba(132, 210, 51, 0.08);
  --charcoal: #333333;
  --charcoal-deep: #1a1a2e;
  --bg-dark: #0a0a0f;
  --bg-card: #0d0d14;
  --white: #FFFFFF;
  --grey-100: #f5f5f5;
  --grey-200: #e0e0e0;
  --grey-800: #424242;
  --text-muted: rgba(255, 255, 255, 0.7);
  --text-dim: rgba(255, 255, 255, 0.6);
  --text-faint: rgba(255, 255, 255, 0.5);
  --text-ghost: rgba(255, 255, 255, 0.4);
  --text-whisper: rgba(255, 255, 255, 0.3);
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-light: rgba(255, 255, 255, 0.08);
  --border-medium: rgba(255, 255, 255, 0.1);
  --border-white-30: rgba(255, 255, 255, 0.3);
  --card-bg: rgba(255, 255, 255, 0.02);
  --card-bg-03: rgba(255, 255, 255, 0.03);
  --card-bg-08: rgba(255, 255, 255, 0.08);
  --whatsapp: #25D366;

  /* Typography */
  --font-family: 'Space Grotesk', sans-serif;
  --fs-hero: clamp(2.5rem, 6vw, 5rem);
  --fs-h2: clamp(1.8rem, 4vw, 3rem);
  --fs-h3: clamp(1.2rem, 2.5vw, 1.5rem);
  --fs-body: clamp(0.95rem, 1.5vw, 1.1rem);

  /* Spacing */
  --section-padding: clamp(4rem, 8vw, 8rem) 5%;
  --card-radius: 16px;
  --card-radius-lg: 20px;
  --card-radius-xl: 24px;

  /* Easings */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}


/* ----------------------------------------------------------
   2. CSS RESET & BASE
   ---------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  background: var(--bg-dark);
  color: var(--white);
  font-family: var(--font-family);
  font-size: var(--fs-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
  line-height: 1.2;
}

::selection {
  background: var(--primary);
  color: var(--charcoal);
}

::-moz-selection {
  background: var(--primary);
  color: var(--charcoal);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-dark);
  border-radius: 10px;
  border: 2px solid var(--bg-dark);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Firefox scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--primary-dark) var(--bg-dark);
}


/* ----------------------------------------------------------
   3. NOISE OVERLAY
   ---------------------------------------------------------- */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}


/* ----------------------------------------------------------
   4. CONTAINER & SECTION UTILITIES
   ---------------------------------------------------------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-block;
  background: var(--primary-10);
  color: var(--primary);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid var(--primary-20);
  margin-bottom: 1rem;
}

.section-title {
  font-size: var(--fs-h2);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-title .highlight {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.section-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  animation: underline-grow 1.2s var(--ease-smooth) forwards;
  animation-delay: 0.5s;
}

@keyframes underline-grow {
  to {
    transform: scaleX(1);
  }
}

.section-subtitle {
  color: #999;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}


/* ----------------------------------------------------------
   5. NAVIGATION (.navbar)
   ---------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 5%;
  transition: all 0.3s var(--ease-smooth);
}

.navbar.scrolled {
  background: rgba(10, 10, 15, 0.9);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(132, 210, 51, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  padding: 0.7rem 5%;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-brand {
  font-size: 1.8rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav-brand .brand-web {
  color: var(--white);
}

.nav-brand .brand-true {
  color: var(--primary);
}

.nav-brand .brand-in {
  color: var(--grey-800);
  font-weight: 400;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.3s var(--ease-smooth);
  padding: 0.25rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-cta {
  background: var(--primary);
  color: var(--charcoal-deep);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s var(--ease-smooth);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(132, 210, 51, 0.4);
}

/* Hamburger Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
  z-index: 1001;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s var(--ease-smooth);
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: rgba(10, 10, 15, 0.97);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out-expo);
    z-index: 999;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-link {
    font-size: 1.3rem;
  }

  .nav-cta {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
}


/* ----------------------------------------------------------
   6. HERO SECTION (.hero-section)
   ---------------------------------------------------------- */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 50%, var(--primary-08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, var(--primary-05) 0%, transparent 50%),
    var(--bg-dark);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.physics-container {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.physics-element {
  position: absolute;
  pointer-events: all;
  cursor: grab;
  -webkit-user-select: none;
  user-select: none;
  font-family: var(--font-family);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  border: 1px solid var(--border-medium);
  will-change: transform;
  transition: box-shadow 0.2s var(--ease-smooth);
}

.physics-element:active {
  cursor: grabbing;
}

.physics-element.tag {
  background: var(--primary-15);
  color: var(--primary);
  border-color: rgba(132, 210, 51, 0.3);
}

.physics-element.bracket {
  background: var(--card-bg-08);
  color: var(--text-dim);
}

.physics-element.shape {
  border-radius: 50%;
  background: var(--primary-10);
  border-color: var(--primary-20);
  width: 50px;
  height: 50px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 0 5%;
}

.hero-title {
  font-size: var(--fs-hero);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: slide-up 0.8s var(--ease-out-expo) both;
}

.hero-title .lime {
  color: var(--primary);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 550px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  animation: slide-up 0.8s var(--ease-out-expo) 0.15s both;
}

.hero-subtitle .typewriter {
  border-right: 2px solid var(--primary);
  animation: blink-cursor 0.7s steps(1) infinite;
  padding-right: 3px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: slide-up 0.8s var(--ease-out-expo) 0.3s both;
}


/* ----------------------------------------------------------
   7. BUTTONS
   ---------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s var(--ease-smooth);
  position: relative;
  overflow: hidden;
  border: none;
  font-family: inherit;
  line-height: 1;
}

.btn-primary {
  background: var(--primary);
  color: var(--charcoal-deep);
  box-shadow: 0 0 20px rgba(132, 210, 51, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(132, 210, 51, 0.5);
  background: #90e03a;
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--border-white-30);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(132, 210, 51, 0.15);
}

.btn-secondary:active {
  transform: translateY(-1px);
}

.btn .btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  animation: ripple 0.6s linear;
  pointer-events: none;
}


/* ----------------------------------------------------------
   8. STATS SECTION (.stats-section)
   ---------------------------------------------------------- */
.stats-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--primary-03) 50%, var(--bg-dark) 100%);
  padding: 4rem 5%;
  border-top: 1px solid rgba(132, 210, 51, 0.1);
  border-bottom: 1px solid rgba(132, 210, 51, 0.1);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.stat-item {
  padding: 2rem;
  position: relative;
}

.stat-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.06);
}

.stat-item:last-child::after {
  display: none;
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: block;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
  line-height: 1.1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.5rem;
  display: block;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2)::after {
    display: none;
  }

  .stat-number {
    font-size: 2.2rem;
  }
}

@media (max-width: 400px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-item::after {
    display: none;
  }
}


/* ----------------------------------------------------------
   9. ABOUT SECTION (.about-section)
   ---------------------------------------------------------- */
.about-section {
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.competencies-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.competency-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--primary-05);
  border: 1px solid var(--primary-15);
  border-radius: 12px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s var(--ease-smooth);
}

.competency-pill:hover {
  background: var(--primary-10);
  border-color: rgba(132, 210, 51, 0.3);
  transform: translateX(5px);
}

.competency-pill .pill-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* About Visual */
.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

.about-visual-card {
  background: var(--card-bg-03);
  border: 1px solid var(--card-bg-08);
  border-radius: 20px;
  padding: 2rem;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  width: 100%;
  max-width: 400px;
  position: relative;
  z-index: 2;
}

.about-visual-card .code-block {
  font-family: 'Fira Code', 'Cascadia Code', monospace;
  font-size: 0.85rem;
  line-height: 1.8;
}

.about-visual-card .code-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.about-visual-card .code-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.about-visual-card .code-dot.red { background: #ff5f56; }
.about-visual-card .code-dot.yellow { background: #ffbd2e; }
.about-visual-card .code-dot.green { background: #27c93f; }

.about-visual-card .code-filename {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
  margin-left: auto;
  font-family: 'Space Grotesk', sans-serif;
}

.about-visual-card .code-content {
  margin: 0;
  overflow: hidden;
}

.about-visual-card .code-content code {
  font-family: 'Fira Code', 'Cascadia Code', 'Courier New', monospace;
  font-size: 0.82rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.7);
}

.about-visual-card .code-line {
  display: block;
}

.about-visual-card .code-keyword {
  color: #c792ea;
}

.about-visual-card .code-var {
  color: #82aaff;
}

.about-visual-card .code-function {
  color: #82aaff;
}

.about-visual-card .code-string {
  color: var(--primary);
}

.about-visual-card .code-number {
  color: #f78c6c;
}

.about-visual-card .code-prop {
  color: #ffcb6b;
}

.about-visual-card .code-comment {
  color: rgba(255, 255, 255, 0.3);
  font-style: italic;
}

.about-visual-card .code-bracket {
  color: var(--text-dim);
}

.about-visual-card .code-property {
  color: #f78c6c;
}

/* Floating Shapes */
.floating-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.floating-shape.shape-1,
.floating-shape-1 {
  width: 80px;
  height: 80px;
  background: var(--primary-10);
  border: 1px solid var(--primary-20);
  top: 10%;
  right: 5%;
  animation: float 6s ease-in-out infinite;
}

.floating-shape.shape-2,
.floating-shape-2 {
  width: 50px;
  height: 50px;
  background: rgba(132, 210, 51, 0.07);
  border: 1px solid rgba(132, 210, 51, 0.12);
  bottom: 15%;
  left: 5%;
  animation: float 6s ease-in-out infinite 2s;
}

.floating-shape.shape-3,
.floating-shape-3 {
  width: 35px;
  height: 35px;
  background: var(--primary-05);
  border: 1px solid var(--primary-10);
  top: 50%;
  right: -5%;
  animation: float-reverse 8s ease-in-out infinite 1s;
}

.floating-shape-4 {
  width: 60px;
  height: 60px;
  background: rgba(132, 210, 51, 0.06);
  border: 1px solid rgba(132, 210, 51, 0.1);
  bottom: 5%;
  right: 20%;
  animation: morph 10s ease-in-out infinite;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-visual {
    order: -1;
    min-height: 300px;
  }

  .competencies-grid {
    grid-template-columns: 1fr;
  }
}


/* ----------------------------------------------------------
   10. SERVICES SECTION (.services-section)
   ---------------------------------------------------------- */
.services-section {
  padding: var(--section-padding);
  background: linear-gradient(180deg, var(--bg-dark), var(--bg-card), var(--bg-dark));
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--card-radius-lg);
  padding: 2.5rem;
  transition: all 0.4s var(--ease-smooth);
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 1000px;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 20%, var(--primary-05), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-smooth);
  pointer-events: none;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  border-color: rgba(132, 210, 51, 0.3);
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(132, 210, 51, 0.1);
}

.service-card .card-glare {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s var(--ease-smooth);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 40%, transparent 60%, rgba(255, 255, 255, 0.02));
}

.service-card:hover .card-glare {
  opacity: 1;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-10);
  border-radius: var(--card-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  transition: all 0.4s var(--ease-smooth);
  position: relative;
  z-index: 1;
}

.service-card:hover .service-icon {
  background: var(--primary-20);
  transform: rotateY(360deg);
}

.service-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.service-desc {
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.service-card .service-arrow {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s var(--ease-smooth);
  color: var(--primary);
  font-size: 1.2rem;
  z-index: 1;
}

.service-card:hover .service-arrow {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}


/* ----------------------------------------------------------
   11. PRICING SECTION (.pricing-section)
   ---------------------------------------------------------- */
.pricing-section {
  padding: var(--section-padding);
  position: relative;
}

.pricing-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: stretch;
}

.pricing-card {
  flex: 1;
  max-width: 380px;
  min-width: 280px;
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--card-radius-xl);
  padding: 3rem 2.5rem;
  position: relative;
  transition: all 0.4s var(--ease-smooth);
  transform-style: preserve-3d;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Featured Pricing Card */
.pricing-card.featured {
  border-color: var(--primary);
  background: var(--primary-03);
  box-shadow: 0 0 30px rgba(132, 210, 51, 0.15), 0 0 60px rgba(132, 210, 51, 0.05);
  transform: scale(1.05);
  animation: glow-pulse 3s ease-in-out infinite;
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--charcoal-deep);
  padding: 0.4rem 1.5rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.pricing-tier {
  font-size: 1.1rem;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.pricing-price {
  margin: 1.5rem 0;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.pricing-price .currency {
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 600;
}

.pricing-price .amount {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.pricing-price .period {
  font-size: 0.9rem;
  color: var(--text-ghost);
}

.pricing-desc {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  border-top: 1px solid var(--border-light);
  padding-top: 2rem;
  flex-grow: 1;
}

.pricing-features li {
  padding: 0.75rem 0;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.pricing-features li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.pricing-features li.disabled {
  opacity: 0.35;
  text-decoration: line-through;
}

.pricing-features li.disabled::before {
  content: '✕';
  color: var(--text-whisper);
}

.pricing-cta {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: auto;
  padding: 1rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s var(--ease-smooth);
  font-size: 1rem;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  background: transparent;
  min-height: 44px;
}

.pricing-cta:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(132, 210, 51, 0.15);
}

.pricing-card.featured .pricing-cta {
  background: var(--primary);
  color: var(--charcoal-deep);
  border: none;
  box-shadow: 0 0 20px rgba(132, 210, 51, 0.3);
}

.pricing-card.featured .pricing-cta:hover {
  box-shadow: 0 0 40px rgba(132, 210, 51, 0.5);
  transform: translateY(-2px);
  color: var(--charcoal-deep);
}

@media (max-width: 768px) {
  .pricing-grid {
    flex-direction: column;
    align-items: center;
  }

  .pricing-card {
    max-width: 100%;
    width: 100%;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .pricing-card.featured:hover {
    transform: translateY(-8px);
  }
}


/* ----------------------------------------------------------
   12. FAQ SECTION (.faq-section)
   ---------------------------------------------------------- */
.faq-section {
  padding: var(--section-padding);
  position: relative;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid var(--border-light);
  border-radius: var(--card-radius);
  overflow: hidden;
  transition: all 0.3s var(--ease-smooth);
}

.faq-item.active {
  border-color: rgba(132, 210, 51, 0.3);
  background: var(--primary-03);
}

.faq-question {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--white);
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
  transition: color 0.3s var(--ease-smooth);
  gap: 1rem;
  min-height: 44px;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s var(--ease-smooth);
  flex-shrink: 0;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-smooth), padding 0.3s var(--ease-smooth);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer-content {
  padding: 0 2rem 1.5rem;
  color: var(--text-dim);
  line-height: 1.7;
  font-size: 0.95rem;
}


/* ----------------------------------------------------------
   13. CONTACT SECTION (.contact-section)
   ---------------------------------------------------------- */
.contact-section {
  padding: var(--section-padding);
  background: linear-gradient(180deg, var(--bg-dark), var(--bg-card));
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

/* Contact Info Cards */
.contact-info-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--card-radius);
  margin-bottom: 1rem;
  transition: all 0.3s var(--ease-smooth);
}

.contact-info-item:hover {
  border-color: var(--primary-20);
  transform: translateX(5px);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-10);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--white);
  font-size: 0.95rem;
}

.contact-info-detail {
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.5;
}

.contact-info-detail a {
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-info-detail a:hover {
  color: var(--primary);
}

/* Contact Form */
.contact-form {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--card-radius-xl);
  padding: 3rem;
}

.form-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  background: var(--card-bg-03);
  border: 1px solid var(--border-medium);
  border-radius: 12px;
  color: var(--white);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s var(--ease-smooth);
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(132, 210, 51, 0.1);
  background: rgba(132, 210, 51, 0.02);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: transparent;
}

.form-label {
  position: absolute;
  left: 1.25rem;
  top: 1rem;
  color: var(--text-ghost);
  font-size: 1rem;
  transition: all 0.2s var(--ease-smooth);
  pointer-events: none;
  background: transparent;
  padding: 0;
}

.form-input:focus ~ .form-label,
.form-input.filled ~ .form-label,
.form-textarea:focus ~ .form-label,
.form-textarea.filled ~ .form-label {
  top: -0.6rem;
  left: 1rem;
  font-size: 0.75rem;
  color: var(--primary);
  background: var(--bg-card);
  padding: 0 0.5rem;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-submit {
  width: 100%;
  min-height: 44px;
}

.form-submit.loading {
  opacity: 0.7;
  pointer-events: none;
}

.form-submit.loading::after {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid var(--charcoal-deep);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin-left: 0.5rem;
  vertical-align: middle;
}

.form-status {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 12px;
  text-align: center;
  display: none;
  font-size: 0.95rem;
}

.form-status.success {
  display: block;
  background: var(--primary-10);
  color: var(--primary);
  border: 1px solid var(--primary-20);
}

.form-status.error {
  display: block;
  background: rgba(255, 50, 50, 0.1);
  color: #ff5555;
  border: 1px solid rgba(255, 50, 50, 0.2);
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-form {
    padding: 2rem 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}


/* ----------------------------------------------------------
   14. FOOTER (.footer)
   ---------------------------------------------------------- */
.footer {
  background: #070709;
  border-top: 1px solid var(--border-subtle);
  padding: 4rem 5% 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: block;
}

.footer-desc {
  color: var(--text-faint);
  line-height: 1.6;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.footer-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-link {
  display: block;
  color: var(--text-faint);
  text-decoration: none;
  padding: 0.4rem 0;
  font-size: 0.9rem;
  transition: all 0.3s var(--ease-smooth);
}

.footer-link:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-faint);
  transition: all 0.3s var(--ease-smooth);
  text-decoration: none;
  font-size: 1rem;
}

.social-link:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(132, 210, 51, 0.2);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 3rem;
  border-top: 1px solid var(--border-subtle);
  color: var(--text-whisper);
  font-size: 0.85rem;
}

.footer-bottom a {
  color: var(--text-ghost);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom a:hover {
  color: var(--primary);
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}


/* ----------------------------------------------------------
   15. SCROLL REVEAL ANIMATIONS
   ---------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--ease-smooth);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s var(--ease-smooth);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s var(--ease-smooth);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s var(--ease-smooth);
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* Stagger Delays */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }
.reveal-delay-7 { transition-delay: 0.7s; }
.reveal-delay-8 { transition-delay: 0.8s; }
.reveal-delay-9 { transition-delay: 0.9s; }


/* ----------------------------------------------------------
   16. KEYFRAME ANIMATIONS (30+)
   ---------------------------------------------------------- */

/* 1. Float */
@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  33% {
    transform: translateY(-15px) rotate(2deg);
  }
  66% {
    transform: translateY(10px) rotate(-2deg);
  }
}

/* 2. Float Reverse */
@keyframes float-reverse {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  33% {
    transform: translateY(10px) rotate(-2deg);
  }
  66% {
    transform: translateY(-15px) rotate(2deg);
  }
}

/* 3. Glow Pulse */
@keyframes glow-pulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(132, 210, 51, 0.2);
  }
  50% {
    box-shadow: 0 0 40px rgba(132, 210, 51, 0.4), 0 0 80px rgba(132, 210, 51, 0.1);
  }
}

/* 4. Gradient Shift */
@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* 5. Blink Cursor */
@keyframes blink-cursor {
  0%, 100% {
    border-color: var(--primary);
  }
  50% {
    border-color: transparent;
  }
}

/* 6. Rotate Slow */
@keyframes rotate-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* 7. Ripple */
@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* 8. Slide Up */
@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 9. Slide In Right */
@keyframes slide-in-right {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

/* 10. Fade In */
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* 11. Fade In Scale */
@keyframes fade-in-scale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* 12. Shimmer */
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* 13. Bounce In */
@keyframes bounce-in {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* 14. Pulse */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* 15. Morph */
@keyframes morph {
  0%, 100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }
}

/* 16. Text Gradient */
@keyframes text-gradient {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

/* 17. Wave */
@keyframes wave {
  0% {
    transform: translateX(0) translateZ(0) scaleY(1);
  }
  50% {
    transform: translateX(-25%) translateZ(0) scaleY(0.5);
  }
  100% {
    transform: translateX(-50%) translateZ(0) scaleY(1);
  }
}

/* 18. Counter Pop */
@keyframes counter-pop {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}

/* 19. Icon Bounce */
@keyframes icon-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* 20. Particle Drift */
@keyframes particle-drift {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(var(--drift-x, 20px), var(--drift-y, -30px));
  }
}

/* 21. Spin */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* 22. Glow Line */
@keyframes glow-line {
  0% {
    left: -100%;
  }
  100% {
    left: 200%;
  }
}

/* 23. Dash */
@keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}

/* 24. Shake */
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}

/* 25. Swing */
@keyframes swing {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(5deg);
  }
  75% {
    transform: rotate(-5deg);
  }
}

/* 26. Orbit */
@keyframes orbit {
  from {
    transform: rotate(0deg) translateX(100px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(100px) rotate(-360deg);
  }
}

/* 27. Typewriter */
@keyframes typewriter {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* 28. Unfold */
@keyframes unfold {
  from {
    max-height: 0;
    opacity: 0;
  }
  to {
    max-height: 500px;
    opacity: 1;
  }
}

/* 29. Magnetic Pull */
@keyframes magnetic-pull {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(var(--mx, 0), var(--my, 0));
  }
}

/* 30. Loader Fill */
@keyframes loader-fill {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* 31. Underline Grow (defined earlier, listed for count) */

/* 32. Flicker */
@keyframes flicker {
  0%, 100% {
    opacity: 1;
  }
  41% {
    opacity: 1;
  }
  42% {
    opacity: 0.8;
  }
  43% {
    opacity: 1;
  }
  45% {
    opacity: 0.6;
  }
  46% {
    opacity: 1;
  }
}

/* 33. Scale Bounce */
@keyframes scale-bounce {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(0.95);
  }
  50% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}

/* 34. Slide Down */
@keyframes slide-down {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 35. Rotate Scale */
@keyframes rotate-scale {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.2);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}


/* ----------------------------------------------------------
   17. GRADIENT TEXT
   ---------------------------------------------------------- */
.gradient-text {
  background: linear-gradient(135deg, #84D233, #a8e65c, #84D233);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  animation: text-gradient 3s linear infinite;
}


/* ----------------------------------------------------------
   18. WAVE SEPARATOR
   ---------------------------------------------------------- */
.wave-separator {
  position: relative;
  height: 80px;
  overflow: hidden;
  line-height: 0;
}

.wave-separator svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}

.wave-separator .wave-path {
  fill: var(--bg-dark);
}

.wave-separator .wave-animated {
  animation: wave 8s ease-in-out infinite;
}


/* ----------------------------------------------------------
   19. GRADIENT ORBS (Decorative)
   ---------------------------------------------------------- */
.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.4;
}

.gradient-orb.lime {
  background: var(--primary);
  width: 300px;
  height: 300px;
}

.gradient-orb.blue {
  background: #3366ff;
  width: 200px;
  height: 200px;
}

.gradient-orb.small {
  width: 150px;
  height: 150px;
}


/* ----------------------------------------------------------
   20. BACK TO TOP BUTTON
   ---------------------------------------------------------- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--charcoal-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s var(--ease-smooth);
  z-index: 999;
  border: none;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(132, 210, 51, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(132, 210, 51, 0.4);
}

.back-to-top:active {
  transform: translateY(-1px);
}


/* ----------------------------------------------------------
   21. WHATSAPP FLOAT
   ---------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: all 0.3s var(--ease-smooth);
  text-decoration: none;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg,
.whatsapp-float img {
  width: 28px;
  height: 28px;
}


/* ----------------------------------------------------------
   22. LOADING SCREEN
   ---------------------------------------------------------- */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s var(--ease-smooth), visibility 0.5s;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-content {
  text-align: center;
}

.loader-logo {
  font-size: 2rem;
  font-weight: 700;
  animation: pulse 1.5s infinite;
}

.loader-logo .brand-web {
  color: var(--white);
}

.loader-logo .brand-true {
  color: var(--primary);
}

.loader-logo .brand-in {
  color: var(--grey-800);
}

.loader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  margin: 1.5rem auto 0;
}

.loader-progress {
  height: 100%;
  background: var(--primary);
  border-radius: 10px;
  animation: loader-fill 1.5s ease-out forwards;
}


/* ----------------------------------------------------------
   23. PREFERS REDUCED MOTION
   ---------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}


/* ----------------------------------------------------------
   24. LEGAL PAGES
   ---------------------------------------------------------- */
.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 120px 2rem 4rem;
}

.legal-page h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--primary);
  line-height: 1.2;
}

.legal-page h2 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  color: var(--white);
}

.legal-page h3 {
  font-size: 1.2rem;
  margin: 1.5rem 0 0.75rem;
  color: var(--white);
}

.legal-page p,
.legal-page li {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-page ul,
.legal-page ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.legal-page ul {
  list-style: disc;
}

.legal-page ol {
  list-style: decimal;
}

.legal-page a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.3s;
}

.legal-page a:hover {
  opacity: 0.8;
}


/* ----------------------------------------------------------
   25. ADDITIONAL UTILITY & RESPONSIVE
   ---------------------------------------------------------- */

/* Visually Hidden (SR Only) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Text Alignment Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Margin Utilities */
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* Responsive Images */
.responsive-img {
  width: 100%;
  height: auto;
  border-radius: var(--card-radius);
}

/* Glass Card utility */
.glass-card {
  background: rgba(255, 255, 255, 0.03);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--card-radius-lg);
}

/* Shimmer Loading State */
.skeleton {
  background: linear-gradient(90deg, rgba(255,255,255,0.04) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.04) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 8px;
}


/* ----------------------------------------------------------
   26. GLOBAL RESPONSIVE BREAKPOINTS
   ---------------------------------------------------------- */

/* Tablets & Small Laptops */
@media (max-width: 992px) {
  .hero-content {
    max-width: 650px;
  }

  .hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
  }

  .about-grid {
    gap: 3rem;
  }
}

/* Tablets Portrait */
@media (max-width: 768px) {
  .hero-section {
    min-height: 100vh;
    padding-top: 5rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    max-width: 320px;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .section-header {
    margin-bottom: 3rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .stats-section {
    padding: 3rem 5%;
  }

  .physics-container {
    display: none;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .btn {
    padding: 0.85rem 2rem;
    font-size: 0.95rem;
  }

  .section-badge {
    font-size: 0.75rem;
    padding: 0.4rem 1.2rem;
  }

  .service-card {
    padding: 2rem;
  }

  .pricing-card {
    padding: 2.5rem 2rem;
  }

  .pricing-price .amount {
    font-size: 2.8rem;
  }

  .faq-question {
    padding: 1.25rem 1.5rem;
    font-size: 0.95rem;
  }

  .faq-answer-content {
    padding: 0 1.5rem 1.25rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .legal-page {
    padding: 100px 1.25rem 3rem;
  }

  .legal-page h1 {
    font-size: 1.8rem;
  }

  .footer {
    padding: 3rem 5% 2rem;
  }

  .back-to-top {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
  }

  .whatsapp-float {
    bottom: 1.5rem;
    left: 1.5rem;
    width: 50px;
    height: 50px;
  }
}

/* Touch Targets — Ensure minimum 44x44px interactive areas */
@media (pointer: coarse) {
  .nav-link {
    padding: 0.5rem 0;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .faq-question {
    min-height: 54px;
  }

  .footer-link {
    padding: 0.6rem 0;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .social-link {
    width: 44px;
    height: 44px;
  }

  .pricing-cta {
    min-height: 48px;
  }
}

/* Very wide screens */
@media (min-width: 1600px) {
  .hero-content {
    max-width: 900px;
  }

  .container {
    max-width: 1400px;
  }
}

/* Landscape phones */
@media (max-height: 500px) and (orientation: landscape) {
  .hero-section {
    min-height: auto;
    padding: 5rem 5% 3rem;
  }

  .hero-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
  }
}

/* Print */
@media print {
  .navbar,
  .loader,
  .noise-overlay,
  .back-to-top,
  .whatsapp-float,
  .hero-canvas,
  .physics-container,
  .gradient-orb,
  .wave-separator {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  .hero-section {
    min-height: auto;
    padding: 2rem 0;
    background: none;
  }

  .hero-title,
  .section-title {
    color: #000;
  }

  .hero-title .lime,
  .section-title .highlight {
    color: #333;
  }

  .service-card,
  .pricing-card,
  .faq-item,
  .contact-info-item,
  .contact-form {
    border: 1px solid #ccc;
    background: #fff;
    box-shadow: none;
  }
}
