  <style>
    /* ═══════════════════════════════════════════
       BASE RESET & TOKENS
    ═══════════════════════════════════════════ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --amber-200:#fde68a; --amber-300:#fcd34d; --amber-400:#fbbf24;
      --amber-500:#f59e0b; --amber-600:#d97706; --amber-700:#b45309; --amber-800:#92400e;
      --orange-500:#f97316; --orange-600:#ea580c;
      --rose-500:#f43f5e; --rose-600:#e11d48;
      --blue-100:#dbeafe; --blue-700:#1d4ed8; --blue-800:#1e40af; --blue-950:#172554;
      --indigo-700:#4338ca; --indigo-900:#312e81;
      --teal-700:#0f766e; --teal-800:#115e59; --teal-950:#042f2e;
      --slate-300:#cbd5e1; --slate-400:#94a3b8; --slate-500:#64748b;
      --slate-600:#475569; --slate-700:#334155; --slate-800:#1e293b; --slate-950:#020617;
    }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'DM Sans', sans-serif;
      background: linear-gradient(180deg,#fff7ed 0%,#eff6ff 34%,#ecfdf5 68%,#fff 100%);
      color: var(--slate-950); overflow-x: hidden;
    }
    a { text-decoration: none; color: inherit; }
    img { display: block; max-width: 100%; }
    button { font-family: inherit; }

    /* ═══════════════════════════════════════════
       HEADER
    ═══════════════════════════════════════════ */
    header {
      position: fixed; top: 0; left: 0; height: 102px; width: 100%; z-index: 100;
      background: rgba(255,255,255,.92);
      border-bottom: 1px solid rgba(253,230,138,.7);
      box-shadow: 0 4px 24px rgba(15,23,64,.07);
      backdrop-filter: blur(20px);
    }
    .header-inner {
      max-width: 1280px; margin: 0 auto;
      display: flex; align-items: center; justify-content: space-between;
      padding: 6px 18px; gap: 56px;
    }
    .header-logo { display: flex; align-items: center; gap: 10px; min-width: 0; flex: 1; }
    .header-logo img {
      height: 77px; width: 77px; flex-shrink: 0; border-radius: 8px;
      border: 1px solid #fde68a; background: linear-gradient(135deg,#fff,#fffbeb);
      object-fit: contain;
    }
    .header-title { min-width: 0; }
    .header-title h1 { font-size: 11px; font-weight: 800; color: var(--slate-950); line-height: 1.4; }
    .header-title h1 span { display: block; white-space: nowrap; text-overflow: ellipsis; }
    .header-title p  { font-size: 10px; font-weight: 700; color: var(--slate-700); margin-top: 3px; line-height: 1.4; }
    .header-title p span { display: block; }

    nav.desktop-nav { display: none; gap: 20px; align-items: center; flex-shrink: 0; }
    nav.desktop-nav a {
      font-size: 13px;
      font-weight: 800;
      color: #1e3a8a;
      transition: all .25s ease;
      white-space: nowrap;
      position: relative;
    }

    nav.desktop-nav a::after{
      content:"";
      position:absolute;
      left:0;
      bottom:-6px;
      width:0%;
      height:3px;
      border-radius:10px;
      background:linear-gradient(90deg,#f59e0b,#e11d48);
      transition:width .3s ease;
    }

    nav.desktop-nav a:hover {
      color: #d97706;
    }

    nav.desktop-nav a:hover::after{
      width:100%;
    }

    .header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
    .btn-register {
      display: none; align-items: center; gap: 6px;
      padding: 9px 18px; border-radius: 8px; font-size: 13px; font-weight: 700; color: #fff;
      background: linear-gradient(90deg,#1e3a8a,#4338ca,#0f766e);
      box-shadow: 0 4px 14px rgba(30,58,138,.22); transition: background .3s;
      border: none; cursor: pointer; white-space: nowrap;
    }
    .btn-register:hover { background: linear-gradient(90deg,#d97706,#ea580c,#e11d48); }
    .btn-register svg { width: 14px; height: 14px; flex-shrink: 0; }

    .hamburger {
      border: 1px solid #fde68a; background: #fff; border-radius: 8px;
      padding: 8px; cursor: pointer; color: var(--slate-800); display: flex;
    }
    .hamburger svg { width: 20px; height: 20px; display: block; }

    .mobile-nav {
      display: none; flex-direction: column; gap: 2px;
      padding: 12px 16px 16px; border-top: 1px solid #fde68a;
      background: linear-gradient(180deg,#fff,#fffbeb);
    }
    .mobile-nav.open { display: flex; }
    .mobile-nav a {
      font-size: 14px; font-weight: 700;
      padding: 11px 12px; border-radius: 8px; transition: background .2s, color .2s;
    }
    .mobile-nav a:hover { background: #eff6ff; color: var(--blue-700); }

    /* ─── MOBILE REGISTER BUTTON ─── */
    .btn-register-mobile{
      margin-top:14px;
      display:flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      width:100%;
      padding:14px 18px;
      border-radius:16px;
      text-decoration:none;
      font-weight:700;
      font-size:0.95rem;
      color:#fff;
      background:linear-gradient(135deg,#d97706,#e11d48,#1e3a8a);
      box-shadow:0 10px 25px rgba(30,64,175,.25);
      transition:all .3s ease;
    }

    .btn-register-mobile:hover{
      transform:translateY(-2px);
      color:#fff;
    }

    @media (min-width:1024px){
      .btn-register-mobile{ display:none; }
    }
    @media (min-width:640px){
      .btn-register{ display:flex; }
    }

    /* ═══════════════════════════════════════════
       HERO
    ═══════════════════════════════════════════ */
    #home {
      position: relative; min-height: 100svh;
      display: flex; align-items: center;
      padding: 72px 20px 40px; overflow: hidden;
    }
    .hero-bg { position: absolute; inset: 0; pointer-events: none; }
    .hero-bg img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
    .hero-overlay {
      position: absolute; inset: 0; pointer-events: none;
      background: linear-gradient(110deg,rgba(255,247,237,.98) 0%,rgba(255,255,255,.94) 50%,rgba(219,234,254,.82) 80%,rgba(204,251,241,.70) 100%);
    }
    .hero-bottom-fade {
      position: absolute; bottom: 0; left: 0; right: 0; height: 120px; pointer-events: none;
      background: linear-gradient(to top,rgba(255,247,237,.9),transparent);
    }
    .hero-content {
      position: relative; z-index: 1;
      max-width: 1280px; margin: 0 auto; width: 100%;
      display: grid; grid-template-columns: 1fr;
      align-items: center; gap: 40px;
    }

    .hero-eyebrow {
      font-size: 14px; font-weight: 900; letter-spacing: .32em;
      text-transform: uppercase; color: var(--blue-800); margin-bottom: 14px;
    }
    .hero-heading {
      font-family: 'Playfair Display', serif; margin-top: 55px;
      font-size: clamp(40px,8vw,76px); font-weight: 900;
      line-height: .95; letter-spacing: -.02em; color: var(--slate-950);
    }
    .hero-heading span {
      display: block;
      background: linear-gradient(90deg,#d97706,#e11d48,#1e3a8a);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    .hero-tagline {
      margin-top: 20px;
      font-size: 15px;
      font-weight: 800;
      font-style: italic;
      letter-spacing: .03em;
      line-height: 1.6;
    }
    .stats-grid { margin-top: 24px; display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
    .stat-card {
      border-radius: 18px; border: 1px solid rgba(255,255,255,.7);
      background: rgba(255,255,255,.68); padding: 14px 8px; text-align: center;
      box-shadow: 0 6px 24px rgba(15,23,64,.06); backdrop-filter: blur(14px);
    }
    .stat-card svg { margin: 0 auto 8px; display: block; }
    .stat-card h3 { font-size: 22px; font-weight: 900; letter-spacing: -.02em; color: var(--slate-950); }
    .stat-card p  { margin-top: 4px; font-size: 21px; font-weight: 600; color: var(--slate-500); }

    /* Chief Guest card — right side (shown only ≥1024px) */
    .hero-right { display: none; justify-content: center; }
    .hero-right-inner { position: relative; }
    .hero-glow-l { position: absolute; top: 40px; left: -40px; width: 260px; height: 260px; border-radius: 50%; background: rgba(251,191,36,.2); filter: blur(48px); pointer-events: none; }
    .hero-glow-r { position: absolute; bottom: 0; right: -40px; width: 260px; height: 260px; border-radius: 50%; background: rgba(96,165,250,.2); filter: blur(48px); pointer-events: none; }
    .hero-guest-card {
      position: relative; overflow: hidden;
      border-radius: 42px; border: 1px solid rgba(255,255,255,.45);
      background: rgba(255,255,255,.2); padding: 16px;
      box-shadow: 0 28px 88px rgba(15,23,42,.18); backdrop-filter: blur(24px);
    }
    .hero-guest-card img { height: 480px; width: 360px; border-radius: 32px; object-fit: cover; object-position: top; }
    .hero-guest-overlay {
      position: absolute; left: 16px; right: 16px; bottom: 16px;
      height: 200px; border-radius: 0 0 32px 32px;
      background: linear-gradient(to top,rgba(0,0,0,.72),rgba(0,0,0,.2),transparent);
    }
    .hero-guest-text { position: absolute; left: 32px; right: 32px; bottom: 34px; z-index: 5; }
    .hero-guest-text .eyebrow { font-size: 15px; font-weight: 900; letter-spacing: .28em; text-transform: uppercase; color: var(--amber-300); text-align: center; }
    .chief-guest-badge{
      display:inline-block;
      padding:8px 18px;
      border-radius:999px;
      background:linear-gradient(135deg,#f59e0b,#fbbf24);
      color:#fff !important;
      box-shadow: 0 6px 18px rgba(245,158,11,0.35), inset 0 1px 1px rgba(255,255,255,0.25);
      border:1px solid rgba(255,255,255,0.2);
      font-size:13px !important;
      letter-spacing:.24em !important;
    }
    .hero-guest-text h2 { font-family: 'Playfair Display', serif; margin-top: 8px; font-size: 34px; font-weight: 900; line-height: 1.15; color: #fff; max-width: 280px; }

    .btn-read-profile {
      display: flex; align-items: center; justify-content: center; gap: 10px;
      margin: 16px auto 0; border-radius: 18px; border: none; cursor: pointer;
      padding: 14px 28px; font-size: 13px; font-weight: 900; letter-spacing: .05em; color: #fff;
      background: linear-gradient(90deg,#1e3a8a,#4338ca,#0f766e);
      box-shadow: 0 8px 28px rgba(30,58,138,.22); transition: transform .3s, background .3s;
    }
    .btn-read-profile:hover { transform: scale(1.05); background: linear-gradient(90deg,#f59e0b,#f97316,#f43f5e); }
    .btn-read-profile svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform .3s; }
    .btn-read-profile:hover svg { transform: translateX(4px); }

    /* Mobile chief guest inline card (shown only < 1024px) */
    .hero-guest-mobile {
      display: flex; align-items: center; gap: 16px;
      padding: 16px; border-radius: 20px;
      background: rgba(255,255,255,.75); backdrop-filter: blur(16px);
      border: 1px solid rgba(255,255,255,.8); box-shadow: 0 8px 32px rgba(15,23,64,.1);
      margin-top: 20px;
    }
    .hero-guest-mobile img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; object-position: top; border: 3px solid #fbbf24; flex-shrink: 0; }
    .hero-guest-mobile-info .eyebrow { font-size: 9px; font-weight: 900; letter-spacing: .22em; text-transform: uppercase; color: var(--amber-700); }
    .hero-guest-mobile-info h3 { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 900; color: var(--slate-950); margin-top: 4px; }
    .hero-guest-mobile-info p { font-size: 12px; color: var(--slate-600); margin-top: 3px; line-height: 1.4; }
    .btn-profile-sm {
      display: inline-flex; align-items: center; gap: 6px;
      margin-top: 10px; padding: 7px 14px; border-radius: 12px; font-size: 12px; font-weight: 800;
      color: #fff; background: linear-gradient(90deg,#1e3a8a,#4338ca);
      border: none; cursor: pointer; transition: background .3s;
    }
    .btn-profile-sm:hover { background: linear-gradient(90deg,#d97706,#ea580c); }
    .btn-profile-sm svg { width: 12px; height: 12px; }

    /* ═══════════════════════════════════════════
       ANNOUNCEMENT BANNER
    ═══════════════════════════════════════════ */
    .announcement-banner {
      background: linear-gradient(90deg,#ea580c,#e11d48,#4338ca);
      border-top: 1px solid rgba(255,255,255,.15); border-bottom: 1px solid rgba(255,255,255,.15);
      box-shadow: 0 6px 32px rgba(0,0,0,.18);
    }
    .banner-inner {
      max-width: 1400px; margin: 0 auto;
      display: flex; flex-wrap: wrap; align-items: stretch;
      color: #fff;
    }
    .banner-label {
      display: flex; align-items: center; gap: 14px;
      padding-right: 124px !important;
      padding: 18px 24px; background: rgba(0,0,0,.12);
      flex-shrink: 0;
    }
    .banner-icon-wrap {
      width: 48px; height: 48px; border-radius: 14px; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      background: rgba(255,255,255,.15);
    }
    .banner-icon-wrap svg { display: block; }
    .banner-eyebrow { font-size: 9px; font-weight: 900; letter-spacing: .28em; text-transform: uppercase; color: #fde68a; }
    .banner-heading { font-size: 18px; font-weight: 900; margin-top: 2px; }
    .banner-items { display: flex; flex-wrap: wrap; flex: 1; }
    .banner-item {
      display: flex; align-items: center; gap: 14px;
      padding: 18px 24px; border-left: 1px solid rgba(255,255,255,.15); flex: 1; min-width: 180px;
    }
    .banner-item-icon {
      border-radius: 14px; background: rgba(255,255,255,.12);
      padding: 10px; display: flex; flex-shrink: 0;
    }
    .banner-item-icon svg { display: block; }
    .banner-item-eyebrow { font-size: 9px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: #fed7aa; }
    .banner-item-value { font-size: 15px; font-weight: 900; margin-top: 3px; }

    .announcement-title-row{
        display:flex;
        align-items:center;
        gap:12px;
    }

    .announcement-pdf-link{
        display:inline-flex;
        align-items:center;
        gap:6px;
        padding:6px 12px;
        background:#fff;
        border:1px solid rgba(255,255,255,0.25);
        color:#1e3a8a;
        text-decoration:none;
        border-radius:8px;
        font-size:13px;
        font-weight:600;
        transition:.3s ease;
    }

    .announcement-pdf-link:hover{
        background:linear-gradient(90deg,#1e3a8a,#4338ca,#0f766e);
        color:#fff;
    }

    /* ═══════════════════════════════════════════
       SECTION HELPERS
    ═══════════════════════════════════════════ */
    .section-eyebrow { font-size: 11px; font-weight: 900; letter-spacing: .28em; text-transform: uppercase; text-align: center; margin-bottom: 14px; }
    .section-heading {
      text-align: center; font-family: 'Playfair Display', serif;
      font-size: clamp(26px,5vw,52px); font-weight: 900; letter-spacing: -.02em; color: var(--slate-950);
    }
    .divider { width: 80px; height: 4px; border-radius: 99px; margin: 20px auto 0; }
    .divider-gold   { background: linear-gradient(90deg,var(--blue-700),var(--amber-500),var(--rose-600)); }
    .divider-amber  { background: linear-gradient(90deg,#f59e0b,#f97316,#f43f5e); }
    .divider-silver { background: linear-gradient(90deg,#94a3b8,#64748b,#334155); }

    /* ═══════════════════════════════════════════
       AWARDEES
    ═══════════════════════════════════════════ */
    #awardees {
      border-top: 1px solid rgba(251,191,36,.5);
      border-bottom: 1px solid rgba(251,191,36,.5);
      background: linear-gradient(135deg,#eef2ff,#fff,#fffbeb);
      padding: 64px 20px;
    }
    .orbital-section-title { text-align: center; font-size: 17px; font-weight: 900; color: var(--slate-700); margin-top: 56px; }

    .orbital-wrap {
      display: none;
      position: relative; width: 950px; height: 950px; margin: 40px auto 0;
    }
    .orbital-center {
      position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
      width: 240px; height: 240px; border-radius: 50%;
      display: flex; flex-direction: column; align-items: center; justify-content: center; z-index: 20;
    }
    .orbital-center svg { display: block; }
    .orbital-center-gold   { border: 12px solid #fde68a; background: linear-gradient(135deg,#fefce8,#fef3c7,#ffedd5); box-shadow: 0 20px 80px rgba(251,191,36,.3); }
    .orbital-center-silver { border: 12px solid #cbd5e1; background: linear-gradient(135deg,#f1f5f9,#e2e8f0,#cbd5e1); box-shadow: 0 20px 80px rgba(100,116,139,.3); }
    .orbital-center h3 { font-size: 36px; font-weight: 900; margin-top: 10px; }
    .orbital-center-gold   h3 { color: #d97706; }
    .orbital-center-silver h3 { color: #475569; }
    .orbital-center p { font-size: 13px; font-weight: 700; letter-spacing: .25em; color: var(--slate-700); margin-top: 4px; }
    .orbital-item {
      position: absolute; width: 210px; text-align: center;
      display: flex; flex-direction: column; align-items: center;
      opacity: 0; transform: scale(.5);
      transition: opacity .5s ease, transform .5s ease;
    }
    .orbital-item.visible { opacity: 1; transform: scale(1); }
    .orbital-img-wrap-gold   { border-radius: 50%; border: 6px solid #fbbf24; background: #fff; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,.2); }
    .orbital-img-wrap-silver { border-radius: 50%; border: 6px solid #94a3b8; background: #fff; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,.2); }
    .orbital-img-wrap-gold img,
    .orbital-img-wrap-silver img { width: 160px; height: 160px; object-fit: cover; object-position: top; transition: transform .5s; }
    .orbital-item:hover .orbital-img-wrap-gold img,
    .orbital-item:hover .orbital-img-wrap-silver img { transform: scale(1.1); }
    .orbital-name    { font-size: 16px; font-weight: 900; color: var(--slate-950); margin-top: 12px; }
    .orbital-program { font-size: 12px; font-weight: 600; color: var(--slate-700); margin-top: 3px; }
    .orbital-award-gold   { font-size: 11px; color: #b45309; margin-top: 3px; }
    .orbital-award-silver { font-size: 11px; color: var(--slate-500); margin-top: 3px; }

    p{ margin-bottom: 0px !important; }

    .medal-grid {
      display: flex; flex-wrap: wrap; justify-content: center;
      gap: 14px; margin-top: 36px;
    }
    .medal-card {
      width: 150px; border-radius: 20px; border: 1px solid #e2e8f0;
      background: #fff; padding: 14px 10px; text-align: center;
      box-shadow: 0 4px 16px rgba(0,0,0,.06);
      transition: transform .3s, box-shadow .3s;
    }
    .medal-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,.13); }
    .medal-card img { width: 88px; height: 88px; border-radius: 50%; object-fit: cover; object-position: top; margin: 0 auto 10px; }
    .medal-card-gold   img { border: 4px solid #fbbf24; }
    .medal-card-silver img { border: 4px solid #94a3b8; }
    .medal-card-name  { font-size: 13px; font-weight: 900; color: var(--slate-950); line-height: 1.3; }
    .medal-card-prog  { font-size: 10px; font-weight: 600; color: var(--slate-600); margin-top: 4px; }
    .medal-card-award { font-size: 9px; margin-top: 4px; font-weight: 700; }
    .medal-card-gold   .medal-card-award { color: #b45309; }
    .medal-card-silver .medal-card-award { color: var(--slate-500); }

    /* ═══════════════════════════════════════════
       QUICK LINKS
    ═══════════════════════════════════════════ */
    .quicklinks-section {
      background: linear-gradient(90deg,#172554,#312e81,#134e4a);
      padding: 64px 20px; color: #fff;
      border-top: 1px solid rgba(96,165,250,.2);
      border-bottom: 1px solid rgba(96,165,250,.2);
    }
    .quicklinks-grid {
      max-width: 960px; margin: 44px auto 0;
      display: grid; grid-template-columns: 1fr; gap: 16px;
    }
    .quicklink-card {
      border-radius: 24px; border: 1px solid rgba(255,255,255,.15);
      background: rgba(255,255,255,.1); padding: 24px;
      backdrop-filter: blur(16px);
      display: flex; align-items: center; gap: 20px;
      transition: transform .3s, border-color .3s, background .3s;
    }
    .quicklink-card:hover { transform: translateY(-4px); border-color: #fcd34d; background: rgba(255,255,255,.16); }
    .quicklink-icon {
      width: 56px; height: 56px; border-radius: 16px; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      background: linear-gradient(135deg,#fbbf24,#f97316,#f43f5e);
      box-shadow: 0 6px 20px rgba(249,115,22,.3); transition: transform .3s;
    }
    .quicklink-card:hover .quicklink-icon { transform: scale(1.1); }
    .quicklink-icon svg { display: block; }
    .quicklink-info { flex: 1; min-width: 0; }
    .quicklink-title { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 900; color: #fff; }
    .quicklink-meta  { font-size: 13px; color: #bfdbfe; margin-top: 4px; }
    .quicklink-explore { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: #fcd34d; margin-top: 10px; }
    .quicklink-explore svg { display: block; flex-shrink: 0; }

    /* ═══════════════════════════════════════════
       SCHEDULE SECTION — DARK PREMIUM THEME
    ═══════════════════════════════════════════ */
    #schedule{
      position: relative; overflow: hidden; padding: 90px 20px;
      background:
        radial-gradient(circle at top left, rgba(251,191,36,.10), transparent 30%),
        radial-gradient(circle at bottom right, rgba(244,63,94,.10), transparent 35%),
        linear-gradient(135deg,#0f172a,#172554,#1e1b4b,#134e4a);
      border-top: 1px solid rgba(255,255,255,.08);
      border-bottom: 1px solid rgba(255,255,255,.08);
    }
    #schedule::before{
      content:''; position:absolute; inset:0;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,.03), transparent);
      pointer-events:none;
    }
    .schedule-wrap{
      max-width: 1440px; margin: 0 auto;
      display: grid; grid-template-columns: 420px 1fr;
      gap: 70px; align-items: start; position: relative; z-index: 2;
    }
    .schedule-left h2{
      color:#fff; font-size: clamp(2.4rem,5vw,4rem);
      line-height:1.1; font-family:'Playfair Display',serif; font-weight:900;
    }
    .schedule-left h2 span{
      background: linear-gradient(90deg,#fbbf24,#f97316,#f43f5e);
      -webkit-background-clip:text; -webkit-text-fill-color:transparent;
    }
    .schedule-left p{ color:#cbd5e1; }
    .schedule-left .eyebrow{
      color:#fcd34d; font-weight:800; letter-spacing:.18em;
      text-transform:uppercase; font-size:.78rem;
    }
    .venue-card{
      margin-top:32px; padding:28px; border-radius:28px;
      background: rgba(255,255,255,.08); backdrop-filter: blur(16px);
      border:1px solid rgba(255,255,255,.12);
      box-shadow: 0 10px 40px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.08);
      display:flex;
      align-items:center;
      gap:18px;
    }
    .venue-icon{
      width:52px;
      height:52px;
      flex-shrink:0;
      display:flex;
      align-items:center;
      justify-content:center;
      border-radius:16px;
      background:linear-gradient(135deg,#3b82f6,#7c3aed);
      box-shadow:0 12px 30px rgba(59,130,246,.35);
    }
    .venue-card h3{ color:#fff; margin-top:8px; font-weight:800; }
    .note-card{
      margin-top:22px; padding:24px; border-radius:24px;
      background: linear-gradient(135deg, rgba(251,191,36,.15), rgba(244,63,94,.12));
      border:1px solid rgba(255,255,255,.12);
      display:flex; gap:18px; align-items:flex-start;
    }
    .note-card p{ color:#f8fafc; }
    .note-icon{
      width:52px; height:52px; border-radius:16px; flex-shrink:0;
      display:flex; align-items:center; justify-content:center;
      background: linear-gradient(135deg,#fbbf24,#f97316,#f43f5e);
      box-shadow:0 10px 24px rgba(249,115,22,.35);
    }
    .pdf-card{
      margin-top:24px;
      display:flex;
      align-items:center;
      gap:18px;
      padding:20px 24px;
      border-radius:24px;
      background:rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.1);
    }

    .pdf-icon{
      width:52px;
      height:52px;
      border-radius:16px;
      display:flex;
      align-items:center;
      justify-content:center;
      background:linear-gradient(135deg,#ef4444,#f97316);
      flex-shrink:0;
    }
    .pdf-content{
      flex:1;
    }
    .pdf-content p:last-child{
      margin:4px 0 0;
    }
    .pdf-btn{
      padding:12px 18px;
      border-radius:12px;
      background:#fff;
      color:#111827;
      text-decoration:none;
      font-weight:700;
    }
    .timeline{ position:relative; }
    .timeline-item{ display:flex; gap:24px; margin-bottom:22px; }
    .timeline-track{ display:flex; flex-direction:column; align-items:center; }
    .timeline-dot{
      width:14; height:14; border-radius:50%;
      background: linear-gradient(135deg,#fbbf24,#f97316,#f43f5e);
      box-shadow: 0 0 0 6px rgba(251,191,36,.12), 0 0 24px rgba(249,115,22,.45);
    }
    .timeline-line{
      width:2px; flex:1; min-height:70px; margin-top:10px;
      background: linear-gradient(to bottom, rgba(251,191,36,.5), rgba(255,255,255,.08));
    }
    .timeline-time{ color:#fcd34d; font-size:.82rem; font-weight:800; letter-spacing:.12em; text-transform:uppercase; }
    .timeline-event{ color:#fff; font-size:1.35rem; margin-top:4px; font-weight:800; font-family:'Playfair Display',serif; }
    .timeline-detail{ margin-top:8px; color:#cbd5e1; line-height:1.8; max-width:620px; }

    @media (max-width: 992px){
      #schedule{ padding:70px 18px; }
      .schedule-wrap{ grid-template-columns:1fr; gap:50px; }
      .timeline-item{ gap:18px; }
      .timeline-event{ font-size:1.1rem; }
      .timeline-detail{ font-size:.95rem; }
    }

    /* ═══════════════════════════════════════════
       GALLERY
    ═══════════════════════════════════════════ */
    #gallery { background: linear-gradient(135deg,#fff1f2,#fff7ed,#eff6ff); padding: 64px 20px; }
    .gallery-grid { max-width: 1280px; margin: 40px auto 0; display: grid; grid-template-columns: 1fr; gap: 16px; }
    .gallery-item { border-radius: 12px; overflow: hidden; border: 1px solid #fff; background: #fff; box-shadow: 0 4px 16px rgba(180,83,9,.05); }
    .gallery-item img { width: 100%; height: 220px; object-fit: cover; transition: transform .5s; filter: saturate(1.12); }
    .gallery-item:hover img { transform: scale(1.05); }

    .video-container{
        width: 100%;
        max-width: 1200px;
        margin: 40px auto 0;
        padding: 0 10px;
    }

    .video-container video{
        display: block;
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        object-fit: cover;

        border-radius: 20px;
        overflow: hidden;

        box-shadow:
            0 10px 30px rgba(0,0,0,.12),
            0 4px 12px rgba(0,0,0,.08);
    }

    /* ═══════════════════════════════════════════
       CONTACT / HELP DESK
    ═══════════════════════════════════════════ */
    #contact { border-top: 1px solid #dbeafe; background: linear-gradient(135deg,#f0fdfa,#fff,#eff6ff); padding: 64px 20px; }
    .helpdesk-grid { max-width: 1280px; margin: 40px auto 0; display: grid; grid-template-columns: 1fr; gap: 16px; }
    .helpdesk-card { border-radius: 12px; border: 1px solid #dbeafe; background: rgba(255,255,255,.92); padding: 22px; box-shadow: 0 4px 16px rgba(15,23,64,.05); }
    .helpdesk-card-header { display: flex; align-items: center; gap: 14px; }
    .helpdesk-icon { border-radius: 8px; background: #dbeafe; padding: 10px; color: var(--blue-800); display: flex; }
    .helpdesk-icon svg { display: block; }
    .helpdesk-card h3 { font-size: 18px; font-weight: 900; color: var(--slate-950); }
    .helpdesk-card p  { margin-top: 16px; line-height: 1.7; color: var(--slate-600); font-size: 13px; }
    .helpdesk-contact { margin-top: 16px; border-radius: 8px; background: linear-gradient(90deg,#fef3c7,#ffedd5); padding: 10px 14px; font-size: 13px; font-weight: 900; color: var(--amber-800); }
    .venue-map-card { max-width: 1280px; margin: 16px auto 0; border-radius: 12px; border: 1px solid #dbeafe; background: rgba(255,255,255,.88); padding: 24px; text-align: center; }
    .venue-map-card svg { display: block; margin: 0 auto; }
    .venue-map-card h3  { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 900; margin-top: 8px; color: var(--slate-950); }
    .venue-map-card p   { margin-top: 6px; font-weight: 600; line-height: 1.7; color: var(--slate-600); font-size: 14px; }

    /* ═══════════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════════ */
    footer { border-top: 1px solid rgba(30,58,138,.5); background: linear-gradient(90deg,#172554,#1e1b4b,#042f2e); padding: 32px 20px; color: #fff; margin-top:auto; }
    .footer-inner { max-width: 1280px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }
    .footer-inner h3  { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 900; color: var(--amber-300); }
    .footer-inner .sub  { margin-top: 4px; color: #cbd5e1; font-size: 13px; }
    .footer-inner .copy { font-size: 12px; font-weight: 500; color: #94a3b8; }

    /* ═══════════════════════════════════════════
       MODAL
    ═══════════════════════════════════════════ */
    .modal-overlay {
      position: fixed; inset: 0; z-index: 999;
      display: flex; align-items: flex-end;
      background: rgba(0,0,0,.72); backdrop-filter: blur(10px);
      opacity: 0; pointer-events: none; transition: opacity .3s;
    }
    .modal-overlay.open { opacity: 1; pointer-events: all; }
    .modal-box {
      position: relative; width: 100%; max-height: 95svh;
      overflow: hidden; border-radius: 28px; background: #fff; margin: auto;
      box-shadow: 0 -20px 80px rgba(0,0,0,.3);
      display: flex; flex-direction: column;
      transform: translateY(40px); transition: transform .3s;
    }
    .modal-overlay.open .modal-box { transform: translateY(0); }
    .modal-close {
      position: absolute; top: 16px; right: 16px; z-index: 50;
      width: 44px; height: 44px; border-radius: 50%; border: none; cursor: pointer;
      background: var(--slate-950); color: #fff;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 14px rgba(0,0,0,.3); transition: transform .2s;
    }
    .modal-close:hover { transform: scale(1.08); }
    .modal-close svg { display: block; }
    .modal-img-side {
      position: relative; flex-shrink: 0;
      background: linear-gradient(135deg,#172554,#312e81,#0f172a); padding: 0;
    }
    .modal-img-side img { width: 100%; height: 100%; min-height: 100%; object-fit: cover; object-position: top center; }
    .modal-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(0,0,0,.72),transparent 60%); }
    .modal-img-text { position: absolute; bottom: 20px; left: 24px; }
    .modal-img-text .eyebrow { font-size: 9px; font-weight: 900; letter-spacing: .28em; text-transform: uppercase; color: var(--amber-300); }
    .modal-img-text h2 { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 900; line-height: 1.1; color: #fff; margin-top: 8px; }
    .modal-content { overflow-y: auto; padding: 34px 36px; flex: 1; display: flex; flex-direction: column; justify-content: flex-start; }
    .modal-content .eyebrow { font-size: 10px; font-weight: 900; letter-spacing: .28em; text-transform: uppercase; color: var(--amber-700); }
    .modal-content h3 { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 900; line-height: 1.15; margin-top: 12px; color: var(--slate-950); }
    .modal-content h3 span {
      display: block;
      background: linear-gradient(90deg,#d97706,#e11d48);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    .modal-body { margin-top: 24px; display: flex; flex-direction: column; gap: 16px; font-size: 14px; line-height: 1.85; color: var(--slate-600); }
    .modal-backdrop.show { opacity: .75; backdrop-filter: blur(6px); }
    .modal-content { border: none; }

    /* ═══════════════════════════════════════════
       SCROLL REVEAL & ANIMATIONS
    ═══════════════════════════════════════════ */
    .sr { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
    .sr.visible { opacity: 1; transform: translateY(0); }
    @keyframes fadeUp { from { opacity:0; transform:translateY(40px); } to { opacity:1; transform:translateY(0); } }
    .anim-fade-up { animation: fadeUp .8s ease both; }

    /* ═══════════════════════════════════════════
       WELCOME & LOGOUT
    ═══════════════════════════════════════════ */
.welcome-user {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.4px;
    line-height: 1.4;

    padding: 6px 14px;
    display: inline-block;

    background: rgba(255, 255, 255, 0.95);
    border-left: 4px solid transparent;
    border-radius: 10px;

    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.05),
        0 2px 6px rgba(0, 0, 0, 0.03);

    position: relative;

    /* Gradient Text */
    background-image: linear-gradient(
        90deg,
        var(--blue-700),
        var(--amber-500),
        var(--rose-600)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.welcome-user::before {
    content: "";
    position: absolute;
    left: 0;
    top: 15%;
    width: 4px;
    height: 70%;
    border-radius: 10px;
    background: linear-gradient(
        180deg,
        var(--blue-700),
        var(--amber-500),
        var(--rose-600)
    );
}
    .logout-mobile{
      display:none;
      background:linear-gradient(135deg,#dc2626,#b91c1c);
      color:#fff; text-decoration:none;
      padding:6px 10px; border-radius:8px;
      font-size:12px; font-weight:700;
    }

    /* ═══════════════════════════════════════════
       MOBILE WELCOME BAR — hidden by default
    ═══════════════════════════════════════════ */
    .mobile-welcome-user {
      display: none;
    }

    /* ═══════════════════════════════════════════
       BREAKPOINT — SMALL PHONE (≥380px)
    ═══════════════════════════════════════════ */
    @media (min-width: 380px) {
      .stat-card h3 { font-size: 24px; }
      .stat-card p  { font-size: 16px; }
    }

    /* ═══════════════════════════════════════════
       BREAKPOINT — TABLET (≥640px)
    ═══════════════════════════════════════════ */
    @media (min-width: 640px) {
      .header-logo img { height: 60px; width: 60px; }
      .header-title h1 { font-size: 13px; }
      .header-title p  { font-size: 12px; }
      .btn-register { display: flex; }
      #home { padding: 100px 32px 60px; }
      .stats-grid { gap: 14px; }
      .stat-card { padding: 18px 12px; }
      .stat-card h3 { font-size: 26px; }
      .hero-tagline { font-size: 17px; }
      .banner-item { min-width: 160px; }
      .quicklinks-grid { grid-template-columns: 1fr 1fr; }
      .gallery-grid { grid-template-columns: repeat(2,1fr); }
      .gallery-item img { height: 260px; }
      .helpdesk-grid { grid-template-columns: 1fr 1fr; }
      .modal-img-side img { height: 280px; }
      .modal-img-text h2 { font-size: 34px; }
      .modal-content { padding: 32px 32px 48px; }
      .modal-content h3 { font-size: 30px; }
      .modal-body { font-size: 15px; gap: 18px; }
    }

    /* ═══════════════════════════════════════════
       BREAKPOINT — LARGE TABLET (≥768px)
    ═══════════════════════════════════════════ */
    @media (min-width: 768px) {
      html { scroll-padding-top: 92px; }
      .header-inner { padding: 12px 28px; }
      .header-logo img { height: 85px; width: 85px; }
      .header-title h1 { font-size: 18px; }
      #home { padding: 110px 40px 64px; min-height: 85vh; }
      .stats-grid { gap: 16px; }
      .stat-card { padding: 20px 14px; }
      .stat-card h3 { font-size: 28px; }
      .hero-tagline { font-size: 18px; }
      .quicklinks-section { padding: 72px 32px; }
      .quicklinks-grid { grid-template-columns: repeat(3,1fr); gap: 20px; }
      .quicklink-card { flex-direction: column; align-items: flex-start; padding: 28px; }
      .quicklink-icon { width: 60px; height: 60px; }
      .quicklink-title { font-size: 20px; }
      #schedule { padding: 50px 40px; }
      .schedule-wrap { grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
      .timeline { gap: 36px; }
      .timeline-event { font-size: 20px; }
      #gallery { padding: 80px 40px; }
      .gallery-grid { grid-template-columns: repeat(3,1fr); gap: 20px; }
      .gallery-item img { height: 280px; }
      #contact { padding: 80px 40px; }
      .helpdesk-grid { grid-template-columns: repeat(3,1fr); gap: 20px; }
      .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; }
      .modal-overlay { align-items: center; padding: 24px; }
      .modal-box {
        max-height: 90svh; max-width: 860px; border-radius: 36px;
        transform: scale(.95); flex-direction: row;
      }
      .modal-overlay.open .modal-box { transform: scale(1); }
      .modal-img-side { width: 340px; flex-shrink: 0; padding: 20px; }
      .modal-img-side img { width: 100%; height: 100%; min-height: 400px; border-radius: 24px; object-position: top; }
      .modal-img-overlay { border-radius: 0 0 24px 24px; }
      .modal-img-text { bottom: 40px; left: 36px; }
      .modal-img-text h2 { font-size: 38px; }
      .modal-content { padding: 48px 40px; }
      .modal-content h3 { font-size: 36px; }
      .modal-body { font-size: 15px; gap: 20px; }
      .modal-close { top: 20px; right: 20px; }
    }

    /* ═══════════════════════════════════════════
       BREAKPOINT — DESKTOP (≥1024px)
    ═══════════════════════════════════════════ */
    @media (min-width: 1024px) {
      nav.desktop-nav { display: flex; }
      .hamburger { display: none; }
      #home { min-height: 82vh; padding: 110px 48px 64px; }
      .hero-content { grid-template-columns: 1fr 1fr; gap: 28px; }
      .hero-right { display: flex; }
      .hero-guest-mobile { display: none; }
      .medal-card { width: 170px; }
      .medal-card img { width: 100px; height: 100px; }
      .modal-img-side { width: 380px; }
      .modal-img-text h2 { font-size: 42px; }
      .modal-content h3 { font-size: 40px; }
      .modal-body { font-size: 16px; gap: 24px; }
    }

    /* ═══════════════════════════════════════════
       BREAKPOINT — LARGE DESKTOP (≥1280px)
    ═══════════════════════════════════════════ */
    @media (min-width: 1280px) {
      .header-inner { padding: 12px 32px; }
      nav.desktop-nav { gap: 28px; }
      nav.desktop-nav a { font-size: 18px; }
      #home { padding: 110px 56px 72px; }
      .stats-grid { gap: 18px; }
      .stat-card h3 { font-size: 30px; }
      .orbital-wrap { display: block; }
      .medal-grid { display: none; }
      .quicklinks-grid { gap: 24px; }
      .quicklink-icon { width: 64px; height: 64px; }
      .quicklink-title { font-size: 22px; }
      .modal-box { max-width: 1000px; }
      .modal-img-side { width: 420px; }
    }

    /* ═══════════════════════════════════════════
       BREAKPOINT — MOBILE (≤768px)
    ═══════════════════════════════════════════ */
    @media (max-width: 768px) {
      header { height: 68px; }
      .header-inner { padding: 6px 12px; gap: 10px; height: 68px; }
      .header-logo { flex:1; min-width:0; overflow:hidden; }
      .header-logo img { width: 50px; height: 50px; flex-shrink:0; }
      .header-title { flex:1; min-width:0; overflow:hidden; }
      .header-title h1 { font-size: 10px !important; line-height: 1.2; font-weight:700; }
      .header-title h1 span { display:block; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
      .btn-register { display: none !important; }
      .hamburger { padding: 6px; }
      .hamburger svg { width: 18px; height: 18px; }
      .welcome-user { display: none !important; }
      .logout-desktop { display: none !important; }
      .logout-mobile { display: inline-flex; align-items: center; justify-content: center; }

      /* ── THE FIX: show mobile welcome bar only on mobile ── */
.mobile-welcome-user {
    font-size: 18px;
    font-weight: 700;
    margin: 0 16px 10px;
    letter-spacing: 0.3px;
    line-height: 1.4;

    padding: 6px 12px;
    display: inline-block;

    position: relative;

    /* Gradient Text (same as desktop) */
    background-image: linear-gradient(
        90deg,
        var(--blue-700),
        var(--amber-500),
        var(--rose-600)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Left gradient bar (same effect as desktop) */
.mobile-welcome-user::before {
    content: "";
    position: absolute;
    left: 0;
    top: 15%;
    width: 3px;
    height: 70%;
    border-radius: 10px;
    background: linear-gradient(
        180deg,
        var(--blue-700),
        var(--amber-500),
        var(--rose-600)
    );
}
    }
    .btn-proceed {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(90deg, #1e3a8a, #4338ca, #0f766e);
    box-shadow: 0 4px 14px rgba(30, 58, 138, .22);
    transition: background .3s, transform .2s;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    }

    .btn-proceed:hover {
        background: linear-gradient(90deg, #d97706, #ea580c, #e11d48);
        transform: translateY(-2px);
        color: #fff;
    }
	

  </style>
  <style>
  /* ─── FLIP CARD EFFECT ─── */
  .flip-container {
    perspective: 1000px;
  }
  .flip-inner {
    position: relative;
    width: 100%;
    /* height: 100%; */
    transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transform-style: preserve-3d;
    border-radius: inherit;
  }
  .flip-container:hover .flip-inner {
    transform: rotateY(180deg);
  }
  .flip-front {
    position: relative;
    
        height: 480px;
    width: 360px;
    backface-visibility: hidden;
    border-radius: inherit;
    transform: rotateY(0deg);
  }
  .flip-back {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: inherit;
    transform: rotateY(180deg);
    background: linear-gradient(145deg, #0f172a, #1e3a8a);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
  }
  .flip-front > img {
       height: 480px;
    width: 360px;
    object-fit: cover;
    border-radius: inherit;
  }
  
  /* Hides the "Read Full Profile" button on desktop since we have the hover flip */
  .hero-right .btn-read-profile {
    display: none !important;
  }
/* MODERN FOOTER */

.modern-footer{

background:
linear-gradient(
135deg,
#0f172a,
#1e293b,
#1e3a8a
);

padding:40px 8%;

color:#fff;

position:relative;

overflow:hidden;

margin-top:80px;
}

/* TOP GLOW */

.modern-footer::before{

content:"";

position:absolute;

top:-100px;

left:-80px;

width:250px;

height:250px;

background:
rgba(255,255,255,.08);

border-radius:50%;

filter:blur(70px);
}

.footer-inner{

display:flex;

justify-content:space-between;

align-items:center;

gap:20px;

max-width:1400px;

margin:auto;

position:relative;

z-index:2;
}

/* TITLE */

.footer-left h3{

font-size:32px;

margin-bottom:10px;

font-weight:800;

letter-spacing:1px;

background:
linear-gradient(
90deg,
#ffffff,
#dbeafe
);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;
}

/* SUBTITLE */

.sub{

font-size:16px;

color:#cbd5e1;

margin:0;
}

/* COPYRIGHT */

.copy{

padding:14px 22px;

border-radius:50px;

background:
rgba(255,255,255,.08);

backdrop-filter:blur(12px);

border:1px solid rgba(255,255,255,.15);

font-size:15px;

color:#e2e8f0;
}

/* MOBILE */

@media(max-width:768px){

.footer-inner{

flex-direction:column;

text-align:center;
}

.footer-left h3{

font-size:26px;
}

.copy{

width:100%;
}

}
/* CONTACT SECTION */

.contact-section{

padding:100px 6%;

background:
linear-gradient(
135deg,
#ecfeff,
#f0fdf4,
#ffffff
);

}

/* CONTAINER */

.container{

max-width:1400px;

margin:auto;

}

/* TITLE */

.contact-title{

text-align:center;

margin-bottom:60px;

}

.section-tag{

display:inline-block;

padding:10px 22px;

border-radius:50px;

background:
linear-gradient(
90deg,
#0ea5e9,
#14b8a6
);

color:#fff;

font-weight:700;

margin-bottom:20px;

}

.contact-title h2{

font-size:44px;

font-weight:800;

color:#0f172a;

margin-bottom:12px;

}

.contact-title p{

color:#64748b;

font-size:18px;

}

/* GRID */

.support-grid{

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(320px,1fr));

gap:30px;

}

/* CARD */

.support-card{

background:
rgba(255,255,255,.75);

backdrop-filter:
blur(16px);

padding:40px;

border-radius:30px;

box-shadow:
0 15px 45px
rgba(0,0,0,.08);

transition:.4s;

text-align:center;

border:
1px solid
rgba(255,255,255,.8);

}

.support-card:hover{

transform:
translateY(-10px);

box-shadow:
0 25px 60px
rgba(20,184,166,.18);

}

/* ICON */

.card-icon{

width:85px;

height:85px;

margin:auto;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:36px;

background:
linear-gradient(
135deg,
#0ea5e9,
#14b8a6
);

color:white;

margin-bottom:25px;

}

/* TEXT */

.support-card h3{

font-size:28px;

color:#0f172a;

margin-bottom:14px;

}

.support-card p{

color:#64748b;

margin-bottom:18px;

line-height:1.7;

}

/* EMAIL */

.support-card a{

display:inline-block;

text-decoration:none;

color:#0f766e;

font-weight:700;

margin-bottom:25px;

word-break:break-word;

}

.support-card a:hover{

color:#0369a1;

}

/* PHONE */

.contact-btn{

display:inline-block;

padding:14px 24px;

border-radius:60px;

background:
linear-gradient(
90deg,
#0891b2,
#0f766e
);

color:#fff;

font-weight:700;

}

/* MOBILE */

@media(max-width:768px){

.contact-title h2{

font-size:32px;

}

.support-card{

padding:30px;

}

}
*{
margin:0;
padding:0;
box-sizing:border-box;
}

.chief-guest-section{

background:
linear-gradient(
135deg,
#071426,
#0f172a,
#172554
);

padding:90px 20px;

overflow:hidden;
}

.guest-wrapper{

max-width:1280px;

margin:auto;

display:grid;

grid-template-columns:
1fr 520px;

gap:70px;

align-items:center;

}

.guest-content{

color:white;

}

.guest-tag{

display:inline-block;

padding:10px 18px;

background:
rgba(255,255,255,.08);

backdrop-filter:blur(12px);

border-radius:50px;

font-size:.9rem;

margin-bottom:22px;

}

.guest-content h1{

font-size:3rem;

line-height:1.2;

margin-bottom:20px;

font-weight:800;

}

.guest-content h1 span{

background:
linear-gradient(
90deg,
#f59e0b,
#ef4444
);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

}

.guest-desc{

color:#cbd5e1;

font-size:1.08rem;

line-height:1.9;

max-width:680px;

}

.guest-actions{

display:flex;

gap:18px;

margin-top:40px;

flex-wrap:wrap;

}

.btn-primary{

background:
linear-gradient(
135deg,
#f59e0b,
#ea580c
);

color:white;

padding:16px 28px;

border:none;

border-radius:16px;

font-weight:700;

cursor:pointer;

transition:.4s;

}

.btn-primary:hover{

transform:
translateY(-4px);

}

.btn-outline{

padding:16px 28px;

border:1px solid rgba(255,255,255,.2);

color:white;

text-decoration:none;

border-radius:16px;

transition:.4s;

}

.btn-outline:hover{

background:white;

color:#111;

}

.guest-card{

background:
rgba(255,255,255,.06);

backdrop-filter:blur(20px);

border:1px solid rgba(255,255,255,.08);

border-radius:32px;

overflow:hidden;

box-shadow:
0 30px 80px rgba(0,0,0,.3);

transition:.5s;

}

.guest-card:hover{

transform:
translateY(-10px);

}

.guest-image{

position:relative;

height:560px;

}

.guest-image img{

width:100%;

height:100%;

object-fit:cover;

display:block;

}

.guest-overlay{

position:absolute;

bottom:0;

left:0;

right:0;

padding:40px;

background:
linear-gradient(
transparent,
rgba(0,0,0,.85)
);

}

.guest-overlay h3{

color:white;

font-size:1.7rem;

}

.guest-overlay p{

color:#fbbf24;

margin-top:8px;

}

.guest-details{

padding:30px;

display:grid;

grid-template-columns:
repeat(3,1fr);

gap:14px;

}

.detail-item{

background:
rgba(255,255,255,.05);

padding:18px;

border-radius:18px;

text-align:center;

}

.detail-item span{

display:block;

color:#94a3b8;

font-size:.8rem;

}

.detail-item h4{

color:white;

margin-top:10px;

font-size:.95rem;

}

@media(max-width:900px){

.guest-wrapper{

grid-template-columns:1fr;

}

.guest-content{

text-align:center;

}

.guest-content h1{

font-size:2rem;

}

.guest-actions{

justify-content:center;

}

.guest-image{

height:430px;

}

.guest-details{

grid-template-columns:1fr;

}

}
</style>
