/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --secondary: #64748b;
  --accent: #06b6d4;
  --success: #10b981;
  --warning: #f59e0b;
  --light: #f8fafc;
  --dark: #0f172a;
  --white: #ffffff;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg:
    0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl:
    0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --primary-light: rgba(37, 99, 235, 0.1);
  --border-radius: 8px;
  --border-radius-lg: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --glow-primary: rgba(37, 99, 235, 0.12);
  --glow-cyan: rgba(6, 182, 212, 0.12);
  --glow-indigo: rgba(99, 102, 241, 0.12);
}

/* Base Decorative Styles */
.section-decor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.decor-blob {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.2;
  animation: float-slow 25s infinite alternate ease-in-out;
}

@media (max-width: 768px) {
  .decor-blob {
    width: 300px;
    height: 300px;
    filter: blur(60px);
    opacity: 0.15;
  }
  .decor-grid-cluster {
    width: 140px;
    height: 140px;
    background-size: 16px 16px;
    opacity: 0.06;
  }
}

.blob-tr {
  top: -10%;
  right: -10%;
}
.blob-bl {
  bottom: -10%;
  left: -10%;
}
.blob-br {
  bottom: -10%;
  right: -10%;
}
.blob-tl {
  top: -10%;
  left: -10%;
}

.blob-primary {
  background: var(--primary);
}
.blob-cyan {
  background: #06b6d4;
}
.blob-indigo {
  background: #6366f1;
}

.decor-pattern {
  position: absolute;
  width: 400px;
  height: 400px;
  opacity: 0.05;
  background-image: radial-gradient(var(--secondary) 1px, transparent 1px);
  background-size: 24px 24px;
}

.pattern-tr {
  top: 10%;
  right: 5%;
}
.pattern-bl {
  bottom: 10%;
  left: 5%;
}
.pattern-dots {
  background-image: radial-gradient(var(--secondary) 2px, transparent 2px);
  background-size: 30px 30px;
}

.decor-grid-cluster {
  position: absolute;
  width: 240px;
  height: 240px;
  opacity: 0.12;
  background-image: radial-gradient(var(--secondary) 2px, transparent 2px);
  background-size: 24px 24px;
}

.grid-tr {
  top: 10%;
  right: 10%;
}
.grid-bl {
  bottom: 10%;
  left: 10%;
}
.grid-br {
  bottom: 10%;
  right: 10%;
}
.grid-tl {
  top: 10%;
  left: 10%;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -3px;
  line-height: 1.1;
  margin-bottom: 2rem;
}

h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.2;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
}

p {
  margin-bottom: 1.5rem;
  color: var(--secondary);
  line-height: 1.7;
  font-size: clamp(1rem, 2vw, 1.05rem);
  letter-spacing: -0.01em;
}

/* Navigation */
.navbar {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(25px) saturate(200%);
  -webkit-backdrop-filter: blur(25px) saturate(200%);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.85);
  padding: 0.25rem 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 24px;
  max-width: 1300px;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.navbar.scrolled .container {
  padding: 1rem 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: -0.04em;
  transition: var(--transition);
  margin-right: 10px;
}

.logo-icon {
  color: var(--primary);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo:hover {
  transform: translateX(5px);
}

.logo:hover .logo-icon {
  transform: rotate(15deg) scale(1.2);
}

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

.nav-separator {
  color: var(--secondary);
  font-weight: 300;
  user-select: none;
}

.nav-menu a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 700;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  letter-spacing: 0.02em;
  white-space: nowrap !important;
}

/* Magnetic-style Link Hover Effect */
.nav-menu a:not(.btn-cta)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  background: rgba(37, 99, 235, 0.05);
  border-radius: 8px;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: -1;
}

.nav-menu a:not(.btn-cta):hover::before {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.nav-menu a:not(.btn-cta)::after {
  content: "";
  position: absolute;
  /* bottom: -2px; */
/*   left:0px !important; */
	right:50px;
  width: 0;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  border-radius: 10px;
}


.nav-menu a.active::after {
  width: 100%;
}

.nav-menu a:hover {
  color: var(--primary);
  transform: translateY(-2px);
}


/* New header css by hitendra singh.. */


    .nav-menu {
gap: 2.7rem;
    }
.nav-item {
  position: relative;
}


/* Dropdown container */
.dropdown-menu {
  position: absolute;
  top: 140%;
  left: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(25px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
  min-width: 240px;
  border-radius: 14px;
  padding: 8px 0;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.35s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 999;
}

/* Show dropdown */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li{
  list-style: none;
}
/* Dropdown links — SAME FONT SETTINGS */
.dropdown-menu li a {
  display: block;
  padding: 0.6rem 1.2rem;
  font-family: inherit;         
  font-weight: 700;             
  font-size: 0.8rem;           
   letter-spacing: 0.02em;       
  color: var(--dark);
  position: relative;
  transition: all 0.3s ease;
  white-space: nowrap;
}

/* SAME magnetic hover background */
.dropdown-menu li a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(37, 99, 235, 0.05);
  border-radius: 10px;
  transform: scale(0.85);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: -1;
}

.dropdown-menu li a:hover::before {
  opacity: 1;
  transform: scale(1);
}

/* SAME underline animation */
.dropdown-menu li a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 10px;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.dropdown-menu li a:hover::after {
  width: 100%;
}

/* SAME hover motion */
.dropdown-menu li a:hover {
  color: var(--primary);
  transform: translateY(-2px);
}


/* end here...... */




.btn-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--white) !important;
  padding: 0.85rem 2rem !important;
  border-radius: 50px;
  font-weight: 800 !important;
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1) !important;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.btn-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.4) 0%,
    transparent 70%
  );
  transform: scale(0);
  transition: transform 0.6s ease-out;
  pointer-events: none;
}

.btn-cta:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.5);
  color: var(--white) !important;
}

.btn-cta:hover::before {
  transform: scale(1);
}

.scroll-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary),
    var(--accent),
    var(--success)
  );
  width: 0%;
  transition: width 0.1s ease;
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.5);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  transition: var(--transition);
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.4);
}

.hamburger span {
  width: 30px;
  height: 2px;
  background-color: var(--dark);
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  border-radius: 4px;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background-color: var(--primary);
}

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

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background-color: var(--primary);
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--dark);
}

.hero-decorative {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: float-blob 20s infinite alternate;
}

.blob-1 {
  width: 400px;
  height: 400px;
  background: var(--primary);
  top: -100px;
  right: -100px;
}

.blob-2 {
  width: 300px;
  height: 300px;
  background: var(--accent);
  bottom: -50px;
  left: -50px;
  animation-delay: -5s;
}

.blob-3 {
  width: 250px;
  height: 250px;
  background: var(--success);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -10s;
}

@keyframes float-blob {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(100px, 50px) scale(1.1);
  }
}

#banner-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.6;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  padding: 160px 0 100px;
}

.hero-content h1 {
  margin-bottom: 2rem;
  color: var(--white);
  font-size: clamp(3.5rem, 8vw, 6rem);
  line-height: 1;
  text-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.reveal-type {
  overflow: hidden;
  display: block;
}

.reveal-line {
  display: block;
  opacity: 0;
  transform: translateY(100%) rotateX(-20deg);
  transition: all 1.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: top;
}

.reveal-type.active .reveal-line {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}

.reveal-line:nth-child(2) {
  transition-delay: 0.1s;
}

.gradient-text {
  background: linear-gradient(135deg, var(--white) 30%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  max-width: 600px;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(30px) saturate(200%);
  -webkit-backdrop-filter: blur(30px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 2.5rem;
  transition:
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.3s ease,
    box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.card-glare {
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  transform: skewX(-25deg);
  pointer-events: none;
  z-index: 5;
  animation: glare-sweep 8s infinite ease-in-out;
}

@keyframes glare-sweep {
  0% {
    left: -150%;
  }
  30%,
  100% {
    left: 150%;
  }
}

.typing-cursor-hero {
  display: inline-block;
  color: var(--white);
  font-weight: 200;
  margin-left: 2px;
  animation: blink-hero 0.8s infinite;
  vertical-align: middle;
}

@keyframes blink-hero {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

/* Standardized Glass Card Hover */
.glass-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-12px) scale(1.03);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.stat-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
  border-radius: 16px;
  margin-bottom: 1.5rem;
  color: var(--accent);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
}

.hero-stat:hover .stat-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: var(--white);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

.stat-icon svg {
  width: 28px;
  height: 28px;
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  background: linear-gradient(135deg, var(--white) 50%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  min-width: 150px; /* Prevent layout shift during counting */
}

/* Border Beam Effect */
.glass-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(
    135deg,
    transparent 20%,
    rgba(255, 255, 255, 0.3),
    transparent 80%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

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

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.4) 0%,
    rgba(15, 23, 42, 0.8) 100%
  );
  z-index: 1;
}

/* Cinematic Animations */
.reveal-type {
  overflow: hidden;
  display: block;
}

.reveal-line {
  display: block;
  opacity: 0;
  transform: translateY(100%) rotateX(-20deg) scale(1.1);
  filter: blur(20px);
  transition: all 1.8s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: top;
}

.reveal-type.active .reveal-line {
  opacity: 1;
  transform: translateY(0) rotateX(0) scale(1);
  filter: blur(0);
}

.reveal-line:nth-child(2) {
  transition-delay: 0.2s;
}

.reveal-up {
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  filter: blur(15px);
  transition: all 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px) scale(0.95);
  filter: blur(15px);
  transition: all 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.floating {
  animation: float-refined 6s ease-in-out infinite;
}

@keyframes float-refined {
  0%,
  100% {
    transform: translateY(0) rotateX(0);
  }
  50% {
    transform: translateY(-20px) rotateX(2deg);
  }
}

.glow-effect {
  position: relative;
  overflow: hidden;
}

.glow-effect::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.2) 0%,
    transparent 70%
  );
  transform: translate(-100%, -100%);
  transition: transform 0.6s ease;
}

