/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* scroll-behavior removed - handled by Lenis.js */

/* ============================================
   PREMIUM SPLASH SCREEN - Cinematic Intro
   ============================================ */

.splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #ffffff;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Prevent scrolling during splash */
body.splash-active {
  overflow: hidden;
  height: 100vh;
}

.splash-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

/* Logo Container */
.splash-logo-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
}

.splash-logo {
  width: 280px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.1));
}


@media (max-width: 768px) {
  .splash-logo {
    width: 200px;
  }
}


/* Elegant Shadow-Based Spinner */
.splash-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}

.loader {
  color: #0368fd;
  font-size: 45px;
  text-indent: -9999em;
  overflow: hidden;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  position: relative;
  transform: translateZ(0);
  animation: mltShdSpin 1.7s infinite ease, round 1.7s infinite ease;
}

@keyframes mltShdSpin {
  0% {
    box-shadow: 0 -0.83em 0 -0.4em,
      0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em,
      0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }

  5%,
  95% {
    box-shadow: 0 -0.83em 0 -0.4em,
      0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em,
      0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }

  10%,
  59% {
    box-shadow: 0 -0.83em 0 -0.4em,
      -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em,
      -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
  }

  20% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em,
      -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em,
      -0.749em -0.34em 0 -0.477em;
  }

  38% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em,
      -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em,
      -0.82em -0.09em 0 -0.477em;
  }

  100% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em,
      0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
}

@keyframes round {
  0% {
    transform: rotate(0deg)
  }

  100% {
    transform: rotate(360deg)
  }
}


/* Animated Background Elements */
.splash-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  opacity: 0;
}

.bg-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at center,
      rgba(3, 104, 253, 0.08) 0%,
      rgba(3, 104, 253, 0.02) 50%,
      transparent 100%);
  animation: float-circle 20s ease-in-out infinite;
}

.bg-circle-1 {
  width: 400px;
  height: 400px;
  top: -10%;
  right: -5%;
  animation-duration: 15s;
}

.bg-circle-2 {
  width: 300px;
  height: 300px;
  bottom: -5%;
  left: -5%;
  animation-duration: 20s;
  animation-delay: -5s;
}

.bg-circle-3 {
  width: 250px;
  height: 250px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-duration: 18s;
  animation-delay: -10s;
}

@keyframes float-circle {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(20px, -20px) scale(1.05);
  }

  50% {
    transform: translate(-15px, 15px) scale(0.95);
  }

  75% {
    transform: translate(15px, 10px) scale(1.02);
  }
}

@media (max-width: 768px) {
  .bg-circle-1 {
    width: 250px;
    height: 250px;
  }

  .bg-circle-2 {
    width: 200px;
    height: 200px;
  }

  .bg-circle-3 {
    width: 150px;
    height: 150px;
  }
}

/* Cinematic Overlay for Depth */
.splash-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center,
      transparent 0%,
      rgba(0, 0, 0, 0.03) 100%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
}

/* Animation States */
.splash-screen.fade-out {
  pointer-events: none;
}

.splash-screen.hidden {
  display: none;
}

/* ============================================
   END SPLASH SCREEN
   ============================================ */

body {
  font-family: 'Manrope', sans-serif;
  color: #1a1a2e;
  background: #f8f5f0;
  overflow-x: hidden;
  line-height: 1.6;
}

.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 2rem;
  /* Reduced from 4rem for better use of space */
}

@media (min-width: 1600px) {

  .container,
  .nav-container,
  .hero-content,
  .top-bar-container,
  .faq-container-new {
    padding: 0 1.5rem !important;
    /* Minimal side gap on ultra-wide screen as requested */
    max-width: 1550px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

/* Navigation */
/* Modern Navigation Update */
.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  z-index: 1000;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0.8rem 0;
  border-bottom: none;
}

.nav.scrolled {
  position: fixed;
  padding: 0.1rem 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(3, 104, 253, 0.1);
}

.nav-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.05));
}

.nav.scrolled .nav-logo-img {
  height: 38px;
}

@media (max-width: 950px) {
  .nav {
    padding: 0.6rem 0;
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0 1.5rem;
  }

  .nav-logo-img {
    height: 40px;
  }
}

.nav-menu {
  display: flex;
  gap: 3.5rem;
  list-style: none;
  align-items: center;
}

@media (max-width: 1400px) {
  .nav-container {
    padding: 0 2.5rem;
  }

  .nav-menu {
    gap: 1.5rem;
    /* Further reduced from 2rem */
  }
}

@media (max-width: 1100px) {
  .nav-container {
    padding: 0 1.5rem;
  }

  .nav-menu {
    gap: 1.2rem;
  }

  .nav-link {
    font-size: 0.85rem;
  }
}

@media (max-width: 1200px) {
  .nav-menu {
    gap: 1.5rem;
  }

  .nav-link {
    font-size: 0.9rem;
  }

  .nav-cta {
    padding: 0.7rem 1.8rem;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    background: #ffffff;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    flex-direction: column;
    padding: 8rem 2rem;
    gap: 2.2rem;
    box-shadow: -15px 0 45px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
  }

  .nav-menu.active {
    right: 0;
  }

  /* Backdrop Overlay effect when menu is open */
  .nav-menu.active::before {
    content: '';
    position: fixed;
    top: 0;
    left: -100vw;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    pointer-events: none;
    z-index: -1;
  }
}

.nav-link {
  color: #1e293b;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-family: 'Outfit', sans-serif;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.5rem 0;
}

/* Subtle Link Indicator Line */
.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #0368fd;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateX(-50%);
  border-radius: 4px;
}

/* The Arrow Indicator */
.nav-link::after {
  content: '→';
  font-family: inherit;
  font-size: 1.1rem;
  color: #0368fd;
  opacity: 0;
  transform: translateX(-15px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover {
  color: #0368fd;
  letter-spacing: 0.08em;
  transform: translateX(-8px);
  /* Slide to make room for arrow */
}

.nav-link:hover::before {
  width: 30%;
}

.nav-link:hover::after {
  opacity: 1;
  transform: translateX(5px);
}

.nav-cta {
  text-decoration: none;
  padding: 0.9rem 2.4rem;
  background: #1a1a2e;
  background: linear-gradient(135deg, #1a1a2e 0%, #0368fd 100%);
  color: #ffffff;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 10px 30px rgba(3, 104, 253, 0.2);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  z-index: 1001;
  /* Above mobile menu overlay */
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-cta:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 15px 45px rgba(3, 104, 253, 0.4);
  background: linear-gradient(135deg, #0368fd 0%, #0d3889 100%);
}

.nav-cta:hover::before {
  opacity: 1;
}


@media (max-width: 950px) {
  .nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.6rem;
    font-size: 0.8rem;
    margin-right: 1.2rem;
    margin-left: auto;
    background: linear-gradient(135deg, #0368fd 0%, #0d3889 100%);
    box-shadow: 0 8px 15px rgba(3, 104, 253, 0.2);
    border-radius: 100px;
    z-index: 1002;
    transform: none !important;
    /* No translateY on mobile for clean fit */
  }
}

@media (max-width: 480px) {
  .nav-cta {
    padding: 0.5rem 0.9rem;
    font-size: 0.7rem;
    margin-right: 0.6rem;
    letter-spacing: -0.2px;
  }
}


.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  background: rgba(3, 104, 253, 0.05);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.hamburger:hover {
  background: rgba(3, 104, 253, 0.1);
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #1a1a2e;
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
  background: #fdfdfd;
}

.hero-bg-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
  background-image: url('assets/images/bgimageneww.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Technical Dot Grid - Refined */
.dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(3, 104, 253, 0.15) 1px, transparent 1px);
  background-size: 35px 35px;
  mask-image: radial-gradient(circle at 40% 40%, black, transparent 90%);
  -webkit-mask-image: radial-gradient(circle at 40% 40%, black, transparent 90%);
  opacity: 0.5;
}

/* Cinematic Glow Orbs */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  z-index: 0;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(3, 104, 253, 0.1) 0%, transparent 70%);
  top: -20%;
  right: -10%;
  animation: orbFloat 25s ease-in-out infinite alternate;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
  bottom: -15%;
  left: -5%;
  animation: orbFloat 30s ease-in-out infinite alternate-reverse;
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(3, 104, 253, 0.08) 0%, transparent 70%);
  top: 30%;
  left: 20%;
  animation: orbFloat 20s ease-in-out infinite alternate;
  animation-delay: -5s;
}

@keyframes orbFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(50px, -30px) scale(1.1);
  }

  100% {
    transform: translate(-30px, 50px) scale(0.9);
  }
}

/* Subtle Shimmer Overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, transparent 100%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.6' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.02;
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 768px) {
  .hero {
    padding: 6rem 1.5rem 3rem;
  }
}

.hero-content {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

@media (max-width: 1200px) {
  .hero-content {
    gap: 2rem;
  }
}

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.hero-legacy-pillar {
  display: inline-flex;
  align-items: center;
  gap: 1.8rem;
  margin-bottom: 1.2rem;
  animation: slideDown 0.8s ease-out;
  position: relative;
}

.pillar-year {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #1a1a2e;
  letter-spacing: -0.05em;
  line-height: 1.1;
  /* Improved from 1 */
  position: relative;
  display: flex;
  align-items: center;
}

