/* ============================================================
   EcomScale India — Premium Design System
   Modern Startup Agency Website
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* ── Design Tokens ── */
:root {
  /* Colors */
  --clr-primary: #0f0f3d;
  --clr-primary-light: #1a1a5e;
  --clr-secondary: #6c3ce0;
  --clr-accent: #a855f7;
  --clr-accent-light: #c084fc;
  --clr-white: #ffffff;
  --clr-off-white: #f8f9ff;
  --clr-gray-100: #f1f1f8;
  --clr-gray-200: #e2e2f0;
  --clr-gray-400: #9ca3af;
  --clr-gray-600: #6b7280;
  --clr-gray-800: #374151;
  --clr-dark: #0a0a2e;
  --clr-dark-card: #111145;
  --clr-success: #22c55e;

  /* Gradients */
  --grad-primary: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-secondary) 50%, var(--clr-accent) 100%);
  --grad-hero: linear-gradient(135deg, #0a0a2e 0%, #1a1a5e 40%, #3b1f7a 70%, #6c3ce0 100%);
  --grad-accent: linear-gradient(135deg, var(--clr-secondary), var(--clr-accent));
  --grad-card: linear-gradient(135deg, rgba(108, 60, 224, 0.05), rgba(168, 85, 247, 0.08));
  --grad-btn: linear-gradient(135deg, var(--clr-secondary) 0%, var(--clr-accent) 100%);
  --grad-btn-hover: linear-gradient(135deg, var(--clr-accent) 0%, var(--clr-secondary) 100%);
  --grad-glow: radial-gradient(circle at 50% 50%, rgba(108, 60, 224, 0.3) 0%, transparent 70%);

  /* Typography */
  --ff-heading: 'Outfit', sans-serif;
  --ff-body: 'Inter', sans-serif;
  --ff-accent: 'Poppins', sans-serif;

  --fs-h1: clamp(2.5rem, 5vw, 4rem);
  --fs-h2: clamp(2rem, 4vw, 3rem);
  --fs-h3: clamp(1.25rem, 2.5vw, 1.75rem);
  --fs-h4: clamp(1.1rem, 2vw, 1.35rem);
  --fs-body: clamp(0.95rem, 1.5vw, 1.1rem);
  --fs-sm: clamp(0.8rem, 1.2vw, 0.95rem);

  /* Spacing */
  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 1.5rem;
  --sp-lg: 2.5rem;
  --sp-xl: 4rem;
  --sp-xxl: 6rem;

  /* Borders & Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(10, 10, 46, 0.06);
  --shadow-md: 0 4px 20px rgba(10, 10, 46, 0.08);
  --shadow-lg: 0 8px 40px rgba(10, 10, 46, 0.12);
  --shadow-xl: 0 16px 60px rgba(10, 10, 46, 0.16);
  --shadow-glow: 0 0 40px rgba(108, 60, 224, 0.25);
  --shadow-glow-lg: 0 0 80px rgba(108, 60, 224, 0.35);

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.15);
  --glass-bg-light: rgba(255, 255, 255, 0.65);

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast: 0.2s;
  --dur-mid: 0.4s;
  --dur-slow: 0.6s;

  /* Layout */
  --max-width: 1280px;
  --header-h: 80px;
}

/* ── Reset ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--clr-gray-800);
  background: var(--clr-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--dur-fast) var(--ease-out);
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

/* ── Utilities ── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--sp-md);
}

.section {
  padding: var(--sp-xxl) 0;
  position: relative;
}

.section-dark {
  background: var(--clr-dark);
  color: var(--clr-white);
}

.section-alt {
  background: var(--clr-off-white);
}

.section-header {
  text-align: center;
  margin-bottom: var(--sp-xl);
}

.section-header .badge {
  display: inline-block;
  padding: 6px 20px;
  background: var(--grad-accent);
  color: var(--clr-white);
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  font-weight: 600;
  font-family: var(--ff-accent);
  letter-spacing: 0.5px;
  margin-bottom: var(--sp-sm);
}

.section-header h2 {
  font-family: var(--ff-heading);
  font-size: var(--fs-h2);
  font-weight: 800;
  color: var(--clr-primary);
  margin-bottom: var(--sp-xs);
  line-height: 1.2;
}

.section-dark .section-header h2 {
  color: var(--clr-white);
}

.section-header p {
  font-size: var(--fs-body);
  color: var(--clr-gray-600);
  max-width: 600px;
  margin: 0 auto;
}

.section-dark .section-header p {
  color: var(--clr-gray-400);
}

.text-gradient {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  /* Reduced for medium size */
  border-radius: var(--radius-full);
  font-family: var(--ff-accent);
  font-weight: 600;
  font-size: 0.9rem;
  /* Slightly smaller text */
  letter-spacing: 0.3px;
  transition: all var(--dur-mid) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity var(--dur-mid) var(--ease-out);
}