.glow-effect:hover::after {
  transform: translate(0, 0);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--border-radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary) 100%
  );
}

.btn-secondary {
  background: var(--white);
  color: var(--dark);
  border-color: var(--gray-300);
  box-shadow: var(--shadow);
  border-radius: 50px;
}

.btn-secondary:hover {
  background: var(--gray-50);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

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

/* Features Section */
.features {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 140px 0;
}

.features h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.features p {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.1rem;
  color: var(--secondary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-item {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 4.5rem 2.5rem;
  border-radius: 32px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
  /* Spotlight default center */
  --x: 50%;
  --y: 50%;
}

/* Spotlight Effect */
.spotlight-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    600px circle at var(--x) var(--y),
    rgba(59, 130, 246, 0.08),
    transparent 40%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

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

.feature-item:hover {
  background: rgba(255, 255, 255, 0.85);
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  border-color: rgba(59, 130, 246, 0.3);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 20px;
  color: var(--primary);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  z-index: 2;
}

.magnetic-icon-wrap {
  transform: translate(var(--mx, 0), var(--my, 0));
  transition: transform 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.feature-item:hover .feature-icon {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 15px 30px rgba(59, 130, 246, 0.2);
}

.feature-item h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1.25rem;
  transition: color 0.3s ease;
}

.feature-item p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--secondary);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.feature-item:hover p {
  opacity: 1;
}

/* Blur-In Reveal */
.features .reveal-up {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(15px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.features .reveal-up.active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.feature-item h3 {
  margin-bottom: 1rem;
  color: var(--dark);
}

.feature-item p {
  color: var(--secondary);
  line-height: 1.6;
}

/* Milestones Section */
.milestones {
  background-color: var(--white);
  padding: 140px 0;
}

.milestones h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.milestones p {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.1rem;
  color: var(--secondary);
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 0;
}

/* Background Line (Glass Track) */
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 6px;
  background: rgba(0, 0, 0, 0.03);
  transform: translateX(-50%);
  border-radius: 10px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* Active Progress Line (Plasma Fill) */
.timeline-progress {
  position: absolute;
  left: 50%;
  top: 0;
  width: 6px;
  background: linear-gradient(
    to bottom,
    var(--primary),
    var(--accent),
    var(--primary)
  );
  background-size: 100% 200%;
  transform: translateX(-50%);
  border-radius: 10px;
  transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  height: 0;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
  animation: shimmer-flow 3s linear infinite;
  z-index: 2;
}

/* Glowing Lead Head */
.timeline-progress::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 14px;
  height: 14px;
  background: var(--white);
  border: 3px solid var(--primary);
  border-radius: 50%;
  transform: translate(-50%, 50%);
  box-shadow:
    0 0 15px var(--primary),
    0 0 30px var(--primary);
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes shimmer-flow {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 0% -200%;
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    transform: translate(-50%, 50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, 50%) scale(1.3);
    opacity: 0.8;
  }
}

.timeline-item {
  margin-bottom: 6rem;
  position: relative;
  width: 100%;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 24px;
  height: 24px;
  background: radial-gradient(circle at 30% 30%, var(--white), #f0f0f0);
  border: 4px solid var(--white);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  box-shadow:
    0 0 0 4px rgba(0, 0, 0, 0.03),
    0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-item.active .timeline-dot {
  background: var(--primary);
  border-color: var(--white);
  box-shadow:
    0 0 0 6px rgba(59, 130, 246, 0.2),
    0 0 25px var(--primary);
  transform: translate(-50%, -50%) scale(1.4);
}

.timeline-content {
  width: 45%;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(30px) saturate(200%);
  -webkit-backdrop-filter: blur(30px) saturate(200%);
  padding: 3rem 2.5rem;
  border-radius: 36px;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.05),
    0 10px 15px -3px rgba(0, 0, 0, 0.03),
    inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  position: relative;
  transition: all 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  overflow: hidden;
}

/* Subtle Mesh Glow */
.timeline-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(59, 130, 246, 0.1),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: auto;
  text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: auto;
  text-align: left;
}

.timeline-item.active .timeline-content {
  background: rgba(255, 255, 255, 0.8);
  transform: translateY(-10px) scale(1.02);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.1),
    0 0 30px rgba(59, 130, 246, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.8);
  border-color: var(--primary);
}

.timeline-item.active .timeline-content::before {
  opacity: 1;
}

.timeline-content h3 {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 1rem;
  letter-spacing: -1px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.timeline-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--secondary);
  opacity: 0.8;
  margin: 0;
}

@media (max-width: 768px) {
  .timeline::before,
  .timeline-progress {
    left: 20px !important;
    transform: none !important;
  }
  .timeline-dot {
    left: 20px !important;
  }
  .timeline-content {
    width: calc(100% - 60px);
    margin-left: 60px !important;
    text-align: left !important;
    padding: 2rem 1.5rem;
  }
  .timeline-content h3 {
    font-size: 1.75rem;
  }
}

/* Visual Section - Holographic Bento Hub */
.visual {
  padding: 140px 0;
  position: relative;
  overflow: hidden;
  background: var(--white);
}

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

@media (max-width: 1024px) {
  .visual-grid {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
}

.visual-scene-wrapper {
  perspective: 2500px;
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.holographic-stack {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  animation: stackFloat 10s infinite alternate ease-in-out;
}

@keyframes stackFloat {
  from {
    transform: rotateY(-10deg) rotateX(5deg);
  }
  to {
    transform: rotateY(5deg) rotateX(-5deg);
  }
}

.glass-panel {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.panel-back {
  width: 450px;
  height: 350px;
  transform: translate(-50%, -50%) translateZ(-100px);
  opacity: 0.3;
  border-color: rgba(255, 255, 255, 0.1);
}

.panel-mid {
  width: 400px;
  height: 300px;
  transform: translate(-50%, -50%) translateZ(0);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.02);
}

.panel-front {
  width: 320px;
  height: 220px;
  transform: translate(-50%, -50%) translateZ(100px);
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.2);
}

/* AI Engine Core */
.ai-core {
  position: relative;
  width: 150px;
  height: 150px;
}

.core-pulse {
  position: absolute;
  inset: 10%;
  background: var(--primary);
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.5;
  animation: corePulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes corePulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}

.hud-ring {
  position: absolute;
  inset: 0;
  border: 2px dashed var(--accent);
  border-radius: 50%;
  opacity: 0.4;
  animation: hudRotate 15s linear infinite;
}

.hud-ring-alt {
  inset: -15px;
  border: 1px solid var(--primary);
  border-width: 1px 0 1px 0;
  animation: hudRotate 10s linear infinite reverse;
}

@keyframes hudRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Bento Info Cards */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 1.5rem;
}

.bento-item {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 32px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bento-item:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--primary);
  box-shadow: 0 30px 60px rgba(37, 99, 235, 0.1);
}

.bento-item.large {
  grid-column: span 2;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  text-align: left;
}

@media (max-width: 576px) {
  .bento-item.large {
    flex-direction: column;
    text-align: center;
  }
}

.bento-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}

.large .bento-icon {
  margin-bottom: 0;
}

.bento-item h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.bento-item p {
  font-size: 0.95rem;
  color: var(--secondary);
  line-height: 1.6;
  margin: 0;
}

.bento-stat {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -2px;
  margin-bottom: 0.5rem;
  display: block;
}

.floating-node {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 1rem 1.25rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 10;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  animation: nodeFloat 6s ease-in-out infinite;
}

@keyframes nodeFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-15px) rotate(2deg);
  }
}

.node-1 {
  top: -5%;
  right: 5%;
  animation-delay: 0s;
}
.node-2 {
  bottom: 5%;
  left: 2%;
  animation-delay: -2s;
}
.node-3 {
  top: 35%;
  right: -5%;
  animation-delay: -4s;
}

.node-icon {
  font-size: 1.5rem;
}
.node-text small {
  display: block;
  font-size: 0.7rem;
  color: var(--secondary);
}
.node-text strong {
  font-size: 1rem;
  color: var(--primary-dark);
}

.visual-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-card {
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  transition: all 0.4s ease;
}

.info-card:hover {
  /* background: rgba(255, 255, 255, 0.08); */
  transform: translateX(10px);
  cursor: pointer;
}