.pillar-year::after {
  content: '';
  margin-left: 1.5rem;
  width: 2px;
  height: 25px;
  background: linear-gradient(to bottom, #0368fd, transparent);
  border-radius: 2px;
}

.pillar-label {
  font-family: 'Outfit', sans-serif;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: #64748b;
  opacity: 0.8;
  line-height: 1.2;
}

@media (max-width: 480px) {
  .hero-legacy-pillar {
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .pillar-year {
    font-size: 1.6rem;
  }

  .pillar-year::after {
    margin-left: 0.8rem;
    height: 18px;
  }

  .pillar-label {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 24px;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(15px) saturate(150%);
  -webkit-backdrop-filter: blur(15px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 1.5rem;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.04),
    inset 0 0 0 1px rgba(255, 255, 255, 0.3);
  animation: badgeEntrance 0.8s cubic-bezier(0.16, 1, 0.3, 1) backwards;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.hero-badge span {
  position: relative;
  z-index: 2;
}

.hero-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.6),
      transparent);
  transform: skewX(-20deg);
  animation: badgeShimmer 6s infinite ease-in-out;
  z-index: 1;
}

@keyframes badgeShimmer {
  0% {
    left: -150%;
  }

  20% {
    left: 150%;
  }

  100% {
    left: 150%;
  }
}

@keyframes badgeEntrance {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  /* Success Green for "trusted/live" status */
  border-radius: 50%;
  position: relative;
  display: block;
}

.badge-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: #10b981;
  opacity: 0.4;
  animation: badgePulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes badgePulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }

  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

.hero-title {
  font-family: 'Manrope', sans-serif;
  font-size: 4.8rem;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1.8rem;
  letter-spacing: -0.02em;
  color: #1a1a2e;
  animation: slideUp 0.8s ease-out 0.2s backwards;
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
}

.gradient-text {
  background: linear-gradient(135deg, #0368fd 0%, #0d3889 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 10px rgba(3, 104, 253, 0.2));
}

.hero-description {
  font-size: 1.35rem;
  color: #4b5563;
  margin-bottom: 3.5rem;
  max-width: 650px;
  line-height: 1.7;
  animation: slideUp 0.8s ease-out 0.4s backwards;
}

@media (max-width: 768px) {
  .hero-description {
    font-size: 1.1rem;
  }
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 4rem;
  animation: slideUp 0.8s ease-out 0.6s backwards;
}

@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
  }
}

.btn-primary {
  padding: 1.1rem 2.8rem;
  background: linear-gradient(135deg, #0368fd 0%, #0d3889 100%);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 25px rgba(3, 104, 253, 0.25);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.3),
      transparent);
  transition: all 0.6s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(3, 104, 253, 0.4);
  filter: brightness(1.1);
}

@media (max-width: 480px) {
  .btn-primary {
    padding: 0.9rem 2rem;
    font-size: 0.95rem;
  }
}

.btn-secondary {
  padding: 1rem 2.5rem;
  background: transparent;
  color: #1a1a2e;
  border: 2px solid #1a1a2e;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #1a1a2e;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(26, 26, 46, 0.2);
}

@media (max-width: 480px) {
  .btn-secondary {
    padding: 0.9rem 2rem;
    font-size: 0.95rem;
  }
}

.hero-stats {
  display: flex;
  gap: 3rem;
  animation: fadeIn 0.8s ease-out 0.8s backwards;
}

@media (max-width: 480px) {
  .hero-stats {
    gap: 1.5rem;
  }
}

.stat-item h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #0368fd 0%, #0d3889 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.1rem;
}

@media (max-width: 768px) {
  .stat-item h3 {
    font-size: 2rem;
  }
}

.stat-item p {
  font-size: 0.9rem;
  color: #6b7280;
}

.stat-divider {
  width: 1px;
  background: #e5e7eb;
}

/* Hero Visual — Clean 2-column grid with Premium Aesthetics */
.hero-visual {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  align-content: center;
  max-width: 480px;
  margin-left: 1.5rem;
  animation: fadeIn 1s ease-out 0.6s backwards;
  z-index: 5;
  transform: none !important;
}

/* Background Glow Orb for Hero Visual — Deep Cinematic Depth */
.hero-visual::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140%;
  height: 140%;
  background: radial-gradient(circle,
      rgba(3, 104, 253, 0.12) 0%,
      rgba(3, 104, 253, 0.05) 40%,
      transparent 75%);
  filter: blur(60px);
  z-index: -1;
  pointer-events: none;
}

@media (max-width: 1024px) {
  .hero-visual {
    max-width: 480px;
    gap: 1.5rem;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-visual {
    display: grid;
    grid-template-columns: repeat(2, minmax(140px, 1fr));
    gap: 1rem;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    justify-content: center;
    align-items: stretch;
    height: auto;
    animation: none !important; /* Disable fade-in or float on parent */
  }

  .floating-card {
    min-width: unset;
    width: 100%;
    min-height: 130px;
    transform: none !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    margin: 0;
    animation: none !important; /* Completely kill floating on mobile */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); /* Simpler shadow on mobile */
  }

  .card-5 {
    grid-column: 1 / -1;
    max-width: 180px;
    justify-self: center;
    animation: none !important;
  }
}

.floating-card {
  position: relative;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(25px) saturate(200%);
  -webkit-backdrop-filter: blur(25px) saturate(200%);
  padding: 1.8rem 1.5rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.04),
    inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  animation: none !important; /* Completely disabled as per user request */
  overflow: hidden;
}

.floating-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0368fd, #e94560);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.floating-card:hover::after {
  opacity: 1;
}

.floating-card:hover {
  transform: translateY(-10px) rotate(0deg) scale(1.02) !important;
  background: #ffffff;
  box-shadow: 0 30px 60px -15px rgba(3, 104, 253, 0.15);
  z-index: 20;
}

.floating-card.card-1 {
  animation-delay: 0s;
  transform: rotate(-4deg);
}

.floating-card.card-2 {
  animation-delay: 2s;
  transform: rotate(4deg);
}

.floating-card.card-3 {
  animation-delay: 4s;
  transform: rotate(2deg);
}

.floating-card.card-4 {
  animation-delay: 6s;
  transform: rotate(-3deg);
}

.floating-card.card-5 {
  animation-delay: 8s;
  grid-column: span 2;
  max-width: 220px;
  /* Thinner 5th card */
  margin: 0 auto;
  transform: rotate(0deg) !important;
}

.floating-card .card-icon {
  font-size: 2rem;
  /* Scaled down icon */
  margin-bottom: 0.75rem;
  filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.08));
  transition: transform 0.4s ease;
}

.floating-card:hover .card-icon {
  transform: scale(1.1) translateY(-3px);
}

.floating-card h4 {
  font-size: 1.1rem;
  /* Compact typography */
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: #1a1a2e;
  letter-spacing: -0.01em;
}

.floating-card p {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 500;
}

@keyframes float-hero {

  0%,
  100% {
    transform: translateY(0) rotate(var(--rot, 0deg));
  }

  50% {
    transform: translateY(-15px) rotate(var(--rot, 0deg));
  }
}

/* Individual rotation variables for float animation */
.card-1 {
  --rot: -3deg;
}

.card-2 {
  --rot: 3deg;
}

.card-3 {
  --rot: 2deg;
}

.card-4 {
  --rot: -2deg;
}

.card-5 {
  --rot: 0deg;
}

.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  animation: fadeIn 1s ease-out 1s backwards;
}

.scroll-indicator span {
  font-size: 0.85rem;
  color: #6b7280;
}

.scroll-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, #e94560, transparent);
  animation: scrollDown 2s ease-in-out infinite;
}

/* Sections */
.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

@media (max-width: 768px) {
  .section-header {
    margin-bottom: 3rem;
  }
}

@media (max-width: 480px) {
  .section-header {
    margin-bottom: 2rem;
  }
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(3, 104, 253, 0.1);
  color: #0368fd;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

@media (max-width: 480px) {
  .section-badge {
    font-size: 0.75rem;
    padding: 0.4rem 1.2rem;
    margin-bottom: 1rem;
  }
}

.section-title {
  font-family: 'Manrope', sans-serif;
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 2rem;
  }
}

