@charset "UTF-8";

/* ──────────────────────────────────────────────────────────────
   AAYUSHMAA® — WORLD CLASS SINGLE-VIEWPORT THEME
   Black & Gold Ultra-Premium Aesthetic
   ────────────────────────────────────────────────────────────── */

:root {
  /* THEME COLORS: Black & Gold */
  --black: #050505;
  --obsidian: #111111;
  --charcoal: #1A1A1A;
  --gold: #C9A84C;
  --gold-light: #D4B967;
  --gold-dark: #A8893A;
  --champagne: #F7E7CE;
  --white: #FFFFFF;
  --text-light: rgba(255, 255, 255, 0.6);
  --text-medium: rgba(255, 255, 255, 0.85);

  /* FONTS */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* SHADOWS */
  --glow-soft: 0 0 30px rgba(201, 168, 76, 0.1);
  --glow-strong: 0 0 60px rgba(201, 168, 76, 0.2);
}

/* ──────────────────────────────────────────────────────────────
   RESET & BASE (Strict No-Scroll Viewport)
   ────────────────────────────────────────────────────────────── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background-color: var(--black);
  color: var(--text-medium);
  font-family: var(--font-body);
  line-height: 1.7;
  letter-spacing: 0.3px;
  overflow: hidden;
}

/* Body Lock when Modal/Drawer is active */
body.locked {
  overflow: hidden !important;
  height: 100vh !important;
  height: 100dvh !important;
}

::selection {
  background: var(--gold);
  color: var(--black);
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Hide default cursor on desktop */
@media (min-width: 1025px) {
  body, a, button { cursor: none; }
}

/* Hide custom cursor on mobile/touch screens */
@media (max-width: 1024px) {
  .cursor, .cursor-follower { display: none !important; }
}

/* Custom Cursor */
.cursor {
  position: fixed;
  top: 0; left: 0; width: 8px; height: 8px;
  background-color: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
  mix-blend-mode: difference;
}
.cursor-follower {
  position: fixed;
  top: 0; left: 0; width: 40px; height: 40px;
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
}
.cursor.hovered {
  width: 60px; height: 60px;
  background-color: rgba(201, 168, 76, 0.2);
  mix-blend-mode: normal;
}
.cursor-follower.hovered { opacity: 0; }

/* ──────────────────────────────────────────────────────────────
   CINEMATIC PRELOADER
   ────────────────────────────────────────────────────────────── */
.preloader {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100vh;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all; /* Prevent clicking background during loading */
}
.preloader-panels {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  display: flex;
  z-index: 1;
}
.panel-left, .panel-right {
  width: 50%; height: 100%;
  background: #000;
  will-change: transform;
}
.preloader-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--gold);
}
.preloader-logo {
  font-family: var(--font-heading);
  font-size: 2rem; letter-spacing: 4px;
  margin-bottom: 1rem;
  opacity: 0;
  color: var(--gold-light);
}
.preloader-logo .registered { font-size: 0.6em; vertical-align: super; }
.preloader-counter {
  font-family: 'Inter', monospace;
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 2px;
}

/* ──────────────────────────────────────────────────────────────
   HEADER
   ────────────────────────────────────────────────────────────── */
.site-header {
  position: absolute;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
  padding: 2rem 0;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-wrap { text-decoration: none; }
.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem; font-weight: 700;
  color: var(--white);
  letter-spacing: 3px;
}
.logo .registered { font-size: 0.6em; vertical-align: super; color: var(--gold); }
.logo-tagline {
  font-family: var(--font-body);
  font-size: 0.6rem; letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-btn {
  background: none; border: none;
  font-family: var(--font-body);
  font-size: 0.8rem; letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
  cursor: pointer;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}
.nav-btn::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-btn:hover { color: var(--white); }
.nav-btn:hover::after { width: 100%; }

/* Mobile Menu Button (Hidden on Desktop) */
.mobile-menu-btn { display: none; }

/* ──────────────────────────────────────────────────────────────
   HERO (Fixed Viewport)
   ────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

#neural-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.35; /* Subtle tech overlay */
}

