/* Base Variables */
:root {
    --bg-deep: #030a11;
    --bg-darker: #010408;
    --lotus-teal: #103642;
    --lotus-cyan: #195868;
    
    --gold-primary: #d8b15d; 
    --gold-light: #f4d88e;
    --gold-dark: #8a6c2d;
    --gradient-gold: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-primary) 50%, var(--gold-light) 100%);
    --gradient-gold-text: linear-gradient(to right, #b28a20, #f4d88e, #b28a20);
    
    --glass-bg: rgba(16, 54, 66, 0.15);
    --glass-border: rgba(216, 177, 93, 0.25);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.6);
    
    --nav-height: 90px;
    
    --font-serif: 'Cinzel', serif;
    --font-sans: 'Montserrat', sans-serif;
    
    --text-primary: #f8f9fa;
    --text-secondary: #a0aec0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; background-color: var(--bg-darker); }
body {
    background-color: var(--bg-deep); color: var(--text-primary);
    font-family: var(--font-sans); line-height: 1.6;
    overflow-x: hidden; position: relative;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-serif); font-weight: 600; line-height: 1.2; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 120px 0; position: relative; z-index: 10; }
.highlight { color: var(--gold-primary); }
.gold-dot {
    display: inline-block; width: 6px; height: 6px;
    background-color: var(--gold-primary); border-radius: 50%;
    margin: 0 15px; box-shadow: 0 0 10px var(--gold-primary);
}

/* Interactive Background Elements */
.interactive-bg { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: 0; pointer-events: none; background: radial-gradient(circle at 50% 0%, rgba(16, 54, 66, 0.4) 0%, var(--bg-deep) 70%); }
.glow-point { position: absolute; width: 600px; height: 600px; background: radial-gradient(circle, rgba(216, 177, 93, 0.08) 0%, transparent 60%); border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%, -50%); filter: blur(50px); transition: all 0.5s ease-out; }
.ambient-dust { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; }
.dust-particle { position: absolute; background: var(--gold-light); border-radius: 50%; opacity: 0; box-shadow: 0 0 10px 2px rgba(244, 216, 142, 0.4); animation: float-dust linear infinite; }
@keyframes float-dust { 0% { transform: translateY(100vh) scale(0); opacity: 0; } 20% { opacity: 0.6; } 80% { opacity: 0.6; } 100% { transform: translateY(-100px) scale(1); opacity: 0; } }

/* Navbar */
.navbar { position: fixed; top: 0; left: 0; width: 100%; height: var(--nav-height); z-index: 1000; transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); border-bottom: 1px solid transparent; }
.navbar.scrolled { background: rgba(1, 4, 8, 0.85); backdrop-filter: blur(20px); border-bottom: 1px solid var(--glass-border); height: 75px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.nav-container { max-width: 1400px; margin: 0 auto; padding: 0 40px; height: 100%; display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 15px; }
.nav-logo-img { width: 45px; height: 45px; border-radius: 50%; object-fit: cover; border: 1px solid var(--gold-dark); box-shadow: 0 0 15px rgba(216, 177, 93, 0.3); transition: transform 0.3s ease; }
.logo:hover .nav-logo-img { transform: scale(1.1); }
.nav-logo-text { display: flex; flex-direction: column; justify-content: center; line-height: 1.1; }
.amritam-text { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700; letter-spacing: 3px; color: var(--gold-light); }
.mun-text { font-family: var(--font-sans); font-size: 0.75rem; letter-spacing: 6px; color: var(--text-secondary); }
.nav-menu { display: flex; align-items: center; }
.nav-list { display: flex; align-items: center; gap: 40px; }
.nav-link { font-family: var(--font-sans); font-size: 0.85rem; font-weight: 500; text-transform: uppercase; letter-spacing: 2px; color: var(--text-primary); position: relative; padding: 8px 0; transition: color 0.3s ease; }
.nav-link::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 4px; height: 4px; border-radius: 50%; background: var(--gold-primary); opacity: 0; transition: all 0.3s ease; }
.nav-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 1px; background: var(--gradient-gold); transform: scaleX(0); transform-origin: right; transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1); }
.nav-link:hover { color: var(--gold-light); }
.nav-link:hover::before { top: -10px; opacity: 1; box-shadow: 0 0 10px var(--gold-primary); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); transform-origin: left; }
.hamburger { display: none; font-size: 2.5rem; cursor: pointer; color: var(--gold-primary); transition: transform 0.3s ease; }