.btn-primary {
  background: var(--grad-btn);
  color: var(--clr-white);
  box-shadow: 0 4px 20px rgba(108, 60, 224, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(108, 60, 224, 0.45);
}

.btn-primary::before {
  background: var(--grad-btn-hover);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-outline {
  border: 2px solid rgba(108, 60, 224, 0.25);
  color: var(--clr-primary);
}

.btn-outline:hover {
  background: rgba(108, 60, 224, 0.06);
  border-color: #6c3ce0;
  color: #6c3ce0;
  transform: translateY(-3px);
}

.btn-outline-dark {
  border: 2px solid var(--clr-gray-200);
  color: var(--clr-primary);
}

.btn-outline-dark:hover {
  border-color: var(--clr-secondary);
  color: var(--clr-secondary);
  transform: translateY(-3px);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.btn-icon {
  font-size: 1.1em;
}

/* ── Animated Gradient Border ── */
.gradient-border {
  position: relative;
  border-radius: var(--radius-lg);
}

.gradient-border::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: var(--grad-accent);
  z-index: -1;
  opacity: 0;
  transition: opacity var(--dur-mid) var(--ease-out);
}

.gradient-border:hover::before {
  opacity: 1;
}


/* ============================================================
   LOADING SCREEN
   ============================================================ */
#loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--clr-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s var(--ease-out), visibility 0.5s;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(108, 60, 224, 0.15);
  border-top-color: var(--clr-accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.loader-text {
  margin-top: var(--sp-sm);
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-primary);
  letter-spacing: 1px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}


/* ============================================================
   CURSOR GLOW
   ============================================================ */
.cursor-glow {
  position: fixed;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(108, 60, 224, 0.1);
  border: 2px solid rgba(108, 60, 224, 0.4);
  box-shadow: 0 0 15px rgba(108, 60, 224, 0.2);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease-out, height 0.3s ease-out, background 0.3s, opacity 0.3s;
}

/* Inner solid dot */
.cursor-glow::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background: var(--clr-primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--clr-primary);
  transition: all 0.3s ease-out;
}

/* Hover state when over buttons/links */
.cursor-glow.cursor-hover {
  width: 70px;
  height: 70px;
  background: rgba(108, 60, 224, 0.15);
  border-color: var(--clr-primary);
}

.cursor-glow.cursor-hover::after {
  width: 10px;
  height: 10px;
}

@media (pointer: coarse),
(hover: none),
(max-width: 768px) {
  .cursor-glow {
    display: none !important;
  }
}


/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.header.scrolled {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h) !important;
  z-index: 1000;
  transition: all var(--dur-mid) var(--ease-out);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* height: 100%; */
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--sp-md);
  height: var(--header-h) !important;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--clr-primary);
  transition: color var(--dur-mid) var(--ease-out);
}

.header.scrolled .logo {
  color: var(--clr-primary);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--grad-accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--clr-white);
  font-weight: 900;
}

.logo-text span {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Navigation */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: var(--ff-accent);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--clr-gray-600);
  position: relative;
  padding: 4px 0;
  transition: color var(--dur-fast) var(--ease-out);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad-accent);
  border-radius: 2px;
  transition: width var(--dur-mid) var(--ease-out);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

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

.header.scrolled .nav-link {
  color: var(--clr-gray-600);
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
  color: var(--clr-primary);
}

.nav-cta {
  padding: 10px 24px;
  background: var(--grad-btn);
  color: var(--clr-white) !important;
  border-radius: var(--radius-full);
  font-family: var(--ff-accent);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--dur-mid) var(--ease-out);
  box-shadow: 0 4px 15px rgba(108, 60, 224, 0.3);
  white-space: nowrap;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(108, 60, 224, 0.45);
}

.nav-cta::after {
  display: none;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 8px;
}

.hamburger span {
  width: 26px;
  height: 2.5px;
  background: var(--clr-primary);
  border-radius: 4px;
  transition: all var(--dur-mid) var(--ease-out);
}

.header.scrolled .hamburger span {
  background: var(--clr-primary);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}


/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, #F6F4FF 0%, #EDE8FF 35%, #E0D6FF 60%, #F6F4FF 100%);
  overflow: hidden;
  padding-top: var(--header-h);
}

/* Floating shapes */
.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  animation: float 8s ease-in-out infinite;
}

.hero-shape:nth-child(1) {
  width: 400px;
  height: 400px;
  background: var(--clr-accent);
  top: -100px;
  right: -80px;
  animation-delay: 0s;
  animation-duration: 10s;
}

.hero-shape:nth-child(2) {
  width: 250px;
  height: 250px;
  background: var(--clr-secondary);
  bottom: 10%;
  left: -50px;
  animation-delay: 2s;
  animation-duration: 12s;
}

.hero-shape:nth-child(3) {
  width: 180px;
  height: 180px;
  background: var(--clr-accent-light);
  top: 40%;
  right: 20%;
  animation-delay: 4s;
  animation-duration: 9s;
}

.hero-shape:nth-child(4) {
  width: 120px;
  height: 120px;
  background: #818cf8;
  bottom: 25%;
  left: 30%;
  animation-delay: 1s;
  animation-duration: 11s;
}