.info-icon-wrap {
  width: 54px;
  height: 54px;
  background: var(--primary-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.info-text h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.info-text p {
  font-size: 0.95rem;
  color: var(--secondary);
  line-height: 1.6;
  margin-bottom: 0;
  text-align: left;
}

/* Trust Section */
/* Trust Section */
.trust {
  background: linear-gradient(135deg, var(--white) 0%, #f9f9fb 100%);
  padding: 140px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.trust-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: center;
}

.trust-text h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.trust-text p {
  font-size: 1.15rem;
  color: var(--secondary);
  line-height: 1.8;
  opacity: 0.9;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.badge {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.badge:hover {
  background: rgba(255, 255, 255, 0.85);
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.badge-icon {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), transparent);
  border-radius: 14px;
  color: var(--primary);
  transition: all 0.4s ease;
}

.badge:hover .badge-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.badge-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.5px;
}

.badge-text strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.badge-text span {
  font-size: 0.9rem;
  color: var(--secondary);
  font-weight: 600;
  opacity: 0.8;
}

/* Programs Section */

/* Stats Section */
.stats {
  padding: 140px 0;
  background: #f8f9fa;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
  text-align: center;
}

.stat {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 3.5rem 2rem;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat:hover {
  background: rgba(255, 255, 255, 0.85);
  transform: translateY(-15px);
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.12);
  border-color: var(--primary);
}

.stat-icon-small {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), transparent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
}

.stat:hover .stat-icon-small {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
}

.stat-icon-small svg {
  width: 24px;
  height: 24px;
}

.stat h3 {
  font-size: 2.75rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat p {
  font-size: 1rem;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin: 0;
  opacity: 0.8;
}

/* Team Section */
.team {
  background: linear-gradient(135deg, var(--white) 0%, var(--light) 100%);
  padding: 140px 0;
}

.team .container {
  text-align: center;
}

.team h2 {
  margin-bottom: 1rem;
  color: var(--dark);
}

.team p {
  margin-bottom: 3rem;
  font-size: 1.1rem;
  color: var(--secondary);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.team-member {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.5);
  position: relative;
}

.team-member:hover {
  background: rgba(255, 255, 255, 0.85);
  transform: translateY(-20px) scale(1.02);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
  border-color: var(--primary);
}

.member-image-container {
  width: 100%;
  height: 350px;
  position: relative;
  overflow: hidden;
}

.member-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-member:hover .member-image-container img {
  transform: scale(1.1);
}

/* Image Shine Sweep */
.member-image-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transform: skewX(-25deg);
  transition: 0.7s;
}

.team-member:hover .member-image-container::after {
  left: 150%;
}

.member-socials {
  position: absolute;
  bottom: -60px;
  left: 0;
  right: 0;
  height: 60px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  transition: bottom 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-member:hover .member-socials {
  bottom: 0;
}

.member-socials a {
  color: var(--white);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.member-socials a:hover {
  opacity: 1;
  transform: translateY(-3px) scale(1.2);
  color: var(--accent);
}

.member-socials svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.5px;
}

.member-info {
  padding: 2rem 1.5rem;
  text-align: center;
}

.member-info h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.member-info p {
  font-size: 0.95rem;
  color: var(--secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0;
  opacity: 0.8;
}

/* Programs Section */
.programs {
  background: #fdfdfd;
  padding: 80px 0;
}

.programs .container {
  text-align: center;
}

.programs p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: var(--secondary);
}

.guarantee-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 40px;
  padding: 4rem;
  display: flex;
  width: 90%;
  margin: auto;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 2rem;
  overflow: hidden;
  position: relative;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 992px) {
  .guarantee-banner {
    flex-direction: column;
    padding: 3rem 2rem;
    text-align: center;
    width: 95%;
  }
}

.guarantee-banner::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 80%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.2) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.guarantee-content {
  flex: 1.2;
  max-width: 950px;
  position: relative;
  z-index: 2;
}

.guarantee-tag {
  background: linear-gradient(90deg, var(--white) 40%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  letter-spacing: 3px;
  font-size: 0.8rem;
  margin-bottom: 1.25rem;
  display: block;
}

.guarantee-content h2 {
  color: var(--white);
  font-size: 2.8rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  text-align: left;
  letter-spacing: -1.5px;
}

.guarantee-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.g-feat {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  font-weight: 500;
}

.g-feat span {
  width: 22px;
  height: 22px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.75rem;
}

.guarantee-visual {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  gap: 1.5rem;
  position: relative;
  height: 420px;
}

.guarantee-card {
  width: 220px;
  border-radius: 32px;
  padding: 2.5rem 1.75rem 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.guarantee-card:first-child {
  transform: translateY(-20px);
  animation: float-slow 6s ease-in-out infinite;
}

.guarantee-card:last-child {
  transform: translateY(20px);
  animation: float-slow 6s ease-in-out infinite reverse;
}

.card-primary {
  background: linear-gradient(180deg, var(--primary) 0%, #1d4ed8 100%);
  color: var(--white);
}

.card-accent {
  background: linear-gradient(180deg, var(--accent) 0%, #0891b2 100%);
  color: var(--white);
}

.guarantee-card p {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: inherit;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.guarantee-card h3 {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 2.5rem;
  letter-spacing: -2px;
}

.guarantee-card img {
  width: 100%;
  height: 320px;
  object-fit: contain;
  object-position: bottom;
  margin-top: auto;
  filter: drop-shadow(0 -10px 20px rgba(0, 0, 0, 0.2));
}

/* Section Header for Programs */
.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-header h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.program-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 4.5rem 3rem;
  border-radius: 32px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.5);
  text-align: center;
}

.program-card:hover {
  background: rgba(255, 255, 255, 0.85);
  transform: translateY(-15px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
  border-color: var(--primary);
}

.program-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 123, 255, 0.08);
  border-radius: 24px;
  color: var(--primary);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.program-card:hover .program-icon {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 30px rgba(0, 123, 255, 0.2);
}

.program-card h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  color: var(--dark);
}

.program-card p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--secondary);
  margin-bottom: 2.5rem;
}

@keyframes float-slow {
  0%,
  100% {
    transform: translateY(-20px);
  }
  50% {
    transform: translateY(0px);
  }
}

@media (max-width: 992px) {
  .guarantee-banner {
    flex-direction: column;
    padding: 4rem 2rem;
    text-align: center;
  }
  .guarantee-content h2 {
    text-align: center;
    font-size: 2.4rem;
  }
  .guarantee-visual {
    height: auto;
    justify-content: center;
    margin-top: 3rem;
  }
}

.why {
  background-color: var(--white);
  padding: 140px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.benefit {
  text-align: center;
  padding: 4rem 2rem;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.benefit:hover {
  background: rgba(255, 255, 255, 0.85);
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.benefit h3 {
  margin-bottom: 1rem;
  color: var(--dark);
}

.benefit p {
  color: var(--secondary);
  line-height: 1.6;
}

/* .process {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 140px 0;
}

.process-steps {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 2rem;
  position: relative;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, transparent 100%);
  z-index: 1;
}

.step {
  text-align: center;
  flex: 1;
  min-width: 220px;
  margin: 1rem;
  padding: 4rem 2rem;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 2;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.step:hover {
  background: rgba(255, 255, 255, 0.82);
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.1);
  border-color: var(--primary);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary) 0%, #0056b3 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
} */

.testimonials {
  position: relative;
  background: var(--white);
  padding: 140px 0;
  overflow: hidden;
}

.ambient-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  opacity: 0.2;
  z-index: 1;
}

.glow-1 {
  background: var(--primary);
  top: -10%;
  left: -10%;
}

.glow-2 {
  background: var(--accent);
  bottom: -10%;
  right: -10%;
}

.testimonials .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.testimonial-container {
  margin-top: 4rem;
  width: 100%;
}

.testimonial-track-overlay {
  overflow: visible;
  padding: 2rem 0;
}

.testimonial-track {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card {
  flex: 0 0 450px;
  padding: 3.5rem 3rem;
  text-align: left;
  border-radius: 40px;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0.4;
  transform: scale(0.9) translateY(20px);
  filter: blur(4px);
  position: relative;
}

.testimonial-card.active {
  opacity: 1;
  transform: scale(1.05) translateY(0);
  filter: blur(0);
  background: rgba(255, 255, 255, 0.8);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.card-quote {
  color: var(--primary);
  opacity: 0.15;
  margin-bottom: 2rem;
}

.card-rating {
  margin-bottom: 1.5rem;
  display: flex;
  gap: 4px;
}

.star {
  color: #ffb800;
  font-size: 1.25rem;
  animation: starPop 0.5s ease-out forwards;
  opacity: 0;
}

@keyframes starPop {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.testimonial-card .card-text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--dark);
  font-style: italic;
  margin-bottom: 2.5rem;
  font-weight: 500;
}

.card-author {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.author-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  border: 2px solid var(--white);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.author-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transform: skewX(-20deg);
  transition: all 0.6s ease;
}

.testimonial-card:hover .author-shine {
  left: 150%;
}

.author-info strong {
  display: block;
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 2px;
}

.author-info span {
  font-size: 0.9rem;
  color: var(--secondary);
}

.testimonial-controls {
  margin-top: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

.control-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.control-btn:hover {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
  border-color: var(--primary);
}

.testimonial-pagination {
  display: flex;
  gap: 12px;
}

.pag-dot {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.4s ease;
}

.pag-dot.active {
  width: 40px;
  background: var(--primary);
}

@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 90%;
    padding: 2.5rem 2rem;
  }
  .testimonial-card .card-text {
    font-size: 1.1rem;
  }
}
/*  */
@media (max-width: 768px) {
  .testimonial-card {
    opacity: 1;
    filter: none;
    transform: scale(1);
  }
}
.testimonial-track {
  justify-content: flex-start; /* ❗ not center */
}
.testimonial-track-overlay {
  overflow: hidden; /* ❗ */
}


.cta {
  background: #0f172a;
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(37, 99, 235, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(59, 130, 246, 0.1) 0%,
      transparent 50%
    );
  z-index: 1;
}

.cta .ambient-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  opacity: 0.25;
  z-index: 1;
  animation: float-slow 15s infinite alternate ease-in-out;
}

.cta .glow-1 {
  background: var(--primary);
  top: -20%;
  left: -20%;
  animation-delay: -2s;
}

.cta .glow-2 {
  background: #6366f1;
  bottom: -20%;
  right: -20%;
  animation-delay: -5s;
}

.cta .container {
  position: relative;
  z-index: 2;
}

.cta-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 5rem;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow:
    0 50px 120px rgba(0, 0, 0, 0.3),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.cta-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 5rem;
  align-items: center;
}

.cta-text h2 {
  font-size: 3.2rem;
  margin-bottom: 2rem;
  color: var(--white);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.cta-text p {
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
}

.cta-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 500;
}

.feature-icon-wrapper {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}

.cta-feature:hover .feature-icon-wrapper {
  background: var(--primary);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.15rem;
  font-weight: 700;
  border-radius: 18px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-large btn-icon{
margin-right:10px !important;
}

.shine-effect {
  position: relative;
  overflow: hidden;
}

.shine-effect::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -150%;
  width: 100%;
  height: 200%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transform: rotate(35deg);
  transition: all 0.8s ease;
}

.shine-effect:hover::after {
  left: 150%;
}

.cta-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  gap: 0.5rem;
}

