    /* =============================================
       CSS CUSTOM PROPERTIES
    ============================================= */
    :root {
      --saffron: #FF6600;
      --saffron-dark: #E55A00;
      --saffron-light: #FFF5EE;
      --navy: #003580;
      --navy-dark: #002766;
      --navy-light: rgba(0,53,128,0.08);
      --india-green: #138808;
      --gold: #C9940A;
      --gold-light: #FFF8EE;
      --off-white: #F9F7F4;
      --silver-grey: #E8E8E8;
      --charcoal: #1A1A1A;
      --steel-grey: #555555;
      --white: #FFFFFF;
      --font-display: 'Mukta', sans-serif;
      --font-serif: 'Noto Serif', serif;
      --font-body: 'Noto Sans', sans-serif;
      --font-mono: 'Courier Prime', monospace;
      --max-width: 1200px;
      --section-pad-y: 80px;
      --section-pad-y-mobile: 40px;
    }

    /* =============================================
       RESET & BASE (Overrides Bootstrap defaults to keep exact design)
    ============================================= */
    html { scroll-behavior: smooth; font-size: 16px; max-width: 100%; }
    body {
      font-family: var(--font-body);
      color: var(--charcoal);
      background: var(--white);
      line-height: 1.7;
      max-width: 100%;
      width: 100%;
    }
    a { color: inherit; text-decoration: none; }
    a:hover { color: inherit; }
    p { margin-bottom: 0; }
    img { max-width: 100%; display: block; }
    ul { list-style: none; padding-left: 0; margin-bottom: 0; }
    button { cursor: pointer; font-family: inherit; }
    input, select, textarea { font-family: inherit; }

    /* Bootstrap Container Override */
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
      max-width: var(--max-width) !important;
    }

    /* Skip to content */
    .skip-link {
      position: absolute; top: -40px; left: 0;
      background: var(--saffron); color: var(--white);
      padding: 8px 16px; z-index: 10000; font-size: 14px;
      transition: top 0.2s;
    }
    .skip-link:focus { top: 0; }

    /* Focus styles */
    *:focus-visible {
      outline: 2px solid var(--saffron);
      outline-offset: 2px;
    }

    /* =============================================
       SECTION 0: GOI TOP BAR
    ============================================= */
    .goi-topbar {
      background: var(--navy);
      height: 40px;
      z-index: 1;
      overflow: hidden;
      min-width: 0;
    }
    .goi-topbar-left {
      color: var(--white);
      font-family: var(--font-body);
      font-size: 12px;
      min-width: 0;
      overflow: hidden;
    }
    .goi-emblem-svg {
      height: 24px;
      width: auto;
      flex-shrink: 0;
    }
    .font-btn {
      background: transparent;
      border: 1px solid rgba(255,255,255,0.3);
      color: var(--white);
      padding: 2px 6px;
      font-size: 11px;
      cursor: pointer;
      border-radius: 2px;
      line-height: 1.4;
      transition: background 0.2s;
    }
    .font-btn:hover { background: rgba(255,255,255,0.15); }
    .font-btn.font-large { font-size: 13px; }
    .font-btn.font-small { font-size: 9px; }
    .screen-reader-btn {
      background: transparent;
      border: none;
      color: rgba(255,255,255,0.7);
      font-size: 20px;
      cursor: pointer;
      padding: 2px 4px;
    }
    .tricolor-strip {
      height: 3px;
      background: linear-gradient(to right, var(--saffron) 33.33%, var(--white) 33.33%, var(--white) 66.66%, var(--india-green) 66.66%);
      position: relative;
      z-index: 999;
    }

    /* Page overflow wrapper */
    .page-clip { overflow-x: hidden; width: 100%; }

    /* =============================================
       SITE HEADER (sticky wrapper)
    ============================================= */
    .site-header {/* position: sticky; *//* top: 0; *//* z-index: 1000; */}

    /* =============================================
       SECTION 1: NAV
    ============================================= */
    .main-nav {
      background: var(--white);
      border-bottom: 1px solid var(--silver-grey);
      transition: box-shadow 0.3s ease;
    }
    .main-nav.scrolled,
    .site-header.scrolled .main-nav {
      box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    }
    .nav-inner { height: 68px; }
    .nav-logo-emblem { width: 44px; height: 44px; flex-shrink: 0; }
    .nav-logo-text { line-height: 1.2; }
    .nav-logo-title {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 15px;
      color: var(--navy);
      display: block;
    }
    .nav-logo-sub {
      font-family: var(--font-body);
      font-size: 10px;
      color: var(--steel-grey);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .nav-logo-img { height: 46px; width: auto; max-width: 200px; object-fit: contain; }
    .nav-links a {
      font-family: var(--font-body);
      font-size: 13px;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      color: var(--navy);
      padding: 6px 12px;
      border-radius: 3px;
      position: relative;
      transition: color 0.2s;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 0; left: 12px; right: 12px;
      height: 2px;
      background: var(--saffron);
      transform: scaleX(0);
      transition: transform 0.2s ease;
    }
    .nav-links a:hover::after,
    .nav-links a.active::after { transform: scaleX(1); }
    .nav-links a:hover { color: var(--saffron); }
    .nav-register-btn {
      background: var(--saffron);
      color: var(--white) !important;
      padding: 10px 20px !important;
      border-radius: 4px !important;
      font-weight: 700 !important;
      font-family: var(--font-display) !important;
      text-transform: uppercase !important;
      letter-spacing: 1px !important;
      font-size: 13px !important;
      transition: background 0.2s ease !important;
      white-space: nowrap;
    }
    .nav-register-btn:hover { background: var(--saffron-dark) !important; color: var(--white) !important; }
    .nav-register-btn::after { display: none !important; }
    .hamburger {
      background: none;
      border: none;
      font-size: 22px;
      color: var(--navy);
      cursor: pointer;
      padding: 8px;
    }

    /* Mobile drawer */
    .mobile-drawer {
      position: fixed; top: 0; right: -100%;
      width: 280px; height: 100vh;
      background: var(--navy); z-index: 9999;
      transition: right 0.3s ease; padding: 24px; overflow-y: auto;
    }
    .mobile-drawer.open { right: 0; }
    .mobile-drawer-close {
      background: none; border: none; color: var(--white); font-size: 24px;
      cursor: pointer; margin-bottom: 32px; display: block;
    }
    .mobile-drawer a {
      display: block; color: var(--white); font-family: var(--font-body);
      font-size: 16px; text-transform: uppercase; letter-spacing: 0.5px;
      padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.1);
      transition: color 0.2s;
    }
    .mobile-drawer a:hover { color: var(--saffron); }
    .drawer-overlay {
      position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 9998; display: none;
    }
    .drawer-overlay.open { display: block; }

    /* =============================================
       SECTION 2: HERO
    ============================================= */
    .hero {
      position: relative; min-height: 90vh;
      background: linear-gradient(135deg, rgba(0,53,128,0.90) 0%, rgba(255,102,0,0.60) 100%),
        url('https://images.unsplash.com/photo-1540575467063-178a50c2df87?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
      padding: 80px 16px; width: 100%;
    }
    .hero-inner { max-width: 640px; width: 100%; }
    .hero-badge {
      background: var(--saffron); color: var(--navy);
      font-family: var(--font-body); font-size: 13px; font-weight: 600;
      padding: 6px 16px; border-radius: 100px; margin-bottom: 24px;
    }
    .hero h1 {
      font-family: var(--font-display); font-weight: 700;
      font-size: clamp(28px, 6vw, 52px); color: var(--white);
      line-height: 1.15; margin-bottom: 16px; word-break: break-word;
    }
    .hero-marathi {
      font-family: var(--font-display); font-weight: 500; font-size: 24px;
      color: var(--saffron); display: block; margin-bottom: 8px;
    }
    .hero-english {
      font-family: var(--font-serif); font-style: italic; font-size: 18px;
      color: rgba(255,255,255,0.7); display: block; margin-bottom: 20px;
    }
    .hero-body {
      font-family: var(--font-body); font-size: 16px; color: var(--white);
      max-width: 520px; margin-bottom: 20px; line-height: 1.7;
    }
    .hero-meta {
      font-family: var(--font-body); font-size: 14px;
      color: rgba(255,255,255,0.85); margin-bottom: 32px;
    }
    .btn-primary, .btn-outline {
      font-family: var(--font-display); font-weight: 700; font-size: 16px;
      padding: 14px 32px; border-radius: 4px; cursor: pointer;
      transition: background 0.2s ease, transform 0.1s ease;
    }
    .btn-primary { background: var(--saffron); color: var(--white); border: none; }
    .btn-primary:hover { background: var(--saffron-dark); transform: translateY(-1px); color: var(--white); }
    .btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
    .btn-outline:hover { background: rgba(255,255,255,0.1); color: var(--white); }

    /* Countdown */
    .countdown-box {
      background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,0.2); border-radius: 8px;
      padding: 16px 20px; min-width: 70px; text-align: center;
    }
    .countdown-num {
      font-family: var(--font-display); font-weight: 700; font-size: 36px;
      color: var(--white); display: block; line-height: 1;
    }
    .countdown-label {
      font-family: var(--font-body); font-size: 11px; color: rgba(255,255,255,0.7);
      text-transform: uppercase; letter-spacing: 1.5px; margin-top: 6px; display: block;
    }

    /* =============================================
       SECTION 3: STATS BAR
    ============================================= */
    .stats-bar { background: var(--navy); padding: 48px 0; }
    .stat-item { text-align: center; padding: 16px 24px; position: relative; }
    .stat-item:not(:last-child)::after {
      content: ''; position: absolute; right: 0; top: 20%; bottom: 20%;
      width: 1px; background: rgba(255,255,255,0.15);
    }
    .stat-num {
      font-family: var(--font-display); font-weight: 700; font-size: 44px;
      color: var(--saffron); display: block; line-height: 1; margin-bottom: 8px;
    }
    .stat-underline {
      width: 40px; height: 2px; background: var(--saffron); margin: 0 auto 12px;
    }
    .stat-label { font-family: var(--font-body); font-size: 14px; color: rgba(255,255,255,0.85); }

    /* =============================================
       TRUST BAR
    ============================================= */
    .trust-bar { background: var(--off-white); border-bottom: 1px solid var(--silver-grey); padding: 20px 0; }
    .trust-partners-img { max-height: 60px; width: auto; max-width: 100%; object-fit: contain; }

    /* =============================================
       SHARED SECTION STYLES
    ============================================= */
    .section-pad { padding: var(--section-pad-y) 0; }
    .section-pad-off { padding: var(--section-pad-y) 0; background: var(--off-white); }
    .section-label {
      font-family: var(--font-body); font-size: 12px; font-weight: 600; text-transform: uppercase;
      letter-spacing: 2px; color: var(--saffron); display: block; margin-bottom: 12px;
    }
    .section-h2 {
      font-family: var(--font-serif); font-weight: 600; font-size: 32px;
      color: var(--navy); line-height: 1.3; margin-bottom: 24px;
    }

    /* Fade in animation */
    .fade-in { opacity: 1; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
    .fade-in.visible { opacity: 1; transform: translateY(0); }

    /* =============================================
       SECTION 4: ABOUT
    ============================================= */
    .about-body {
      font-family: var(--font-body); font-size: 16px; color: var(--charcoal);
      line-height: 1.8; margin-bottom: 32px;
    }
    .about-card {
      background: var(--white); border: 2px solid var(--navy); border-radius: 8px;
      padding: 32px; position: relative; overflow: hidden;
      box-shadow: 0 4px 24px rgba(0,53,128,0.10); width: 100%;
    }
    .about-card::before {
      content: ''; position: absolute; top: 0; right: 0; width: 60px; height: 60px;
      background: linear-gradient(135deg, transparent 50%, var(--saffron) 50%);
    }
    .about-card-label {
      font-family: var(--font-body); font-size: 11px; text-transform: uppercase;
      letter-spacing: 2px; color: var(--steel-grey); margin-bottom: 8px;
    }
    .about-card-title {
      font-family: var(--font-serif); font-weight: 600; font-size: 20px; color: var(--navy); margin-bottom: 6px;
    }
    .about-card-sub {
      font-family: var(--font-body); font-size: 14px; color: var(--steel-grey);
      margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--silver-grey);
    }
    .about-info-item {
      display: flex; align-items: flex-start; gap: 12px; font-family: var(--font-body);
      font-size: 14px; color: var(--charcoal); margin-bottom: 14px;
    }
    .about-info-item i { color: var(--saffron); margin-top: 2px; width: 16px; flex-shrink: 0; }
    .about-info-item strong { color: var(--navy); display: block; font-size: 13px; }

    /* =============================================
       SECTION 5: PROGRAMME
    ============================================= */
    .timeline { position: relative; padding: 20px 0; }
    .timeline::before {
      content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
      width: 2px; background: var(--silver-grey); transform: translateX(-50%);
    }
    .timeline-item { display: flex; justify-content: flex-end; padding-right: calc(50% + 40px); margin-bottom: 32px; position: relative; }
    .timeline-item:nth-child(even) { justify-content: flex-start; padding-right: 0; padding-left: calc(50% + 40px); }
    .timeline-dot {
      position: absolute; left: 50%; top: 24px; width: 14px; height: 14px;
      background: var(--saffron); border-radius: 50%; border: 3px solid var(--white);
      box-shadow: 0 0 0 2px var(--saffron); transform: translateX(-50%); z-index: 1;
    }
    .timeline-card {
      background: var(--white); border-left: 3px solid var(--saffron); border-radius: 4px;
      padding: 20px 24px; max-width: 440px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); width: 100%;
    }
    .timeline-time {
      font-family: var(--font-mono); font-size: 13px; color: var(--saffron);
      display: block; margin-bottom: 6px; font-weight: 700;
    }
    .timeline-title {
      font-family: var(--font-serif); font-weight: 600; font-size: 17px;
      color: var(--navy); margin-bottom: 6px; line-height: 1.3;
    }
    .timeline-desc { font-family: var(--font-body); font-size: 13px; color: var(--steel-grey); line-height: 1.6; }
    .programme-note {
      text-align: center; margin-top: 32px; background: var(--navy); color: var(--white);
      padding: 16px 24px; border-radius: 8px; font-family: var(--font-body);
      font-size: 15px; max-width: 600px; margin-left: auto; margin-right: auto;
    }
    .programme-note strong { color: var(--saffron); }

    /* =============================================
       SECTION 6: DIGNITARIES
    ============================================= */
    .dignitary-card {
      background: var(--white); border: 1px solid var(--silver-grey); border-radius: 4px;
      padding: 28px 24px; text-align: center; border-top: 3px solid var(--saffron);
      transition: box-shadow 0.25s ease, transform 0.2s ease; height: 100%;
    }
    .dignitary-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); transform: translateY(-2px); }
    .dignitary-avatar {
      width: 80px; height: 80px; background: var(--navy); border-radius: 50%;
      display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
      font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--white);
    }
    .dignitary-name {
      font-family: var(--font-serif); font-weight: 600; font-size: 17px;
      color: var(--charcoal); margin-bottom: 6px; line-height: 1.3;
    }
    .dignitary-title { font-family: var(--font-body); font-size: 13px; color: var(--steel-grey); margin-bottom: 8px; }
    .dignitary-dept { font-family: var(--font-body); font-size: 11px; text-transform: uppercase; color: var(--saffron); font-weight: 600; }

    /* =============================================
       SECTION 7: AWARDS
    ============================================= */
    #awards { background: linear-gradient(180deg, #FFF8EE 0%, #FFFFFF 100%); }
    .award-obj-tile {
      text-align: center; padding: 28px 20px; background: var(--white);
      border-radius: 8px; border: 1px solid var(--silver-grey); height: 100%;
    }
    .award-obj-icon { font-size: 32px; margin-bottom: 12px; display: block; }
    .award-obj-title { font-family: var(--font-serif); font-weight: 600; font-size: 17px; color: var(--navy); margin-bottom: 8px; }
    .award-obj-desc { font-family: var(--font-body); font-size: 13px; color: var(--steel-grey); }

    /* =============================================
       SECTION 8: PANELS
    ============================================= */
    .panel-card {
      background: var(--white); border-radius: 4px; border-top: 3px solid var(--saffron);
      box-shadow: 0 2px 10px rgba(0,0,0,0.06); overflow: hidden; margin-bottom: 28px;
    }
    .panel-header { padding: 24px 28px; cursor: pointer; display: flex; align-items: flex-start; gap: 20px; }
    .panel-num-badge {
      width: 40px; height: 40px; background: var(--navy); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--white); flex-shrink: 0;
    }
    .panel-meta { flex: 1; }
    .panel-theme { font-family: var(--font-serif); font-weight: 600; font-size: 18px; color: var(--navy); margin-bottom: 6px; line-height: 1.35; }
    .panel-participants { font-family: var(--font-body); font-style: italic; font-size: 13px; color: var(--steel-grey); }
    .panel-toggle {
      background: none; border: none; color: var(--navy); font-size: 18px;
      cursor: pointer; padding: 4px; flex-shrink: 0; transition: transform 0.3s;
    }
    .panel-card.open .panel-toggle { transform: rotate(180deg); }
    .panel-body { padding: 0 28px 24px 88px; display: none; word-break: break-word; }
    .panel-card.open .panel-body { display: block; }
    .panel-body-list li {
      font-family: var(--font-body); font-size: 14px; color: var(--charcoal);
      padding-left: 20px; position: relative; line-height: 1.5; margin-bottom: 8px;
    }
    .panel-body-list li::before { content: '▸'; position: absolute; left: 0; color: var(--saffron); font-size: 12px; top: 2px; }

    /* =============================================
       SECTION 9: VENUE
    ============================================= */
    .venue-info-row {
      display: flex; align-items: flex-start; gap: 12px; font-family: var(--font-body);
      font-size: 14px; color: var(--charcoal); line-height: 1.5; margin-bottom: 14px;
    }
    .venue-info-row i { color: var(--saffron); width: 18px; flex-shrink: 0; margin-top: 2px; }
    .venue-info-row strong { font-weight: 600; color: var(--navy); }
    .venue-map { border-radius: 8px; overflow: hidden; border: 2px solid var(--navy); height: 380px; width: 100%; }
    .venue-map iframe { width: 100%; height: 100%; border: 0; }

    /* =============================================
       SECTION 10: SOLUTIONS ZONE
    ============================================= */
    .solutions-section { background: var(--navy); padding: var(--section-pad-y) 0; }
    .solutions-col { padding: 0 48px; }
    @media (min-width: 992px) {
      .solutions-col:first-child { padding-left: 0; border-right: 1px solid rgba(255,255,255,0.15); }
      .solutions-col:last-child { padding-right: 0; }
    }
    @media (max-width: 991px) {
      .solutions-col { padding: 0 16px 32px; }
      .solutions-col:last-child { padding-bottom: 0; border-top: 1px solid rgba(255,255,255,0.15); padding-top: 32px; }
    }
    .solutions-icon-circle {
      width: 56px; height: 56px; background: var(--saffron); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 16px; font-size: 22px; color: var(--white);
    }
    .solutions-h3 { font-family: var(--font-serif); font-size: 24px; font-weight: 600; color: var(--white); margin-bottom: 12px; }
    .solutions-desc { font-family: var(--font-body); font-size: 15px; color: rgba(255,255,255,0.80); line-height: 1.7; margin-bottom: 20px; }
    .benefit-chips { display: flex; flex-wrap: wrap; gap: 8px; }
    .benefit-chip { background: var(--white); color: var(--navy); font-family: var(--font-body); font-size: 12px; font-weight: 600; padding: 6px 14px; border-radius: 100px; }

    /* =============================================
       SECTION 11: REGISTRATION FORM
    ============================================= */
    .register-subtext { font-family: var(--font-body); font-size: 15px; color: var(--steel-grey); max-width: 620px; margin: 0 auto; }
    .reg-notice {
      max-width: 720px; margin: 0 auto 28px; background: #EEF3FF;
      border-left: 4px solid var(--navy); padding: 14px 20px;
      border-radius: 0 4px 4px 0; font-family: var(--font-body);
      font-size: 14px; color: var(--charcoal); line-height: 1.6;
    }
    .form-card {
      background: var(--white); border: 1px solid var(--silver-grey); border-radius: 8px;
      padding: 40px; max-width: 720px; margin: 0 auto; box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    }
    .form-section-label {
      font-family: var(--font-body); font-size: 11px; text-transform: uppercase;
      letter-spacing: 2px; color: var(--saffron); font-weight: 700;
      margin-top: 28px; margin-bottom: 16px; padding-bottom: 8px;
      border-bottom: 1px solid var(--saffron); display: block;
    }
    .form-section-label:first-child { margin-top: 0; }
    .form-label {
      font-family: var(--font-body); font-size: 12px; font-weight: 500;
      color: #333; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px;
    }
    .form-label .req { color: var(--saffron); margin-left: 2px; }
    .form-input, .form-select {
      height: 44px; border: 1px solid #CCCCCC; border-radius: 4px;
      font-family: var(--font-body); font-size: 14px; color: var(--charcoal);
      padding: 0 14px; transition: border-color 0.2s, background 0.2s;
      width: 100%; background: var(--white); appearance: none;
    }
    .form-input:focus, .form-select:focus { border-color: var(--saffron); background: var(--saffron-light); outline: none; }
    .form-input.error { border-color: #DC3545; }
    .form-error { font-size: 12px; color: #DC3545; margin-top: 4px; display: none; }
    .form-error.show { display: block; }
    .phone-wrap { display: flex; align-items: stretch; gap: 0; }
    .phone-prefix {
      background: var(--silver-grey); border: 1px solid #CCCCCC; border-right: none;
      border-radius: 4px 0 0 4px; padding: 0 12px; font-family: var(--font-mono);
      font-size: 14px; color: var(--navy); display: flex; align-items: center; font-weight: 700;
    }
    .phone-wrap .form-input { border-radius: 0 4px 4px 0; }

    /* Participation & Interest */
    .part-tile { display: none; }
    .part-tile-label {
      display: flex; align-items: center; gap: 8px; padding: 10px 12px;
      border: 1.5px solid var(--silver-grey); border-radius: 4px; cursor: pointer;
      font-family: var(--font-body); font-size: 13px; color: var(--charcoal);
      transition: border-color 0.2s, background 0.2s; line-height: 1.3; height: 100%;
    }
    .part-tile:checked + .part-tile-label { border-color: var(--saffron); background: var(--saffron-light); color: var(--navy); font-weight: 600; }
    .part-tile-label::before {
      content: ''; width: 14px; height: 14px; border: 2px solid var(--silver-grey);
      border-radius: 50%; flex-shrink: 0; transition: border-color 0.2s;
    }
    .part-tile:checked + .part-tile-label::before { border-color: var(--saffron); background: var(--saffron); box-shadow: inset 0 0 0 3px var(--white); }

    .interest-check { display: none; }
    .interest-pill-label {
      padding: 8px 14px; border: 1.5px solid var(--silver-grey); border-radius: 100px;
      font-family: var(--font-body); font-size: 13px; color: var(--charcoal);
      cursor: pointer; transition: border-color 0.2s, background 0.2s, color 0.2s;
      display: inline-block; margin-bottom: 8px; margin-right: 4px;
    }
    .interest-check:checked + .interest-pill-label { border-color: var(--navy); background: var(--navy); color: var(--white); }

    .declaration-wrap {
      display: flex; align-items: flex-start; gap: 12px; margin: 24px 0;
      padding: 16px; background: var(--off-white); border-radius: 4px; border: 1px solid var(--silver-grey);
    }
    .declaration-wrap input[type="checkbox"] { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--saffron); cursor: pointer; }
    .declaration-text { font-family: var(--font-body); font-size: 13px; color: var(--charcoal); line-height: 1.6; }
    .submit-btn {
      width: 100%; height: 52px; background: var(--saffron); color: var(--white);
      font-family: var(--font-display); font-weight: 700; font-size: 16px;
      border: none; border-radius: 4px; transition: background 0.2s ease, transform 0.1s ease;
    }
    .submit-btn:hover { background: var(--saffron-dark); transform: translateY(-1px); }

    .success-card {
      display: none; text-align: center; padding: 48px 32px; background: var(--white);
      border: 1px solid var(--silver-grey); border-radius: 8px; max-width: 720px; margin: 0 auto;
    }
    .success-icon { font-size: 56px; color: var(--india-green); margin-bottom: 16px; }
    .success-title { font-family: var(--font-serif); font-weight: 600; font-size: 26px; color: var(--navy); margin-bottom: 12px; }
    .success-body { font-family: var(--font-body); font-size: 15px; color: var(--steel-grey); max-width: 440px; margin: 0 auto; }

    /* =============================================
       SECTION 12: CULTURAL PROGRAMS
    ============================================= */
    .cultural-section {
      background: var(--navy); padding: var(--section-pad-y) 0; position: relative; overflow: hidden;
    }
    .cultural-section::before {
      content: ''; position: absolute; inset: 0;
      background-image: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255,255,255,0.02) 20px, rgba(255,255,255,0.02) 40px);
      pointer-events: none;
    }
    .cultural-label { color: var(--saffron); }
    .cultural-h2 { color: var(--white); }
    .cultural-card {
      background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
      border-top: 3px solid var(--saffron); border-radius: 4px; padding: 28px; height: 100%;
    }
    .cultural-name { font-family: var(--font-serif); font-weight: 600; font-size: 20px; color: var(--white); margin-bottom: 8px; }
    .cultural-origin-tag {
      display: inline-block; background: var(--saffron); color: var(--white);
      font-family: var(--font-body); font-size: 11px; font-weight: 600;
      padding: 3px 10px; border-radius: 100px; margin-bottom: 12px; text-transform: uppercase;
    }
    .cultural-significance { font-family: var(--font-body); font-size: 14px; color: rgba(255,255,255,0.85); margin-bottom: 8px; line-height: 1.6; }
    .cultural-message { font-family: var(--font-serif); font-style: italic; font-size: 13px; color: rgba(255,255,255,0.55); }

    /* =============================================
       SECTION 13: FOOTER
    ============================================= */
    .footer { background: var(--charcoal); color: var(--white); }
    .footer-org-name { font-family: var(--font-serif); font-weight: 600; font-size: 16px; color: var(--white); margin-bottom: 6px; line-height: 1.4; }
    .footer-org-sub { font-family: var(--font-body); font-size: 12px; color: rgba(255,255,255,0.55); margin-bottom: 16px; }
    .footer-address { font-family: var(--font-body); font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.7; }
    .footer-col-heading {
      font-family: var(--font-body); font-size: 12px; font-weight: 700;
      text-transform: uppercase; letter-spacing: 1px; color: var(--saffron); margin-bottom: 16px;
    }
    .footer-links { display: flex; flex-direction: column; gap: 10px; }
    .footer-links a { font-family: var(--font-body); font-size: 14px; color: rgba(255,255,255,0.65); transition: color 0.2s; }
    .footer-links a:hover { color: var(--saffron); }
    .footer-contact-item {
      display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px;
      font-family: var(--font-body); font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.5;
    }
    .footer-contact-item i { color: var(--saffron); width: 16px; flex-shrink: 0; margin-top: 2px; }
    .footer-partners { border-top: 1px solid rgba(255,255,255,0.08); padding: 28px 24px; text-align: center; background: #fff; }
    .footer-partners-label { font-family: var(--font-body); font-size: 12px; color: #666; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
    .footer-partners-img { max-height: 72px; width: auto; max-width: 100%; object-fit: contain; display: block; margin: 0 auto; }
    .footer-bottom { background: rgba(0,0,0,0.3); padding: 14px 0; }
    .footer-copy { font-family: var(--font-body); font-size: 12px; color: rgba(255,255,255,0.4); }
    .footer-badge { font-family: var(--font-body); font-size: 12px; color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 4px; }
    .footer-legal a { font-family: var(--font-body); font-size: 12px; color: rgba(255,255,255,0.4); transition: color 0.2s; margin-left: 16px;}
    .footer-legal a:hover { color: var(--saffron); }
    .footer-di-logo { height: 28px; width: auto; filter: brightness(0) invert(0.75); }
    .footer-gom-logo { height: 36px; width: auto; filter: drop-shadow(0 0 1px rgba(255,255,255,0.15)); }

    /* =============================================
       ACCESSIBILITY PANEL
    ============================================= */
    .a11y-overlay {
      display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.55);
      z-index: 99999; align-items: stretch; justify-content: flex-end; overflow: hidden;
    }
    .a11y-overlay.open { display: flex; }
    .a11y-panel {
      background: var(--white); width: 320px; max-width: 95vw; height: 100vh;
      display: flex; flex-direction: column; box-shadow: -4px 0 24px rgba(0,0,0,0.25); position: relative;
    }
    .a11y-panel-header {
      flex-shrink: 0; display: flex; align-items: center; justify-content: space-between;
      padding: 20px 24px 14px; border-bottom: 2px solid var(--saffron);
    }
    .a11y-panel-body { flex: 1; overflow-y: auto; padding: 0 24px 32px; }
    .a11y-panel-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--navy); display: flex; align-items: center; gap: 8px; }
    .a11y-close-btn { background: none; border: none; font-size: 22px; color: var(--charcoal); cursor: pointer; padding: 4px 8px; }
    .a11y-section-title { font-family: var(--font-body); font-size: 11px; font-weight: 700; text-transform: uppercase; color: var(--steel-grey); margin: 20px 0 10px; }
    .a11y-toggle-row { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--silver-grey); }
    .a11y-toggle-label { font-family: var(--font-body); font-size: 14px; color: var(--charcoal); display: flex; align-items: center; gap: 8px; }
    .a11y-switch { position: relative; width: 44px; height: 24px; flex-shrink: 0; }
    .a11y-switch input { opacity: 0; width: 0; height: 0; }
    .a11y-slider { position: absolute; inset: 0; background: var(--silver-grey); border-radius: 24px; cursor: pointer; transition: background 0.25s; }
    .a11y-slider::before { content: ''; position: absolute; width: 18px; height: 18px; left: 3px; top: 3px; background: var(--white); border-radius: 50%; transition: transform 0.25s; box-shadow: 0 1px 4px rgba(0,0,0,0.25); }
    .a11y-switch input:checked + .a11y-slider { background: var(--saffron); }
    .a11y-switch input:checked + .a11y-slider::before { transform: translateX(20px); }
    .a11y-font-controls { display: flex; gap: 8px; margin: 12px 0; }
    .a11y-font-btn { flex: 1; padding: 8px 4px; background: var(--off-white); border: 1px solid var(--silver-grey); border-radius: 4px; font-family: var(--font-body); font-size: 13px; font-weight: 600; color: var(--navy); cursor: pointer; }
    .a11y-reset-btn { width: 100%; margin-top: 24px; padding: 12px; background: var(--navy); color: var(--white); border: none; border-radius: 4px; font-family: var(--font-body); font-size: 14px; font-weight: 600; }
    body.a11y-high-contrast { filter: contrast(1.7) saturate(0); }
    body.a11y-invert { filter: invert(1) hue-rotate(180deg); }
    body.a11y-dyslexia * { font-family: 'Courier New', Courier, monospace !important; letter-spacing: 0.05em; word-spacing: 0.15em; line-height: 1.9 !important; }
    body.a11y-text-spacing * { line-height: 2.2 !important; letter-spacing: 0.1em !important; word-spacing: 0.2em !important; }
    body.a11y-highlight-links a, body.a11y-highlight-links button { outline: 2px solid var(--saffron) !important; outline-offset: 2px !important; background: rgba(255,102,0,0.08) !important; }
    body.a11y-noscroll { overflow: hidden !important; }

    /* =============================================
       RESPONSIVE MODS & EXTRAS
    ============================================= */
    #reading-progress {
      position: fixed; top: 0; left: 0; width: 0%; height: 4px; z-index: 99999;
      background: linear-gradient(to right, #FF9933 0%, #FF9933 33.33%, #FFFFFF 33.33%, #FFFFFF 66.66%, #138808 66.66%, #138808 100%);
      transition: width 0.1s linear; pointer-events: none;
    }
    #scroll-top-btn {
      position: fixed; right: 16px; bottom: 24px; z-index: 9990; width: 40px; height: 40px;
      border-radius: 50%; background: var(--navy); color: var(--white); border: none;
      display: flex; align-items: center; justify-content: center; font-size: 16px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.25); opacity: 0; transform: translateY(12px);
      transition: opacity 0.3s, transform 0.3s; pointer-events: none;
    }
    #scroll-top-btn.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }

    .scheme-switcher {
      position: fixed; right: 16px; bottom: 80px; z-index: 9990; display: flex;
      flex-direction: column; gap: 8px; align-items: flex-end;
    }
    .scheme-switcher-label { font-family: var(--font-body); font-size: 10px; font-weight: 700; text-transform: uppercase; color: var(--steel-grey); }
    .scheme-btn {
      width: 36px; height: 36px; border-radius: 50%; border: 3px solid var(--white);
      box-shadow: 0 2px 8px rgba(0,0,0,0.20); transition: transform 0.2s;
    }
    .scheme-btn:hover, .scheme-btn.active { transform: scale(1.15); }
    .scheme-btn-blue   { background: linear-gradient(135deg, #003580 50%, #FF6600 50%); }
    .scheme-btn-crimson{ background: linear-gradient(135deg, #8B0000 50%, #C9940A 50%); }
    .scheme-btn-purple { background: linear-gradient(135deg, #4A148C 50%, #E91E63 50%); }
    .scheme-btn-teal   { background: linear-gradient(135deg, #00695C 50%, #FF8F00 50%); }

    body.scheme-crimson { --navy: #8B0000; --saffron: #C9940A; --saffron-dark: #A0760A; --gold: #B8860B; }
    body.scheme-purple { --navy: #4A148C; --saffron: #E91E63; --saffron-dark: #C2185B; --gold: #7B1FA2; }
    body.scheme-teal { --navy: #00695C; --saffron: #FF8F00; --saffron-dark: #E65100; --gold: #00897B; }

    @media (max-width: 991px) {
      .nav-links { display: none !important; }
      .hamburger { display: block !important; }
      .timeline::before { left: 20px; }
      .timeline-item, .timeline-item:nth-child(even) { justify-content: flex-start; padding-left: 56px; padding-right: 0; }
      .timeline-dot { left: 20px; }
    }
    @media (min-width: 992px) {
      .hamburger { display: none !important; }
    }
    @media (max-width: 767px) {
      :root { --section-pad-y: var(--section-pad-y-mobile); }
      .goi-topbar-left span:not(.goi-emblem-wrap) { display: none; }
      .timeline::before { left: 16px; }
      .timeline-item, .timeline-item:nth-child(even) { padding-left: 44px; }
      .timeline-dot { left: 16px; width: 12px; height: 12px; top: 20px; }
      .scheme-switcher { bottom: 72px; right: 12px; }
      .scheme-btn { width: 30px; height: 30px; }
      .scheme-switcher-label { display: none; }
    }
    @media print {
      .goi-topbar, .main-nav, .hero, .stats-bar, .solutions-section, .cultural-section, .footer, .scheme-switcher { display: none !important; }
    }
.hide{
    display:none !important;
}



.logo-grid {
    display: grid;
    grid-template-columns: repeat(6, auto);
    justify-content: center;
    align-items: center;
    gap: 30px;
    width: fit-content;
    margin: auto;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    margin-top: 10px;
    /* margin-bottom: 10px; */
    border: 1px solid #ff6600;
}
.footer-logo .logo-grid {
    grid-template-columns: repeat(4, auto);
}
.logo-grid img {
    max-height: 65px;
    width: auto;
    display: block;
    object-fit: contain;
}

nav.main-nav.scrolled {
    position: fixed !important;
    top: 0 !important;
    z-index: 1000;
    display: block;
    width: 100%;
}
.scheme-switcher {
    display: none;
}
/* Base navigation styling (for smooth transitions) */
.main-nav {
  transition: all 0.3s ease-in-out;
  width: 100%;
  /* Assuming you have background colors/padding set here already */
}

/* The sticky class added by JavaScript */
.main-nav.scrolled {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999; /* Keeps it above all other content */
  background-color: #ffffff; /* Ensure it has a solid background */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Adds a nice drop shadow */
  animation: slideDown 0.3s ease-in-out; /* Optional smooth drop animation */
}

/* Optional: Smooth drop animation when it becomes sticky */
@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}
@media (max-width: 787px) {
    nav.main-nav.scrolled {
    position: fixed !important;
    top: 0 !important;
    z-index: 1000;
    display: block;
    width: 100%;
}

.logo-grid {
    grid-template-columns: repeat(4, auto);
    /* justify-content: center; */
    /* align-items: center; */
    gap: 10px;
}

.main-nav .nav-inner {
    align-items: end !important;
    justify-content: end !important;
}
.countdown-box {
    padding: 13px 13px;
}
}





/* --- Mobile Menu Styles --- */
@media (max-width: 768px) {
  /* Hide the desktop links by default on mobile */
  .nav-links {
    display: none !important; 
    flex-direction: column;
    position: absolute;
    top: 100%; /* Positions it directly below the navbar */
    left: 0;
    width: 100%;
    background-color: #ffffff; /* Match your nav background */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
  }

  /* When the 'active' class is added via JS, show the menu */
  .nav-links.active {
    display: flex !important;
  }

  /* Make links span the full width for easy tapping */
  .nav-links a {
    padding: 12px 20px;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #f0f0f0; /* Optional: adds lines between links */
  }

  .nav-links a:last-child {
    border-bottom: none;
  }
}

/* Ensure the hamburger button is hidden on Desktop */
@media (min-width: 769px) {
  .hamburger {
    display: none;
  }
}

/* --- Base Navigation Styles --- */
.main-nav {
  position: relative; /* CRITICAL: Anchors the dropdown menu when not sticky */
  z-index: 1000;      /* Keeps the nav above your hero section */
  transition: all 0.3s ease-in-out;
  width: 100%;
  background-color: #ffffff; /* Make sure it has a background so the menu isn't transparent */
}

/* --- Sticky Nav Styles --- */
.main-nav.scrolled {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.footer-logos .logo-grid {
    grid-template-columns: repeat(4, auto);
}
/* --- Mobile Menu Styles --- */
@media (max-width: 768px) {
  /* Hide desktop links and style the dropdown */
  .nav-links {
    display: none !important; 
    flex-direction: column;
    position: absolute;
    top: 100%; /* Pushes exactly to the bottom edge of .main-nav */
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Shadow for the dropdown menu */
    padding: 0; /* Remove padding to let links touch edges */
    margin: 0;
  }

  /* When the JavaScript adds the 'active' class, show the menu */
  .nav-links.active {
    display: flex !important;
  }

  .nav-links a {
    padding: 15px 20px;
    width: 100%;
    text-align: left; /* Usually looks better on mobile */
    border-bottom: 1px solid #f0f0f0;
    color: #333333; /* Ensure text is visible */
    text-decoration: none;
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  /* Style for the Register Button in mobile view */
  .nav-links .nav-register-btn {
    background-color: var(--saffron, #ff9933);
    color: white !important;
    text-align: center;
    font-weight: bold;
  }
}

/* --- Desktop Styles --- */
@media (min-width: 769px) {
  .hamburger {
    display: none; /* Hide hamburger on Desktop */
  }
}


@media (max-width: 768px) {
.container.hero-content {
    display: block;
    justify-content: center;
    align-items: center;
}
.initiative-logo {
    display: table;
    margin: auto;
    margin-top: 50px;
}
}
.initiative-logo img {
    max-width: 320px;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
}
/* --- Mobile Logo Fixes --- */
@media (max-width: 768px) {


.logo-grid a {
    margin: auto;
}   
.logo-grid a {
  display: flex;
  justify-content: center;
}
.header-logo {
    padding: 10px;
}
}

@media (max-width: 768px) {
    .logo-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 20px;
        width: 100%;
    }

}