.hero-shape:nth-child(5) {
  width: 300px;
  height: 300px;
  background: var(--clr-secondary);
  top: 20%;
  left: 10%;
  animation-delay: 3s;
  animation-duration: 14s;
  opacity: 0.04;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  25% {
    transform: translateY(-20px) rotate(5deg);
  }

  50% {
    transform: translateY(-40px) rotate(-3deg);
  }

  75% {
    transform: translateY(-15px) rotate(2deg);
  }
}

/* Hero glow */
.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(108, 60, 224, 0.2) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  color: var(--clr-primary);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(108, 60, 224, 0.08);
  border: 1px solid rgba(108, 60, 224, 0.12);
  border-radius: var(--radius-full);
  font-family: var(--ff-accent);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: #6c3ce0;
  margin-bottom: var(--sp-md);
}

.hero-badge .pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-success);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
}

.hero h1 {
  font-family: var(--ff-heading);
  font-size: var(--fs-h1);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: var(--sp-md);
}

.hero h1 .highlight {
  position: relative;
  display: inline;
}

.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--grad-accent);
  opacity: 0.3;
  border-radius: 4px;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--clr-gray-600);
  line-height: 1.8;
  margin-bottom: var(--sp-lg);
  max-width: 540px;
}

.hero-btns {
  display: flex;
  gap: var(--sp-sm);
  flex-wrap: wrap;
}

/* Hero visual / illustration area */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-illustration {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.hero-illustration-main {
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  padding: 30px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.hero-illustration-main .growth-chart {
  width: 100%;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 180px;
  padding: 0 10px;
}

.growth-bar {
  flex: 1;
  border-radius: 8px 8px 0 0;
  background: var(--grad-accent);
  opacity: 0.8;
  animation: growUp 1.5s var(--ease-out) forwards;
  transform-origin: bottom;
  position: relative;
}

.growth-bar:nth-child(1) {
  height: 30%;
  animation-delay: 0.2s;
}

.growth-bar:nth-child(2) {
  height: 50%;
  animation-delay: 0.4s;
}

.growth-bar:nth-child(3) {
  height: 40%;
  animation-delay: 0.6s;
}

.growth-bar:nth-child(4) {
  height: 65%;
  animation-delay: 0.8s;
}

.growth-bar:nth-child(5) {
  height: 55%;
  animation-delay: 1.0s;
}

.growth-bar:nth-child(6) {
  height: 80%;
  animation-delay: 1.2s;
}

.growth-bar:nth-child(7) {
  height: 95%;
  animation-delay: 1.4s;
}

@keyframes growUp {
  from {
    transform: scaleY(0);
  }

  to {
    transform: scaleY(1);
  }
}

.hero-illustration-label {
  font-family: var(--ff-heading);
  font-weight: 700;
  color: var(--clr-white);
  font-size: 1.1rem;
  text-align: center;
}

.hero-illustration-sublabel {
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--fs-sm);
  text-align: center;
}

/* Floating cards around illustration */
.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--clr-white);
  font-family: var(--ff-accent);
  font-size: var(--fs-sm);
  font-weight: 600;
  z-index: 3;
  animation: floatCard 6s ease-in-out infinite;
  box-shadow: var(--shadow-lg);
}

.floating-card .fc-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.floating-card:nth-child(1) {
  top: 0;
  left: -60px;
  animation-delay: 0s;
}

.floating-card:nth-child(2) {
  bottom: 60px;
  right: -50px;
  animation-delay: 2s;
}

.floating-card:nth-child(3) {
  top: 50%;
  right: -70px;
  animation-delay: 4s;
}

.floating-card .fc-icon.green {
  background: rgba(34, 197, 94, 0.2);
}

.floating-card .fc-icon.blue {
  background: rgba(59, 130, 246, 0.2);
}

.floating-card .fc-icon.purple {
  background: rgba(168, 85, 247, 0.2);
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}


/* ============================================================
   STATS / COUNTER SECTION
   ============================================================ */
.stats {
  position: relative;
  z-index: 2;
  margin-top: 0px;
  background: linear-gradient(135deg, #2D1B69 0%, #4C2889 40%, #6C3CE0 80%, #8B5CF6 100%);
  padding: var(--sp-xxl) 0;
  box-shadow: 0 12px 40px rgba(108, 60, 224, 0.25);
  overflow: visible;
}

.stats::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.3) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.stats::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.25) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-md);
  position: relative;
  z-index: 1;
}

.stat-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  /* padding: var(--sp-lg) var(--sp-md); */
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border: none;
  transition: all var(--dur-mid) var(--ease-out);
  position: relative;
  z-index: 1;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.stat-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(108, 60, 224, 0.1), rgba(168, 85, 247, 0.15));
  border: none;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto var(--sp-sm);
}

.stat-number {
  font-family: var(--ff-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: #1A1A2E;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-family: var(--ff-accent);
  font-size: var(--fs-sm);
  color: #64648B;
  font-weight: 500;
}


/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--sp-md);
}

.service-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: var(--sp-lg);
  border: 1px solid var(--clr-gray-200);
  transition: all var(--dur-mid) var(--ease-out);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-mid) var(--ease-out);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(108, 60, 224, 0.15);
}

/* Glow effect on hover */
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 0%, rgba(108, 60, 224, 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--dur-mid) var(--ease-out);
}

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