.section-description {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 700px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .section-description {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .section-description {
    font-size: 0.95rem;
  }
}


/* About Company Section */
.about-company {
  padding: 8rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #faf7f3 100%);
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .about-company {
    padding: 4rem 0;
  }
}

.about-company::before {
  content: '';
  position: absolute;
  top: 0;
  left: -10%;
  width: 40%;
  height: 100%;
  background: radial-gradient(circle, rgba(3, 104, 253, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

@media (max-width: 768px) {
  .about-content {
    gap: 3rem;
  }
}

/* Company Story */

/* Redesigned About Story */
.about-story-new {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

/* Visual Collage Side (Left) */
.story-visual-side {
  position: relative;
}

.story-img-collage {
  display: flex;
  position: relative;
  gap: 15px;
}

.collage-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.img-1 {
  width: 55%;
  height: 400px;
  transform: translateY(30px);
}

.img-2 {
  width: 50%;
  height: 320px;
  margin-top: -30px;
}

.collage-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.collage-img:hover img {
  transform: scale(1.08);
}

/* Floating Green Badge */
.experience-badge-new {
  position: absolute;
  bottom: -20px;
  left: 20%;
  background: #10b981;
  /* Premium Green */
  color: #fff;
  padding: 1.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.3);
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.badge-number {
  font-size: 2.2rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  line-height: 1;
}

.badge-label {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
  opacity: 0.95;
}

/* Narrative Side (Right) */
.story-text-side {
  text-align: left;
}

.story-subtitle {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #10b981;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.subtitle-line {
  width: 30px;
  height: 2px;
  background: #10b981;
}

.story-main-title {
  font-family: 'Outfit', sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.story-description p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 1.5rem;
  max-width: 580px;
}

/* Mobile Adjustments */
@media (max-width: 1200px) {
  .about-story-new {
    gap: 60px;
  }

  .story-main-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 950px) {
  .about-story-new {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 80px;
  }

  .story-visual-side {
    max-width: 500px;
    margin: 0 auto;
  }

  .story-text-side {
    text-align: center;
  }

  .story-subtitle {
    justify-content: center;
  }

  .story-description p {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .img-1 {
    height: 300px;
  }

  .img-2 {
    height: 240px;
  }

  .story-main-title {
    font-size: 2.2rem;
  }

  .experience-badge-new {
    padding: 1rem 1.5rem;
    left: 10%;
    bottom: -10px;
  }

  .badge-number {
    font-size: 1.8rem;
  }
}




/* Global Presence */
.global-presence {
  text-align: center;
}

.global-presence h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1a1a2e;
}

@media (max-width: 768px) {
  .global-presence h3 {
    font-size: 2rem;
  }
}

.presence-description {
  font-size: 1.1rem;
  color: #6b7280;
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .presence-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}

.presence-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

@media (max-width: 1024px) {
  .presence-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .presence-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.presence-card {
  background: #ffffff;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  /* Added subtle border */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  /* Softer shadow */
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
}

@media (max-width: 768px) {
  .presence-card {
    padding: 2rem 1.5rem;
  }
}

.presence-card:hover {
  transform: translateY(-8px);
  border-color: rgba(3, 104, 253, 0.2);
  box-shadow: 0 20px 50px rgba(3, 104, 253, 0.12);
  /* Branded shadow */
}

.presence-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .presence-icon {
    font-size: 2.5rem;
  }
}

.presence-card h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .presence-card h4 {
    font-size: 1.25rem;
  }
}

.presence-card p {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.6;
}

/* Company Highlights: Modern Iconic Layout - Branded Section */
.company-highlights-modern {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  padding: 5rem 3.5rem;
  margin-top: 4rem;
  background: #06639e;
  /* Requested branded blue background */
  border-radius: 40px;
  box-shadow: 0 40px 80px rgba(6, 99, 158, 0.25);
  position: relative;
  overflow: hidden;
}

.company-highlights-modern::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.highlight-item {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.item-icon-wrapper {
  width: 65px;
  height: 65px;
  background: rgba(255, 255, 255, 0.15);
  /* More visible on dark blue */
  backdrop-filter: blur(10px);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.item-icon-wrapper.icon-accent {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.highlight-item:hover .item-icon-wrapper {
  transform: translateY(-8px) scale(1.1);
  background: #ffffff;
  color: #06639e;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.item-text h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.item-text p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  /* Light semi-transparent text for description */
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .company-highlights-modern {
    grid-template-columns: repeat(2, 1fr);
    padding: 4rem 2.5rem;
    gap: 3rem;
  }
}

@media (max-width: 640px) {
  .company-highlights-modern {
    grid-template-columns: 1fr;
    padding: 3rem 2rem;
    gap: 2.5rem;
  }
}


/* Global Presence (3D Earth) */
.global-presence-wrapper {
  position: relative;
  background: transparent;
  /* Light background */
  color: #1e293b;
  width: 100%;
}

#globe-container {
  width: 100%;
  height: 100vh;
  position: absolute;
  /* Changed from fixed to absolute for GSAP pinning */
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
  /* Allow scrolling */
}

/* 
  When using GSAP Pinning, the pinned element gets wrapped. 
  We will rely on GSAP handles, but default styling ensures visibility.
*/

.scroll-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.scroll-section {
  min-height: 75vh;
  /* Reduced height for faster scroll traversal */
  display: flex;
  align-items: center;
  justify-content: flex-start;
  /* Text on left or alternate */
  padding: 0 10%;
  box-sizing: border-box;
}

.country-info {
  background: rgba(255, 255, 255, 0.85);
  /* Increased opacity */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  max-width: 380px;
  /* Slightly wider */
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.country-info .card-image {
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.country-info .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.country-info:hover .card-image img {
  transform: scale(1.05);
}

.country-info .card-content {
  padding: 1rem 2rem;
}

.scroll-section.active .country-info {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.country-info .country-flag {
  height: 0.7em;
  width: auto;
  margin-right: 12px;
  vertical-align: middle;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.country-info h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 2rem;
  /* Adjusted for card */
  margin-bottom: 0.5rem;
  color: #1e293b;
  display: flex;
  align-items: center;
}

.country-info p {
  font-size: 1.1rem;
  color: #475569;
}

/* Alternate Layout for variety */
.scroll-section:nth-child(even) {
  justify-content: flex-end;
}

/* Mobile Tweaks */
@media (max-width: 768px) {

  /* Enable 3D Globe on Mobile */
  #globe-container {
    display: block;
    height: 75vh;
    /* Increased from 50vh for a bigger, more prominent globe */
  }

  .global-presence-wrapper {
    display: block !important;
    position: relative;
    overflow: visible;
  }

  .scroll-content {
    margin-top: 0;
    position: relative;
    z-index: 2;
  }

  .scroll-section {
    min-height: 60vh;
    /* Slightly reduced for faster traversal */
    display: flex;
    justify-content: center !important;
    align-items: center;
    padding: 1.5rem 1rem;
  }

  /* Premium country cards for mobile */
  .country-info {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
    width: 90%;
    max-width: 320px;
    margin: 0 auto;
    flex-direction: column !important;
    text-align: center;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow:
      0 20px 50px rgba(0, 0, 0, 0.12),
      0 4px 12px rgba(3, 104, 253, 0.06),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
  }

  /* Blue accent line at top */
  .country-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0368fd, #38bdf8, #0368fd);
    z-index: 2;
    border-radius: 22px 22px 0 0;
  }

  .scroll-section.active .country-info {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
  }

  .country-info .card-image {
    width: 100%;
    height: 180px;
    min-height: 180px;
    border-bottom: none;
    position: relative;
    overflow: hidden;
  }

  .country-info .card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to top, rgba(255,255,255,0.97), transparent);
    z-index: 1;
  }

  .country-info .card-image img {
    border-radius: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .country-info .card-content {
    padding: 1.2rem 1.5rem 1.5rem;
  }

  .country-info h3 {
    font-size: 1.5rem;
    font-weight: 800;
    justify-content: center;
    margin-bottom: 0.5rem;
    color: #1e293b;
    letter-spacing: -0.01em;
  }

  .country-info .country-flag {
    height: 1em;
    margin-right: 10px;
    border-radius: 3px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  }

  .country-info p {
    font-size: 0.92rem;
    color: #64748b;
    line-height: 1.5;
    font-weight: 500;
  }
}


/* Products Section - Modern Card Grid */
.products {
  padding: 8rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #faf8f5 100%);
}

@media (max-width: 768px) {
  .products {
    padding: 4rem 0;
  }
}

/* New Card Grid Layout */
.products-grid-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

@media (max-width: 1200px) {
  .products-grid-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .products-grid-cards {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
  }
}

/* Modern Product Card */
.product-card-modern {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(26, 26, 46, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card-modern:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(26, 26, 46, 0.12);
}

/* Product Card Image */
.product-card-image {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

@media (max-width: 768px) {
  .product-card-image {
    height: 260px;
    padding: 1rem;
  }
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card-modern:hover .product-card-image img {
  transform: scale(1.05);
}

/* Specific sizing for flagship product */
[data-product="equalerp"] .product-card-image {
  padding: 0.5rem;
}

[data-product="equalerp"] .product-card-image img {
  transform: scale(1.08);
}

[data-product="equalerp"]:hover .product-card-image img {
  transform: scale(1.15);
}

/* Product Card Overlay */
.product-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(3, 104, 253, 0.92) 0%, rgba(13, 56, 137, 0.88) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product-card-modern:hover .product-card-overlay {
  opacity: 1;
}

.view-details {
  color: #ffffff;
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transform: translateY(10px);
  transition: transform 0.4s ease;
}

.product-card-modern:hover .view-details {
  transform: translateY(0);
}

.view-details svg {
  transition: transform 0.3s ease;
}

.product-card-modern:hover .view-details svg {
  transform: translateX(5px);
}

/* Product Card Content */
.product-card-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

@media (max-width: 768px) {
  .product-card-content {
    padding: 1.5rem;
  }
}

.product-card-title {
  font-family: 'Manrope', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 1rem;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .product-card-title {
    font-size: 1.75rem;
  }
}

.product-card-description {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
}

@media (max-width: 768px) {
  .product-card-description {
    font-size: 0.95rem;
  }
}

/* Product Card Features */
.product-card-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.product-card-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #4b5563;
}

.product-card-features li svg {
  flex-shrink: 0;
  color: #0368fd;
}

/* Product Tags */
.product-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(3, 104, 253, 0.1);
  color: #0368fd;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-tag.beauty-tag {
  background: rgba(212, 175, 55, 0.15);
  color: #d4af37;
}

.product-tag.insight-tag {
  background: rgba(99, 108, 191, 0.15);
  color: #636cbf;
}

/* Old Product Card Styles - Keep for backward compatibility */
.product-image {
  position: relative;
  height: 500px;
}

@media (max-width: 1024px) {
  .product-image {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .product-image {
    height: 300px;
  }
}

.device-mockup {
  position: absolute;
  background: linear-gradient(135deg, #242442 0%, #1a1a2e 100%);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(26, 26, 46, 0.3);
  padding: 1rem;
}

.device-mockup.desktop {
  width: 85%;
  height: 70%;
  top: 10%;
  left: 5%;
  border-radius: 15px;
}

@media (max-width: 768px) {
  .device-mockup.desktop {
    width: 100%;
    height: 60%;
  }
}

.device-mockup.mobile {
  width: 35%;
  height: 85%;
  bottom: 5%;
  right: 5%;
  border-radius: 25px;
  padding: 0.5rem;
}

@media (max-width: 768px) {
  .device-mockup.mobile {
    width: 40%;
  }
}

.device-mockup.mobile-large {
  width: 50%;
  height: 90%;
  top: 5%;
  left: 10%;
  border-radius: 30px;
  padding: 0.75rem;
}

.device-mockup.mobile-small {
  width: 45%;
  height: 75%;
  bottom: 10%;
  right: 5%;
  border-radius: 25px;
  padding: 0.5rem;
}

.mockup-screen {
  width: 100%;
  height: 100%;
  background: #f8f5f0;
  border-radius: 10px;
  overflow: hidden;
}

.mockup-content {
  width: 100%;
  height: 100%;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .mockup-content {
    padding: 1rem;
    gap: 1rem;
    grid-template-columns: 120px 1fr;
  }
}

/* Scoped Blue Theme for Equal Plus Page */
body.equal-plus-theme .logo-eq {
  color: #636cbf;
}

body.equal-plus-theme .nav-link::after {
  background: #636cbf;
}

body.equal-plus-theme .nav-link:hover {
  color: #636cbf;
}

body.equal-plus-theme .hero::before {
  background: radial-gradient(circle, rgba(99, 108, 191, 0.05) 0%, transparent 70%);
}

body.equal-plus-theme .hero-badge {
  background: rgba(99, 108, 191, 0.1);
  color: #636cbf;
}

body.equal-plus-theme .badge-dot {
  background: #636cbf;
}

body.equal-plus-theme .gradient-text {
  background: linear-gradient(135deg, #636cbf 0%, #57a0ef 50%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

body.equal-plus-theme .btn-primary {
  background: #636cbf;
}

body.equal-plus-theme .btn-primary:hover {
  background: #5a62ad;
  box-shadow: 0 15px 40px rgba(99, 108, 191, 0.3);
}

body.equal-plus-theme .stat-item h3 {
  color: #636cbf;
}

body.equal-plus-theme .scroll-line {
  background: linear-gradient(to bottom, #636cbf, transparent);
}

body.equal-plus-theme .section-badge {
  background: rgba(99, 108, 191, 0.1);
  color: #636cbf;
}

body.equal-plus-theme .mockup-header {
  background: linear-gradient(90deg, rgba(99, 108, 191, 0.2) 0%, rgba(87, 160, 239, 0.1) 100%);
}

body.equal-plus-theme .mockup-chart {
  background: linear-gradient(180deg, rgba(99, 108, 191, 0.15) 0%, rgba(87, 160, 239, 0.05) 100%);
}

body.equal-plus-theme .mockup-mobile-header {
  background: linear-gradient(90deg, rgba(99, 108, 191, 0.2) 0%, rgba(87, 160, 239, 0.1) 100%);
}

body.equal-plus-theme .mockup-mobile-calendar {
  background: rgba(99, 108, 191, 0.08);
}

body.equal-plus-theme .product-tag {
  background: rgba(99, 108, 191, 0.1);
  color: #636cbf;
}

body.equal-plus-theme .pricing-card.featured {
  border-color: #636cbf;
}

body.equal-plus-theme .pricing-card.featured::before {
  background: linear-gradient(90deg, #636cbf 0%, #57a0ef 100%);
}

body.equal-plus-theme .pricing-badge {
  background: linear-gradient(135deg, #636cbf 0%, #57a0ef 100%);
}

body.equal-plus-theme .pricing-features li svg {
  color: #636cbf;
}

body.equal-plus-theme .product-link {
  color: #636cbf;
}

.mockup-header {
  grid-column: 1 / -1;
  height: 50px;
  background: linear-gradient(90deg, rgba(3, 104, 253, 0.2) 0%, rgba(13, 56, 137, 0.1) 100%);
  border-radius: 8px;
}

.mockup-sidebar {
  background: rgba(26, 26, 46, 0.05);
  border-radius: 8px;
}

.mockup-main {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mockup-chart {
  flex: 1;
  background: linear-gradient(180deg, rgba(3, 104, 253, 0.15) 0%, rgba(13, 56, 137, 0.05) 100%);
  border-radius: 8px;
}

.mockup-content-mobile {
  width: 100%;
  height: 100%;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (max-width: 768px) {
  .mockup-content-mobile {
    padding: 1rem;
  }
}

.mockup-mobile-header {
  height: 60px;
  background: linear-gradient(90deg, rgba(3, 104, 253, 0.2) 0%, rgba(13, 56, 137, 0.1) 100%);
  border-radius: 8px;
}

.mockup-mobile-header.beauty {
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.2) 0%, rgba(255, 107, 129, 0.1) 100%);
}

.mockup-mobile-cards {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.mockup-mobile-cards::before,
.mockup-mobile-cards::after {
  content: '';
  background: rgba(26, 26, 46, 0.08);
  border-radius: 8px;
}

.mockup-mobile-appointments {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mockup-mobile-appointments::before,
.mockup-mobile-appointments::after {
  content: '';
  height: 80px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 8px;
}

.mockup-mobile-calendar {
  flex: 1;
  background: rgba(3, 104, 253, 0.08);
  border-radius: 8px;
}

.product-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(3, 104, 253, 0.1);
  color: #0368fd;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  width: fit-content;
}

.product-title {
  font-family: 'Manrope', sans-serif;
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .product-title {
    font-size: 2rem;
  }
}

.product-description {
  font-size: 1.1rem;
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.product-features {
  list-style: none;
  margin-bottom: 2.5rem;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.product-features li svg {
  flex-shrink: 0;
  color: #0368fd;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #0368fd;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  width: fit-content;
}

.product-link:hover {
  gap: 1rem;
}

.product-link svg {
  transition: transform 0.3s ease;
}

.product-link:hover svg {
  transform: translateX(5px);
}

/* ============================================
   PREMIUM PRODUCT CARDS
   ============================ */

.products-grid-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

@media (max-width: 1024px) {
  .products-grid-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .products-grid-cards {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
}

.product-card-modern {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  position: relative;
  height: 100%;
}

.product-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(3, 104, 253, 0.12);
  border-color: rgba(3, 104, 253, 0.2);
}

.product-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #f1f5f9;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* Ensure full image is visible */
  padding: 1rem;
  /* Add padding for better presentation */
  transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.product-card-modern:hover .product-card-image img {
  transform: scale(1.05);
}

.product-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 104, 253, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}

.product-card-modern:hover .product-card-overlay {
  opacity: 1;
}

.view-details {
  color: #ffffff;
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  padding: 0.75rem 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
}

.product-card-modern:hover .view-details {
  transform: translateY(0);
}

.product-card-content {
  padding: 1.75rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-tag {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  background: rgba(3, 104, 253, 0.1);
  color: #0368fd;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 50px;
  margin-bottom: 1rem;
  align-self: flex-start;
}

.product-card-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.product-card-description {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.product-card-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-top: 1px solid #f3f4f6;
  padding-top: 1.25rem;
}

.product-card-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #4b5563;
  font-weight: 500;
}

.product-card-features li svg {
  color: #10b981;
  /* Green for checkmarks */
  flex-shrink: 0;
}

/* Specific Tag Colors based on context or nth-child logic if needed, 
   but inline styles in HTML are handling specific colors now. 
   We can enforce defaults here. */

.beauty-tag {
  background: rgba(236, 72, 153, 0.1) !important;
  color: #ec4899 !important;
}

.insight-tag {
  background: rgba(16, 185, 129, 0.1) !important;
  color: #10b981 !important;
}

/* Pricing Section */
.pricing {
  padding: 8rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #faf8f5 100%);
}

@media (max-width: 768px) {
  .pricing {
    padding: 4rem 0;
  }
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

.pricing-card {
  background: #ffffff;
  border-radius: 30px;
  padding: 3rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  /* Added subtle border */
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  /* Softer shadow */
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .pricing-card {
    padding: 2rem;
  }
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(3, 104, 253, 0.12);
  /* Branded shadow on hover */
  border-color: rgba(3, 104, 253, 0.2);
}

.pricing-card.featured {
  border: 2px solid #0368fd;
  /* Switched to brand blue */
  background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 100%);
}

.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #0368fd 0%, #0d3889 100%);
  border-radius: 30px 30px 0 0;
}

.pricing-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.pricing-header h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 2rem;
  font-weight: 600;
}

.pricing-badge {
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #e94560 0%, #ff6b81 100%);
  color: #ffffff;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.pricing-amount {
  margin-bottom: 1.5rem;
}

.pricing-amount .currency {
  font-size: 1.5rem;
  color: #6b7280;
  vertical-align: top;
}

.pricing-amount .amount {
  font-family: 'Manrope', sans-serif;
  font-size: 4rem;
  font-weight: 600;
}

.pricing-amount .amount.custom {
  font-size: 3rem;
}

@media (max-width: 768px) {
  .pricing-amount .amount {
    font-size: 3rem;
  }
}

.pricing-amount .period {
  font-size: 1.1rem;
  color: #6b7280;
}

.pricing-description {
  color: #6b7280;
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 3rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.pricing-features li svg {
  flex-shrink: 0;
  color: #e94560;
}

.pricing-cta {
  width: 100%;
  padding: 1rem;
  background: #1a1a2e;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pricing-cta:hover {
  background: #0f3460;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(26, 26, 46, 0.3);
}

.pricing-cta.secondary {
  background: transparent;
  color: #1a1a2e;
  border: 2px solid #1a1a2e;
}

.pricing-cta.secondary:hover {
  background: #1a1a2e;
  color: #ffffff;
}

/* Download Section */
.download {
  padding: 8rem 0;
  background: linear-gradient(135deg, #242442 0%, #1a1a2e 100%);
  color: #ffffff;
}

@media (max-width: 768px) {
  .download {
    padding: 4rem 0;
  }
}

.download-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 1024px) {
  .download-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.download-title {
  font-family: 'Manrope', sans-serif;
  font-size: 4rem;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .download-title {
    font-size: 2.5rem;
  }
}

.download-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .download-description {
    font-size: 1.1rem;
  }
}

.download-buttons {
  display: flex;
  gap: 1rem;
}

@media (max-width: 480px) {
  .download-buttons {
    flex-direction: column;
  }
}

.download-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  background: #ffffff;
  color: #1a1a2e;
  text-decoration: none;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.download-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

.download-btn svg {
  font-size: 2rem;
}

.download-btn div {
  display: flex;
  flex-direction: column;
}

.download-btn div span {
  font-size: 0.75rem;
  color: #6b7280;
}

.download-btn div strong {
  font-size: 1.1rem;
}

.download-visual {
  position: relative;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1024px) {
  .download-visual {
    height: 280px;
  }
}

@media (max-width: 768px) {
  .download-visual {
    height: 220px;
  }
}

.download-image {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

.download-image:hover {
  transform: scale(1.02);
}

.phone-mockup {
  position: absolute;
  background: linear-gradient(135deg, #f9698e 0%, #e94560 100%);
  border-radius: 30px;
  padding: 0.75rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.phone-mockup.phone-1 {
  width: 50%;
  height: 90%;
  top: 5%;
  left: 5%;
  animation: phoneFloat 6s ease-in-out infinite;
}

.phone-mockup.phone-2 {
  width: 45%;
  height: 80%;
  bottom: 5%;
  right: 10%;
  animation: phoneFloat 6s ease-in-out infinite 3s;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #f8f5f0;
  border-radius: 23px;
  overflow: hidden;
}

.phone-content {
  width: 100%;
  height: 100%;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.app-header {
  height: 60px;
  background: linear-gradient(90deg, rgba(233, 69, 96, 0.2) 0%, rgba(255, 107, 129, 0.1) 100%);
  border-radius: 10px;
}

.app-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.stat-card {
  height: 100px;
  background: rgba(26, 26, 46, 0.08);
  border-radius: 10px;
}

.app-chart {
  flex: 1;
  background: linear-gradient(180deg, rgba(233, 69, 96, 0.15) 0%, rgba(255, 107, 129, 0.05) 100%);
  border-radius: 10px;
}

.app-calendar {
  flex: 1;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 10px;
}

/* Footer */
.footer {
  background: #1a1a2e;
  color: #ffffff;
  padding: 5rem 0 2rem;
}

@media (max-width: 768px) {
  .footer {
    padding: 3rem 0 1.5rem;
  }
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 2.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  margin: 1.5rem 0;
  line-height: 1.8;
}

.footer-logo {
  font-family: 'Manrope', sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #e94560;
  transform: translateY(-3px);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .footer-links {
    grid-template-columns: 1fr;
  }
}

.footer-column h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.75rem;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #e94560;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin: 0.5rem 0;
}

/* Animations */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes phoneFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(2deg);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

@keyframes scrollDown {

  0%,
  100% {
    opacity: 0;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(20px);
  }
}

.product-dashboard-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
  transition: all 0.4s ease;
}

.product-dashboard-img:hover {
  transform: scale(1.02);
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.15));
}

.hero-product-img {
  width: 120%;
  max-width: none;
  height: auto;
  margin-left: -10%;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
  transition: all 0.5s ease;
}

.hero-product-img:hover {
  transform: scale(1.02);
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.2));
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Registration Popup */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 46, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-content {
  background: rgba(255, 255, 255, 0.95);
  padding: 2.5rem;
  border-radius: 24px;
  width: 90%;
  max-width: 450px;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  transform: translateY(30px) scale(0.95);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.popup-overlay.active .popup-content {
  transform: translateY(0) scale(1);
}

.popup-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: #6b7280;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.popup-close-btn:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #1a1a2e;
}

.popup-visual {
  margin-bottom: 1.5rem;
}

.popup-icon {
  font-size: 3.5rem;
  animation: float 4s ease-in-out infinite;
}

.popup-text h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #0368fd 0%, #0d3889 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.popup-text p {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.popup-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.popup-input {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid rgba(229, 231, 235, 0.5);
  border-radius: 12px;
  font-size: 1rem;
  background: #f9fafb;
  transition: all 0.3s ease;
}

.popup-input:focus {
  outline: none;
  border-color: #0368fd;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(3, 104, 253, 0.1);
}

.popup-submit-btn {
  width: 100%;
  padding: 1rem;
  background: #0368fd;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(3, 104, 253, 0.2);
}

.popup-submit-btn:hover {
  background: #0d3889;
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(3, 104, 253, 0.3);
}

@media (max-width: 480px) {
  .popup-content {
    padding: 2rem 1.5rem;
  }

  .popup-text h3 {
    font-size: 1.75rem;
  }

}

/* =============================================
   TESTIMONIALS SECTION — Infinite Marquee
   ============================================= */

.testimonials-section {
  padding: 8rem 0 7rem;
  background: linear-gradient(160deg, #f0f4ff 0%, #faf7f3 50%, #f0f4ff 100%);
  position: relative;
  overflow: hidden;
}

/* Decorative orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.45;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(3, 104, 253, 0.18), transparent 70%);
  top: -120px;
  right: -100px;
  animation: orbFloat 8s ease-in-out infinite;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(13, 56, 137, 0.12), transparent 70%);
  bottom: -80px;
  left: -80px;
  animation: orbFloat 10s ease-in-out infinite reverse;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(3, 104, 253, 0.1), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: orbFloat 12s ease-in-out infinite;
}

@keyframes orbFloat {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-30px) scale(1.05);
  }
}

.section-subtitle {
  text-align: center;
  color: #64748b;
  font-size: 1.05rem;
  margin-top: 0.75rem;
  font-weight: 400;
}

/* ── Marquee Outer ── */
.marquee-outer {
  position: relative;
  margin-top: 4rem;
  overflow: hidden;
}

/* Fade edges */
.marquee-fade-left,
.marquee-fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 140px;
  z-index: 5;
  pointer-events: none;
}

.marquee-fade-left {
  left: 0;
  background: linear-gradient(to right, #f0f4ff 20%, transparent);
}

.marquee-fade-right {
  right: 0;
  background: linear-gradient(to left, #f0f4ff 20%, transparent);
}

/* ── Track ── */
.marquee-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  padding: 2rem 1.5rem 2.5rem;
  animation: marqueeScroll 45s linear infinite;
  will-change: transform;
}

.marquee-outer:hover .marquee-track {
  animation-play-state: paused;
}

/* Smooth infinite loop */
@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .marquee-track {
    gap: 1.25rem;
    animation-duration: 30s;
  }
}

/* ── Arrow Buttons ── */
.marquee-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(3, 104, 253, 0.18);
  background: #ffffff;
  color: #0368fd;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(3, 104, 253, 0.12), 0 1px 4px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.marquee-arrow:hover {
  background: #0368fd;
  color: #ffffff;
  border-color: #0368fd;
  box-shadow: 0 8px 28px rgba(3, 104, 253, 0.35);
  transform: translateY(-50%) scale(1.08);
}

.marquee-arrow:active {
  transform: translateY(-50%) scale(0.96);
}

.marquee-arrow-left {
  left: 16px;
}

.marquee-arrow-right {
  right: 16px;
}

@media (max-width: 640px) {
  .marquee-arrow {
    width: 38px;
    height: 38px;
  }

  .marquee-arrow-left {
    left: 8px;
  }

  .marquee-arrow-right {
    right: 8px;
  }
}

/* ── The scrolling track ── */
.marquee-track {
  display: flex;
  gap: 1.75rem;
  width: max-content;
  padding: 1.5rem 1rem 2rem;
  animation: marqueeScroll 38s linear infinite;
}

.marquee-outer:hover .marquee-track {
  animation-play-state: paused;
}

/* When manually scrolling via arrow, pause auto-scroll */
.marquee-track.is-manual {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .marquee-track {
    gap: 1.25rem;
    animation-duration: 28s;
  }
}

/* ── Premium Testimonial Card ── */
.testimonial-card {
  position: relative;
  width: 340px;
  flex-shrink: 0;
  padding: 2.2rem 2rem 1.8rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 12px 40px rgba(3, 104, 253, 0.18),
    0 2px 10px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: transform .45s cubic-bezier(.4, 0, .2, 1),
    box-shadow .45s ease;
  z-index: 1;
  overflow: hidden;
}

/* Gradient Border Layer */
.testimonial-card::before {
  content: "";
  position: absolute;
  inset: -1.5px;
  border-radius: 26px;
  background: linear-gradient(135deg, #3b82f6, #60a5fa, #a78bfa);
  z-index: -1;
  filter: blur(0.2px);
}

/* Soft outer glow */
.testimonial-card::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 32px;
  background: radial-gradient(60% 60% at 30% 20%, rgba(59, 130, 246, .35), transparent 60%),
    radial-gradient(60% 60% at 80% 80%, rgba(167, 139, 250, .25), transparent 60%);
  z-index: -2;
  opacity: 0.65;
  transition: opacity .4s ease, transform .4s ease;
}

/* Hover polish */
.testimonial-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow:
    0 24px 80px rgba(3, 104, 253, 0.28),
    0 6px 20px rgba(0, 0, 0, 0.12);
}

.testimonial-card:hover::after {
  opacity: 1;
  transform: scale(1.02);
}

/* ── Card Top Row ── */
.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Stars */
.stars {
  font-size: 1.1rem;
  color: #f59e0b;
  letter-spacing: 2px;
  text-shadow: 0 1px 4px rgba(245, 158, 11, 0.35);
}

/* Big decorative quote mark */
.quote-mark {
  font-size: 5rem;
  line-height: 1;
  font-family: Georgia, serif;
  color: rgba(3, 104, 253, 0.1);
  margin-top: -1rem;
  user-select: none;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.75;
  color: #334155;
  font-style: italic;
  position: relative;
}

.read-more-content {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.read-more-content.active {
  display: inline;
  opacity: 1;
}

.read-more-btn {
  display: inline-block;
  background: none;
  border: none;
  color: #2563eb;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  margin-left: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  vertical-align: baseline;
  text-decoration: none;
  border-bottom: 2px solid rgba(37, 99, 235, 0.2);
}

.read-more-btn:hover {
  color: #1d4ed8;
  border-bottom-color: #1d4ed8;
  transform: translateY(-1px);
}

.read-more-btn.active {
  margin-top: 10px;
  display: block;
}

.author-info h4 {
  font-size: 1.05rem;
  letter-spacing: 0.3px;
  color: #0f172a;
}

.author-tag {
  background: linear-gradient(135deg, rgba(59, 130, 246, .15), rgba(167, 139, 250, .18));
  color: #2563eb;
  border: none;
}

/* ── Author Row ── */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* Avatar */
.author-avatar {
  position: relative;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
}

.author-avatar img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
  border: 3px solid #fff;
  box-shadow: 0 4px 12px rgba(3, 104, 253, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Animated ring on hover */
.avatar-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid transparent;
  background: linear-gradient(135deg, #0368fd, #5b9bff) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonial-card:hover .author-avatar img {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(3, 104, 253, 0.25);
}

.testimonial-card:hover .avatar-ring {
  opacity: 1;
}

/* Author text */
.author-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.author-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0;
  letter-spacing: 0.3px;
}

.author-info p {
  font-size: 0.78rem;
  color: #64748b;
  margin: 0;
  font-weight: 500;
}

/* Tag badge */
.author-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #0368fd;
  background: rgba(3, 104, 253, 0.08);
  border-radius: 50px;
  padding: 0.15rem 0.6rem;
  margin-top: 0.1rem;
  border: 1px solid rgba(3, 104, 253, 0.12);
}

/* ── Mobile ── */
@media (max-width: 640px) {
  .testimonial-card {
    width: 280px;
    padding: 1.75rem 1.5rem 1.5rem;
  }

  .testimonial-text {
    font-size: 0.88rem;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 5rem 0 4rem;
  }

  .section-subtitle {
    font-size: 0.9rem;
  }
}

@media (max-width: 640px) {
  .testimonial-card {
    width: 280px;
    padding: 1.6rem 1.4rem 1.4rem;
    border-radius: 20px;
  }

  .testimonial-text {
    font-size: 0.92rem;
    line-height: 1.7;
  }

  .author-avatar img {
    width: 46px;
    height: 46px;
  }

  .author-info h4 {
    font-size: 0.95rem;
  }

  .author-info p {
    font-size: 0.75rem;
  }
}

/* Contact Us Section */
.contact-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, #f8f5f0 0%, #ffffff 50%, #f0f7ff 100%);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(3, 104, 253, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

.contact-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(13, 56, 137, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 25s ease-in-out infinite reverse;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  margin-top: 4rem;
}

@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  background: linear-gradient(135deg, #ffffff 0%, #fafbff 100%);
  padding: 2rem;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(26, 26, 46, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(3, 104, 253, 0.08);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0368fd 0%, #0d3889 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.contact-card:hover::before {
  transform: scaleX(1);
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(3, 104, 253, 0.15);
  border-color: rgba(3, 104, 253, 0.2);
}

.contact-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 4px 8px rgba(3, 104, 253, 0.2));
  transition: transform 0.3s ease;
}

.contact-card:hover .contact-icon {
  transform: scale(1.1) rotate(5deg);
}

.contact-card h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a2e;
}

.contact-card p {
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.5;
}

.contact-form-wrapper {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 251, 255, 0.9) 100%);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  padding: 3rem;
  border-radius: 32px;
  box-shadow: 0 25px 70px rgba(3, 104, 253, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(3, 104, 253, 0.15);
  position: relative;
  overflow: hidden;
}

.contact-form-wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(3, 104, 253, 0.03) 0%, transparent 70%);
  animation: rotate 30s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 480px) {
  .contact-form-wrapper {
    padding: 2rem;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a2e;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1.1rem 1.5rem;
  background: rgba(249, 250, 251, 0.8);
  border: 2px solid rgba(3, 104, 253, 0.1);
  border-radius: 14px;
  font-size: 1rem;
  font-family: 'Manrope', sans-serif;
  color: #1a1a2e;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0368fd;
  background: #ffffff;
  box-shadow: 0 0 0 5px rgba(3, 104, 253, 0.12), 0 8px 16px rgba(3, 104, 253, 0.08);
  transform: translateY(-2px);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-submit {
  margin-top: 1.5rem;
  width: 100%;
  justify-content: center;
  position: relative;
  z-index: 1;
  font-size: 1.05rem;
  padding: 1.2rem 2.5rem;
  box-shadow: 0 12px 24px rgba(3, 104, 253, 0.25);
}

.contact-submit:hover {
  box-shadow: 0 16px 32px rgba(3, 104, 253, 0.35);
}

/* Success Popup */
.success-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 46, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.success-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.success-popup {
  background: #ffffff;
  padding: 3rem 2.5rem;
  border-radius: 24px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.9) translateY(20px);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.success-popup-overlay.active .success-popup {
  transform: scale(1) translateY(0);
}

.success-icon {
  margin-bottom: 1.5rem;
  display: inline-block;
}

.success-circle {
  stroke-dasharray: 240;
  stroke-dashoffset: 240;
  animation: drawCircle 0.6s ease-out 0.2s forwards;
}

.success-check {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: drawCheck 0.4s ease-out 0.8s forwards;
}

@keyframes drawCircle {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes drawCheck {
  to {
    stroke-dashoffset: 0;
  }
}

.success-popup h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 1rem;
}

.success-popup p {
  font-size: 1.05rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.success-popup p strong {
  color: #0368fd;
}

.success-close-btn {
  padding: 1rem 2.5rem;
  background: #0368fd;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.success-close-btn:hover {
  background: #0d3889;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(3, 104, 253, 0.3);
}

/* Notification Toast */
.notification {
  position: fixed;
  top: 2rem;
  right: 2rem;
  padding: 1rem 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 10001;
  transform: translateX(400px);
  transition: transform 0.3s ease;
  font-weight: 500;
}

.notification.show {
  transform: translateX(0);
}

.notification-error {
  border-left: 4px solid #ef4444;
  color: #ef4444;
}

.notification-info {
  border-left: 4px solid #0368fd;
  color: #0368fd;
}

/* Modern Cursor Styles (Dot + Outline) */
.cursor-dot,
.cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background-color: #0368fd;
  /* Brand color */
  margin-left: -3px;
  /* Center adjustments */
  margin-top: -3px;
  z-index: 10000;
  /* Stays on top of outline */
  will-change: transform;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.cursor-outline {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(26, 26, 46, 0.4);
  margin-left: -15px;
  /* Center adjustments */
  margin-top: -15px;
  transition: width 0.2s ease, height 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, margin 0.2s ease;
  will-change: transform, width, height;
}

/* Hover / Active Effects */
.cursor-outline.active {
  width: 50px;
  height: 50px;
  margin-left: -25px;
  margin-top: -25px;
  background-color: rgba(3, 104, 253, 0.1);
  border-color: transparent;
}

.cursor-dot.active {
  background-color: #ffffff;
  /* White dot on hover for contrast */
}

/* Hide on touch devices */
@media (hover: none) and (pointer: coarse) {

  .cursor-dot,
  .cursor-outline {
    display: none;
  }
}

a,
button,
.product-card,
.nav-cta,
input,
textarea {
  cursor: none;
  /* Hide default cursor only on interactive elements for cleaner effect */
}

/* ============================================
   PREMIUM TESTIMONIALS SECTION
   ============================================ */

.testimonials-section {
  padding: 10rem 0;
  background: radial-gradient(circle at 0% 0%, rgba(3, 104, 253, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(3, 104, 253, 0.03) 0%, transparent 50%),
    #ffffff;
  position: relative;
  overflow: hidden;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 5rem;
  position: relative;
  z-index: 2;
}

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: 32px;
  border: 1px solid rgba(229, 231, 235, 0.5);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-12px);
  background: #ffffff;
  border-color: rgba(3, 104, 253, 0.2);
  box-shadow: 0 30px 60px rgba(3, 104, 253, 0.08);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(3, 104, 253, 0.02) 0%, transparent 100%);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.testimonial-card:hover::before {
  opacity: 1;
}

.quote-icon {
  margin-bottom: 2rem;
  color: rgba(3, 104, 253, 0.15);
  transition: all 0.4s ease;
}

.testimonial-card:hover .quote-icon {
  color: #0368fd;
  transform: scale(1.1) rotate(-5deg);
}

.testimonial-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 2.5rem;
  font-style: italic;
  position: relative;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(229, 231, 235, 0.5);
}

.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #ffffff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.author-info p {
  font-size: 0.85rem;
  color: #6b7280;
  font-weight: 600;
}

/* Background Decorative Elements for Testimonials */
.testimonials-section::after {
  content: '';
  position: absolute;
  top: 40%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(3, 104, 253, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  bottom: 10%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(3, 104, 253, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

/* Footer Section */
.footer {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f1419 100%);
  color: #e5e7eb;
  padding: 6rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(3, 104, 253, 0.3) 50%, transparent 100%);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 5rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* Footer Brand */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
  .footer-logo-img {
    height: 60px;
  }
}

.footer-tagline {
  font-size: 1rem;
  line-height: 1.7;
  color: #9ca3af;
  max-width: 400px;
  margin: 0;
}

@media (max-width: 768px) {
  .footer-tagline {
    font-size: 0.95rem;
  }
}

/* Footer Social */
.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: rgba(3, 104, 253, 0.15);
  border-color: rgba(3, 104, 253, 0.3);
  color: #0368fd;
  transform: translateY(-3px);
}

/* Footer Links */
.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

@media (max-width: 768px) {
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .footer-links {
    grid-template-columns: 1fr;
  }
}

.footer-column h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #0368fd 0%, transparent 100%);
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-column ul.products-grid-footer {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 1.5rem;
}

@media (max-width: 480px) {
  .footer-column ul.products-grid-footer {
    grid-template-columns: 1fr;
  }
}

.footer-column ul li a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.footer-column ul li a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #0368fd;
  transition: width 0.3s ease;
}

.footer-column ul li a:hover {
  color: #ffffff;
  transform: translateX(5px);
}

.footer-column ul li a:hover::before {
  width: 100%;
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
}

.copyright {
  font-size: 0.9rem;
  color: #6b7280;
  margin: 0;
  letter-spacing: 0.02em;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-bottom-links a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

/* Scroll to Top Button */
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: rgba(3, 104, 253, 0.9);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(3, 104, 253, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
}



.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top-btn:hover {
  background: #0368fd;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 15px 30px rgba(3, 104, 253, 0.4);
}



.scroll-top-btn svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.scroll-top-btn:hover svg {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .scroll-top-btn {
    bottom: 20px;
    right: 20px;
    width: 44px;
  }
}

.footer-bottom-links a:hover {
  color: #ffffff;
}

.footer-bottom-links .separator {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.8rem;
}


/* ================================================
   CONTACT MAP — FINAL STYLES
   Paste at the bottom of product-page.css
   ================================================ */

/* ── Maps Grid ── */
.contact-maps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

@media (max-width: 992px) {
  .contact-maps-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ── Wrapper ── */
.contact-map-wrapper {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #ffffff;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.contact-map-wrapper:hover {
  box-shadow: 0 30px 70px rgba(220, 38, 38, 0.12);
}

/* ── Header Bar ── */
.contact-map-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.75rem;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  flex-wrap: wrap;
}

/* Red circle pin icon */
.map-pin-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #dc2626, #ef4444);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(220, 38, 38, 0.35);
}

.map-address-text h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 0.2rem;
}

.map-address-text p {
  font-size: 0.88rem;
  color: #6b7280;
  margin: 0;
}

/* Directions button */
.map-directions-btn {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.3);
}

.map-directions-btn:hover {
  background: linear-gradient(135deg, #b91c1c 0%, #dc2626 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(220, 38, 38, 0.4);
}

/* ── Map Frame ── */
.contact-map-frame {
  width: 100%;
  height: 400px;
  position: relative;
  background: #f3f4f6;
}

.contact-map-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

/* Transparent overlay — opens Google Maps on click, 
   stops iframe from swallowing page scroll on mobile */
.map-overlay-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  /* Remove on desktop so iframe is interactive */
  display: none;
}

@media (max-width: 768px) {

  /* On mobile: tap the overlay to open Maps app */
  .map-overlay-link {
    display: block;
  }
}

/* ── Footer Strip ── */
.contact-map-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.75rem;
  background: #fafafa;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  flex-wrap: wrap;
  gap: 0.5rem;
}

.contact-map-footer span {
  font-size: 0.85rem;
  color: #6b7280;
}

.contact-map-footer a {
  font-size: 0.85rem;
  font-weight: 600;
  color: #dc2626;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-map-footer a:hover {
  color: #b91c1c;
}

/* ── Mobile Responsive ── */
@media (max-width: 768px) {
  .contact-map-wrapper {
    margin-top: 2rem;
    border-radius: 20px;
  }

  .contact-map-header {
    padding: 1rem 1.25rem;
    gap: 0.75rem;
  }

  .map-pin-circle {
    width: 38px;
    height: 38px;
  }

  .map-address-text h4 {
    font-size: 1.05rem;
  }

  .map-directions-btn {
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }

  .contact-map-frame {
    height: 260px;
  }

  .contact-map-footer {
    padding: 0.75rem 1.25rem;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .contact-map-frame {
    height: 220px;
  }
}

/* ── Gallery Section ── */
.gallery-section {
  padding: 100px 0;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 300px;
  gap: 1.5rem;
  margin-top: 3rem;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  background: #eee;
  /* Placeholder bg while loading */
}

/* Staggered Reveal Animations */
.gallery-grid .gallery-item:nth-child(1) {
  transition-delay: 0.1s;
}

.gallery-grid .gallery-item:nth-child(2) {
  transition-delay: 0.2s;
}

.gallery-grid .gallery-item:nth-child(3) {
  transition-delay: 0.3s;
}

.gallery-grid .gallery-item:nth-child(4) {
  transition-delay: 0.4s;
}

.gallery-grid .gallery-item:nth-child(5) {
  transition-delay: 0.5s;
}

.gallery-grid .gallery-item:nth-child(6) {
  transition-delay: 0.6s;
}

.gallery-grid .gallery-item:nth-child(7) {
  transition-delay: 0.7s;
}

.gallery-grid .gallery-item:nth-child(8) {
  transition-delay: 0.8s;
}

.gallery-grid .gallery-item:nth-child(9) {
  transition-delay: 0.9s;
}

.gallery-grid .gallery-item:nth-child(10) {
  transition-delay: 1s;
}

.gallery-grid .gallery-item:nth-child(11) {
  transition-delay: 1.1s;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

/* ── Video Item Styling ── */
.video-item .video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-item .video-play-btn span {
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 20px solid #fff;
  margin-left: 5px;
}

.video-item .video-play-btn::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.8);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

.video-item:hover .video-play-btn {
  background: #dc2626;
  border-color: #dc2626;
  transform: translate(-50%, -50%) scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(4px);
}

.gallery-info {
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-info h3 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.gallery-info p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  line-height: 1.4;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-info {
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 250px;
  }

  .gallery-item.large {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .gallery-item {
    height: 350px;
    transition-delay: 0s !important;
    /* Reset stagger on mobile */
  }

  .gallery-section {
    padding: 80px 0;
  }
}

/* ── Gallery Expandable Styles ── */
.gallery-expand-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  perspective: 2000px;
}

.gallery-expand-wrapper.active {
  max-height: 2500px;
  /* Large enough to show all */
}

.gallery-hidden-grid {
  margin-top: 1.5rem !important;
  opacity: 0;
  transform: rotateX(-15deg) translateY(50px) scale(0.95);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: top;
}

.gallery-expand-wrapper.active .gallery-hidden-grid {
  opacity: 1;
  transform: rotateX(0) translateY(0) scale(1);
}

.video-item {
  background: #000;
}

.video-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-item:hover video {
  transform: scale(1.1);
}

.gallery-mute-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 10;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.4s ease;
}

.video-item:hover .gallery-mute-btn {
  opacity: 1;
  transform: translateY(0);
}

.gallery-mute-btn:hover {
  background: #1e293b;
  transform: scale(1.1) !important;
}

.video-play-btn {
  pointer-events: none;
  /* Let the video/card handle clicks */
}


.gallery-cta-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
}

.gallery-expand-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.2rem 3rem;
  background: #1e293b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.gallery-expand-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  transform: translateX(-100%);
  transition: transform 0.8s ease;
}