/* Fluid Mesh Background */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  mix-blend-mode: screen;
  filter: blur(80px);
  animation: fluidMesh 20s infinite alternate ease-in-out;
  opacity: 0.4;
}
.hero-glow-1 {
  top: -20%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--gold-dark) 0%, transparent 70%);
}
.hero-glow-2 {
  bottom: -30%; left: -15%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--charcoal) 0%, transparent 70%);
  animation-delay: -5s;
}
@keyframes fluidMesh {
  0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; transform: scale(1) rotate(0deg); }
  100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: scale(1.3) rotate(45deg); }
}

.hero-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 4rem;
  position: relative;
  z-index: 2; /* Make sure hero text/buttons are above the canvas */
  text-align: center;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 850px;
}
.hero-eyebrow {
  font-size: 0.75rem; letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 2rem;
  display: flex; justify-content: center; align-items: center; gap: 0.5rem;
}
.eyebrow-dot { opacity: 0.5; font-size: 0.5rem; }
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
  max-width: 95%;
}
.hero-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: min(600px, 90%);
}
.hero-desc {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 3rem;
  max-width: 600px;
}

/* Buttons */
.hero-cta {
  display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap;
}
.btn-primary, .btn-secondary, .btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.btn-primary {
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.4);
  transform: translateY(-3px);
}
.btn-secondary, .btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-secondary:hover, .btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Front Page Founder Highlight */
.hero-founder-highlight {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 3rem auto 0 auto;
  padding: 0.8rem 1.5rem;
  background: rgba(201, 168, 76, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 50px;
  transition: all 0.4s ease;
  cursor: pointer;
  max-width: fit-content;
}
.hero-founder-highlight:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.hero-founder-img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  object-fit: cover;
}
.hero-founder-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.hero-founder-text strong {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 1.1rem;
  line-height: 1.2;
}
.hero-founder-text span {
  font-size: 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero-founder-link {
  color: var(--text-light);
  font-size: 0.8rem;
  margin-left: 1rem;
  transition: color 0.3s;
}
.hero-founder-highlight:hover .hero-founder-link {
  color: var(--gold);
}

.hero-footer {
  position: absolute;
  bottom: 2rem; left: 0; width: 100%;
  text-align: center;
}
.footer-note {
  font-size: 0.75rem; letter-spacing: 1.5px;
  color: var(--text-light); text-transform: uppercase;
  line-height: 1.6;
}

/* ──────────────────────────────────────────────────────────────
   MODALS (Popups)
   ────────────────────────────────────────────────────────────── */
.modals-container {
  position: absolute;
  top: 0; left: 0; width: 0; height: 0;
}

.modal {
  position: fixed;
  top: 0; left: 0; width: 100%;
  height: 100vh;
  height: 100dvh;
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 2000;
  visibility: hidden;
  opacity: 0;
  overflow-y: auto; /* Allow scrolling inside the modal */
  overflow-x: hidden;
}

.modal-close {
  position: fixed;
  top: 2.5rem; right: 3rem;
  background: none; border: none;
  color: var(--text-light);
  font-size: 0.8rem; letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  display: flex; align-items: center; gap: 0.5rem;
  z-index: 2010;
  transition: color 0.3s;
}
.modal-close span {
  font-size: 1.2rem;
  display: inline-block;
  transition: transform 0.3s;
}
.modal-close:hover { color: var(--gold); }
.modal-close:hover span { transform: rotate(90deg); }

.modal-content {
  padding: 100px 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Modal Internal Typography */
.section-divider {
  width: 40px; height: 2px;
  background: var(--gold);
  margin-bottom: 2rem;
}
.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.section-subheading {
  font-size: 1.1rem; color: var(--text-medium);
  max-width: 700px; margin-bottom: 3rem; line-height: 1.7;
}
.about-content p, .founder-bio {
  font-size: 1.05rem; line-height: 1.9; color: var(--text-medium); margin-bottom: 1.5rem; max-width: 800px;
}
.vision-box {
  margin-top: 3rem; padding: 2.5rem;
  background: rgba(201, 168, 76, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 12px; max-width: 800px;
}
.vision-box h3 { color: var(--gold); font-family: var(--font-heading); font-size: 1.4rem; margin-bottom: 1rem; }

/* Grid & Cards inside Modals */
.cards-grid {
  display: grid; gap: 2rem; width: 100%;
}
.cols-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--obsidian);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: 12px;
  transition: transform 0.4s, border-color 0.4s;
  position: relative;
}
.card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 168, 76, 0.3);
}
.card-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem; font-weight: 700;
  color: rgba(201, 168, 76, 0.1);
  margin-bottom: 0.5rem;
}
.card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem; color: var(--white);
  margin-bottom: 1rem;
}
.card p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 1rem; }
.card ul { list-style: none; }
.card ul li {
  font-size: 0.85rem; color: var(--text-medium);
  padding-left: 1.2rem; position: relative; margin-bottom: 0.5rem;
}
.card ul li::before {
  content: '→'; position: absolute; left: 0; color: var(--gold); font-size: 0.8rem;
}