.service-card-icon {
  width: 60px;
  height: 60px;
  background: var(--grad-card);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: var(--sp-md);
  transition: all var(--dur-mid) var(--ease-out);
  position: relative;
  z-index: 1;
}

.service-card:hover .service-card-icon {
  background: var(--grad-accent);
  transform: scale(1.1);
  box-shadow: var(--shadow-glow);
}

.service-card h3 {
  font-family: var(--ff-heading);
  font-size: var(--fs-h4);
  font-weight: 700;
  color: var(--clr-primary);
  margin-bottom: var(--sp-xs);
  position: relative;
  z-index: 1;
}

.service-card p {
  font-size: var(--fs-sm);
  color: var(--clr-gray-600);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}


/* ============================================================
   SERVICE PAGE — FILTER & DETAILED CARDS
   ============================================================ */
.service-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: var(--sp-xl);
}

.filter-btn {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-family: var(--ff-accent);
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--clr-gray-600);
  background: var(--clr-gray-100);
  border: 2px solid transparent;
  transition: all var(--dur-mid) var(--ease-out);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--grad-btn);
  color: var(--clr-white);
  box-shadow: 0 4px 15px rgba(108, 60, 224, 0.25);
}

.services-detailed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--sp-md);
}

.service-detail-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: var(--sp-lg) var(--sp-lg) var(--sp-md);
  border: 1px solid var(--clr-gray-200);
  transition: all var(--dur-mid) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.service-detail-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(108, 60, 224, 0.04) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--dur-mid) var(--ease-out);
}

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

.service-detail-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl), 0 0 40px rgba(108, 60, 224, 0.08);
  border-color: rgba(108, 60, 224, 0.2);
}

.service-detail-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: var(--sp-md);
  transition: all var(--dur-mid) var(--ease-out);
  position: relative;
  z-index: 1;
}

.service-detail-card:hover .service-detail-icon {
  transform: scale(1.1) rotate(-3deg);
}

.service-detail-card h3 {
  font-family: var(--ff-heading);
  font-size: var(--fs-h4);
  font-weight: 700;
  color: var(--clr-primary);
  margin-bottom: var(--sp-xs);
  position: relative;
  z-index: 1;
}

.service-detail-card p {
  font-size: var(--fs-sm);
  color: var(--clr-gray-600);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.service-detail-card .card-tag {
  display: inline-block;
  margin-top: var(--sp-sm);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--ff-accent);
  position: relative;
  z-index: 1;
}

.tag-ecommerce {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}

.tag-marketing {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
}

.tag-development {
  background: rgba(168, 85, 247, 0.1);
  color: #9333ea;
}


/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--sp-md);
}

.why-card {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-md);
  padding: var(--sp-lg);
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-gray-200);
  transition: all var(--dur-mid) var(--ease-out);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(108, 60, 224, 0.15);
}

.why-card-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: var(--grad-card);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: all var(--dur-mid) var(--ease-out);
}

.why-card:hover .why-card-icon {
  background: var(--grad-accent);
  box-shadow: var(--shadow-glow);
}

.why-card h3 {
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-primary);
  margin-bottom: 4px;
}

.why-card p {
  font-size: var(--fs-sm);
  color: var(--clr-gray-600);
}


/* ============================================================
   ABOUT PAGE — TEAM, VISION, TIMELINE
   ============================================================ */
/* Vision / Mission cards */
.vm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-md);
}

.vm-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: var(--sp-lg);
  border: 1px solid var(--clr-gray-200);
  text-align: center;
  transition: all var(--dur-mid) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.vm-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-accent);
}

.vm-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.vm-card .vm-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--sp-md);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  background: var(--grad-card);
}

.vm-card h3 {
  font-family: var(--ff-heading);
  font-size: var(--fs-h3);
  font-weight: 700;
  color: var(--clr-primary);
  margin-bottom: var(--sp-sm);
}

.vm-card p {
  color: var(--clr-gray-600);
  font-size: var(--fs-sm);
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--sp-md);
}

.team-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-gray-200);
  overflow: hidden;
  transition: all var(--dur-mid) var(--ease-out);
  text-align: center;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.team-avatar {
  width: 100%;
  height: 220px;
  background: var(--grad-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--clr-secondary);
  position: relative;
  overflow: hidden;
}

.team-avatar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(transparent, var(--clr-white));
}

.team-info {
  padding: var(--sp-md) var(--sp-md) var(--sp-lg);
}

.team-info h3 {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--clr-primary);
  margin-bottom: 2px;
}

.team-info .role {
  font-size: var(--fs-sm);
  color: var(--clr-secondary);
  font-weight: 500;
  font-family: var(--ff-accent);
}

.team-socials {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: var(--sp-sm);
}

.team-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--clr-gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--clr-gray-600);
  transition: all var(--dur-mid) var(--ease-out);
}

.team-socials a:hover {
  background: var(--grad-accent);
  color: var(--clr-white);
  transform: translateY(-3px);
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding: var(--sp-lg) 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--grad-accent);
  transform: translateX(-50%);
  border-radius: 3px;
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: var(--sp-lg);
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.timeline-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--grad-accent);
  border: 4px solid var(--clr-white);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: var(--shadow-glow);
}