.contact-item strong {
  color: var(--white);
  font-weight: 600;
}

@media (max-width: 992px) {
  .cta-card {
    padding: 3rem;
  }
  .cta-content {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }
  .cta-text p {
    margin-left: auto;
    margin-right: auto;
  }
  .cta-features {
    /* align-items: center; */
  }
  .cta-text h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .cta-card {
    padding: 2.5rem 1.5rem;
    border-radius: 30px;
  }
  .cta-text h2 {
    font-size: 2rem;
  }
}

/* Newsletter Section */
.newsletter {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: var(--white);
  padding: 80px 0;
}

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

.newsletter-text h3 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.newsletter-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.9;
}

.subscribe-form {
  display: flex;
  gap: 1rem;
  max-width: 500px;
}

.subscribe-form input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--border-radius);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1rem;
  backdrop-filter: blur(10px);
}

.subscribe-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.subscribe-form input:focus {
  outline: none;
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.2);
}

.privacy-note {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 1rem;
}

.footer {
  background: #0f172a;
  color: var(--white);
  padding: 100px 0 40px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer .ambient-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  opacity: 0.15;
  z-index: 1;
  animation: float-slow 20s infinite alternate ease-in-out;
}

.footer .glow-1 {
  background: var(--primary);
  top: -10%;
  left: -10%;
}

.footer .glow-2 {
  background: #6366f1;
  bottom: -10%;
  right: -10%;
  animation-delay: -10s;
}

.footer .container {
  position: relative;
  z-index: 2;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1.2fr;
  gap: 4rem;
  margin-bottom: 60px;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.logo-text span {
  color: var(--primary);
}

.brand-desc {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 320px;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  font-weight: bold;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.footer-section h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--white);
  position: relative;
}

.footer-section h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

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

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

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

.footer-contact-info p {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact-info a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.contact-icon {
  width: 36px;
  height: 36px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 40px;
}

.footer-copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.95rem;
}
.footer-copyright .polices-page a{
  text-decoration: none !important;
    color: rgba(255, 255, 255, 0.4) !important;
}

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

@media (max-width: 768px) {
  .footer {
    padding: 80px 0 30px;
  }
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-section h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .brand-desc {
    margin: 0 auto 2rem;
  }
  .social-links {
    justify-content: center;
  }
  .footer-contact-info p {
    justify-content: center;
  }
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary) 0%, #0056b3 100%);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .navbar .container {
    padding: 1rem 20px;
  }

  .nav-menu {
    position: fixed;
    left: -110%;
    top: 0;
    flex-direction: column;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    width: 280px;
    height: 100vh;
    text-align: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 20px 0 50px rgba(0, 0, 0, 0.3);
    padding: 4rem 2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

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

  .nav-menu li a {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 500;
  }

  .nav-menu li {
    margin: 1.5rem 0;
  }

  
  .hamburger {
    display: flex;
  }

  .hero .container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    padding: 100px 0 60px;
  }

  .hero-content {
    order: 2;
  }

  .hero-stats {
    order: 1;
    margin-top: 0;
  }

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

  .program-grid,
  .benefits-grid,
  .features-grid,
  .team-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .visual-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .timeline-item:nth-child(even) .timeline-content,
  .timeline-item:nth-child(odd) .timeline-content {
    left: 0;
    margin: 0;
    text-align: center;
  }

  .timeline-content::before {
    display: none;
  }

  .process-steps {
    flex-direction: column;
  }

  .step {
    margin: 1rem 0;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

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

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

  .hero-stat {
    padding: 1rem;
  }

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

  .hero-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
}

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

@media (max-width: 768px) {
  .footer {
    padding: 80px 0 30px;
  }
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-section h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .brand-desc {
    margin: 0 auto 2rem;
  }
  .social-links {
    justify-content: center;
  }
  .footer-contact-info p {
    justify-content: center;
  }
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary) 0%, #0056b3 100%);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .navbar .container {
    padding: 1rem 20px;
  }

  .nav-menu {
    position: fixed;
    left: -110%;
    top: 0;
    flex-direction: column;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    width: 280px;
    height: 100vh;
    text-align: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 20px 0 50px rgba(0, 0, 0, 0.3);
    padding: 4rem 2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

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

  .nav-menu li a {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 500;
  }

  .nav-menu li {
    margin: 1.5rem 0;
  }

  .hamburger {
    display: flex;
  }

  .hero .container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    padding: 100px 0 60px;
  }

  .hero-content {
    order: 2;
  }

  .hero-stats {
    order: 1;
    margin-top: 0;
  }

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

  .program-grid,
  .benefits-grid,
  .features-grid,
  .team-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .visual-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .timeline-item:nth-child(even) .timeline-content,
  .timeline-item:nth-child(odd) .timeline-content {
    left: 0;
    margin: 0;
    text-align: center;
  }

  .timeline-content::before {
    display: none;
  }

  .process-steps {
    flex-direction: column;
  }

  .step {
    margin: 1rem 0;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

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

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

  .hero-stat {
    padding: 1rem;
  }

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

  .hero-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }

  .reveal-type {
    font-size: 2.2rem;
  }
}

/* --- Bank Page Specific Styles --- */

.bank-hero {
  background-color: var(--dark); /* Was hardcoded deep navy */
  color: var(--white);
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
}

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

.hero-subhead {
  color: var(
    --secondary
  ); /* Was warning/gold, secondary usually fits subheads */
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.hero-title-large {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 2rem;
  font-weight: 800;
}

.hero-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.info-card {
  background: var(--white);
  color: var(--dark);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.info-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.info-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: 0;
}

/* Process Section - Checkerboard */
.process-section {
  padding: 100px 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Row wrapper to handle stack on mobile if needed, 
   but grid usually handles it. 
   We will strictly follow the image 3-col layout. */

.process-step-box {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--gray-light);
}

.process-step-box.dark {
  background: var(--dark);
  color: var(--white);
}

.process-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.process-image-box {
  background-size: cover;
  background-position: center;
  min-height: 300px;
}

/* Feature Split Sections */
.feature-split {
  padding: 80px 0;
  overflow: hidden;
}

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

.feature-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.feature-sub {
  color: var(--secondary);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}

.feature-img-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.feature-img-wrapper:hover img {
  transform: scale(1.03);
}

.dotted-bg {
  background-image: radial-gradient(#cbd5e1 1.5px, transparent 1.5px);
  background-size: 24px 24px;
}

.curved-arrow {
  position: absolute;
  bottom: 20px;
  right: -50px;
  width: 80px;
  opacity: 0.6;
  transform: rotate(10deg);
}

@media (max-width: 900px) {
  .hero-grid,
  .feature-split-grid {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .hero-cards-grid {
    grid-template-columns: 1fr; /* Stack cards on mobile? or keep 2 col? 1fr is safer */
  }
}

/* --- Why Choose Section --- */
.why-choose-section {
  padding: 80px 0;
  background-color: var(--white);
  text-align: center;
}

.why-title {
  color: var(--primary); /* Was muted red */
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.why-subtitle {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 2.5rem;
  font-weight: 500;
}

.why-text-content {
  max-width: 900px;
  margin: 0 auto 3rem;
  text-align: left;
}

.why-text-content p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.why-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.phone-large {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary); /* Matching main theme color instead of red */
}

.cta-or {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--dark);
}

.btn-red {
  background-color: var(--primary); /* Using primary brand color */
  color: white;
  padding: 1rem 3rem;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 5px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.btn-red:hover {
  background-color: var(--secondary);
  color: white;
}

/* --- DSCR Page Styles --- */

.dscr-hero {
  background-color: var(--dark);
  color: var(--white);
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}

/* Re-using hero-grid from bank styles as it's 2-col */

.dscr-hero .hero-subhead {
  color: var(--warning);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  display: block;
}

.dscr-tagline {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  font-weight: 500;
  opacity: 0.9;
}

/* Glass Card for Hero Right Side */
.glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  color: var(--white);
}

.glass-card a{
  text-decoration: none;
}
.glass-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 1rem;
  color: var(--warning);
}

.glass-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: rgba(45, 44, 44, 0.9);
}

.glass-card-footer {
  margin-top: 2rem;
  font-weight: 700;
  text-align: center;
  color: var(--white);
  font-size: 0.9rem;
}