/* Founder Specific */
.founder-img-wrap {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: var(--glow-soft);
  transition: all 0.4s ease;
}
.founder-img-wrap:hover {
  transform: scale(1.05);
  box-shadow: var(--glow-strong);
  border-color: var(--gold-light);
}
.founder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.founder-name { font-family: var(--font-heading); font-size: 2rem; color: var(--white); margin-bottom: 0.5rem; }
.founder-title { color: var(--gold); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 2rem; }

/* ──────────────────────────────────────────────────────────────
   RESPONSIVE DESIGN
   ────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero {
    height: 100vh;
    height: 100dvh;
    padding: 8rem 0 4rem;
    overflow: hidden;
  }
  .hero-inner { flex-direction: column; text-align: center; gap: 1.5rem; margin-top: 1rem; max-height: calc(100vh - 12rem); overflow-y: auto; padding-bottom: 2rem; }
  .hero-eyebrow, .hero-cta { justify-content: center; }
  .hero-subtitle, .hero-desc { margin: 0 auto 1.5rem; }
  .cols-3 { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  
  /* Mobile Menu Hamburger */
  .mobile-menu-btn {
    display: block; width: 30px; height: 20px; position: relative; z-index: 1600; background: none; border: none;
    cursor: pointer;
  }
  .mobile-menu-btn span {
    display: block; width: 100%; height: 2px; background: var(--white); position: absolute; left: 0; transition: all 0.3s ease;
  }
  .mobile-menu-btn span:nth-child(1) { top: 0; }
  .mobile-menu-btn span:nth-child(2) { top: 50%; transform: translateY(-50%); }
  .mobile-menu-btn span:nth-child(3) { bottom: 0; }
  
  .mobile-menu-btn.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); background: var(--gold); }
  .mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
  .mobile-menu-btn.active span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); background: var(--gold); }
  
  /* Mobile Navigation Drawer */
  .mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    height: 100dvh;
    background: rgba(11, 11, 11, 0.96);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-left: 1px solid rgba(201, 168, 76, 0.15);
    z-index: 1500;
    padding: 8rem 3rem 4rem;
    display: flex;
    flex-direction: column;
    transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .mobile-nav.active {
    right: 0;
  }
  .mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .mobile-nav-btn {
    background: none;
    border: none;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    text-align: left;
    width: 100%;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
  }
  .mobile-nav-btn:hover, .mobile-nav-btn:focus {
    color: var(--white);
    border-color: var(--gold);
    padding-left: 10px;
  }

  /* Mobile Nav Overlay Backdrop */
  .mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: rgba(5, 5, 5, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1400;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
  }
  .mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }
}

/* ──────────────────────────────────────────────────────────────
   MODAL EXPANDED STYLES (Journey, India, Designer Growth, Tech Edge)
   ────────────────────────────────────────────────────────────── */