.timeline-content {
  width: calc(50% - 40px);
  background: var(--clr-white);
  border-radius: var(--radius-md);
  padding: var(--sp-md);
  border: 1px solid var(--clr-gray-200);
  box-shadow: var(--shadow-sm);
  transition: all var(--dur-mid) var(--ease-out);
}

.timeline-content:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.timeline-content .year {
  font-family: var(--ff-heading);
  font-weight: 800;
  color: var(--clr-secondary);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.timeline-content h3 {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--clr-primary);
  margin-bottom: 4px;
}

.timeline-content p {
  font-size: var(--fs-sm);
  color: var(--clr-gray-600);
}


/* ============================================================
   TESTIMONIALS
   ============================================================ */
/* Update for Grid instead of slider */
.testimonials-slider {
  position: relative;
  overflow: hidden;
  /* Contains the scroll track */
  padding: 10px 0;
  width: 100%;
  /* Prevent overflow */
}

.testimonials-track {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--sp-lg);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: var(--sp-lg);
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
  width: 100%;
}

.testimonials-track::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari and Opera */
}

.testimonial-card {
  flex: 0 0 calc((100% - (var(--sp-lg) * 2)) / 3);
  scroll-snap-align: start;
}

@media (max-width: 992px) {
  .testimonial-card {
    flex: 0 0 calc((100% - var(--sp-lg)) / 2);
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 100%;
  }
}

.testimonial-inner {
  background: var(--clr-white);
  border-radius: var(--radius-md);
  padding: 20px;
  /* Much smaller padding */
  text-align: center;
  border: 1px solid var(--clr-gray-200);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-inner:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--clr-primary);
  transform: translateY(-3px);
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 3px;
  color: #fbbf24;
  font-size: 1rem;
  /* Smaller stars */
  margin-bottom: 12px;
}

.testimonial-inner blockquote {
  font-size: 0.9rem;
  /* Smaller text */
  color: var(--clr-gray-700);
  line-height: 1.5;
  margin-bottom: 15px;
  flex-grow: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.testimonial-avatar {
  width: 40px;
  /* Smaller avatar */
  height: 40px;
  border-radius: 50%;
  background: var(--grad-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-white);
  font-weight: 700;
  font-family: var(--ff-heading);
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.testimonial-author h4 {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 0.9rem;
  /* Smaller name */
  color: var(--clr-primary);
}

.testimonial-author span {
  font-size: 0.8rem;
  /* Smaller title */
  color: var(--clr-gray-600);
}

.testimonials-nav {
  display: flex;
  justify-content: center;
  gap: var(--sp-sm);
  margin-top: var(--sp-lg);
}

.testimonials-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--clr-gray-100);
  border: 1px solid var(--clr-gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--clr-gray-600);
  transition: all var(--dur-mid) var(--ease-out);
}

.testimonials-nav button:hover {
  background: var(--grad-btn);
  color: var(--clr-white);
  border-color: transparent;
  box-shadow: var(--shadow-glow);
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: var(--sp-md);
}

.testimonials-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--clr-gray-200);
  transition: all var(--dur-mid) var(--ease-out);
  cursor: pointer;
}

.testimonials-dots .dot.active {
  background: var(--grad-accent);
  width: 28px;
  border-radius: 5px;
}


/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 750px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--clr-gray-200);
  border-radius: var(--radius-md);
  margin-bottom: var(--sp-sm);
  overflow: hidden;
  transition: all var(--dur-mid) var(--ease-out);
}

.faq-item:hover {
  border-color: rgba(108, 60, 224, 0.2);
}

.faq-item.active {
  border-color: rgba(108, 60, 224, 0.3);
  box-shadow: var(--shadow-md);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--sp-md) var(--sp-md);
  font-family: var(--ff-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--clr-primary);
  background: none;
  text-align: left;
  transition: color var(--dur-fast);
}

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

.faq-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--clr-gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all var(--dur-mid) var(--ease-out);
}

.faq-item.active .faq-icon {
  background: var(--grad-accent);
  color: var(--clr-white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-mid) var(--ease-out);
}

.faq-answer-inner {
  padding: 0 var(--sp-md) var(--sp-md);
  color: var(--clr-gray-600);
  font-size: var(--fs-sm);
  line-height: 1.8;
}


/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--sp-xl);
  align-items: start;
}

.contact-form {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: var(--sp-xl);
  border: 1px solid var(--clr-gray-200);
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: var(--sp-md);
}

.form-group label {
  display: block;
  font-family: var(--ff-accent);
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--clr-primary);
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--clr-gray-200);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--clr-gray-800);
  background: var(--clr-white);
  transition: all var(--dur-mid) var(--ease-out);
  outline: none;
}

.form-input:focus {
  border-color: var(--clr-secondary);
  box-shadow: 0 0 0 4px rgba(108, 60, 224, 0.08);
}

.form-input::placeholder {
  color: var(--clr-gray-400);
}

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

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-md);
  padding: var(--sp-md);
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-gray-200);
  transition: all var(--dur-mid) var(--ease-out);
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(108, 60, 224, 0.15);
}