.gallery-expand-btn:hover::before {
  transform: translateX(100%);
}

.gallery-expand-btn:hover {
  transform: translateY(-8px) scale(1.02);
  background: #0f172a;
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(220, 38, 38, 0.15);
  border-color: rgba(220, 38, 38, 0.3);
}

.gallery-expand-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  height: 2px;
  background: #dc2626;
  transform: translateX(-50%);
  transition: width 0.4s ease;
}

.gallery-expand-btn:hover::after {
  width: 40%;
}

.gallery-expand-btn .btn-icon {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-expand-btn.active .btn-icon {
  transform: rotate(180deg);
}



/* ── Gallery Lightbox ── */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(15px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 2rem;
}

.gallery-lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10001;
}

.lightbox-close:hover {
  background: #dc2626;
  border-color: #dc2626;
  transform: rotate(90deg);
}

.lightbox-content {
  max-width: 1200px;
  width: 100%;
  height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.lightbox-content img,
.lightbox-content video {
  max-width: 100%;
  max-height: 70vh;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: none;
}

.gallery-lightbox.active .lightbox-content img,
.gallery-lightbox.active .lightbox-content video {
  transform: scale(1);
}

.gallery-lightbox.show-image #lightboxImg {
  display: block;
}

.gallery-lightbox.show-video #lightboxVideo {
  display: block;
}