.modal-sub-section {
  margin-top: 5rem;
  width: 100%;
}
.sub-heading {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  padding-bottom: 0.8rem;
  letter-spacing: 1px;
}

/* 2 Column Grid for Tech Edge */
.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

/* Horizontal Timeline Journey Infographic */
.timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  margin-top: 4rem;
  padding-bottom: 2rem;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  z-index: 0;
  opacity: 0.5;
}
.timeline-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 1rem;
}
.timeline-step::after {
  content: '→';
  position: absolute;
  top: 25px;
  right: -10px;
  color: var(--gold);
  font-size: 1.5rem;
  opacity: 0.3;
}
.timeline-step:last-child::after {
  display: none;
}
.timeline-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--black);
  border: 2px solid var(--gold);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.1), inset 0 0 10px rgba(201, 168, 76, 0.2);
  position: relative;
}
.timeline-step:hover .timeline-number {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.4), inset 0 0 15px rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}
.timeline-step h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.timeline-step p {
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.6;
  background: rgba(255, 255, 255, 0.03);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  transition: all 0.4s ease;
}
.timeline-step:hover p {
  border-color: rgba(201, 168, 76, 0.3);
  background: rgba(201, 168, 76, 0.05);
  transform: translateY(-5px);
}

/* India Advantage Infographic */
.infographic-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}
.info-card {
  background: linear-gradient(135deg, rgba(20,20,20,1) 0%, rgba(5,5,5,1) 100%);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  text-align: center;
}
.info-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.5), 0 0 20px rgba(201, 168, 76, 0.1);
  border-color: rgba(201, 168, 76, 0.4);
}
.info-card:hover::before {
  transform: scaleX(1);
}
.info-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: inline-block;
  filter: drop-shadow(0 0 10px rgba(201, 168, 76, 0.4));
}
.info-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: 1px;
}
.info-card p {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.7;
}

/* Designer Grid Areas */
.designer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  width: 100%;
}
.designer-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: var(--obsidian);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  transition: all 0.3s ease;
}
.designer-item:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateX(5px);
  box-shadow: var(--glow-soft);
}
.designer-icon {
  color: var(--gold);
  font-size: 0.8rem;
}
.designer-item span {
  font-size: 0.95rem;
  color: var(--text-medium);
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .cols-2 {
    grid-template-columns: 1fr;
  }
  .timeline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  .timeline::before {
    display: none;
  }
  .timeline-step::after {
    display: none;
  }
  .designer-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .cols-3 { grid-template-columns: 1fr; }
  .modal-close { top: 1.5rem; right: 1.5rem; }
}

@media (max-width: 576px) {
  .timeline {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .infographic-grid {
    gap: 3rem;
  }
  .cards-grid {
    gap: 3rem;
  }
  .modal-content {
    padding: 120px 0 60px 0;
  }
  .hero-footer {
    bottom: 1rem;
    padding: 0 1rem;
  }
  .footer-note {
    font-size: 0.55rem;
    letter-spacing: 0.5px;
  }
}

/* ──────────────────────────────────────────────────────────────
   CONTINUOUS PREMIUM ANIMATIONS
   ────────────────────────────────────────────────────────────── */
@keyframes floatContinuous {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

@keyframes pulseContinuous {
  0% { filter: drop-shadow(0 0 5px rgba(201, 168, 76, 0.2)); }
  50% { filter: drop-shadow(0 0 25px rgba(201, 168, 76, 0.7)); }
  100% { filter: drop-shadow(0 0 5px rgba(201, 168, 76, 0.2)); }
}

.card, .info-card {
  animation: floatContinuous 7s ease-in-out infinite;
}
.card:nth-child(even), .info-card:nth-child(even) {
  animation-delay: -3.5s;
}
.card:hover, .info-card:hover {
  animation-play-state: paused;
}

.info-icon, .timeline-number {
  animation: pulseContinuous 4s ease-in-out infinite;
}
.timeline-step:nth-child(even) .timeline-number {
  animation-delay: -2s;
}