.contact-info-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: var(--radius-md);
  background: var(--grad-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: all var(--dur-mid) var(--ease-out);
}

.contact-info-card:hover .contact-info-icon {
  background: var(--grad-accent);
  box-shadow: var(--shadow-glow);
}

.contact-info-card h4 {
  font-family: var(--ff-heading);
  font-weight: 700;
  color: var(--clr-primary);
  margin-bottom: 4px;
}

.contact-info-card p,
.contact-info-card a {
  font-size: var(--fs-sm);
  color: var(--clr-gray-600);
}

.contact-info-card a:hover {
  color: var(--clr-secondary);
}

/* Map placeholder */
.map-section {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--clr-gray-200);
  height: 350px;
  background: var(--clr-gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.map-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(108, 60, 224, 0.03), rgba(168, 85, 247, 0.03));
}

.map-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.map-content .map-icon {
  font-size: 3rem;
  margin-bottom: var(--sp-sm);
}

.map-content p {
  color: var(--clr-gray-600);
  font-family: var(--ff-accent);
  font-weight: 500;
}

/* Social media icons */
.social-links {
  display: flex;
  gap: 12px;
  margin-top: var(--sp-sm);
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--clr-gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--clr-gray-600);
  transition: all var(--dur-mid) var(--ease-out);
}

.social-link:hover {
  background: var(--grad-accent);
  color: var(--clr-white);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}


/* ============================================================
   MODAL / POPUP
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(10, 10, 46, 0.6);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--dur-mid) var(--ease-out);
  padding: var(--sp-md);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--clr-white);
  border-radius: var(--radius-xl);
  padding: var(--sp-xl);
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.85) translateY(30px);
  transition: transform var(--dur-mid) var(--ease-back);
  position: relative;
  box-shadow: var(--shadow-xl);
}

.modal-overlay.active .modal {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--clr-gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--clr-gray-600);
  transition: all var(--dur-mid) var(--ease-out);
}

.modal-close:hover {
  background: #fee2e2;
  color: #ef4444;
  transform: rotate(90deg);
}

.modal-header {
  text-align: center;
  margin-bottom: var(--sp-lg);
}

.modal-header h2 {
  font-family: var(--ff-heading);
  font-size: var(--fs-h3);
  font-weight: 800;
  color: var(--clr-primary);
  margin-bottom: 4px;
}

.modal-header p {
  color: var(--clr-gray-600);
  font-size: var(--fs-sm);
}

.modal .form-group {
  margin-bottom: var(--sp-sm);
}

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


/* ============================================================
   PAGE HERO (for inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(160deg, #F6F4FF 0%, #EDE8FF 35%, #E0D6FF 60%, #F6F4FF 100%);
  padding: calc(var(--header-h) + var(--sp-xl)) 0 var(--sp-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(108, 60, 224, 0.06) 0%, transparent 60%);
  transform: translate(-50%, -50%);
}

.page-hero h1 {
  font-family: var(--ff-heading);
  font-size: var(--fs-h1);
  font-weight: 900;
  color: var(--clr-primary);
  margin-bottom: var(--sp-sm);
  position: relative;
  z-index: 1;
}

.page-hero p {
  color: var(--clr-gray-600);
  font-size: var(--fs-body);
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: var(--sp-sm);
  font-size: var(--fs-sm);
  color: var(--clr-gray-400);
  position: relative;
  z-index: 1;
}

.page-hero .breadcrumb a {
  color: #6c3ce0;
}

.page-hero .breadcrumb a:hover {
  color: var(--clr-primary);
}


/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, #2D1B69 0%, #4C2889 40%, #6C3CE0 100%);
  padding: var(--sp-xxl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.2) 0%, transparent 60%);
  transform: translate(-50%, -50%);
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-family: var(--ff-heading);
  font-size: var(--fs-h2);
  font-weight: 900;
  color: var(--clr-white);
  margin-bottom: var(--sp-sm);
}

.cta-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--fs-body);
  max-width: 550px;
  margin: 0 auto var(--sp-lg);
}

.cta-btns {
  display: flex;
  gap: var(--sp-sm);
  justify-content: center;
  flex-wrap: wrap;
}

.cta-section .btn-outline {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--clr-white);
}

.cta-section .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--clr-white);
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--clr-dark);
  color: var(--clr-white);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--grad-accent);
}

.footer-main {
  padding: var(--sp-xxl) 0 var(--sp-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--sp-xl);
}

.footer-brand .logo {
  color: var(--clr-white);
  margin-bottom: var(--sp-md);
}

.footer-brand p {
  color: var(--clr-gray-400);
  font-size: var(--fs-sm);
  line-height: 1.8;
  margin-bottom: var(--sp-md);
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--clr-gray-400);
  transition: all var(--dur-mid) var(--ease-out);
}

.footer-social a:hover {
  background: var(--grad-accent);
  border-color: transparent;
  color: var(--clr-white);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--ff-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: var(--sp-md);
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--grad-accent);
  border-radius: 2px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a {
  color: var(--clr-gray-400);
  font-size: var(--fs-sm);
  transition: all var(--dur-fast) var(--ease-out);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col a:hover {
  color: var(--clr-accent-light);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: var(--sp-md) 0;
  text-align: center;
}

.footer-bottom p {
  color: var(--clr-gray-400);
  font-size: var(--fs-sm);
}


/* ============================================================
   SCROLL-TO-TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--grad-btn);
  color: var(--clr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--dur-mid) var(--ease-out);
  box-shadow: var(--shadow-glow);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow-lg);
}


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

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

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

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

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

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

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

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

/* Stagger delays for grid items */
.stagger-1 {
  transition-delay: 0.1s;
}