/* Info Sections (Refi/Invest/Grow & Qualification) */
.dscr-info-section {
  padding: 80px 0;
  background-color: var(--gray-100);
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title-wrap h2 {
  font-size: 2.5rem;
  color: var(--primary); /* Brand Theme */
  font-weight: 800;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.section-title-wrap p {
  font-size: 1.2rem;
  color: var(--dark);
  font-weight: 500;
}

.info-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.content-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border-top: 4px solid var(--primary); /* Theme accent top border */
}

.content-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.card-subtitle {
  text-align: center;
  display: block;
  font-size: 0.85rem;
  color: var(--secondary);
  margin-bottom: 2rem;
  font-style: italic;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--dark-gray);
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary); /* Checkmark theme color */
  font-weight: bold;
}

.two-col-list-container {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Internal columns for the list if needed */
  gap: 1rem;
}

@media (max-width: 900px) {
  .info-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Multi-Family Page Specific --- */
.multi-hero {
  padding: 100px 0;
  background-color: var(--white);
  overflow: hidden;
}

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

.multi-hero-text h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--dark);
  font-weight: 800;
}

.multi-hero-sub {
  color: var(--dark);
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: block;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.multi-hero-desc {
  font-size: 1rem;
  color: var(--secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.benefit-pill-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefit-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.benefit-icon-check {
  background: var(--primary); /* Theme Primary */
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.benefit-item-text strong {
  color: var(--dark);
  display: block;
  margin-bottom: 0.25rem;
}

.benefit-item-text p {
  font-size: 0.9rem;
  color: var(--secondary);
  line-height: 1.5;
  margin: 0;
}

.centered-advantage-section {
  padding: 80px 0;
  text-align: center;
  background: var(--white);
}

.advantage-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary); /* Theme Primary */
  margin-bottom: 1rem;
  line-height: 1.2;
}

.advantage-subtitle {
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 3rem;
  font-weight: 600;
}

.advantage-text-block {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.advantage-text-block p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: var(--secondary);
}

@media (max-width: 900px) {
  .multi-hero-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Airbnb/VRBO Page Specific --- */
.airbnb-hero {
  position: relative;
  padding: 150px 0;
  background-size: cover;
  background-position: center;
  background-image:
    linear-gradient(to right, rgba(10, 36, 99, 0.95), rgba(10, 36, 99, 0.8)),
    url("https://picsum.photos/id/1039/1600/900"); /* Placeholder rustic house */
  color: white;
}

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

.airbnb-hero-text h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.airbnb-hero-sub {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  display: block;
}

.airbnb-hero-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 2.5rem;
  border-radius: 16px;
  color: var(--dark);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.airbnb-hero-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1rem;
  text-align: center;
}

.airbnb-hero-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--dark-gray);
  margin-bottom: 0;
  text-align: center;
}

/* --- Modular Homes Page Specific --- */
.modular-hero {
  position: relative;
  padding: 150px 0;
  background-size: cover;
  background-position: center;
  background-image:
    linear-gradient(to right, rgba(10, 36, 99, 0.9), rgba(10, 36, 99, 0.7)),
    url("assets/img/modular-homes-header-1.jpg"); /* Modular homes header */
  color: white;
}

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

.modular-hero-text h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.modular-hero-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 16px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.modular-hero-card p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 0;
  text-align: center;
  font-weight: 500;
}

/* --- Foreign National Page Specific --- */
.foreign-hero {
  position: relative;
  padding: 150px 0;
  background-size: cover;
  background-position: center;
  background-image:
    linear-gradient(to right, rgba(10, 36, 99, 0.9), rgba(10, 36, 99, 0.7)),
    url("assets/img/foreign-hero-bg.jpg"); /* Foreign National header */
  color: white;
}

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

.foreign-hero-text h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.foreign-hero-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 2.5rem;
  border-radius: 16px;
  color: var(--dark);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.foreign-hero-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--dark-gray);
  margin-bottom: 0;
  text-align: center;
}

/* --- Blog Page Specific --- */
.blog-hero {
  position: relative;
  padding: 120px 0;
  background-size: cover;
  background-position: center;
  background-image:
    linear-gradient(to right, rgba(10, 36, 99, 0.9), rgba(10, 36, 99, 0.7)),
    url("https://picsum.photos/id/4/1600/900"); /* Placeholder office/writing */
  color: white;
  text-align: center;
}

.blog-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.blog-hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
}

.blog-grid-section {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-card-img {
  height: 220px;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}

.blog-card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-date {
  font-size: 0.85rem;
  color: var(--secondary);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}

.blog-card-content h3 {
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.blog-card-content p {
  font-size: 0.95rem;
  color: var(--dark-gray);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.read-more-link {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  transition: gap 0.2s ease;
}

.read-more-link:hover {
  gap: 0.8rem;
}

/* Pagination placeholder styling */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.page-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: white;
  color: var(--dark);
  font-weight: 600;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.page-link.active,
.page-link:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* --- Contact Page Specific --- */
.contact-hero {
  position: relative;
  padding: 120px 0;
  background-size: cover;
  background-position: center;
  background-image:
    linear-gradient(to right, rgba(10, 36, 99, 0.95), rgba(10, 36, 99, 0.8)),
    url("https://picsum.photos/id/1033/1600/900"); /* Placeholder city/phone */
  color: white;
  text-align: center;
}

.contact-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.contact-hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
}

.contact-section {
  padding: 80px 0;
  background-color: var(--white);
}

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

.contact-info-panel h2 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 700;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-detail-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 50px;
  height: 50px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-detail-text h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--dark);
}

.contact-detail-text p,
.contact-detail-text a {
  font-size: 1rem;
  color: var(--dark-gray);
  line-height: 1.5;
  text-decoration: none;
}

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

.map-wrapper {
  width: 100%;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-form-panel {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form-panel h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--dark);
  font-weight: 700;
}

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

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--dark);
  font-size: 0.95rem;
}

.form-control {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

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

/* --- Welcome Popup Styles --- */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

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

.popup-content {
  background: linear-gradient(
    145deg,
    rgba(15, 23, 42, 0.95),
    rgba(10, 36, 99, 0.98)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.5),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  padding: 3rem;
  border-radius: 20px;
  max-width: 600px;
  width: 90%;
  text-align: center;
  position: relative;
  transform: scale(0.9);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  color: var(--white);
}

.popup-overlay.active .popup-content {
  transform: scale(1);
}

.popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.popup-header h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.popup-header h2 span {
  color: var(--primary);
  display: block;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.popup-body p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.popup-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.popup-btn-primary {
  background: var(--primary);
  color: white;
  padding: 1rem;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
  width: 100%;
}

.popup-btn-primary:hover {
  background: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.popup-divider {
  display: flex;
  align-items: center;
  margin: 1rem 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.popup-divider::before,
.popup-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.popup-divider span {
  padding: 0 1rem;
}

.popup-input-group {
  display: flex;
  gap: 0.5rem;
}

.popup-input-group input {
  flex: 1;
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-size: 1rem;
}

.popup-input-group input:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.1);
}

.popup-btn-secondary {
  background: #22c55e;
  color: white;
  padding: 0 1.5rem;
  border-radius: 10px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.popup-btn-secondary:hover {
  background: #16a34a;
  transform: translateY(-2px);
}

.secure-note {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.quote-btn-capture{
  margin-top: 30px;
}

/*   Capture page */

.capture-page main {
  padding-top: 80px; /* Offset for fixed navbar */
}

.offer-banner-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--white);
  padding: 1.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.offer-banner-header .container {
  position: relative;
  z-index: 2;
}
.offer-tag-line {
  padding-top: 40px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  opacity: 0.9;
  margin-bottom: 0.5rem;
  display: block;
}
.offer-rate-title {
  letter-spacing: 0px;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.capture-hero-section {
  background: var(--dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  color: var(--white);
}
.capture-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at top right, var(--glow-primary), transparent),
    radial-gradient(circle at bottom left, var(--glow-cyan), transparent);
  z-index: 1;
}
.capture-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.capture-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  max-width: 1000px;
  margin: 0 auto 3rem;
  line-height: 1.2;
}

.benefits-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
  text-align: left;
}
.benefit-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.benefit-item span {
  color: var(--accent);
  font-size: 1.25rem;
}

.hotline-cta-bar {
  background: var(--gray-100);
  padding: 5rem 0;
  text-align: center;
}
.hotline-cta-bar h2 {
  margin-bottom: 1.5rem;
  color: var(--dark);
}
.hotline-number-display {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 900;
  color: var(--primary);
  text-decoration: none;
  display: block;
  margin: 1.5rem 0;
  letter-spacing: -2px;
  transition: var(--transition);
}
.hotline-number-display:hover {
  transform: scale(1.05);
  color: var(--accent);
}

.callback-input-group {
  display: flex;
  max-width: 500px;
  margin: 2rem auto;
  gap: 0.5rem;
}
.callback-input-group input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: 2px solid var(--gray-200);
  border-radius: 50px;
  font-size: 1rem;
  transition: var(--transition);
}
.callback-input-group input:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 15px var(--glow-primary);
}

.form-section-capture-styled {
  padding: 100px 0;
  background: var(--white);
  position: relative;
}
.form-glass-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid var(--gray-200);
  border-radius: 32px;
  box-shadow: var(--shadow-xl);
}
.form-glass-wrapper h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.2rem;
}

.styled-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.styled-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.styled-form-group label {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
}
.styled-form-group input,
.styled-form-group select {
  padding: 1rem;
  border: 1px solid var(--gray-300);
  border-radius: 12px;
  font-size: 1rem;
  transition: var(--transition);
}
.styled-form-group input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--glow-primary);
}
.full-width-form {
  grid-column: span 2;
}
.btn-submit-form {
  grid-column: span 2;
  margin-top: 1.5rem;
}