/* Buttons */
.btn { display: inline-block; padding: 12px 30px; font-family: var(--font-sans); font-weight: 600; font-size: 0.9rem; letter-spacing: 2px; text-transform: uppercase; border-radius: 30px; cursor: pointer; transition: all 0.3s ease; outline: none; border: none; }
.btn-primary { background: var(--gradient-gold); color: var(--bg-deep); box-shadow: 0 5px 15px rgba(216, 177, 93, 0.3); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(216, 177, 93, 0.5); }
.btn-outline { background: transparent; border: 2px solid var(--gold-primary); color: var(--gold-primary); }
.btn-outline:hover { background: rgba(216, 177, 93, 0.1); transform: translateY(-3px); }

/* Hero Section */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; padding-top: var(--nav-height); z-index: 10; text-align: center; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(ellipse at center, rgba(3,10,17,0) 0%, rgba(1,4,8,0.8) 100%); pointer-events: none; z-index: -1; }
.hero-content { max-width: 1000px; padding: 0 20px; display: flex; flex-direction: column; align-items: center; width: 100%; }
.teaser-top { display: flex; align-items: center; justify-content: center; gap: 20px; margin-bottom: 50px; }
.teaser-line { width: 60px; height: 1px; background: var(--gradient-gold); }
.teaser-text { font-family: var(--font-sans); font-size: 0.9rem; letter-spacing: 6px; color: var(--gold-primary); text-transform: uppercase; font-weight: 500; }
.logo-wrapper { position: relative; margin-bottom: 30px; }
.logo-pulse { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100%; height: 100%; border-radius: 50%; background: var(--gold-primary); filter: blur(40px); opacity: 0.15; animation: pulse 3s infinite alternate; }
@keyframes pulse { 0% { transform: translate(-50%, -50%) scale(1); opacity: 0.1; } 100% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.25; } }
.main-logo-img { width: 220px; height: 220px; border-radius: 50%; object-fit: cover; box-shadow: 0 0 50px rgba(0,0,0,0.8), 0 0 20px rgba(216, 177, 93, 0.4); border: 2px solid rgba(216, 177, 93, 0.6); position: relative; z-index: 2; transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.logo-wrapper:hover .main-logo-img { transform: scale(1.05); }
.title-container { margin-bottom: 20px; }
.hero-title { font-family: var(--font-serif); font-size: 6rem; color: var(--gold-light); line-height: 1; letter-spacing: 10px; text-shadow: 0 10px 30px rgba(0,0,0,0.8), 0 0 20px rgba(216, 177, 93, 0.3); margin-left: 10px; background: var(--gradient-gold-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-subtitle-wrapper { display: flex; align-items: center; justify-content: center; gap: 15px; margin-top: 5px; }
.gold-line { width: 50px; height: 2px; background: var(--gold-primary); }
.hero-subtitle { font-family: var(--font-sans); font-size: 2rem; letter-spacing: 20px; margin-left: 20px; color: var(--text-primary); font-weight: 300; }
.tagline-wrapper { display: flex; align-items: center; justify-content: center; gap: 15px; margin-bottom: 50px; }
.gold-quote { color: var(--gold-dark); font-size: 1.2rem; }
.tagline { font-family: var(--font-sans); font-size: 1.2rem; letter-spacing: 8px; text-transform: uppercase; color: var(--text-secondary); font-weight: 400; }
.coming-soon { 
    display: inline-block; 
    white-space: nowrap; 
    font-family: var(--font-serif); 
    font-size: 4rem; 
    color: transparent; 
    -webkit-text-stroke: 1px var(--gold-primary); 
    position: relative; 
    letter-spacing: 15px; 
    margin-bottom: 40px; 
    background: linear-gradient(to right, var(--gold-light) 50%, transparent 50%);
    background-size: 200% 100%;
    background-position: 100% 0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fillText 3s cubic-bezier(0.77, 0, 0.175, 1) forwards 1.5s;
}
@keyframes fillText { 0% { background-position: 100% 0; } 100% { background-position: 0 0; } }
.location-badge { display: inline-flex; align-items: center; padding: 12px 30px; border: 1px solid var(--glass-border); border-radius: 40px; background: var(--glass-bg); backdrop-filter: blur(10px); box-shadow: var(--glass-shadow); margin-bottom: 70px; transition: all 0.3s ease; }
.location-badge:hover { background: rgba(16, 54, 66, 0.3); border-color: var(--gold-primary); transform: translateY(-3px); }
.location-icon-wrapper { width: 30px; height: 30px; border-radius: 50%; background: var(--gradient-gold); display: flex; align-items: center; justify-content: center; margin-right: 15px; }
.location-icon-wrapper i { color: var(--bg-deep); font-size: 1.1rem; }
.location-badge span { font-family: var(--font-sans); font-size: 0.95rem; letter-spacing: 3px; color: var(--gold-light); font-weight: 500; }
.pillars-container { display: flex; justify-content: center; gap: 50px; flex-wrap: wrap; margin-bottom: 60px; padding-top: 50px; border-top: 1px solid rgba(216, 177, 93, 0.15); width: 100%; }
.pillar { display: flex; flex-direction: column; align-items: center; gap: 15px; transition: transform 0.3s ease; }
.pillar:hover { transform: translateY(-10px); }
.pillar-icon { width: 60px; height: 60px; border-radius: 50%; background: rgba(216, 177, 93, 0.05); border: 1px solid var(--gold-dark); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: var(--gold-primary); box-shadow: inset 0 0 15px rgba(0,0,0,0.5); transition: all 0.3s ease; }
.pillar:hover .pillar-icon { background: var(--gradient-gold); color: var(--bg-deep); border-color: transparent; box-shadow: 0 10px 20px rgba(216, 177, 93, 0.3); }
.pillar span { font-family: var(--font-sans); font-size: 0.8rem; letter-spacing: 3px; color: var(--text-secondary); font-weight: 500; }
.pillar:hover span { color: var(--gold-light); }
.scroll-indicator { display: flex; flex-direction: column; align-items: center; gap: 15px; }
.scroll-indicator p { font-family: var(--font-serif); font-style: italic; font-size: 1.1rem; color: var(--gold-dark); letter-spacing: 4px; }
.mouse { width: 25px; height: 40px; border: 2px solid var(--gold-primary); border-radius: 20px; position: relative; }
.wheel { width: 3px; height: 8px; background: var(--gold-light); border-radius: 2px; position: absolute; top: 8px; left: 50%; transform: translateX(-50%); animation: scroll 1.5s infinite; }
@keyframes scroll { 0% { top: 8px; opacity: 1; } 100% { top: 20px; opacity: 0; } }

/* Glass Panels */
.glass-panel { background: var(--glass-bg); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid var(--glass-border); box-shadow: var(--glass-shadow); border-radius: 20px; position: relative; overflow: hidden; }

/* Sections Global */
.section-header { margin-bottom: 80px; }
.section-title { font-size: 3.5rem; color: var(--text-primary); letter-spacing: 4px; margin-bottom: 20px; }
.title-underline { height: 2px; width: 120px; background: var(--gradient-gold); }
.title-underline.center { margin: 0 auto; }
.section-description { color: var(--text-secondary); margin-top: 20px; font-size: 1.1rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.tagline-wrapper.center { margin-bottom: 15px; }
.tagline.small { font-family: var(--font-sans); font-size: 0.9rem; letter-spacing: 5px; color: var(--gold-primary); font-weight: 600; }

/* Partners Section */
.partners { background: linear-gradient(to bottom, transparent, rgba(16, 54, 66, 0.05), transparent); }
.partners-layout { display: flex; flex-direction: column; gap: 40px; align-items: center; }
.partner-card { padding: 40px; text-align: center; }
.partner-card.full-width { width: 100%; max-width: 1000px; text-align: left; }
.partner-content-horizontal { display: flex; align-items: center; gap: 40px; }
.standalone-card { max-width: 600px; width: 100%; }
.card-glow { position: absolute; top: -50px; left: 50%; transform: translateX(-50%); width: 200px; height: 200px; background: radial-gradient(circle, rgba(216, 177, 93, 0.15) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.partner-card.full-width .card-glow { left: 100px; }
.partner-type { font-family: var(--font-sans); font-size: 0.85rem; font-weight: 600; letter-spacing: 4px; color: var(--gold-primary); margin-bottom: 30px; position: relative; display: inline-block; }
.partner-type::after { content: ''; position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%); width: 30px; height: 1px; background: var(--gold-dark); }
.partner-card.full-width .partner-type::after { left: 0; transform: none; width: 50px; }
.partner-logo-ring { width: 140px; height: 140px; border-radius: 50%; padding: 5px; background: linear-gradient(135deg, var(--gold-light), transparent, var(--gold-dark)); box-shadow: 0 10px 30px rgba(0,0,0,0.5); flex-shrink: 0; }
.standalone-card .partner-logo-ring { margin: 0 auto 30px; }
.partner-logo-img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; background: var(--bg-darker); }
.up-border { border: 2px solid #00e5ff; }
.sukoon-border { border: 2px solid #1a4a38; }
.partner-text-content { flex-grow: 1; }
.partner-name { font-family: var(--font-serif); font-size: 2rem; color: var(--gold-light); margin-bottom: 5px; letter-spacing: 3px; }
.partner-subname { font-family: var(--font-sans); font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 30px; letter-spacing: 1px; }
.partner-features { display: flex; gap: 30px; flex-wrap: wrap; margin-bottom: 40px; }
.standalone-card .partner-features { flex-direction: column; align-items: center; justify-content: center; gap: 20px !important; }
.feature-item { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.feature-item i { font-size: 1.5rem; color: var(--gold-primary); background: rgba(216, 177, 93, 0.1); width: 45px; height: 45px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.partner-card:hover .feature-item i { background: var(--gold-primary); color: var(--bg-deep); transform: scale(1.1); }
.feature-item span { font-family: var(--font-sans); font-size: 0.8rem; color: var(--text-secondary); letter-spacing: 1px; }
.quote-box { padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.05); }
.partner-quote { font-family: var(--font-serif); font-style: italic; color: var(--gold-light); font-size: 1.1rem; letter-spacing: 1px; }

/* Procedure Timeline Section */
.procedure-section { background: var(--bg-darker); }
.timeline-container { position: relative; max-width: 800px; margin: 0 auto; padding: 40px 0; }
.timeline-container::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 2px; height: 100%; background: var(--glass-border); }
.timeline-item { position: relative; margin-bottom: 60px; width: 50%; padding-right: 50px; }
.timeline-item:nth-child(even) { margin-left: 50%; padding-right: 0; padding-left: 50px; }
.timeline-dot { position: absolute; right: -25px; top: 20px; width: 50px; height: 50px; border-radius: 50%; background: var(--bg-deep); border: 2px solid var(--gold-primary); z-index: 2; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--gold-light); box-shadow: 0 0 15px rgba(216, 177, 93, 0.2); }
.timeline-item:nth-child(even) .timeline-dot { left: -25px; right: auto; }
.timeline-content { padding: 30px; transition: transform 0.3s ease, border-color 0.3s ease; }
.timeline-content:hover { transform: translateY(-5px); border-color: var(--gold-primary); }
.timeline-date { color: var(--gold-primary); font-size: 0.9rem; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 10px; }
.timeline-event { font-size: 1.4rem; color: var(--text-primary); margin-bottom: 15px; }
.timeline-content p { color: var(--text-secondary); font-size: 0.95rem; }

/* Interactive Game Section */
.game-section { background: var(--bg-deep); }
.game-container { max-width: 800px; margin: 0 auto; padding: 50px; min-height: 400px; display: flex; flex-direction: column; justify-content: center; text-align: center; }
.game-screen { display: none; opacity: 0; transition: opacity 0.4s ease; }
.game-screen.active { display: block; opacity: 1; }
.game-screen h3 { font-size: 2.2rem; color: var(--gold-light); margin-bottom: 15px; }
.game-screen p { color: var(--text-secondary); margin-bottom: 40px; font-size: 1.1rem; }
.game-buttons { display: flex; justify-content: center; gap: 20px; }

.game-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; font-family: var(--font-sans); font-weight: 600; color: var(--gold-primary); letter-spacing: 2px; }
.progress-bar-bg { width: 100%; height: 6px; background: rgba(255,255,255,0.1); border-radius: 3px; margin-bottom: 40px; overflow: hidden; }
.progress-bar-fill { width: 0%; height: 100%; background: var(--gradient-gold); transition: width 0.4s ease; }

.question-text { font-size: 1.8rem !important; color: var(--text-primary) !important; margin-bottom: 40px !important; line-height: 1.4 !important; }
.options-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 30px; text-align: left; }
.option-btn { background: rgba(255,255,255,0.05); border: 1px solid var(--glass-border); padding: 20px; border-radius: 10px; color: var(--text-primary); font-family: var(--font-sans); font-size: 1rem; cursor: pointer; transition: all 0.2s ease; text-align: left; }
.option-btn:hover:not(:disabled) { background: rgba(216, 177, 93, 0.1); border-color: var(--gold-primary); }
.option-btn.correct { background: rgba(46, 204, 113, 0.2); border-color: #2ecc71; color: #2ecc71; }
.option-btn.wrong { background: rgba(231, 76, 60, 0.2); border-color: #e74c3c; color: #e74c3c; }
.option-btn:disabled { cursor: not-allowed; }

.feedback-box { background: rgba(0,0,0,0.3); border-radius: 10px; padding: 25px; border-left: 4px solid var(--gold-primary); text-align: left; margin-bottom: 20px; animation: slideDown 0.3s ease; }
.feedback-box.hidden { display: none; }
.feedback-box h4 { font-size: 1.2rem; margin-bottom: 10px; }
.feedback-box.success h4 { color: #2ecc71; }
.feedback-box.error h4 { color: #e74c3c; }
.feedback-box p { margin-bottom: 20px !important; font-size: 1rem !important; }
@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

.final-score-circle { width: 150px; height: 150px; border-radius: 50%; border: 4px solid var(--gold-primary); display: flex; align-items: center; justify-content: center; margin: 0 auto 30px; font-family: var(--font-serif); color: var(--gold-light); box-shadow: 0 0 30px rgba(216, 177, 93, 0.2); }
#final-score { font-size: 4rem; font-weight: 700; }
.slash { font-size: 2rem; margin: 0 5px; color: var(--text-secondary); }
.total { font-size: 2rem; color: var(--text-secondary); }
.final-message { font-size: 1.4rem !important; color: var(--gold-primary) !important; font-style: italic; }

/* Interactive Q&A Section (FAQ) */
.qa-section { background: var(--bg-darker); border-top: 1px solid rgba(216, 177, 93, 0.05); }
.qa-tabs { display: flex; justify-content: center; gap: 20px; margin-bottom: 40px; }
.qa-tab { padding: 12px 30px; background: transparent; border: 1px solid var(--glass-border); border-radius: 30px; color: var(--text-primary); font-family: var(--font-sans); font-weight: 600; cursor: pointer; transition: all 0.3s ease; letter-spacing: 1px; }
.qa-tab.active, .qa-tab:hover { background: var(--gold-primary); color: var(--bg-deep); border-color: var(--gold-primary); }

.qa-container { max-width: 800px; margin: 0 auto; position: relative; }
.qa-group { display: none; flex-direction: column; gap: 20px; animation: fadeIn 0.4s ease; }
.qa-group.active { display: flex; }
.qa-item { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 12px; overflow: hidden; transition: all 0.3s ease; }
.qa-item:hover { border-color: var(--gold-primary); box-shadow: 0 0 20px rgba(216, 177, 93, 0.1); }
.qa-question { padding: 25px 30px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-family: var(--font-serif); font-size: 1.2rem; color: var(--gold-light); letter-spacing: 1px; user-select: none; transition: background 0.3s ease; }
.qa-question:hover { background: rgba(216, 177, 93, 0.05); }
.qa-question i { font-size: 1.5rem; color: var(--gold-primary); transition: transform 0.3s ease; }
.qa-item.active .qa-question i { transform: rotate(180deg); }
.qa-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out, padding 0.4s ease-out; background: rgba(0,0,0,0.2); }
.qa-item.active .qa-answer { max-height: 300px; padding: 0 30px 25px 30px; }
.qa-answer p { font-family: var(--font-sans); color: var(--text-secondary); font-size: 1rem; line-height: 1.6; border-top: 1px solid rgba(216, 177, 93, 0.1); padding-top: 20px; }

/* Footer */
.footer { background: #010305; padding-top: 80px; position: relative; border-top: 1px solid rgba(216, 177, 93, 0.1); }
.footer-glow { position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%); width: 60%; height: 100px; background: radial-gradient(ellipse, rgba(16, 54, 66, 0.5) 0%, transparent 70%); pointer-events: none; }
.footer-container { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 50px; margin-bottom: 60px; }
.footer-logo { display: inline-flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.footer-logo-img { width: 60px; height: 60px; border-radius: 50%; border: 1px solid var(--gold-dark); }
.footer-brand-text { display: flex; flex-direction: column; }
.footer-tagline { font-family: var(--font-sans); font-size: 0.9rem; letter-spacing: 5px; color: var(--text-secondary); max-width: 300px; }
.footer-col h4 { font-family: var(--font-sans); font-size: 1rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-primary); margin-bottom: 30px; }
.social-links-wide { display: flex; flex-direction: column; gap: 15px; }
.glass-btn { background: rgba(255,255,255,0.02); backdrop-filter: blur(5px); border: 1px solid rgba(216, 177, 93, 0.2); border-radius: 40px; padding: 8px 25px 8px 8px; display: flex; align-items: center; gap: 15px; transition: all 0.3s ease; }
.glass-btn:hover { background: rgba(216, 177, 93, 0.1); border-color: var(--gold-primary); transform: translateX(10px); }
.social-icon-wrapper { width: 40px; height: 40px; border-radius: 50%; background: var(--glass-bg); display: flex; align-items: center; justify-content: center; }
.glass-btn i { font-size: 1.4rem; color: var(--gold-light); }
.glass-btn span { font-family: var(--font-sans); font-size: 0.9rem; color: var(--text-primary); letter-spacing: 1px; }
.footer-bottom { text-align: center; padding: 30px 0; color: var(--text-secondary); font-family: var(--font-sans); font-size: 0.85rem; letter-spacing: 2px; }
.gold-divider { height: 1px; width: 100%; background: linear-gradient(to right, transparent, rgba(216, 177, 93, 0.3), transparent); margin-bottom: 24px; }

/* Learn Page (MUN Masterclass) Styles */
.learn-page { background: var(--bg-deep); }
.hindi-font [data-translate-key] { font-family: 'Noto Sans Devanagari', sans-serif; }

.lang-toggle { position: fixed; top: 100px; right: 30px; z-index: 1000; background: rgba(16, 54, 66, 0.7); backdrop-filter: blur(10px); border: 1px solid var(--gold-primary); padding: 10px 20px; border-radius: 30px; color: var(--gold-light); font-family: var(--font-sans); font-weight: 600; cursor: pointer; transition: all 0.3s ease; box-shadow: 0 0 15px rgba(216, 177, 93, 0.2); }
.lang-toggle:hover { background: var(--gold-primary); color: var(--bg-deep); }

.learn-hero { padding: 150px 20px 50px; text-align: center; }
.learn-title { font-size: 4rem; margin-bottom: 20px; }
.learn-subtitle { font-family: var(--font-sans); color: var(--text-secondary); font-size: 1.2rem; margin-top: 20px; letter-spacing: 2px; }

.roadmap-container { padding: 50px 0 100px; display: flex; flex-direction: column; align-items: center; }
.roadmap-phase { width: 100%; max-width: 900px; background: rgba(0,0,0,0.2); border: 1px solid rgba(216, 177, 93, 0.1); border-radius: 20px; padding: 50px; position: relative; z-index: 2; box-shadow: inset 0 0 50px rgba(0,0,0,0.5); }
.phase-header { display: flex; align-items: center; gap: 30px; margin-bottom: 40px; }
.phase-number { width: 60px; height: 60px; border-radius: 50%; background: var(--gradient-gold); display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-size: 2rem; color: var(--bg-deep); font-weight: 700; flex-shrink: 0; box-shadow: 0 0 20px rgba(216, 177, 93, 0.4); }
.phase-header h2 { font-size: 2.2rem; color: var(--gold-light); margin-bottom: 10px; }
.phase-header p { color: var(--text-secondary); font-size: 1.1rem; }

.cards-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.cards-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.learn-card { padding: 30px; border-radius: 15px; transition: transform 0.3s ease, border-color 0.3s ease; }
.learn-card:hover { transform: translateY(-5px); border-color: var(--gold-primary); }
.learn-icon { font-size: 2.5rem; color: var(--gold-primary); margin-bottom: 20px; display: inline-block; background: rgba(216, 177, 93, 0.1); padding: 15px; border-radius: 50%; }
.learn-card h3 { font-family: var(--font-sans); font-size: 1.2rem; color: var(--text-primary); margin-bottom: 15px; letter-spacing: 1px; }
.learn-card p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.6; }

.point-card { text-align: center; overflow: hidden; }
.point-card:hover .card-glow { opacity: 1; }
.point-card .card-glow { opacity: 0; transition: opacity 0.4s; top: -50px; left: 50%; transform: translateX(-50%); }

.motion-demo { padding: 30px; border-radius: 15px; margin-bottom: 30px; border-left: 4px solid var(--gold-primary); }
.motion-demo h3 { color: var(--gold-light); margin-bottom: 15px; }
.speech-bubble { background: rgba(255,255,255,0.05); padding: 20px; border-radius: 10px; font-style: italic; color: var(--text-primary); border: 1px solid rgba(255,255,255,0.1); }

.path-connector { width: 4px; height: 80px; background: linear-gradient(to bottom, var(--gold-primary), transparent); margin: 20px 0; }

/* 3D Globe Styles */
.globe-wrapper { position: relative; width: 100%; height: 600px; display: flex; justify-content: center; align-items: center; overflow: hidden; margin-top: 30px; cursor: grab; }
.globe-wrapper:active { cursor: grabbing; }
#globeViz { width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; }
.crisis-panel { position: absolute; right: 20px; top: 20px; width: 300px; padding: 25px; border-radius: 15px; z-index: 10; border-left: 4px solid var(--gold-primary); transform: translateX(0); transition: all 0.3s ease; }
.crisis-panel.hidden { opacity: 0; visibility: hidden; transform: translateX(50px); }
.crisis-panel h3 { color: var(--gold-primary); margin-bottom: 10px; font-size: 1.2rem; }
.crisis-panel p { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 20px; line-height: 1.5; }

/* Gamified Passport Modal */
.passport-link { display: flex; align-items: center; gap: 8px; color: var(--gold-primary) !important; font-weight: 600; }
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.8); backdrop-filter: blur(5px); z-index: 9999; display: flex; justify-content: center; align-items: center; opacity: 1; visibility: visible; transition: all 0.3s ease; }
.modal-overlay.hidden { opacity: 0; visibility: hidden; }
.passport-book { width: 90%; max-width: 600px; height: 450px; background: #0c1821; border-radius: 15px; display: flex; overflow: hidden; position: relative; box-shadow: 0 20px 50px rgba(0,0,0,0.8); border: 2px solid var(--gold-dark); }
.passport-cover { flex: 1; background: var(--bg-deep); padding: 40px; display: flex; flex-direction: column; justify-content: center; align-items: center; border-right: 1px dashed rgba(216, 177, 93, 0.3); text-align: center; }
.passport-cover h2 { font-family: var(--font-serif); color: var(--gold-light); font-size: 1.8rem; letter-spacing: 2px; }
.passport-cover p { color: var(--text-secondary); letter-spacing: 4px; text-transform: uppercase; font-size: 0.8rem; margin-top: 10px; }
.passport-pages { flex: 1.5; background: url('data:image/svg+xml;utf8,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="10" cy="10" r="1" fill="%23d8b15d" opacity="0.1"/></svg>'); padding: 30px; display: flex; flex-direction: column; }
.passport-pages h3 { color: var(--text-primary); font-size: 1.2rem; margin-bottom: 20px; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 10px; }
.stamps-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; flex-grow: 1; }
.stamp { width: 100px; height: 100px; border: 3px dashed; border-radius: 50%; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; transform: rotate(-10deg); opacity: 0; animation: stampIn 0.5s forwards cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.stamp-trivia { border-color: #2ecc71; color: #2ecc71; transform: rotate(15deg); }
.stamp-learn { border-color: var(--gold-primary); color: var(--gold-primary); transform: rotate(-5deg); }
.stamp i { font-size: 1.5rem; margin-bottom: 5px; }
.stamp span { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.passport-reward { margin-top: auto; padding: 15px; background: rgba(216, 177, 93, 0.1); border-radius: 10px; display: flex; align-items: flex-start; gap: 15px; }
.passport-reward i { color: var(--gold-primary); font-size: 1.5rem; }
.passport-reward p { font-size: 0.8rem; color: var(--text-secondary); line-height: 1.4; margin: 0; }

@keyframes stampIn {
    0% { transform: scale(3) rotate(45deg); opacity: 0; }
    100% { transform: scale(1) rotate(var(--rotation, 0deg)); opacity: 1; }
}

/* Animations & Reveals */
.reveal, .reveal-up, .reveal-left, .reveal-right { opacity: 0; visibility: hidden; transition: all 1s cubic-bezier(0.5, 0, 0, 1); }
.reveal { transform: scale(0.95); }
.reveal-up { transform: translateY(50px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal-top { transform: translateY(-100%); }
.reveal.active, .reveal-up.active, .reveal-left.active, .reveal-right.active, .reveal-top.active { opacity: 1; visibility: visible; transform: translate(0) scale(1); }
.delay-1 { transition-delay: 0.1s; } .delay-2 { transition-delay: 0.2s; } .delay-3 { transition-delay: 0.3s; } .delay-4 { transition-delay: 0.4s; } .delay-5 { transition-delay: 0.5s; }

/* Responsive */
@media (max-width: 992px) {
    .hero-title { font-size: 4.5rem; }
    .hero-subtitle { font-size: 1.5rem; letter-spacing: 10px; margin-left: 10px; }
    .coming-soon { font-size: 3rem; letter-spacing: 10px; margin-left: 10px; }
    .footer-container { flex-direction: column; align-items: center; text-align: center; }
    .footer-brand-text { align-items: center; }
    .glass-btn:hover { transform: translateY(-5px); translateX: 0; }
    .partner-content-horizontal { flex-direction: column; gap: 20px; }
    .partner-card.full-width { text-align: center; }
    .partner-card.full-width .card-glow { left: 50%; }
    .partner-card.full-width .partner-type::after { left: 50%; transform: translateX(-50%); }

    /* Learn Page Mobile */
    .learn-title { font-size: 3rem; }
    .roadmap-phase { padding: 30px 20px; }
    .phase-header { flex-direction: column; text-align: center; gap: 15px; }
    .cards-grid, .cards-grid.cols-3, .cards-grid.cols-2 { grid-template-columns: 1fr; }
    .lang-toggle { top: 85px; right: 20px; padding: 8px 15px; font-size: 0.85rem; }

    /* Passport Mobile */
    .passport-book { flex-direction: column; height: 80vh; overflow-y: auto; }
    .passport-cover { border-right: none; border-bottom: 1px dashed rgba(216, 177, 93, 0.3); padding: 20px; }
    .stamps-grid { grid-template-columns: 1fr; justify-items: center; }
    
    /* Globe Mobile */
    .globe-wrapper { height: 400px; width: 100%; margin: 30px auto; }
    .crisis-panel { top: auto; bottom: 10px; right: 10px; left: 10px; width: auto; }
}

@media (max-width: 768px) {
    .hamburger { display: block; }
    .nav-menu { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(1, 4, 8, 0.98); flex-direction: column; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.4s ease; }
    .nav-menu.active { opacity: 1; visibility: visible; }
    .nav-list { flex-direction: column; align-items: center; gap: 40px; }
    .nav-link { font-size: 1.5rem; }
    
    .hero-title { font-size: 3.5rem; letter-spacing: 5px; margin-left: 5px; }
    .hero-subtitle { font-size: 1.2rem; letter-spacing: 8px; margin-left: 8px; }
    .coming-soon { font-size: 2.2rem; letter-spacing: 5px; margin-left: 5px; }
    .tagline { font-size: 0.9rem; letter-spacing: 4px; text-align: center; }
    
    .main-logo-img { width: 180px; height: 180px; }
    
    .timeline-container::before { left: 30px; }
    .timeline-item { width: 100%; padding-left: 80px; padding-right: 0; margin-bottom: 40px; }
    .timeline-item:nth-child(even) { margin-left: 0; padding-left: 80px; padding-right: 0; }
    .timeline-dot { left: 5px !important; right: auto !important; width: 40px; height: 40px; font-size: 1.2rem; }
    
    .game-container { padding: 30px 20px; }
    .game-screen h3 { font-size: 1.8rem; }
    .game-buttons { flex-direction: column; }
    .qa-tabs { flex-direction: column; align-items: center; gap: 10px; }
    .qa-tab { width: 100%; max-width: 300px; text-align: center; }
}