.stagger-2 {
  transition-delay: 0.2s;
}

.stagger-3 {
  transition-delay: 0.3s;
}

.stagger-4 {
  transition-delay: 0.4s;
}

.stagger-5 {
  transition-delay: 0.5s;
}

.stagger-6 {
  transition-delay: 0.6s;
}


/* ============================================================
   ABOUT — Content section
   ============================================================ */
.about-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: center;
}

.about-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  min-height: 400px;
  background: var(--grad-card);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--sp-xl);
}

.about-image-inner .big-icon {
  font-size: 5rem;
  margin-bottom: var(--sp-md);
}

.about-image-inner h3 {
  font-family: var(--ff-heading);
  font-size: var(--fs-h3);
  font-weight: 800;
  color: var(--clr-primary);
}

.about-text h2 {
  font-family: var(--ff-heading);
  font-size: var(--fs-h2);
  font-weight: 800;
  color: var(--clr-primary);
  margin-bottom: var(--sp-md);
  line-height: 1.2;
}

.about-text p {
  color: var(--clr-gray-600);
  margin-bottom: var(--sp-md);
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-sm);
  margin-top: var(--sp-md);
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-accent);
  font-weight: 500;
  font-size: var(--fs-sm);
  color: var(--clr-primary);
}

.about-feature .check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-success);
  font-size: 0.8rem;
  flex-shrink: 0;
}


/* ============================================================
   SUCCESS MESSAGE
   ============================================================ */
.form-success {
  display: none;
  text-align: center;
  padding: var(--sp-lg);
}

.form-success.show {
  display: block;
}

.form-success .success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto var(--sp-md);
  color: var(--clr-success);
}

.form-success h3 {
  font-family: var(--ff-heading);
  font-weight: 700;
  color: var(--clr-primary);
  margin-bottom: 4px;
}

.form-success p {
  color: var(--clr-gray-600);
  font-size: var(--fs-sm);
}


/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Tablets */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    order: 1;
  }

  .hero-visual {
    order: 2;
  }

  .hero-subtitle {
    margin: 0 auto var(--sp-lg);
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-illustration {
    max-width: 400px;
    margin: 0 auto;
  }

  .floating-card:nth-child(1) {
    left: 0;
  }

  .floating-card:nth-child(2) {
    right: 0;
  }

  .floating-card:nth-child(3) {
    display: none;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .about-content-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    min-height: 300px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-lg);
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --header-h: 70px;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--sp-md);
    padding: var(--sp-xl);
    transition: right var(--dur-mid) var(--ease-out);
    box-shadow: -10px 0 40px rgba(108, 60, 224, 0.08);
    z-index: 1000;
    border-left: 1px solid rgba(108, 60, 224, 0.08);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-link {
    color: var(--clr-gray-600) !important;
    font-size: 1.15rem;
    text-align: center;
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid rgba(108, 60, 224, 0.06);
  }

  .nav-link:hover,
  .nav-link.active {
    color: var(--clr-primary) !important;
    background: rgba(108, 60, 224, 0.06);
    border-radius: 8px;
    border-bottom-color: transparent;
  }

  .nav-cta {
    margin-top: var(--sp-md);
    text-align: center;
    width: 100%;
    display: block;
    padding: 16px 24px;
    background: linear-gradient(135deg, #6c3ce0, #a855f7) !important;
    color: #fff !important;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(108, 60, 224, 0.3);
    border: none;
  }

  .nav-cta:hover {
    box-shadow: 0 6px 30px rgba(168, 85, 247, 0.45);
    transform: scale(1.02);
  }

  .section {
    padding: var(--sp-xl) 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-sm);
  }

  .stat-card {
    padding: var(--sp-md);
  }

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

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

  .services-detailed-grid {
    grid-template-columns: 1fr;
  }

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

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

  .timeline::before {
    left: 20px;
  }

  .timeline-dot {
    left: 20px;
  }

  .timeline-item,
  .timeline-item:nth-child(odd) {
    flex-direction: row;
    padding-left: 55px;
  }

  .timeline-content {
    width: 100%;
  }

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

  .about-features {
    grid-template-columns: 1fr;
  }

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

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

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

  .service-filter {
    gap: 8px;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
}

/* Small mobiles */
@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat-card {
    padding: var(--sp-sm);
  }

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

  .stat-icon {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }

  .modal {
    padding: var(--sp-md);
  }

  .hero h1 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 6px 14px;
  }

  .cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .cta-btns .btn {
    width: 100%;
    justify-content: center;
  }

  .scroll-top {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
  }
}