.three-perks-section {
  padding: 100px 0;
  background: var(--gray-50);
}
.perks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.legal-disclaimer-styled {
  padding: 4rem 0;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  color: var(--secondary);
  font-size: 0.9rem;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .styled-form-grid {
    grid-template-columns: 1fr;
  }
  .full-width-form,
  .btn-submit-form {
    grid-column: span 1;
  }
  .form-glass-wrapper {
    padding: 2rem;
  }
}

/* Premium Feature Grid Styles */
.premium-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  text-align: left;
}

.premium-feature-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: all 0.3s ease;
}

.premium-feature-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.premium-feature-item .icon-wrap {
  width: 40px;
  height: 40px;
  background: var(--primary-light);
  color: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.premium-feature-item .icon-wrap svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.5px;
}

.premium-feature-item p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}

/* Light version for white backgrounds */
.premium-feature-item.light {
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.premium-feature-item.light:hover {
  background: var(--gray-50);
  border-color: var(--primary);
}

.premium-feature-item.light p {
  color: var(--dark);
}

@media (max-width: 768px) {
  .premium-feature-grid {
    grid-template-columns: 1fr;
  }
}
/* Coverage Map Styles */
.coverage-map-section {
  padding: 100px 0;
  background: var(--white);
  color: var(--dark);
  position: relative;
  overflow: hidden;
}

.map-particles-canvas {
  display: none;
}

.coverage-map-section > .container {
  position: relative;
  z-index: 1;
}

.map-container {
  margin: 4rem auto;
  position: relative;
  aspect-ratio: 1.8 / 1;
  background: url("assets/img/us-map-time-zone.jpg") no-repeat center center;
  background-size: contain;
  border-radius: 24px;
}

.usa-map-dots {
  display: none;
}

/* ── State Pin Base ── */
.state-pin {
  position: absolute;
  z-index: 10;
  cursor: pointer;
  animation: none !important;
}
.state-pin:hover {
  z-index: 50;
}

/* ── Pin Wrapper ── */
.pin-dot-wrapper {
  position: relative;
  width: 24px;
  height: 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Hide old ripple rings */
.pin-dot-glow {
  display: none !important;
}
.pin-dot-wrapper::before {
  display: none !important;
}

/* ── 📍 Pin Head (teardrop shape) ── */
.pin-dot-inner {
  width: 22px;
  height: 22px;
  border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
  background: radial-gradient(circle at 38% 32%, #f87171, #bf3939 60%, #7f1d1d);
  position: relative;
  z-index: 2;
  border: 2px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 3px 8px rgba(0,0,0,0.35);
  flex-shrink: 0;
  transition: none !important;
  transform: none !important;
  box-shadow: 0 2px 8px rgba(191,57,57,0.4);
}

/* White glare spot */
.pin-dot-inner::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  top: 3px;
  left: 4px;
}

/* ── Pointed needle tip ── */
.pin-dot-wrapper::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 12px solid #7f1d1d;
  margin-top: -3px;
}

/* ── Label Bubble ── */
.pin-label-bubble {
  position: absolute;
  background: rgba(8, 28, 54, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  padding: 0.4rem 0.85rem;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 3px solid rgba(191, 57, 57, 0.85);
  top: 0;
  left: 30px;
  transform: scale(0.95);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.state-pin:hover .pin-label-bubble {
  transform: scale(1);
  opacity: 1;
}

.pin-label-bubble::after {
  content: "";
  position: absolute;
  left: -7px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 7px solid rgba(8, 28, 54, 0.88);
}

/* All color variants → same red pin */
.state-pin.orange .pin-dot-inner,
.state-pin.cyan .pin-dot-inner,
.state-pin.purple .pin-dot-inner,
.state-pin.green .pin-dot-inner,
.state-pin.red .pin-dot-inner {
  background: radial-gradient(circle at 38% 32%, #f87171, #bf3939 60%, #7f1d1d);
  box-shadow: 0 2px 8px rgba(191,57,57,0.4);
}

.state-pin.orange .pin-dot-wrapper::after,
.state-pin.cyan .pin-dot-wrapper::after,
.state-pin.purple .pin-dot-wrapper::after,
.state-pin.green .pin-dot-wrapper::after,
.state-pin.red .pin-dot-wrapper::after {
  border-top-color: #7f1d1d;
}

/* Disable all animations */
@keyframes sonar-ring {}
@keyframes pin-float {}

@media (max-width: 900px) {
  .map-container {
    transform: scale(0.6);
    transform-origin: center top;
    height: 400px;
    margin-bottom: -100px;
  }
}

@media (max-width: 600px) {
  .map-container {
    transform: scale(0.4);
    height: 200px;
    margin-bottom: -150px;
  }
}

/* Broker section css */

.broker-partner {
  padding: 120px 0;
  background: linear-gradient(135deg, #0f172a 0%, #111827 100%);
}

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

.broker-left h2 {
	color:#fff;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.broker-left p {
  margin-bottom: 2rem;
  opacity: 0.8;
}

.broker-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.5rem; /* reduced spacing */
  margin-top: 1.5rem;
}
.broker-benefit {
  display: flex;
  align-items: center; /* centers tick vertically */
  gap: 0.8rem;
}

.broker-benefit span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  height: 26px;
  background: #2367E9;
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
  font-weight: bold;
}


.broker-cta {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}

.broker-card {
  padding: 2rem;
}

.broker-card ul {
  margin: 1.5rem 0;
  padding-left: 1rem;
  line-height: 1.8;
}

.broker-stat {
  margin-top: 2rem;
  font-size: 1.5rem;
  font-weight: bold;
}
 
/* ===== FLOATING SIDE BUTTONS ===== */
.floating-side-btns {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 9999;
}

.floating-side-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 14px 14px 14px 16px;
  border-radius: 12px 0 0 12px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fff !important;
  min-width: 54px;
  width: 54px;
  overflow: hidden;
  white-space: nowrap;
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.35s ease,
              transform 0.35s ease;
  box-shadow: -4px 4px 20px rgba(0,0,0,0.25);
  cursor: pointer;
  border: none;
  outline: none;
}
 
/* ===== FLOATING SIDE BUTTONS ===== */
.floating-side-btns {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 9999;
}

.floating-side-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 14px 18px 14px 16px;
  border-radius: 12px 0 0 12px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fff !important;
  width: 165px;
  white-space: nowrap;
  box-shadow: -4px 4px 20px rgba(0,0,0,0.25);
  cursor: pointer;
  border: none;
  outline: none;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.floating-side-btn:hover {
  transform: translateX(-4px);
  box-shadow: -6px 6px 28px rgba(0,0,0,0.35);
  color: #fff !important;
}

.floating-side-btn .fsb-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.2);
  border-radius: 8px;
  font-size: 1rem;
}

.floating-side-btn .fsb-label {
  opacity: 1;
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}

.floating-side-btn:hover .fsb-label {
  opacity: 1;
}

/* Call Now button */
.fsb-call {
  background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
}

/* Apply Now button */
.fsb-apply {
  background: linear-gradient(135deg, #0f172a 0%, #1d4ed8 100%);
}

/* Pulse animation on call button */
.fsb-call .fsb-icon {
  animation: fsb-pulse 2.5s infinite;
}

@keyframes fsb-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(255,255,255,0); }
}

@media (max-width: 768px) {
  .floating-side-btns {
    top: auto;
    bottom: 10px !important;
    right: 18px !important;
    transform: none;
    flex-direction: row;
    gap: 10px;
  }

  .floating-side-btn {
    border-radius: 50px;
    width: auto;
    padding: 12px 18px;
    gap: 8px;
  }

  .floating-side-btn:hover {
    width: auto;
  }

  .floating-side-btn .fsb-label {
    opacity: 1;
    font-size: 0.7rem;
  }
}



/* --- Consolidated Responsive Styles --- */

/* ============================= */
/* Tablet Layouts (max-width: 900px) */
/* ============================= */
@media (max-width: 900px) {
  /* Global Grids */
  .hero-grid,
  .feature-split-grid,
  .process-grid,
  .hero-cards-grid,
  .info-cards-grid,
  .contact-grid,
  .trust-content,
  .visual-grid,
  .program-grid,
  .benefits-grid,
  .features-grid,
  .team-grid,
  .testimonial-grid,
  .blog-grid {
    grid-template-columns: 1fr !important;
    gap: 10px;
  }

  /* Hero */
  .hero-content,
  .dscr-hero .hero-text-content,
  .bank-hero .hero-text-content {
    text-align: center;
  }

  .hero-subhead {
    display: inline-block;
  }

  .hero-stats {
    justify-content: center;
    margin-top: 3rem;
  }

  #hero .hero-stats {
    justify-content: center;
    gap: 20px;
  }

  #hero .container {
    flex-direction: column;
    text-align: center;
    gap: 21px;
  }

  #hero .hero-content {
    max-width: 100%;
  }

  #hero h1 {
    font-size: 44px;
    line-height: 1.2;
  }

  #hero p {
    font-size: 16px;
  }

  #hero .hero-stat {
    width: 260px;
  }

  /* Visual */
  .visual .visual-content {
    grid-template-columns: 1fr;
  }

  .visual .holographic-stack {
    margin: 0 auto;
    max-width: 500px;
  }

  /* Guarantee */
  .programs .guarantee-banner {
    flex-direction: column;
    padding: 3rem 1rem;
    text-align: center;
    height: auto;
    gap: 1rem;
  }

  .programs .guarantee-content h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 0.5rem;
  }

  .programs .guarantee-visual {
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
    height: auto;
  }
  .programs .guarantee-features {
    gap: 2px;
  }
  /* Same padding merged */
  .dscr-info-section .content-card,
  .stats .glass-card {
    padding: 1rem;
  }
  .team .glass-card {
    padding: 1.5rem;
  }
  .features .glass-card h3 {
    padding-bottom: 0px;
    margin-bottom: 0.5rem;
  }
  .stats .glass-card h3 {
    padding-bottom: 0px;
    margin-bottom: 0.5rem;
  }
  .team .glass-card h3 {
    padding-bottom: 0px;
    margin-bottom: 0.5rem;
  }

  .cta .feature-icon {
    margin: 0 auto 0.4rem;
  }

  .visual .bento-item {
    transform: none !important;
    align-items: center;
    padding: 1.5rem;
    border-radius: 10px;
  }

  .testimonials {
    padding: 20px;
  }

  .footer .footer-contact-info p {
    justify-content: left;
  }

  .footer .footer-section h3 {
    text-align: left;
  }
  .visual .bento-item p {
    text-align: center;
  }
}