.lightbox-video {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.lightbox-caption {
  margin-top: 2rem;
  text-align: center;
  color: #fff;
  max-width: 600px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.gallery-lightbox.active .lightbox-caption {
  opacity: 1;
  transform: translateY(0);
}

.lightbox-caption h3 {
  font-size: 2rem;
  font-family: var(--font-fancy);
  margin-bottom: 0.5rem;
  background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0.7));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lightbox-caption p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
}

/* ── Reveal Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Redesigned FAQ Section */
.faq-section {
  padding: 100px 0;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 800px;
}

.faq-patterns {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.faq-patterns::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 65%;
  height: 100%;
  background: #001a3d;
  /* Dark blue from image */
}

.faq-hex {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(3, 104, 253, 0.02);
  z-index: 1;
}

.hex-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: -5%;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  transform: rotate(15deg);
}

.hex-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  right: 15%;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  transform: rotate(-10deg);
}

.faq-container-new {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
  padding: 0 4rem;
  gap: 6rem;
}

/* Visual Side (Left) */
.faq-visual-side {
  position: relative;
  height: 600px;
}

.faq-img-main {
  width: 90%;
  height: 80%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.faq-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq-video-frame {
  position: absolute;
  bottom: -40px;
  right: 0;
  width: 60%;
  height: 60%;
  background: #ffffff;
  padding: 12px;
  border-radius: 8px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.faq-video-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}


/* Content Side (Right) */
.faq-content-side {
  color: #ffffff;
}

.faq-title-new {
  font-family: 'Manrope', sans-serif;
  font-size: 3.8rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 4rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-header {
  padding: 2rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-header h3 {
  font-weight: 700;
  font-size: 1.35rem;
  color: #001a3d;
  margin: 0;
}

.faq-arrow {
  color: #001a3d;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: #ffffff;
}

.faq-content-inner {
  padding: 0 2.5rem 2.5rem;
}

.faq-content-inner p {
  color: #4b5563;
  line-height: 1.7;
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.faq-content-inner h6 {
  color: #001a3d;
  font-size: 1.1rem;
  font-weight: 800;
  margin: 1.5rem 0 0.8rem 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
}

.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.faq-list li {
  color: #4b5563;
  font-size: 1.1rem;
  padding-left: 2rem;
  position: relative;
  line-height: 1.5;
}

.faq-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

/* Active State */
.faq-item.active {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-body {
  max-height: 1200px;
  /* Increased to fit larger content */
}

.faq-item.active .faq-arrow {
  transform: rotate(90deg);
}

/* Mobile Responsiveness */
@media (max-width: 1200px) {
  .faq-container-new {
    gap: 4rem;
    padding: 0 3rem;
  }

  .faq-title-new {
    font-size: 3rem;
  }
}

@media (max-width: 950px) {
  .faq-section {
    padding: 80px 0;
    min-height: auto;
    background-color: #001a3d;
    /* Set the whole section to dark blue on mobile */
  }

  .faq-patterns::before {
    display: none;
    /* Hide the desktop-only partial overlay */
  }

  .faq-container-new {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 0 2rem;
  }

  .faq-visual-side {
    height: 450px;
    max-width: 600px;
    margin: 0 auto;
  }

  .faq-title-new {
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
    /* Explicitly ensure title is visible */
  }
}

@media (max-width: 600px) {
  .faq-section {
    padding: 60px 0;
  }

  .faq-container-new {
    padding: 0 1.5rem;
    gap: 40px;
  }

  .faq-visual-side {
    height: 320px;
  }

  .faq-video-frame {
    bottom: -20px;
  }

  .faq-title-new {
    font-size: 2.1rem;
    margin-bottom: 2.5rem;
  }

  .faq-header {
    padding: 1.5rem 1.8rem;
  }

  .faq-header h3 {
    font-size: 1.15rem;
  }

  .faq-content-inner {
    padding: 0 1.8rem 1.8rem;
  }

  .faq-content-inner p {
    font-size: 1rem;
    line-height: 1.6;
  }
}

/* Top Info Bar */
.top-bar {
  background-color: rgb(37, 150, 190);
  color: #ffffff;
  padding: 5px 0;
  /* Reduced from 8px */
  font-size: 0.82rem;
  /* Slightly reduced */
  font-weight: 500;
  z-index: 1001;
  position: relative;
}

.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 2rem;
  /* Reduced for better large screen alignment */
}

.top-info {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.top-info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.top-info-item:hover {
  opacity: 0.8;
}

.top-info-item svg {
  opacity: 0.9;
}

.top-divider {
  width: 1px;
  height: 14px;
  background-color: rgba(255, 255, 255, 0.3);
}

.top-social {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.top-social-links {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.top-social-links a {
  color: #ffffff;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
}

.top-social-links a:hover {
  transform: translateY(-2px);
}

@media (max-width: 950px) {
  .top-bar {
    display: none;
  }
}

/* Chat Tab */
.chat-tab {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: bottom right;
  background-color: #0368fd;
  color: #ffffff;
  padding: 12px 30px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-radius: 0 0 10px 10px;
  cursor: pointer;
  z-index: 1000;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  right: -1px;
  box-shadow: -5px 5px 20px rgba(3, 104, 253, 0.3);
  text-decoration: none;
}

.chat-tab-icon {
  transform: rotate(90deg);
}