/* ── Overlay for mobile nav ── */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 46, 0.4);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--dur-mid) var(--ease-out);
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cert-img-container {
  width: 130px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cert-img-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* ============================================================
   BRAND LOGO TEXT
   ============================================================ */
.brand-text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 2px;
}

.brand-text-main {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1;
  color: var(--clr-dark);
}

.footer .brand-text-main {
  color: var(--clr-white);
}

.brand-text-tagline {
  display: flex;
  align-items: center;
  font-size: 8px;
  font-weight: 600;
  color: #777;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}

.footer .brand-text-tagline {
  color: #aaa;
}

.brand-text-line {
  flex: 1;
  height: 1px;
  background: #ccc;
}

.brand-text-line.left {
  margin-right: 6px;
}

.brand-text-line.right {
  margin-left: 6px;
}

.footer .brand-text-line {
  background: #555;
}

/* ============================================================
   COMPARISON SECTION
   ============================================================ */
.comparison-inner {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.comparison-header {
  text-align: center;
  margin-bottom: var(--sp-sm);
}

.comparison-header h3 {
  font-size: 1.8rem;
  color: var(--clr-primary);
  margin-bottom: 8px;
}

.comparison-header p {
  color: var(--clr-gray-600);
  max-width: 700px;
  margin: 0 auto;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-lg);
}

.compare-card {
  background: var(--clr-off-white);
  border-radius: var(--radius-md);
  padding: var(--sp-lg);
  border: 1px solid var(--clr-gray-200);
  position: relative;
  transition: transform 0.3s var(--ease-out);
}

.compare-card.best-choice {
  background: rgba(108, 60, 224, 0.03);
  border: 2px solid var(--clr-secondary);
  box-shadow: 0 10px 30px rgba(108, 60, 224, 0.08);
  transform: scale(1.02);
}

.compare-card.best-choice::before {
  content: 'Best Choice';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-primary);
  color: var(--clr-white);
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.compare-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--sp-md);
  padding-bottom: var(--sp-md);
  border-bottom: 1px solid var(--clr-gray-200);
}

.compare-card-header h4 {
  font-size: 1.3rem;
  color: var(--clr-primary);
  margin: 0;
}

.badge {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-red {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.badge-green {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}

.compare-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1rem;
  line-height: 1.4;
  color: var(--clr-gray-800);
}

.compare-list li .icon {
  font-weight: bold;
  font-size: 1.1rem;
  margin-top: -2px;
}

.icon.red {
  color: #ef4444;
}

.icon.green {
  color: #22c55e;
}

@media (max-width: 768px) {
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-xl);
  }

  .compare-card.best-choice {
    transform: scale(1);
    margin-top: var(--sp-sm);
  }
}

/* ============================================================
   SERVICE FEATURE LIST (Replacing Images)
   ============================================================ */
.service-feature-list {
  list-style: none;
  padding: 0;
  margin: var(--sp-md) 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--clr-gray-800);
  line-height: 1.4;
}

.service-feature-list .icon {
  color: var(--clr-secondary);
  font-size: 1.1rem;
  margin-top: -1px;
}

/* ============================================================
   SERVICE DETAIL ICON IMAGE STYLES
   ============================================================ */
.service-detail-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  transition: transform 0.3s var(--ease-out);
}

.service-detail-card:hover .service-detail-icon img {
  transform: rotate(5deg) scale(1.1);
}

@media (max-width: 480px) {
  .service-detail-icon img {
    width: 28px;
    height: 28px;
  }
}


.himanshu {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0;

  /* Background Image + Gradient */
  background:
    /* linear-gradient(135deg,
      rgba(0, 0, 0, 0.80),
      rgba(5, 20, 60, 0.75),
      rgba(0, 119, 255, 0.30)), */
    url('../images/hero-bg.png') no-repeat center center/cover;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Dark overlay */
.himanshu::before {
  content: "";
  position: relative;
  inset: 0;
  /* background: linear-gradient(to right,
      rgba(0, 0, 0, 0.55),
      rgba(0, 0, 0, 0.20)); */
  z-index: 1;
}

/* Content above bg */
.himanshu .container {
  position: relative;
  z-index: 2;
}

/* Hero content */
.himanshu-content {
  max-width: 750px;
  color: #fff;
}

.himanshu-content h1 {
  font-size: 60px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.text-gradient {
  background: linear-gradient(90deg,
      #00d4ff,
      #4facfe,
      #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.himanshu-subtitle {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 35px;
}

/* Badge */
.himanshu-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 12px 20px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  margin-bottom: 25px;
  color: #fff;
}

.pulse {
  width: 10px;
  height: 10px;
  background: #00ff84;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* Buttons */
.himanshu-btns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  padding: 15px 30px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: .4s ease;
}

.btn-primary {
  background: linear-gradient(135deg,
      #00d4ff,
      #0066ff);
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-5px);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: #fff;
  color: #000;
}

/* Mobile Responsive */
@media (max-width:768px) {

  .himanshu {
    padding: 100px 0;
    text-align: center;
  }

  .himanshu-content h1 {
    font-size: 36px;
  }

  .himanshu-subtitle {
    font-size: 15px;
  }

  .himanshu-btns {
    justify-content: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }
}


.stat-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}