/* ============================= */
/* Mobile Layouts (max-width: 768px) */
/* ============================= */
@media (max-width: 768px) {
  .bank-hero .container {
    padding: 0 20px;
  }

  h1 {
    font-size: 2.5rem !important;
  }
  h2 {
    font-size: 2rem !important;
  }
  h3 {
    font-size: 1.5rem !important;
  }

  /* Navbar */
  .navbar .container {
    padding: 1rem 20px;
  }

  .nav-menu {
    position: fixed;
    left: -110%;
    top: 0;
    flex-direction: column;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    width: 100%;
    height: 100vh;
    text-align: center;
    justify-content: flex-start;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 30px;
    overflow-y: auto;
    gap: 2px;
    transition: all 0.4s ease;
    z-index: 1000;
  }

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

  /* Hide separators on mobile */
  .nav-menu .nav-separator {
    display: none !important;
  }

  /* Each nav item full width */
  .nav-menu > li > a {
    display: block;
    padding: 12px 20px;
    font-size: 1rem;
    color: #ffffff;
    letter-spacing: 0.05em;
  }

  /* CTA button on mobile */
  .nav-menu .nav-cta {
    margin-top: 8px;
  }

  /* Mobile Dropdown */
  .nav-item.dropdown {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .nav-item.dropdown > a {
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
  }

  .nav-item.dropdown > a::after {
    content: "▾";
    font-size: 2rem;
    transition: transform 0.3s ease;
    display: inline-block;
  }

  .nav-item.dropdown.open > a::after {
    transform: rotate(180deg);
    margin-left: 20px;
  }

  /* Mobile dropdown menu — hidden by default */
  .nav-item.dropdown .dropdown-menu {
    position: static !important;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transform: none !important;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    width: 80%;
    margin: 0 auto;
    padding: 0;
    box-shadow: none;
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
  }

  /* Mobile dropdown open state */
  .nav-item.dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 510px;
    padding: 8px 0;
    width: 100%;
  }

  .nav-item.dropdown .dropdown-menu li a {
    color: #ffffff !important;
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }

  .nav-item.dropdown .dropdown-menu li a:hover {
    color: var(--primary) !important;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
  }

  .hero,
  .dscr-hero,
  .bank-hero,
  .contact-hero {
    padding: 120px 0 60px;
  }

  #hero {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .hero .container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-title-large {
    font-size: 2.5rem;
  }

  .feature-split-grid {
    display: flex;
    flex-direction: column;
  }

  /* Footer */
  .footer {
    padding: 20px 0 30px;
  }

  .footer-content {
    grid-template-columns: 1fr !important;
    text-align: center;
    gap: 2.5rem;
  }

  .footer-left,
  .footer-links,
  .footer-contact-info {
    align-items: center;
  }

  .footer-logo {
    justify-content: center;
  }

  /* Timeline */
  .milestones .timeline::after {
    left: 30px;
  }

  .milestones .timeline-item {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }

  .milestones .timeline-item:nth-child(even) {
    left: 0;
  }

  .milestones .timeline-item:nth-child(even) .timeline-dot,
  .timeline-item:nth-child(odd) .timeline-dot {
    left: 17px;
    right: auto;
  }

  .milestones .timeline-item:nth-child(even) .timeline-content,
  .timeline-item:nth-child(odd) .timeline-content {
    text-align: left;
  }

  /* Video */
  #hero #banner-video {
    height: 260px;
    object-fit: cover;
  }

  /* Hero content */
  #hero h1 {
    font-size: 32px;
    line-height: 1.15;
  }

  #hero .reveal-line {
    display: block;
  }

  #hero p {
    font-size: 14px;
    line-height: 1.6;
  }

  /* CTA */
  #hero .hero-ctas {
    flex-direction: column;
    gap: 12px;
  }

  #hero .hero-ctas a {
    width: 100%;
    text-align: center;
  }

  /* Stats */
  #hero .hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  #hero .hero-stat {
    width: 100%;
    max-width: 320px;
  }

  /* Disable animations */
  #hero .floating,
  #hero .tilt-card,
  #hero .reveal-up,
  #hero .reveal-right,
  #hero .reveal-type,
  #hero .blob {
    animation: none !important;
    transform: none !important;
    transition: none !important;
  }

  #hero .hero-decorative {
    display: none;
  }
}

/* ============================= */
/* Small Devices (max-width: 480px) */
/* ============================= */
@media (max-width: 480px) {
  .btn,
  .btn-secondary,
  .btn-cta,
  .btn-red {
    width: 100%;
    display: block;
    text-align: center;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-stat {
    width: 100%;
  }

  .contact-section .contact-detail-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .popup-input-group {
    flex-direction: column;
  }

  .popup-content {
    padding: 2rem 1rem;
    width: 95%;
  }

  /* Same padding merged */
  #team,
  .trust,
  .stats,
  .features,
  .milestones {
    padding: 20px 0;
  }

  #team h2 {
    font-size: 26px;
    line-height: 1.3;
  }

  #team > .container > p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 2rem;
    padding: 0 10px;
  }

  #team .team-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  #team .team-member {
    border-radius: 10px;
  }

  #team .member-image-container {
    height: 260px;
  }

  #team .member-info {
    padding: 0.5rem 1rem;
  }

  #team .member-info h3 {
    font-size: 1.3rem;
  }

  #team .member-info p {
    font-size: 0.8rem;
    letter-spacing: 1px;
  }

  #team .member-socials {
    bottom: 0;
    height: 52px;
  }

  #team .member-socials a {
    opacity: 1;
  }

  #team .tilt-card,
  #team .reveal-up,
  #team .team-member:hover,
  #team .team-member:hover img,
  #team .member-image-container::after {
    animation: none !important;
    transform: none !important;
    transition: none !important;
  }

  #team .section-decor,
  .trust .section-decor {
    display: none;
  }

  /* Trust */
  .trust .trust-content {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    text-align: center;
  }

  .trust-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .trust-text p {
    font-size: 1rem;
    line-height: 1.6;
    padding: 0 10px;
  }

  .trust-badges {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Badge merged */
  .trust .badge {
    padding: 0.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
  }

  .trust .badge-text {
    text-align: center;
  }

  .trust .badge-icon {
    width: 48px;
    height: 48px;
  }

  .trust .badge-icon svg {
    width: 22px;
    height: 22px;
  }

  .trust .badge-text strong {
    font-size: 1.15rem;
  }
  .trust .badge-text span {
    font-size: 0.85rem;
  }

  .trust .badge,
  .trust .badge:hover,
  .trust .badge:hover .trust .badge-icon,
  .reveal-left,
  .reveal-right {
    animation: none !important;
    transform: none !important;
    transition: none !important;
  }

  .airbnb-hero-content,
  .modular-hero-content,
  .foreign-hero-content {
    display: flex;
    flex-direction: column;
  }

  .hero-ctas .btn-secondary {width: 70%;}
  .hero-ctas .btn-cta {width: 70% !important;}

  .stat-icon {margin: 0 auto;display: flex;margin-bottom: 5px;}

  .milestones .timeline-content h3 {text-align: center;}

  .guarantee-card img {height: 100px;}

  .visual {padding: 20px 0;}

  .cta-features {padding-left: 35px;gap: 10px;margin-bottom: 10px;}
  .stat-icon {margin: 0 auto 0.5rem auto;}
  .team .member-info { padding: 0rem 1.5rem;}
  .cta .cta-card .btn {max-width: 350px;}
}

