/* ===================================================================
       REGISTER NOW PAGE — Redesigned Stylesheet
       Covers: Hero (2-Column with Background), Why Attend Grid (4 Cards),
               Highlights Grid, Agenda & Speaker side-by-side,
               Form with Aspiration Cards, What You Receive Grid, FAQ Grid
       Supports: Light + Dark theme, Desktop, Tablet, and Mobile Responsive
    =================================================================== */

    /* --- Common Elements & Global Modifiers --- */
    .portal-content-section {
      background-color: var(--bg-cream);
      transition: background-color 0.3s ease;
      padding: 80px 5%;
    }

    /* Primary Accent Golden Shine Animation */
    @keyframes gold-shine {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    /* Theme-Based Visibility Toggles */
    .dark-only {
      display: none !important;
    }
    .light-only {
      display: block !important;
    }
    .dark-theme .dark-only {
      display: block !important;
    }
    .dark-theme .light-only {
      display: none !important;
    }

    /* ===================================================================
       PARALLAX MOTION HERO SECTION (DESIGN 3.1 SEAMLESS INTEGRATION)
    =================================================================== */
    :root {
    }
    .dark-theme {
    }

    .story {
      height: auto;
      position: relative;
    }
    .stage {
      position: relative !important;
      height: 100svh;
      min-height: 620px;
      overflow: hidden;
      isolation: isolate;
      background: var(--hero-bg);
    }
    .ambient {
      position: absolute;
      inset: -25%;
      opacity: 0.58;
      pointer-events: none;
      overflow: hidden;
    }
    .flare {
      position: absolute;
      border-radius: 50%;
      mix-blend-mode: screen;
      will-change: transform;
      transform: translate3d(0, 0, 0);
    }
    .f1 {
      width: 53vw;
      height: 53vw;
      left: -9vw;
      top: 20vh;
      background: radial-gradient(circle at center, color-mix(in srgb, var(--cyan, #00a8b5) 52%, transparent) 0%, color-mix(in srgb, var(--cyan, #00a8b5) 25%, transparent) 40%, transparent 75%);
      animation: d1 15s ease-in-out infinite alternate;
    }
    .f2 {
      width: 60vw;
      height: 60vw;
      right: -15vw;
      top: -19vh;
      background: radial-gradient(circle at center, color-mix(in srgb, var(--violet, #8b5cf6) 66%, transparent) 0%, color-mix(in srgb, var(--violet, #8b5cf6) 30%, transparent) 42%, transparent 75%);
      animation: d2 18s ease-in-out infinite alternate;
    }
    .f3 {
      width: 42vw;
      height: 42vw;
      left: 38vw;
      bottom: -26vh;
      background: radial-gradient(circle at center, color-mix(in srgb, var(--gold-metallic, #d4af37) 38%, transparent) 0%, color-mix(in srgb, var(--gold-metallic, #d4af37) 18%, transparent) 45%, transparent 75%);
      animation: d3 16s ease-in-out infinite alternate;
    }
    @keyframes d1 { to { transform: translate(18vw, -12vh) scale(1.11); } }
    @keyframes d2 { to { transform: translate(-16vw, 24vh) scale(.9); } }
    @keyframes d3 { to { transform: translate(-18vw, -17vh) scale(1.16); } }

    .mesh {
      position: absolute;
      inset: 0;
      opacity: 0.12;
      background-image: linear-gradient(var(--testimonial-border) 1px, transparent 1px), linear-gradient(90deg, var(--testimonial-border) 1px, transparent 1px);
      background-size: 72px 72px;
      pointer-events: none;
    }

    .copy {
      position: absolute;
      z-index: 12;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      width: calc(100% - 48px);
      max-width: 720px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      will-change: transform;
    }

    .kinetic {
      position: absolute;
      z-index: 9;
      right: clamp(-130px, 2vw, 30px);
      top: 48%;
      width: min(52vw, 690px);
      aspect-ratio: 1;
      transform: translateY(-50%);
      will-change: transform, opacity;
      pointer-events: none;
    }

    .end {
      position: absolute;
      z-index: 15;
      left: 50%;
      top: 50%;
      width: 92vw;
      text-align: center;
      opacity: 0;
      transform: translate(-50%, 80px);
      pointer-events: none;
    }
    .end small {
      display: block;
      margin-bottom: 18px;
      color: var(--text-muted);
      font-size: 0.75rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
    }
    .end h2 {
      margin: 0;
      font-size: clamp(3.1rem, 8vw, 8rem);
      font-family: var(--font-heading);
      font-weight: 800;
      line-height: 0.89;
      letter-spacing: -0.067em;
      color: var(--primary-dark);
    }
    .hero-title,
    .hero-title .title-accent {
      font-family: 'Fraunces', Georgia, serif !important;
      font-size: clamp(2.5rem, 4.8vw, 4.5rem);
      font-weight: 800;
      line-height: 0.95;
      letter-spacing: -0.04em;
      background: linear-gradient(135deg, #b38624 0%, #d1a842 50%, #9b7219 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent !important;
      margin-bottom: 0.6rem;
      text-align: center;
    }
    .dark-theme .hero-title,
    .dark-theme .hero-title .title-accent {
      background: linear-gradient(135deg, #f7d572 0%, #d1a842 50%, #f1c54e 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent !important;
    }
    .end span {
      color: transparent;
      background: linear-gradient(100deg, var(--gold-metallic), #00a8b5, #8b5cf6);
      -webkit-background-clip: text;
      background-clip: text;
    }

    @media (min-width: 761px) and (max-width: 1180px) {
      .story { height: auto !important; }
      .stage {
        height: auto !important;
        min-height: unset !important;
        position: relative !important;
        padding-top: 130px !important;
        padding-bottom: 70px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
      }
      .copy {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        width: calc(100% - 48px) !important;
        max-width: 580px !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
      }
      .hero-tamil-title {
        font-size: clamp(2.6rem, 5.5vw, 3.6rem) !important;
        text-align: center !important;
        white-space: normal !important;
      }
      .hero-title {
        font-size: clamp(2.6rem, 5vw, 4.2rem) !important;
        text-align: center !important;
      }
      .hero-masterclass-subtitle {
        font-size: clamp(0.82rem, 1.8vw, 1.05rem) !important;
        text-align: center !important;
      }
      .hero-stats-row {
        gap: 10px !important;
        margin-top: 1rem !important;
        margin-bottom: 1.4rem !important;
      }
      .stat-capsule {
        padding: 10px 6px !important;
      }
      .hero-actions {
        flex-direction: row !important;
        justify-content: center !important;
        gap: 14px !important;
      }
      .kinetic {
        width: min(55vw, 380px) !important;
        aspect-ratio: 1 !important;
        left: 50% !important;
        top: 81% !important;
        right: auto !important;
        transform: translate(-50%, -50%) !important;
      }
    }

    @media (max-width: 760px) {
      .story { height: auto !important; }
      .stage {
        height: auto !important;
        min-height: unset !important;
        position: relative !important;
        padding-top: 110px !important;
        padding-bottom: 50px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
      }
      .copy {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        width: calc(100% - 24px) !important;
        max-width: 460px !important;
        margin-top: 0 !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
      }
      .hero-tamil-title {
        font-size: clamp(1.8rem, 6.5vw, 2.4rem) !important;
        margin-bottom: 0.15rem !important;
        text-align: center !important;
        white-space: normal !important;
      }
      .hero-title {
        font-size: clamp(2.1rem, 7.5vw, 3.2rem) !important;
        margin-bottom: 0.4rem !important;
        text-align: center !important;
      }
      .hero-masterclass-subtitle {
        font-size: clamp(0.7rem, 3vw, 0.88rem) !important;
        letter-spacing: 0.15em !important;
        margin-bottom: 0.8rem !important;
        text-align: center !important;
      }
      .hero-stats-row {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 6px !important;
        margin-top: 0.8rem !important;
        margin-bottom: 1.2rem !important;
        max-width: 100% !important;
      }
      .stat-capsule {
        padding: 8px 4px !important;
        border-radius: 12px !important;
      }
      .stat-capsule-icon {
        width: 16px !important;
        height: 16px !important;
        margin-bottom: 2px !important;
      }
      .stat-capsule-num {
        font-size: 0.68rem !important;
      }
      .stat-capsule-lbl {
        font-size: 0.58rem !important;
        line-height: 1.2 !important;
      }
    }

    @media (max-width: 380px) {
      .hero-stats-row {
        gap: 4px !important;
      }
      .stat-capsule {
        padding: 6px 2px !important;
      }
      .stat-capsule-lbl {
        font-size: 0.52rem !important;
      }
      .stat-capsule-num {
        font-size: 0.62rem !important;
      }
    }

    @media (max-width: 760px) {
      .hero-actions {
        flex-direction: column !important;
        gap: 10px !important;
        width: 100% !important;
        max-width: 300px !important;
        margin: 0 auto !important;
      }
      .hero-cta-btn, .hero-secondary-btn {
        width: 100% !important;
        padding: 0.75rem 1.5rem !important;
        font-size: 0.82rem !important;
      }
      .kinetic {
        width: min(74vw, 310px) !important;
        aspect-ratio: 1 !important;
        left: 50% !important;
        top: 83% !important;
        right: auto !important;
        transform: translate(-50%, -50%) !important;
        opacity: 0.9 !important;
      }
    }

    /* --- Hero Section Redesign (2-Column Grid with Background Image) --- */
    .hero-section {
      min-height: 85vh;
      display: flex;
      justify-content: center;
      align-items: center;
      padding-top: 140px;
      padding-bottom: 70px;
      position: relative;
      background: var(--hero-bg);
      overflow: hidden;
      transition: background-color 0.3s ease;
    }
    .dark-theme .hero-section {
      background: var(--hero-bg);
    }
    .gold-dust-canvas {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 2;
    }
    .hero-grid-container {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 60px;
      max-width: 1200px;
      width: 100%;
      margin: 0 auto;
      align-items: center;
      padding: 0 2rem;
      position: relative;
      z-index: 3;
    }
    .hero-content {
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      max-width: 100%;
      padding: 0;
    }
    .hero-present-pill {
      font-family: var(--font-sans);
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 2px;
      color: var(--gold-metallic);
      border: 1px solid rgba(212, 164, 55, 0.3);
      padding: 6px 16px;
      border-radius: 50px;
      margin-bottom: 1.5rem;
      text-transform: uppercase;
      background: rgba(212, 164, 55, 0.05);
    }
    .dark-theme .hero-present-pill {
      color: var(--gold-light);
      border-color: rgba(242, 201, 76, 0.3);
      background: rgba(242, 201, 76, 0.03);
    }
    .hero-tamil-title {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: clamp(3.3rem, 6vw, 5.1rem);
      font-weight: 800;
      color: var(--primary-dark);
      margin-bottom: 0.2rem;
      line-height: 1.1;
      text-align: center;
      white-space: nowrap;
    }
    .hero-title {
      font-family: 'Fraunces', Georgia, serif !important;
      font-size: clamp(2.5rem, 4.8vw, 4.5rem);
      font-weight: 800;
      line-height: 0.95;
      letter-spacing: -0.04em;
      color: var(--primary-dark);
      margin-bottom: 0.6rem;
      text-align: center;
    }
    .hero-title .title-accent {
      color: transparent !important;
      background: linear-gradient(135deg, #b38624 0%, #d1a842 50%, #9b7219 100%) !important;
      -webkit-background-clip: text !important;
      background-clip: text !important;
    }
    .dark-theme .hero-title,
    .dark-theme .hero-title .title-accent {
      background: linear-gradient(135deg, #f7d572 0%, #d1a842 50%, #f1c54e 100%) !important;
      -webkit-background-clip: text !important;
      background-clip: text !important;
      color: transparent !important;
    }
    .hero-masterclass-subtitle {
      font-family: 'DM Sans', sans-serif;
      font-size: clamp(0.85rem, 1.5vw, 1.1rem);
      font-weight: 700;
      letter-spacing: 0.2em;
      color: var(--gold-metallic);
      margin-bottom: 1.2rem;
      text-align: center;
    }
    .dark-theme .hero-masterclass-subtitle {
      color: var(--gold-light);
    }
    .hero-description {
      font-family: var(--font-sans);
      font-size: 1.05rem;
      line-height: 1.6;
      color: var(--text-normal);
      margin-bottom: 2rem;
      max-width: 580px;
    }

    /* Stat capsules (recreated from tnd-4) */
    .hero-stats-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      width: 100%;
      max-width: 620px;
      margin-top: 1.2rem;
      margin-bottom: 1.8rem;
    }
    .stat-capsule {
      padding: 12px 8px;
      border-radius: 18px;
      text-align: center;
      border: 1px solid rgba(212, 164, 55, 0.18);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 6px;
      position: relative;
      overflow: hidden;
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
      text-decoration: none;
    }
    .stat-capsule.glass-card {
      background: var(--white-glass);
      border: 1px solid var(--card-border);
      box-shadow: var(--shadow-sm);
    }
    .stat-capsule:hover {
      transform: translateY(-10px) scale(1.02);
      box-shadow: 0 20px 50px rgba(15, 58, 52, 0.08), 0 0 30px rgba(212, 164, 55, 0.4);
      border-color: rgba(212, 164, 55, 0.4);
    }
    .dark-theme .stat-capsule:hover {
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(212, 164, 55, 0.4) !important;
    }
    .stat-capsule::after {
      content: '';
      position: absolute;
      top: -50%;
      left: -100%;
      width: 50%;
      height: 200%;
      background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 100%
      );
      transform: rotate(25deg);
      transition: left 0.8s cubic-bezier(0.16, 1, 0.3, 1);
      pointer-events: none;
      z-index: 10;
    }
    .stat-capsule:hover::after {
      left: 150%;
    }
    .stat-capsule-icon {
      color: var(--gold-metallic);
      width: 24px;
      height: 24px;
      flex-shrink: 0;
      stroke: currentColor;
      transition: color 0.3s ease;
    }
    .dark-theme .stat-capsule-icon {
      color: var(--gold-light);
    }
    .stat-capsule-num {
      font-weight: 800;
      font-size: 1.15rem;
      color: var(--primary-dark);
      line-height: 1.1;
      font-family: 'DM Sans', sans-serif;
      letter-spacing: 0.5px;
    }
    .stat-capsule-lbl {
      font-size: 0.72rem;
      font-weight: 600;
      opacity: 0.75;
      color: var(--text-normal);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      line-height: 1.3;
      font-family: 'DM Sans', sans-serif;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 15px;
      width: 100%;
      margin: 0 auto;
    }
    .hero-cta-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      background: linear-gradient(135deg, #b38624 0%, #d1a842 100%);
      color: #ffffff;
      text-decoration: none;
      padding: 0.95rem 2.8rem;
      border-radius: 50px;
      font-size: 0.95rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      border: none;
      border-top: 1.5px solid rgba(255, 255, 255, 0.4);
      border-bottom: 1.5px solid rgba(0, 0, 0, 0.25);
      box-shadow: 0 6px 16px rgba(179, 134, 36, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.4);
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      font-family: 'DM Sans', sans-serif;
    }
    .hero-cta-btn:hover {
      background: linear-gradient(135deg, #d1a842 0%, #b38624 100%);
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(179, 134, 36, 0.35), 0 0 15px rgba(179, 134, 36, 0.2);
      color: #ffffff;
    }
    .dark-theme .hero-cta-btn:hover {
      box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6), 0 0 15px rgba(212, 175, 55, 0.35) !important;
    }
    .hero-secondary-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: transparent;
      color: var(--primary-dark);
      text-decoration: none;
      padding: 0.95rem 2.2rem;
      border-radius: 50px;
      font-size: 0.95rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      border: 1.5px solid var(--primary-dark);
      box-shadow: 0 6px 16px rgba(179, 134, 36, 0.18);
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      font-family: 'DM Sans', sans-serif;
    }
    .hero-secondary-btn:hover {
      background: rgba(15, 58, 52, 0.05);
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(179, 134, 36, 0.28), 0 0 12px rgba(179, 134, 36, 0.15);
    }
    .dark-theme .hero-secondary-btn:hover {
      background: rgba(255, 255, 255, 0.05);
      box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5), 0 0 12px rgba(212, 175, 55, 0.25) !important;
    }

    /* --- Why Attend Section --- */
    .why-attend-section {
      padding: 90px 5%;
      background-color: var(--bg-cream);
      transition: background-color 0.3s ease;
      position: relative;
    }
    .section-header-centered {
      text-align: center;
      margin-bottom: 55px;
    }
    .section-title-premium {
      font-family: var(--font-heading);
      font-size: 2.8rem;
      font-weight: 800;
      color: var(--primary-dark);
      letter-spacing: -0.01em;
      text-transform: none;
      margin-bottom: 12px;
      text-align: center;
    }
    .speaker-session-heading {
      font-size: clamp(2.0rem, 2.2vw, 2.4rem) !important;
    }
    .agenda-heading {
      text-align: left;
    }
    .section-title-premium--lined {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
    }
    .section-title-premium--lined::before,
    .section-title-premium--lined::after {
      content: '';
      width: clamp(25px, 6vw, 80px);
      height: 1.5px;
      background: linear-gradient(90deg, rgba(212,164,55,0) 0%, var(--gold-metallic) 100%);
      flex-shrink: 0;
    }
    .section-title-premium--lined::after {
      background: linear-gradient(90deg, var(--gold-metallic) 0%, rgba(212,164,55,0) 100%);
    }

    .title-gold-dot {
      width: 8px;
      height: 8px;
      background-color: var(--gold-metallic);
      border-radius: 50%;
      margin: 0 auto;
      position: relative;
    }
    .title-gold-dot::before,
    .title-gold-dot::after {
      content: '';
      position: absolute;
      top: 50%;
      width: 40px;
      height: 1px;
      background: linear-gradient(90deg, rgba(212,164,55,0) 0%, var(--gold-metallic) 100%);
    }
    .title-gold-dot::before {
      right: 15px;
      transform: translateY(-50%) rotate(180deg);
    }
    .title-gold-dot::after {
      left: 15px;
      transform: translateY(-50%);
    }
    
    
    
    
    
    
    
    
    

    /* --- Highlights Section Styles --- */
    
    .dark-theme 
    
    
    
    .highlight-card-header-new {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    
    
    .highlight-label-title-new {
      font-family: var(--font-sans);
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: #D4AF37;
    }
    .highlight-value-text-new {
      font-family: var(--font-heading);
      font-size: 1.15rem;
      font-weight: 600;
      color: #FAF8F5;
      line-height: 1.4;
    }
    .premium-highlight {
      border-color: var(--gold-metallic);
      background: rgba(212, 164, 55, 0.08);
      box-shadow: 0 10px 25px rgba(212, 164, 55, 0.08);
    }
    .premium-highlight:hover {
      background: rgba(212, 164, 55, 0.12);
      border-color: var(--gold-light);
    }
    .highlight-bullets-new {
      list-style: none;
      padding: 0;
      margin: 0;
      text-align: left;
    }
    .highlight-bullets-new li {
      font-family: var(--font-sans);
      font-size: 0.88rem;
      color: rgba(250, 248, 245, 0.85);
      margin-bottom: 6px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .highlight-bullets-new li::before {
      content: '✓';
      color: #D4AF37;
      font-weight: 700;
      font-size: 0.85rem;
    }

    /* --- Agenda & Speaker Section Styles --- */
    .agenda-speaker-section {
      background: var(--founders-bg);
      padding: 90px 5%;
      position: relative;
      overflow: hidden;
      transition: background-color 0.3s ease;
    }
    .agenda-speaker-grid {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 60px;
      max-width: 1200px;
      margin: 0 auto;
      align-items: start;
    }
    .agenda-timeline-container-new {
      position: relative;
      padding-left: 20px;
    }
    .agenda-timeline-line-new {
      content: '';
      position: absolute;
      left: 144px;
      top: 10px;
      bottom: 10px;
      width: 2px;
      background: linear-gradient(180deg, rgba(212,164,55,0.1) 0%, rgba(212,164,55,0.5) 20%, rgba(212,164,55,0.5) 80%, rgba(212,164,55,0.1) 100%);
    }
    .timeline-item-new {
      display: flex;
      align-items: center;
      gap: 30px;
      padding: 16px 0;
      position: relative;
    }
    .timeline-time-new {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--gold-metallic);
      background: rgba(212,164,55,0.08);
      border: 1px solid rgba(212,164,55,0.25);
      border-radius: 8px;
      padding: 6px 12px;
      min-width: 90px;
      text-align: center;
      flex-shrink: 0;
      letter-spacing: 0.5px;
    }
    .dark-theme .timeline-time-new {
      color: var(--gold-light);
      border-color: rgba(242, 201, 76, 0.25);
      background: rgba(242, 201, 76, 0.05);
    }
    .timeline-dot-new {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--gold-metallic);
      border: 2px solid var(--bg-cream);
      flex-shrink: 0;
      position: relative;
      z-index: 2;
      box-shadow: 0 0 6px rgba(212,164,55,0.3);
    }
    .dark-theme .timeline-dot-new {
      background: var(--gold-light);
      border-color: var(--bg-cream);
    }
    .timeline-content-new {
      flex-grow: 1;
    }
    .timeline-label-new {
      font-family: var(--font-heading);
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--primary-dark);
      margin: 0;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .highlight-timeline-new .timeline-time-new {
      background: rgba(212,164,55,0.18);
      border-color: rgba(212,164,55,0.5);
    }
    .highlight-timeline-new .timeline-dot-new {
      background: var(--primary-dark);
      border-color: var(--gold-metallic);
      box-shadow: 0 0 10px var(--gold-metallic);
    }
    .highlight-timeline-new .timeline-label-new {
      color: var(--gold-metallic);
      font-size: 1.05rem;
      font-weight: 700;
    }
    .dark-theme .highlight-timeline-new .timeline-label-new {
      color: var(--gold-light);
    }
    
    
    
    
    .speaker-image-avatar {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .speaker-image-ring {
      position: absolute;
      top: -6px;
      left: -6px;
      right: -6px;
      bottom: -6px;
      border-radius: 50%;
      border: 1px dashed rgba(212, 164, 55, 0.4);
      animation: rotate-ring 25s linear infinite;
      z-index: 1;
    }
    .speaker-name {
      font-family: var(--font-heading);
      font-size: 1.6rem;
      font-weight: 800;
      color: var(--gold-metallic);
      margin: 0 0 6px 0;
      letter-spacing: 1px;
    }
    .dark-theme .speaker-name {
      color: var(--gold-light);
    }
    .speaker-title {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--text-muted);
      margin: 0;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .speaker-card-divider {
      width: 80px;
      height: 1px;
      background: var(--gold-metallic);
      margin: 20px 0;
      opacity: 0.6;
    }
    .speaker-description {
      font-family: var(--font-sans);
      font-size: 0.95rem;
      line-height: 1.6;
      color: var(--text-normal);
      max-width: 320px;
      margin: 0;
    }

    /* --- Registration Form Section (2-Column Card) --- */
    .register-form-section {
      background-color: var(--bg-cream);
      padding: 90px 5%;
      transition: background-color 0.3s ease;
      position: relative;
    }
    .register-form-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 450px;
      background: linear-gradient(180deg, rgba(15, 58, 52, 0.08) 0%, var(--bg-cream) 100%);
      pointer-events: none;
      z-index: 0;
    }
    .dark-theme .register-form-section::before {
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, var(--bg-cream) 100%);
    }
    .register-section-title {
      text-align: center;
      font-family: var(--font-heading);
      font-size: 2.8rem;
      font-weight: 800;
      color: var(--primary-dark);
      letter-spacing: -0.01em;
      text-transform: none;
      margin-bottom: 50px;
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
    }
    .register-section-title::before,
    .register-section-title::after {
      content: '';
      width: 80px;
      height: 1.5px;
      background: linear-gradient(90deg, rgba(212,164,55,0) 0%, var(--gold-metallic) 100%);
    }
    .register-section-title::after {
      background: linear-gradient(90deg, var(--gold-metallic) 0%, rgba(212,164,55,0) 100%);
    }
    .register-form-card {
      /* Force dark theme variables inside the card since the background is dark in all themes */
      --primary-dark: #FFFFFF;
      --gold-metallic: #D4AF37;
      --gold-light: #F2C94C;
      --white-glass: rgba(5, 28, 28, 0.7);

      max-width: 1100px;
      margin: 0 auto;
      background: linear-gradient(135deg, #0d2129 0%, #091a1f 50%, #0a1520 100%);
      border: 1.5px solid rgba(0, 168, 181, 0.22);
      border-radius: 24px;
      padding: 50px;
      position: relative;
      z-index: 1;
      box-shadow: 0 15px 40px rgba(0, 168, 181, 0.1), 0 0 45px rgba(0, 168, 181, 0.2);
      transition: border-color 0.4s ease, box-shadow 0.4s ease, background 0.3s ease;
    }
    .register-form-card:hover {
      border-color: rgba(0, 168, 181, 0.38);
      box-shadow: 0 30px 60px rgba(0, 168, 181, 0.15), 0 0 45px rgba(0, 168, 181, 0.3);
    }
    .dark-theme .register-form-card {
      background: linear-gradient(135deg, #051214 0%, #040e10 50%, #03080b 100%);
      border-color: rgba(0, 168, 181, 0.22);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 45px rgba(0, 168, 181, 0.25);
    }
    .dark-theme .register-form-card:hover {
      border-color: rgba(0, 168, 181, 0.38);
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 55px rgba(0, 168, 181, 0.35);
    }
    
    /* Fee & Urgency Badge Styling */
    .form-header-badge-wrapper {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 30px;
      flex-wrap: wrap;
    }
    
    .form-fee-badge {
      display: inline-flex;
      align-items: center;
      background: rgba(212, 164, 55, 0.05);
      border: 1.5px solid var(--gold-metallic);
      color: #FAF8F5;
      padding: 8px 18px;
      border-radius: 30px;
      font-family: var(--font-sans);
      font-size: 0.9rem;
      font-weight: 700;
      box-shadow: 0 4px 15px rgba(212, 164, 55, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
      animation: float-badge 3s ease-in-out infinite;
    }
    
    .form-urgency-badge {
      display: inline-flex;
      align-items: center;
      background: rgba(248, 113, 113, 0.05);
      border: 1.5px solid rgba(248, 113, 113, 0.4);
      color: #f87171;
      padding: 8px 18px;
      border-radius: 30px;
      font-family: var(--font-sans);
      font-size: 0.85rem;
      font-weight: 700;
      box-shadow: 0 4px 15px rgba(239, 68, 68, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
      animation: float-badge 3s ease-in-out infinite;
      animation-delay: 1.5s;
    }
    
    .urgency-dot-pulsing {
      width: 8px;
      height: 8px;
      background-color: #ef4444;
      border-radius: 50%;
      margin-right: 8px;
      display: inline-block;
      position: relative;
    }
    
    .dark-theme .urgency-dot-pulsing {
      background-color: #f87171;
    }
    
    .urgency-dot-pulsing::after {
      content: '';
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      background-color: inherit;
      border-radius: 50%;
      animation: pulseGlow 1.8s infinite ease-in-out;
    }
    
    @keyframes pulseGlow {
      0% {
        transform: scale(1);
        opacity: 1;
      }
      100% {
        transform: scale(3);
        opacity: 0;
      }
    }

    /* Hourglass wiggle animation */
    .animate-hourglass {
      animation: wiggle 2.5s infinite ease-in-out;
      transform-origin: center;
    }
    
    @keyframes wiggle {
      0%, 100% { transform: rotate(0deg); }
      15% { transform: rotate(-15deg); }
      30% { transform: rotate(15deg); }
      45% { transform: rotate(-10deg); }
      60% { transform: rotate(10deg); }
      75% { transform: rotate(0deg); }
    }
    
    @keyframes float-badge {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-6px); }
    }
    .form-two-col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }
    .form-column-title {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.82rem;
      font-weight: 800;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--primary-dark);
      margin-bottom: 28px;
      padding-bottom: 12px;
      border-bottom: 1.5px solid rgba(212,164,55,0.2);
    }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-bottom: 20px;
    }
    .form-row.full-width {
      grid-template-columns: 1fr;
    }
    .form-group {
      display: flex;
      flex-direction: column;
      margin-bottom: 20px;
    }
    .form-group label {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--primary-dark);
      margin-bottom: 8px;
    }
    .form-group label .required {
      color: #c0392b;
      margin-left: 2px;
    }
    .dark-theme .form-group label .required {
      color: #e74c3c;
    }
    .register-form-card input,
    .register-form-card select {
      width: 100%;
      background-color: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.12);
      color: #ffffff;
      border-radius: 10px;
      padding: 14px 16px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.92rem;
      box-sizing: border-box;
      transition: all 0.3s ease;
      outline: none;
    }
    .register-form-card input:focus,
    .register-form-card select:focus {
      background-color: rgba(255, 255, 255, 0.08);
      border-color: var(--gold-metallic);
      box-shadow: 0 0 0 3px rgba(212, 164, 55, 0.15);
    }
    .register-form-card input::placeholder {
      color: rgba(255, 255, 255, 0.35);
      font-size: 0.88rem;
    }
    .register-form-card select {
      cursor: pointer;
      appearance: none;
      -webkit-appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
      background-repeat: no-repeat !important;
      background-position: right 14px center !important;
      background-size: 12px 12px !important;
      padding-right: 36px;
    }
    /* Style options explicitly for visibility in both dark and light modes */
    .register-form-card select option,
    .register-form-card select optgroup {
      color: #0F3A34 !important;
      background-color: #FAF8F5 !important;
      font-family: 'DM Sans', sans-serif;
    }
    .phone-input-wrapper {
      display: flex;
      gap: 8px;
      align-items: stretch;
    }
    .phone-prefix {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.12);
      padding: 14px 14px;
      border-radius: 10px;
      font-family: 'DM Sans', sans-serif;
      font-weight: 700;
      color: #ffffff;
      font-size: 0.92rem;
      display: flex;
      align-items: center;
      flex-shrink: 0;
    }
    .field-error {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.75rem;
      color: #e74c3c;
      margin-top: 6px;
      display: none;
      align-items: center;
      gap: 4px;
    }
    .field-error.visible {
      display: flex;
    }
    .form-bottom {
      margin-top: 35px;
      padding-top: 30px;
      border-top: 1.5px solid rgba(212, 164, 55, 0.15);
    }
    .reserve-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      width: 100%;
      padding: 16px 24px;
      border-radius: 50px;
      font-family: 'DM Sans', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      text-transform: uppercase;
      letter-spacing: 2px;
      background: linear-gradient(135deg, #b38624 0%, #d1a842 100%);
      color: #ffffff;
      border: none;
      border-top: 1.5px solid rgba(255,255,255,0.4);
      border-bottom: 1.5px solid rgba(0,0,0,0.25);
      box-shadow: 0 6px 16px rgba(179,134,36,0.25), inset 0 1px 0 rgba(255,255,255,0.4);
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reserve-btn:hover {
      background: linear-gradient(135deg, #d1a842 0%, #b38624 100%);
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(179,134,36,0.35), 0 0 15px rgba(179,134,36,0.2);
    }
    .reserve-btn svg {
      width: 16px;
      height: 16px;
    }
    .form-footer-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 20px;
      flex-wrap: wrap;
      gap: 12px;
    }
    .form-disclaimer {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.75rem;
      color: var(--text-muted);
      font-style: italic;
    }
    .secure-badge {
      display: flex;
      align-items: center;
      gap: 6px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.82rem;
      font-weight: 700;
      color: var(--primary-dark);
      opacity: 0.7;
    }
    .secure-badge svg {
      width: 14px;
      height: 14px;
    }
    .form-success-msg {
      font-family: 'DM Sans', sans-serif;
      margin-top: 20px;
      padding: 16px;
      border-radius: 12px;
      text-align: center;
      display: none;
      font-weight: 700;
      color: #ffffff;
      background: linear-gradient(135deg, #27ae60, #219a52);
      box-shadow: 0 4px 10px rgba(39, 174, 96, 0.2);
      font-size: 0.95rem;
    }

    /* --- Aspiration Cards Selector inside Form --- */
    
    
    
    
    
    
    

    /* --- Receive Section Styles (Greensign-5 Fan Card Expansion Scroll Animation) --- */
    .pin-spacer,
    .why-choose-section.greensign-5,
    .receive-section {
      background: var(--bg-cream) !important;
      background-color: var(--bg-cream) !important;
      position: relative;
      width: 100%;
      transition: background 0.3s ease;
    }

    .why-choose-section.greensign-5 .sticky-wrapper {
      height: 100vh;
      max-height: 580px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      overflow: visible;
      padding: 20px 0;
      background: var(--bg-cream) !important;
      background-color: var(--bg-cream) !important;
    }

    .why-choose-section.greensign-5 .heading-wrapper {
      margin-bottom: 40px;
      z-index: 10;
      text-align: center;
    }

    .why-choose-section.greensign-5 .animation-container {
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 5;
      overflow: visible;
      padding: 0 5%;
    }

    .why-choose-section.greensign-5 .our-edge-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      grid-column-gap: 16px;
      grid-row-gap: 16px;
      width: 100%;
      max-width: 1350px;
      position: relative;
      overflow: visible;
    }

    .why-choose-section.greensign-5 .our-edge-div {
      width: 100%;
      height: 100%;
      will-change: transform;
    }

    #greensign-5 .our-edge-card,
    .greensign-5 .our-edge-card,
    .receive-card {
      min-height: 200px;
      height: 210px;
      padding: 24px 16px;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.92);
      border: 1px solid rgba(0, 168, 181, 0.22);
      box-shadow: 0 15px 40px rgba(0, 168, 181, 0.05);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, background-color 0.3s ease;
    }

    .dark-theme #greensign-5 .our-edge-card,
    .dark-theme .greensign-5 .our-edge-card,
    .dark-theme .receive-card {
      background: rgba(11, 33, 36, 0.92);
      border: 1px solid rgba(0, 168, 181, 0.22);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    #greensign-5 .our-edge-card:hover,
    .greensign-5 .our-edge-card:hover,
    .receive-card:hover {
      transform: translateY(-10px) scale(1.02);
      border-color: rgba(0, 168, 181, 0.38);
      box-shadow: 0 30px 60px rgba(0, 168, 181, 0.08), 0 0 45px rgba(0, 168, 181, 0.28);
    }

    .dark-theme #greensign-5 .our-edge-card:hover,
    .dark-theme .greensign-5 .our-edge-card:hover,
    .dark-theme .receive-card:hover {
      border-color: rgba(0, 168, 181, 0.38);
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 45px rgba(0, 168, 181, 0.28);
    }

    #greensign-5 .our-edge-icon,
    .greensign-5 .our-edge-icon,
    .receive-icon-box {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      border: 1.5px solid rgba(212, 164, 55, 0.35);
      background-color: rgba(212, 164, 55, 0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px auto;
      flex-shrink: 0;
      color: var(--gold-metallic);
      transition: all 0.3s ease;
    }

    #greensign-5 .our-edge-card:hover .our-edge-icon,
    .greensign-5 .our-edge-card:hover .our-edge-icon,
    .receive-card:hover .receive-icon-box {
      background-color: var(--gold-metallic);
      color: #FFFFFF;
      border-color: var(--gold-metallic);
      animation: coinFlip 0.8s ease-in-out forwards;
    }

    #greensign-5 .our-edge-icon svg,
    .greensign-5 .our-edge-icon svg,
    .receive-icon-box svg {
      width: 24px;
      height: 24px;
      stroke: currentColor;
      fill: none;
    }

    #greensign-5 .our-edge-info-div,
    .greensign-5 .our-edge-info-div {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      flex-grow: 0;
      width: 100%;
    }

    #greensign-5 .our-edge-card .h5-heading,
    .greensign-5 .our-edge-card .h5-heading,
    .receive-card h3 {
      font-family: var(--font-sans);
      font-size: 0.78rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      text-align: center;
      color: var(--primary-dark);
      max-width: 100%;
      line-height: 1.4;
      margin: 0;
    }

    .dark-theme #greensign-5 .our-edge-card .h5-heading,
    .dark-theme .greensign-5 .our-edge-card .h5-heading,
    .dark-theme .receive-card h3 {
      color: #FFFFFF;
    }

    @media screen and (max-width: 991px) {
      .why-choose-section.greensign-5 .our-edge-grid {
        grid-column-gap: 12px;
      }
      #greensign-5 .our-edge-card,
      .greensign-5 .our-edge-card {
        padding: 20px 10px;
        min-height: 190px;
      }
      #greensign-5 .our-edge-card .h5-heading,
      .greensign-5 .our-edge-card .h5-heading {
        font-size: 0.72rem;
      }
    }

    @media screen and (max-width: 767px) {
      .why-choose-section.greensign-5 .sticky-wrapper {
        height: auto;
        padding: 50px 0;
      }
      .why-choose-section.greensign-5 .animation-container {
        padding: 0 3%;
      }
      .why-choose-section.greensign-5 .our-edge-grid {
        display: grid !important;
        grid-template-columns: repeat(6, 1fr) !important;
        grid-gap: 8px !important;
        width: 100% !important;
      }
      .why-choose-section.greensign-5 .our-edge-div,
      .why-choose-section.greensign-5 .our-edge-card {
        transform: none !important;
        opacity: 1 !important;
      }
      /* Row 1: 3 Cards (Span 2 out of 6 columns each) */
      .greensign-5 .our-edge-div:nth-child(1),
      .greensign-5 .our-edge-div:nth-child(2),
      .greensign-5 .our-edge-div:nth-child(3) {
        grid-column: span 2 !important;
      }
      /* Row 2: 2 Cards (Span 3 out of 6 columns each - Centered & Balanced) */
      .greensign-5 .our-edge-div:nth-child(4),
      .greensign-5 .our-edge-div:nth-child(5) {
        grid-column: span 3 !important;
      }
      #greensign-5 .our-edge-card,
      .greensign-5 .our-edge-card {
        min-height: 135px;
        height: 100%;
        padding: 14px 6px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        border-radius: 16px;
      }
      #greensign-5 .our-edge-icon,
      .greensign-5 .our-edge-icon {
        width: 38px;
        height: 38px;
        margin-bottom: 8px;
        flex-shrink: 0;
      }
      #greensign-5 .our-edge-icon svg,
      .greensign-5 .our-edge-icon svg {
        width: 18px;
        height: 18px;
      }
      #greensign-5 .our-edge-card .h5-heading,
      .greensign-5 .our-edge-card .h5-heading {
        font-size: 0.62rem !important;
        line-height: 1.3 !important;
        margin: 0 !important;
        word-wrap: break-word !important;
        letter-spacing: 0.3px !important;
      }
    }

    @keyframes coinFlip {
      0% {
        transform: scale(1) rotateY(0deg);
      }
      50% {
        transform: scale(1.2) rotateY(180deg);
      }
      100% {
        transform: scale(1) rotateY(360deg);
      }
    }


    /* --- FAQ Section Accordion Styles (Ref: 16. The New Democracy-4_I_Like_it) --- */
    .faq-section {
      padding: 90px 5%;
      background-color: var(--founders-bg);
      position: relative;
      transition: background-color 0.3s ease;
    }
    .accordion-container {
      max-width: 900px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }
    .accordion-item {
      background: var(--testimonial-bg);
      border: 1px solid var(--testimonial-border);
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .dark-theme .accordion-item {
      background: rgba(5, 28, 28, 0.65);
      border: 1px solid rgba(0, 168, 181, 0.25);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), inset 0 0 10px rgba(0, 168, 181, 0.05);
    }
    .accordion-item:hover {
      border-color: var(--gold-metallic);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }
    .dark-theme .accordion-item:hover {
      border-color: rgba(0, 168, 181, 0.45);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 15px rgba(0, 168, 181, 0.1);
    }
    .accordion-item.active {
      border-color: var(--gold-metallic);
    }
    .dark-theme .accordion-item.active {
      border-color: rgba(0, 168, 181, 0.5);
    }
    .accordion-header {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.4rem 1.8rem;
      background: transparent;
      border: none;
      cursor: pointer;
      text-align: left;
      color: var(--primary-dark);
      font-family: var(--font-sans);
      outline: none;
      transition: color 0.3s ease;
    }
    .dark-theme .accordion-header {
      color: #FFFFFF;
    }
    .module-number {
      font-family: var(--font-sans);
      font-size: 1.45rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      color: rgba(179, 134, 36, 0.65);
      width: 50px;
      flex-shrink: 0;
      line-height: 1;
      transition: color 0.3s ease, opacity 0.3s ease;
    }
    .dark-theme .module-number {
      color: rgba(242, 209, 122, 0.55);
    }
    .accordion-item:hover .module-number,
    .accordion-item.active .module-number {
      color: var(--gold-dark);
      opacity: 0.95;
    }
    .dark-theme .accordion-item:hover .module-number,
    .dark-theme .accordion-item.active .module-number {
      color: var(--gold-light);
      opacity: 0.95;
    }
    .module-title {
      font-family: 'Fraunces', Georgia, serif;
      font-size: 1.15rem;
      font-weight: 700;
      letter-spacing: 0.01em;
      flex-grow: 1;
      margin-right: 1.5rem;
      color: var(--primary-dark);
      transition: color 0.3s ease;
      line-height: 1.4;
    }
    .dark-theme .module-title {
      color: #FFFFFF;
    }
    .accordion-item:hover .module-title,
    .accordion-item.active .module-title {
      color: var(--gold-dark);
    }
    .dark-theme .accordion-item:hover .module-title,
    .dark-theme .accordion-item.active .module-title {
      color: var(--gold-light);
    }
    .accordion-icon {
      width: 18px;
      height: 18px;
      position: relative;
      flex-shrink: 0;
    }
    .accordion-icon::before,
    .accordion-icon::after {
      content: '';
      position: absolute;
      background-color: var(--gold-metallic);
      transition: transform 0.3s ease, opacity 0.3s ease;
    }
    .accordion-icon::before {
      top: 8px;
      left: 0;
      width: 18px;
      height: 2px;
    }
    .accordion-icon::after {
      top: 0;
      left: 8px;
      width: 2px;
      height: 18px;
    }
    .accordion-item.active .accordion-icon::after {
      transform: rotate(90deg);
      opacity: 0;
    }
    .accordion-item.active .accordion-icon::before {
      transform: rotate(180deg);
      background-color: var(--gold-dark);
    }
    .dark-theme .accordion-item.active .accordion-icon::before {
      background-color: var(--gold-light);
    }
    .accordion-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    .accordion-content-inner {
      padding: 0 1.8rem 1.6rem 1.8rem;
      font-family: var(--font-sans);
      font-size: 0.98rem;
      color: var(--text-normal);
      line-height: 1.65;
      border-top: 1px solid var(--testimonial-border);
      margin-top: 0;
      padding-top: 1.2rem;
      opacity: 0.9;
    }
    .accordion-content-inner p {
      margin: 0;
    }
    .dark-theme .accordion-content-inner {
      color: rgba(255, 255, 255, 0.85);
      border-top: 1px solid rgba(0, 168, 181, 0.15);
    }
    @media (max-width: 600px) {
      .accordion-header {
        padding: 1.2rem 1.2rem;
      }
      .module-number {
        width: 65px;
        font-size: 0.78rem;
      }
      .module-title {
        font-size: 1.0rem;
        margin-right: 0.8rem;
      }
      .accordion-content-inner {
        padding: 0 1.2rem 1.2rem 1.2rem;
        padding-top: 1.0rem;
        font-size: 0.9rem;
      }
    }

    /* ===================================================================
       RESPONSIVE DESIGN BREAKPOINTS
    =================================================================== */
    @media (max-width: 1024px) {
      .desktop-only {
        display: none !important;
      }
      .hero-grid-container {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      .hero-content {
        align-items: center;
        text-align: center;
      }
      .section-title-premium,
      .section-title-premium--lined,
      .register-section-title,
      .speaker-session-heading {
        font-size: 1.8rem !important;
      }
      .agenda-heading {
        text-align: center !important;
      }
      .section-title-premium--lined {
        gap: 12px;
      }
      .section-title-premium--lined::before,
      .section-title-premium--lined::after {
        width: clamp(20px, 4vw, 45px);
      }
      .hero-description {
        max-width: 100%;
      }
      .hero-stats-row {
        grid-template-columns: repeat(3, 1fr);
        max-width: 100%;
        margin: 0 auto 2.5rem;
      }
      .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
      }
      .hero-secondary-btn {
        margin-left: 0;
        width: 100%;
      }
      .hero-cta-btn {
        width: 100%;
      }
      
      
      .agenda-speaker-grid {
        grid-template-columns: 1fr;
        gap: 50px;
      }
      .speaker-col {
        align-items: center !important;
      }
      .speaker-col .popout-card {
        margin: 20px auto 0 auto !important;
      }
      .form-two-col {
        grid-template-columns: 1fr;
        gap: 10px;
      }
      .register-form-card {
        padding: 40px 30px;
      }
      .receive-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 768px) {
      .hero-stats-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
        width: 100%;
        max-width: 100%;
        margin-bottom: 2rem;
      }
      .hero-stats-row .stat-capsule {
        padding: 10px 4px !important;
        border-radius: 12px !important;
      }
      .hero-stats-row .stat-capsule-icon {
        width: 16px !important;
        height: 16px !important;
        margin-bottom: 4px !important;
      }
      .hero-stats-row .stat-capsule-num {
        font-size: 0.8rem !important;
      }
      .hero-stats-row .stat-capsule-lbl {
        font-size: 0.58rem !important;
        line-height: 1.25 !important;
        white-space: normal !important;
        word-wrap: break-word !important;
      }
      .hero-section {
        padding-top: 120px;
        padding-bottom: 50px;
      }
      .why-attend-section {
        padding: 60px 4%;
      }
      .section-title-premium,
      .section-title-premium--lined,
      .register-section-title,
      .speaker-session-heading {
        font-size: 1.4rem !important;
      }
      .section-title-premium--lined {
        gap: 10px;
      }
      .section-title-premium--lined::before,
      .section-title-premium--lined::after {
        width: 30px;
      }
      
      .agenda-speaker-section {
        padding: 60px 4%;
      }
      .agenda-timeline-line-new {
        left: 111px;
      }
      .timeline-time-new {
        min-width: 72px;
        font-size: 0.7rem;
        padding: 6px 10px;
      }
      .timeline-item-new {
        gap: 15px;
      }
      .timeline-label-new {
        font-size: 1rem;
      }
      .highlight-timeline-new .timeline-label-new {
        font-size: 1rem;
      }
      .register-form-section {
        padding: 60px 4%;
      }

      .register-form-card {
        padding: 30px 20px;
      }
      .form-row {
        grid-template-columns: 1fr;
        gap: 0;
      }
      .form-footer-row {
        flex-direction: column;
        text-align: center;
      }
      .faq-section {
        padding: 60px 4%;
      }
      .faq-grid {
        grid-template-columns: 1fr;
      }
      .faq-card p {
        padding-left: 0;
        margin-top: 10px;
      }
    }

    @media (max-width: 576px) {
      
      
      
      .agenda-timeline-line-new {
        left: 114px;
      }
      .timeline-time-new {
        min-width: 75px;
        font-size: 0.72rem;
        padding: 4px 8px;
      }
      .timeline-item-new {
        gap: 15px;
      }
      .timeline-label-new {
        font-size: 0.9rem;
      }
      .highlight-timeline-new .timeline-label-new {
        font-size: 0.9rem;
      }
      .section-title-premium,
      .section-title-premium--lined,
      .register-section-title,
      .speaker-session-heading {
        font-size: 1.3rem !important;
      }
      .register-section-title {
        gap: 10px;
      }
      .register-section-title::before,
      .register-section-title::after {
        width: 30px;
      }
      .reserve-btn {
        font-size: 0.88rem;
        letter-spacing: 1.5px;
        padding: 14px 20px;
      }
      
      
      .receive-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
      }
      .receive-card:nth-child(5) {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
      }
      .hero-secondary-btn {
        margin-left: 0;
        width: 100%;
      }
      .hero-cta-btn {
        width: 100%;
      }
      
      
      .agenda-speaker-grid {
        grid-template-columns: 1fr;
        gap: 50px;
      }
      .speaker-col {
        align-items: center !important;
      }
      .speaker-col .popout-card {
        margin: 20px auto 0 auto !important;
      }
      .form-two-col {
        grid-template-columns: 1fr;
        gap: 10px;
      }
      .register-form-card {
        padding: 40px 30px;
      }
      .receive-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 768px) {
      .hero-stats-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
        width: 100%;
        max-width: 100%;
        margin-bottom: 2rem;
      }
      .hero-stats-row .stat-capsule {
        padding: 10px 4px !important;
        border-radius: 12px !important;
      }
      .hero-stats-row .stat-capsule-icon {
        width: 16px !important;
        height: 16px !important;
        margin-bottom: 4px !important;
      }
      .hero-stats-row .stat-capsule-num {
        font-size: 0.8rem !important;
      }
      .hero-stats-row .stat-capsule-lbl {
        font-size: 0.58rem !important;
        line-height: 1.25 !important;
        white-space: normal !important;
        word-wrap: break-word !important;
      }
      .hero-section {
        padding-top: 120px;
        padding-bottom: 50px;
      }
      .why-attend-section {
        padding: 60px 4%;
      }
      .section-title-premium,
      .section-title-premium--lined,
      .register-section-title,
      .speaker-session-heading {
        font-size: 1.4rem !important;
      }
      .section-title-premium--lined {
        gap: 10px;
      }
      .section-title-premium--lined::before,
      .section-title-premium--lined::after {
        width: 30px;
      }
      
      .agenda-speaker-section {
        padding: 60px 4%;
      }
      .agenda-timeline-line-new {
        left: 111px;
      }
      .timeline-time-new {
        min-width: 72px;
        font-size: 0.7rem;
        padding: 6px 10px;
      }
      .timeline-item-new {
        gap: 15px;
      }
      .timeline-label-new {
        font-size: 1rem;
      }
      .highlight-timeline-new .timeline-label-new {
        font-size: 1rem;
      }
      .register-form-section {
        padding: 60px 4%;
      }

      .register-form-card {
        padding: 30px 20px;
      }
      .form-row {
        grid-template-columns: 1fr;
        gap: 0;
      }
      .form-footer-row {
        flex-direction: column;
        text-align: center;
      }
      .faq-section {
        padding: 60px 4%;
      }
      .faq-grid {
        grid-template-columns: 1fr;
      }
      .faq-card p {
        padding-left: 0;
        margin-top: 10px;
      }
    }

    @media (max-width: 576px) {
      
      
      
      .agenda-timeline-line-new {
        left: 114px;
      }
      .timeline-time-new {
        min-width: 75px;
        font-size: 0.72rem;
        padding: 4px 8px;
      }
      .timeline-item-new {
        gap: 15px;
      }
      .timeline-label-new {
        font-size: 0.9rem;
      }
      .highlight-timeline-new .timeline-label-new {
        font-size: 0.9rem;
      }
      .section-title-premium,
      .section-title-premium--lined,
      .register-section-title,
      .speaker-session-heading {
        font-size: 1.3rem !important;
      }
      .register-section-title {
        gap: 10px;
      }
      .register-section-title::before,
      .register-section-title::after {
        width: 30px;
      }
      .reserve-btn {
        font-size: 0.88rem;
        letter-spacing: 1.5px;
        padding: 14px 20px;
      }
      
      
      .receive-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
      }
      .receive-card:nth-child(5) {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
        width: 100%;
      }
    }

/* ===================================================================
   REPLICATED LAYOUT RULES FROM HOME.CSS / COMPONENTS.CSS FOR REGISTER_NOW.HTML
   =================================================================== */
  display: grid;
  grid-template-columns: repeat(2, 330px);
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
}

.popout-cards-grid .popout-card:nth-child(3) {
  grid-column: 1 / span 2;
  justify-self: center;
}

@media (max-width: 768px) {
  .popout-cards-grid {
    grid-template-columns: minmax(0, 330px);
    gap: 20px;
    margin-top: 50px;
  }
  .popout-cards-grid .popout-card:nth-child(3) {
    grid-column: auto;
  }
}

.popout-card {
  position: relative;
  width: 330px;
  height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-bottom: 40px;
  transform-style: preserve-3d;
}

.popout-card-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 290px;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  transform: translateZ(5px);
}

.dark-theme .popout-card-bg {
  background: rgba(11, 33, 36, 0.6);
  border-color: rgba(29, 184, 122, 0.15);
}

.popout-bg-overlay {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.popout-card:hover .popout-bg-overlay {
  opacity: 1;
}

.popout-bg-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(212, 164, 55, 0.38);
  pointer-events: none;
  z-index: 2;
}

.popout-bg-ring-1 {
  width: 320px;
  height: 320px;
  top: -60px;
  left: -60px;
}

.popout-bg-ring-2 {
  width: 220px;
  height: 220px;
  top: -10px;
  left: -10px;
}

.popout-bg-ring-3 {
  width: 120px;
  height: 120px;
  top: 40px;
  left: 40px;
}

.popout-bg-gold {
  background: linear-gradient(135deg, #b38624 0%, #d1a842 100%);
}

.popout-card-img-wrapper {
  position: absolute;
  bottom: 105px;
  left: 50%;
  transform: translateX(-50%) translateZ(15px);
  width: 100%;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  pointer-events: none;
  z-index: 2;
  overflow: visible;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.popout-card:hover .popout-card-img-wrapper {
  transform: translateX(-50%) translateZ(20px) scale(1.05);
}

.popout-card-img {
  height: 310px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.25));
}

.popout-card-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  text-align: center;
  z-index: 3;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
  transform: translateZ(25px);
}

.dark-theme .popout-card-info {
  background: #0b2124;
  border-color: rgba(255, 255, 255, 0.05);
}

.popout-card:hover .popout-card-info {
  transform: translateY(-2px) translateZ(28px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.popout-card-role {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-dark);
  margin-bottom: 6px;
  display: block;
}

.popout-card-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #b38624;
  margin: 0;
  line-height: 1.35;
  letter-spacing: 0.5px;
}

.dark-theme .popout-card-name {
  color: #f2c94c;
}

.footer-main-columns {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 50px;
}

/* Footer Journey Box */
.footer-col-journey {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-journey-box {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(212, 175, 55, 0.35);
  background-image: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%), linear-gradient(135deg, rgba(38,122,108,0.22) 0%, rgba(30,117,101,0.22) 100%);
  background-size: cover;
  background-position: center;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
  max-width: 420px;
  width: 100%;
  aspect-ratio: 4 / 3;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
}

.footer-journey-box:hover {
  transform: perspective(800px) rotateY(3deg) rotateX(2deg) translateY(-6px);
  border-color: rgba(212, 175, 55, 0.65);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.35),
    0 0 30px rgba(212, 175, 55, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Ashoka Chakra Watermark */
.chakra-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  height: 250px;
  opacity: 0.08;
  color: var(--gold-light);
  pointer-events: none;
  z-index: 0;
}

.chakra-watermark svg {
  width: 100%;
  height: 100%;
  animation: spin-clockwise 25s linear infinite;
  display: block;
}

@keyframes spin-clockwise {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Footer Flag Image Card */
.footer-flag-card {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-flag-card-inner {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(212, 175, 55, 0.35);
  background: rgba(255, 255, 255, 0.03);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
  max-width: 420px;
  width: 100%;
  aspect-ratio: 4 / 3;
}

.footer-flag-card-inner:hover {
  transform: perspective(800px) rotateY(-3deg) rotateX(2deg) translateY(-6px);
  border-color: rgba(212, 175, 55, 0.65);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.35),
    0 0 30px rgba(212, 175, 55, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.footer-flag-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}



/* ===================================================================
   REPLICATED BTN-PILL & BTN-PILL-GOLD RULES FROM HOME.CSS / COMPONENTS.CSS
   =================================================================== */
.btn-pill-gold {
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.98rem;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: 'DM Sans', sans-serif;
  background: linear-gradient(135deg, #b38624 0%, #d1a842 100%);
  color: #ffffff;
  border: none;
  border-top: 1.5px solid rgba(255, 255, 255, 0.4);
  border-bottom: 1.5px solid rgba(0, 0, 0, 0.25);
  box-shadow: 0 8px 24px rgba(179, 134, 36, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.btn-pill-gold:hover {
  background: linear-gradient(135deg, #d1a842 0%, #b38624 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(179, 134, 36, 0.35), 0 0 15px rgba(179, 134, 36, 0.2);
  color: #ffffff;
}

.btn-pill-gold::after {
  display: none;
}

.dark-theme .btn-pill-gold:hover {
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6), 0 0 15px rgba(212, 175, 55, 0.35) !important;
}



/* Elegant description text inside popout-card-info while maintaining identical card alignment as Arjun's card */
.popout-card-desc {
  font-family: var(--font-sans, system-ui, sans-serif) !important;
  font-size: 0.78rem !important;
  line-height: 1.38 !important;
  color: var(--primary-dark) !important;
  opacity: 0.88 !important;
  margin-top: 6px !important;
  margin-bottom: 0 !important;
  text-align: center !important;
  max-height: 88px !important;
  overflow-y: auto !important;
  padding-right: 2px !important;
}

.dark-theme .popout-card-desc {
  color: rgba(255, 255, 255, 0.88) !important;
}

@media (max-width: 900px) {
  .footer-main-columns {
    display: flex !important;
    flex-direction: column !important;
    gap: 32px !important;
    width: 100% !important;
    max-width: 100% !important;
    padding-bottom: 40px !important;
  }

  .footer-col-journey,
  .footer-col-contact,
  .footer-flag-card {
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    justify-content: center !important;
  }

  .footer-journey-box,
  .footer-flag-card-inner,
  .footer-contact-box {
    width: 100% !important;
    max-width: 100% !important;
    aspect-ratio: auto !important;
    min-height: 220px !important;
    padding: 30px 24px !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 480px) {
  .footer-wrapper {
    padding: 40px 16px 24px !important;
  }

  .footer-journey-box,
  .footer-flag-card-inner,
  .footer-contact-box {
    padding: 24px 18px !important;
    min-height: 200px !important;
  }

  .footer-journey-box h3,
  .footer-contact-box h3 {
    font-size: 1.3rem !important;
  }
}

/* ════════════════════════════════════════════════════════════════════ */
/* tnd-4 Style Founders & Mentors Cards (Light & Dark Theme)            */
/* ════════════════════════════════════════════════════════════════════ */

.agenda-speaker-section .founders-cards-stack {
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 24px !important;
}

/* Light Theme Card Base (Default / .light-theme) */
.agenda-speaker-section .founder-card.glass-card.founder-3d-card {
  width: 100% !important;
  max-width: 540px !important;
  border-radius: 28px !important;
  padding: 24px 30px !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  text-align: left !important;
  gap: 28px !important;
  position: relative !important;
  background: rgba(255, 255, 255, 0.75) !important;
  backdrop-filter: blur(25px) !important;
  -webkit-backdrop-filter: blur(25px) !important;
  border: 1px solid rgba(255, 255, 255, 0.85) !important;
  box-shadow: 0 20px 45px rgba(15, 58, 52, 0.06), 0 0 25px rgba(212, 164, 55, 0.12) !important;
  transform-style: preserve-3d !important;
  margin: 0 0 4px 0 !important;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s ease,
              background 0.4s ease !important;
}

.agenda-speaker-section .founder-card.glass-card.founder-3d-card:hover {
  border-color: rgba(212, 164, 55, 0.55) !important;
  box-shadow: 0 30px 60px rgba(15, 58, 52, 0.14), 0 0 40px rgba(212, 164, 55, 0.35) !important;
}

/* Dark Theme Card Base (.dark-theme) */
.dark-theme .agenda-speaker-section .founder-card.glass-card.founder-3d-card {
  background: rgba(15, 58, 52, 0.45) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35), 0 0 25px rgba(212, 164, 55, 0.15) !important;
}

.dark-theme .agenda-speaker-section .founder-card.glass-card.founder-3d-card:hover {
  border-color: rgba(212, 164, 55, 0.45) !important;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 35px rgba(212, 164, 55, 0.3) !important;
}

/* Circular Avatar Wrapper & Golden Dashed Spinning Ring */
.agenda-speaker-section .founder-avatar-wrapper {
  position: relative !important;
  width: 110px !important;
  height: 110px !important;
  flex-shrink: 0 !important;
  transform: translateZ(20px) !important;
}

.agenda-speaker-section .founder-avatar-wrapper img.founder-avatar {
  width: 110px !important;
  height: 110px !important;
  min-width: 110px !important;
  min-height: 110px !important;
  max-width: 110px !important;
  max-height: 110px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  object-position: top center !important;
  border: 3.5px solid #ffffff !important;
  box-shadow: 0 10px 25px rgba(15, 58, 52, 0.18) !important;
  display: block !important;
  margin: 0 !important;
}

.dark-theme .agenda-speaker-section .founder-avatar-wrapper img.founder-avatar {
  border-color: rgba(255, 255, 255, 0.25) !important;
}

.agenda-speaker-section .founder-avatar-wrapper .founder-avatar-ring {
  position: absolute !important;
  top: -8px !important;
  left: -8px !important;
  width: 126px !important;
  height: 126px !important;
  border: 1.6px dashed #D4A437 !important;
  border-radius: 50% !important;
  animation: tnd4-rotateMesh 60s linear infinite !important;
  pointer-events: none !important;
}

@keyframes tnd4-rotateMesh {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Founder Info Typography - Light Theme */
.agenda-speaker-section .founder-info {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  text-align: left !important;
  gap: 6px !important;
  transform: translateZ(10px) !important;
  flex-grow: 1 !important;
}

.agenda-speaker-section .founder-info h3 {
  font-family: var(--font-sans, 'Plus Jakarta Sans', system-ui, sans-serif) !important;
  font-size: 1.35rem !important;
  font-weight: 800 !important;
  color: #0F3A34 !important;
  margin: 0 !important;
  line-height: 1.2 !important;
}

.agenda-speaker-section .founder-info .founder-title {
  font-family: var(--font-sans, 'Plus Jakarta Sans', system-ui, sans-serif) !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  color: #B38624 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.2px !important;
  margin: 0 !important;
}

/* Founder Info Typography - Dark Theme */
.dark-theme .agenda-speaker-section .founder-info h3 {
  color: #FFFFFF !important;
}

.dark-theme .agenda-speaker-section .founder-info .founder-title {
  color: #F2D17A !important;
}

/* Mobile Responsiveness */
@media (max-width: 576px) {
  .agenda-speaker-section .founder-card.glass-card.founder-3d-card {
    padding: 18px 20px !important;
    gap: 18px !important;
    border-radius: 20px !important;
  }

  .agenda-speaker-section .founder-avatar-wrapper {
    width: 85px !important;
    height: 85px !important;
  }

  .agenda-speaker-section .founder-avatar-wrapper img.founder-avatar {
    width: 85px !important;
    height: 85px !important;
    min-width: 85px !important;
    min-height: 85px !important;
    max-width: 85px !important;
    max-height: 85px !important;
  }

  .agenda-speaker-section .founder-avatar-wrapper .founder-avatar-ring {
    width: 99px !important;
    height: 99px !important;
    top: -7px !important;
    left: -7px !important;
  }

  .agenda-speaker-section .founder-info h3 {
    font-size: 1.15rem !important;
  }

  .agenda-speaker-section .founder-info .founder-title {
    font-size: 0.7rem !important;
    letter-spacing: 1px !important;
  }
}