/* ============================= */
/* Tablet / Small Laptop (max-width: 991px) */
/* ============================= */
@media (max-width: 991px) {
  .hero .container { flex-direction: column; text-align: center;}
  .hero .hero-content { width: 100%; order: 1;}
  .hero .hero-stats {width: 100%;order: 2;margin-top: 30px;}
  #hero #banner-video {height: 570px;object-fit: cover;}
  .hero-grid {gap: 0rem;}
  .hero .hero-content p { margin-bottom: 0.5rem;}

  .multi-hero,.modular-hero,.foreign-hero,.centered-advantage-section { padding: 50px 0;}
  .blog-hero,.contact-hero {padding: 100px 0 50px;}
  .foreign-hero-card {padding: 1.5rem;}

  .airbnb-hero {padding-top: 50px;padding: 50px 0;}
  .airbnb-hero .airbnb-hero-card {padding: 1.5rem;}
  .airbnb-hero-content,.modular-hero-content,.foreign-hero-content {  gap: 1rem;}
  
  .bank-hero {padding: 100px 0 50px;}
  .hero .reveal-upp { margin-bottom: 15px !important;}
  .hero-text-content .btn-cta {margin-bottom: 20px;}
  
  .blog-grid-section,.contact-section {padding: 50px 0;text-align: center;}

  .benefit-pill-list {gap: 0.5rem;}

  .gap {margin-top: 0.5rem !important;}

  .centered-advantage-section {margin-bottom: 10px;}
  .section-title-wrap,.centered-advantage-section .advantage-subtitle {margin-bottom: 1rem;}
  .centered-advantage-section .container div a {padding: 10px 4rem !important;font-size: 1.5rem;}
  .centered-advantage-section .advantage-text-block p,.centered-advantage-section p,.feature-content p {  margin-top: 10px !important;margin-bottom: 10px !important;}
  .centered-advantage-section .advantage-text-block p { margin-top: 1rem;}
  .centered-advantage-section h4 {margin-bottom: 10px !important;}

  .process-section { padding: 20px 0; margin-bottom: 0rem;}
  .process-section h2 {margin-bottom: 10px;}
  .process-section .process-step-box {padding: 1rem; }

  .why-choose-section {padding: 20px 0;}
  .why-choose-section .why-subtitle,.why-choose-section .why-text-content p {margin-bottom: 10px;}
  .why-choose-section .why-title { font-weight: 700; max-width: 800px;}
  .why-choose-section .why-cta-row {gap: 20px;}

  .process-icon { margin-bottom: 2px; }
  .stats .glass-card {padding: 1.5rem;border-radius: 5px;}
  .team {padding: 2rem 0;}
  .programs {padding: 2rem 0 !important;}
  .stats .glass-card ul { gap: 1rem !important;}
  .programs .reveal-up { margin-bottom: 0rem;}
  #faq {padding: 1rem 0 !important;}
  .property-types {padding: 1rem 0 !important;}
  .team-grid .team-member {/* animation: none !important; */transform: none !important;}
  #who-is-for {padding: 1rem 0 !important;}
  .stats .stats-grid {gap: 1.5rem;}
  .milestones .timeline-item {margin-bottom: 2rem;}
  
  .stats .glass-card p {margin-bottom: 0rem;}

  .visual .bento-grid {display: flex;flex-direction: column;gap: 0.5rem;}
  .visual .bento-item.large {gap: 1rem;}
  .visual h2 { position: absolute !important; top: 30px !important; text-align: center !important; max-width: 350px !important;}
  .visual-grid {gap: 0rem;}

  .cta .cta-text h2,.cta .cta-text p {margin-bottom: 1rem;}
  .cta .cta-text p {font-size: 15px;}
  .cta {padding: 70px 0;}
  .cta-content,.contact-details-list {gap: 0rem !important; }
  .contact-section .contact-detail-item {gap: 0.5rem;}
  .contact-section .form-control { padding: 10px;}
  .contact-section .btn {width: 50%; }
  .contact-section #contactForm {display: flex;flex-direction: column;justify-content: center}
  .contact-section .form-group {display: flex;justify-content: center;}
  .contact-section .form-control { width: 232px; border-radius: 5px;}
  .contact-section textarea.form-control {min-height: 80px;}
  .contact-section .contact-form-panel {padding: 20px;border-radius: 10px;}
  .cta .cta-content { gap: 10px;}  

  .dscr-info-section .advantage-text-block {margin-top: 2px !important;}
  .dscr-info-section div {margin-top: 2px !important;}
  .dscr-info-section { padding: 20px 0;}
  .dscr-hero .dscr-tagline,.bank-hero .hero-title-large {margin-bottom: 10px;}
  .dscr-info-section .dscr-text { margin-top: 10px !important;}
  .dscr-hero .glass-card {padding: 1.5rem;}
  .dscr-hero .glass-card-footer {margin-top: 10px;}
  .dscr-hero .glass-card p {margin-bottom: 10px;}
  .feature-split .dscr-info-section,.feature-split {  padding: 20px 0 !important;}
  .feature-split .feature-content h2 {margin-bottom: 0.5rem;}

  .cta-contact-info {padding-top: 0.5rem;gap: 0rem;}
 
  .cta .cta-card {border-radius: 10px;padding: 15px 10px;}
 
  .milestones .timeline-content {padding: 1rem 0.5rem;border-radius: 10px; }
  .milestones .timeline-content p {line-height: 1.2;}
  .guarantee-card { width: 300px; border-radius: 10px;}
  .guarantee-card h3 {margin-bottom: 1.5rem;}
  .guarantee-card p {margin-bottom: -3px;}
  .btn-large {border-radius: 10px; }
  .milestones .timeline-content h3 {margin-bottom: 2px;}
  .cta .cta-text h2 {font-size: 20px !important;}
  .blog-card-content h3 {margin-bottom: 0.5rem;}
  .features { padding: 2rem 0 !important;}
  .programs .section-decor .reveal-up {margin-bottom: 1rem !important;}
  .programs .container { text-align: left;}

  .features .glass-card {padding: 10px !important;border-radius: 10px;}
  .programs .glass-card { padding: 2rem !important;}
  
  #faq .faq-summary { padding: 12px;}
  .multi-hero-grid {gap: 2rem; }

  .testimonials .container {text-align: left;}
  .testimonials .testimonial-card .card-text {margin-bottom: 10px;}
  .testimonials .card-quote {margin-bottom: 2px;}
  .testimonials .glass-card {padding: 16px;border-radius: 10px;text-align: center; }
  .testimonials .card-rating {display: flex;justify-content: center;gap: 2px;margin-bottom: 10px;}
  .testimonials .card-author {display: flex;flex-direction: column;gap: 10px;}
  .testimonials .testimonial-track {justify-content: flex-start;/* justify-content: center; */ }

  .popup-actions .popup-btn-secondary {padding: 18px 1.5rem;}
  .popup-overlay .popup-body p { margin-bottom: 1rem; font-size: 16px;}
  .popup-overlay .popup-header h2 {margin-bottom: 10px; }
  .popup-actions {gap: 10px; }
 
  .footer .footer-contact-info p { margin-bottom: 0.09rem;}
  .footer .footer-links { gap: 0.2rem !important;}
  .footer .footer-content {gap: 0.5rem !important; }
  .footer .brand-desc {margin-bottom: 0.5rem;}
  .footer .footer-section h3::after {left: 0%;transform: none;}
}
@media (max-width: 768px) {
  .testimonial-track-overlay {overflow: hidden;}
  .testimonial-card {margin-inline: auto; }
}


/* Hitendra Singh */

 
/* ===== FLOATING SIDE BUTTONS ===== */
.floating-side-btns {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 9999;
}

.floating-side-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 14px 14px 14px 16px;
  border-radius: 12px 0 0 12px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fff !important;
  min-width: 54px;
  width: 54px;
  overflow: hidden;
  white-space: nowrap;
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.35s ease,
              transform 0.35s ease;
  box-shadow: -4px 4px 20px rgba(0,0,0,0.25);
  cursor: pointer;
  border: none;
  outline: none;
}
 
/* Hitendra Singh  */

/* ===== FLOATING SIDE BUTTONS ===== */
.floating-side-btns {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 9999;
}

.floating-side-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 14px 18px 14px 16px;
  border-radius: 12px 0 0 12px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fff !important;
  width: 165px;
  white-space: nowrap;
  box-shadow: -4px 4px 20px rgba(0,0,0,0.25);
  cursor: pointer;
  border: none;
  outline: none;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.floating-side-btn:hover {
  transform: translateX(-4px);
  box-shadow: -6px 6px 28px rgba(0,0,0,0.35);
  color: #fff !important;
}

.floating-side-btn .fsb-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.2);
  border-radius: 8px;
  font-size: 1rem;
}

.floating-side-btn .fsb-label {
  opacity: 1;
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}

.floating-side-btn:hover .fsb-label {
  opacity: 1;
}

/* Call Now button */
.fsb-call {
  background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
}

/* Apply Now button */
.fsb-apply {
  background: linear-gradient(135deg, #0f172a 0%, #1d4ed8 100%);
}

/* Pulse animation on call button */
.fsb-call .fsb-icon {
  animation: fsb-pulse 2.5s infinite;
}

@keyframes fsb-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(255,255,255,0); }
}

@media (max-width: 768px) {
  .floating-side-btns {
    top: auto;
    bottom: 20px;
    right: 12px;
    transform: none;
    flex-direction: row;
    gap: 10px;
  }

  .floating-side-btn {
    border-radius: 50px;
    width: auto;
    padding: 12px 18px;
    gap: 8px;
  }

  .floating-side-btn:hover {
    width: auto;
  }

  .floating-side-btn .fsb-label {
    opacity: 1;
    font-size: 0.7rem;
  }
}

@keyframes fsb-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(255,255,255,0); }
}

@media (max-width: 768px) {
  .floating-side-btns {
    top: auto;
    bottom: 20px;
    right: 12px;
    transform: none;
    flex-direction: row;
    gap: 10px;
  }

  .floating-side-btn {
    border-radius: 50px;
    width: auto;
    padding: 12px 18px;
    gap: 8px;
  }

  .floating-side-btn:hover {
    width: auto;
  }

  .floating-side-btn .fsb-label {
    opacity: 1;
    font-size: 0.7rem;
  }
}
