:root {
    --primary: #041b3d;
    --primary-dark: #020f24;
    --accent: #f3b623; /* warm gold */
    --bg: #f4f6fb;
    --text: #222;
    --card-bg: #ffffff;
}

body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    scroll-behavior: smooth;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--primary-dark);
    padding: 10px 18px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.6px;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.4px;
    position: relative;
    padding-bottom: 3px;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.25s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: 1px solid #ffffff;
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 16px;
}

/* HERO */
.hero {
    position: relative;
    height: 480px;
    margin-top: 60px;
    background: radial-gradient(circle at top left, #1b2a4f 0%, #020f24 40%, #020818 100%);
    overflow: hidden;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at bottom right, rgba(243,182,35,0.18), transparent 55%);
    pointer-events: none;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(243,182,35,0.12), transparent 60%);
    opacity: 0.4;
    animation: waveMotion 18s linear infinite;
}

.hero::after {
    animation-duration: 26s;
    animation-direction: reverse;
}

@keyframes waveMotion {
    0% { transform: translate3d(-10%, -10%, 0) scale(1.05); }
    50% { transform: translate3d(10%, 10%, 0) scale(1.08); }
    100% { transform: translate3d(-10%, -10%, 0) scale(1.05); }
}

.hero-content {
    position: relative;
    max-width: 720px;
    z-index: 1;
}

.hero h1 {
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 38px;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.hero-tagline {
    font-size: 16px;
    opacity: 0.9;
}

.hero-subtext {
    margin-top: 10px;
    font-size: 14px;
    max-width: 520px;
    line-height: 1.6;
    opacity: 0.9;
}

.hero-ctas {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cta-btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 24px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.cta-btn.primary {
    background: var(--accent);
    color: var(--primary-dark);
}

.cta-btn.primary:hover {
    background: #ffd84d;
}

.cta-btn.secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.6);
}

.cta-btn.secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 22px;
}

.stat {
    background: rgba(0, 0, 0, 0.35);
    border-radius: 10px;
    padding: 10px 14px;
    min-width: 120px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    display: block;
    font-size: 12px;
    color: #ffffff;
}

.scroll-cue {
    margin-top: 26px;
    font-size: 11px;
    opacity: 0.8;
}

.scroll-line {
    width: 26px;
    height: 2px;
    background: var(--accent);
    margin-top: 6px;
    animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
    0% { transform: scaleX(0.4); opacity: 0.4; }
    50% { transform: scaleX(1); opacity: 1; }
    100% { transform: scaleX(0.4); opacity: 0.4; }
}

/* EPS INFO BAR */
.eps-info {
    background: var(--primary-dark);
    color: #ffffff;
    text-align: center;
    padding: 12px;
    font-size: 13px;
    line-height: 1.6;
}

/* SECTIONS */
.section {
    width: 90%;
    max-width: 1000px;
    margin: 30px auto;
    background: var(--card-bg);
    padding: 24px 26px;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    border-top: 3px solid var(--accent);
}

.section h2 {
    color: var(--primary-dark);
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 22px;
    font-family: "Georgia", "Times New Roman", serif;
}

.section p {
    font-size: 14px;
    line-height: 1.7;
}

/* VALUE GRID */
.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    margin-top: 12px;
}

.value-card {
    background: #fdfdfd;
    border-radius: 10px;
    padding: 16px;
    border: 1px solid #dde3f0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.value-card h3 {
    margin-top: 0;
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 16px;
}

.value-card p {
    font-size: 13px;
    line-height: 1.6;
}

.value-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

/* PROGRAM CLUSTERS */
.program-clusters .cluster {
    margin-top: 16px;
}

.cluster h3 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 8px;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.program-card {
    background: #fdfdfd;
    border-radius: 10px;
    padding: 14px;
    border: 1px solid #dde3f0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.program-card h4 {
    margin-top: 0;
    margin-bottom: 6px;
    color: var(--primary);
    font-size: 15px;
}

.program-card p {
    font-size: 13px;
    line-height: 1.6;
}

.program-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

/* EXPERIENCE GRID & TIMELINE */
.experience-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
    margin-top: 12px;
}

.experience-text p {
    margin-bottom: 12px;
}

.experience-timeline {
    border-left: 2px solid var(--accent);
    padding-left: 16px;
}

.timeline-item {
    position: relative;
    margin-bottom: 16px;
}

.timeline-dot {
    position: absolute;
    left: -10px;
    top: 4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
}

.timeline-content h4 {
    margin: 0 0 4px;
    font-size: 14px;
    color: var(--primary);
}

.timeline-content p {
    font-size: 13px;
    margin: 0;
}

/* CAMPUS LIFE */
.campus-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
    margin-top: 12px;
}

.campus-highlights ul {
    list-style: none;
    padding-left: 0;
}

.campus-highlights li {
    padding: 8px 0;
    font-size: 14px;
    position: relative;
    padding-left: 18px;
}

.campus-highlights li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 18px;
}

/* FORMS */
.form label {
    display: block;
    margin-top: 10px;
    font-weight: 600;
    font-size: 13px;
    color: var(--primary-dark);
}

.form input,
.form select,
.form textarea {
    width: 100%;
    padding: 9px 10px;
    margin-top: 4px;
    border: 1px solid #ccd3e0;
    border-radius: 6px;
    font-size: 13px;
    font-family: inherit;
    box-sizing: border-box;
    transition: border 0.2s ease, box-shadow 0.2s ease;
    background: #fdfdfd;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(243,182,35,0.25);
    outline: none;
}

.form button {
    margin-top: 14px;
    padding: 9px 22px;
    background: var(--primary);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: background 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
}

.form button:hover {
    background: var(--primary-dark);
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    transform: translateY(-1px);
}

/* CTA BANNER */
.cta-banner {
    width: 90%;
    max-width: 1000px;
    margin: 30px auto;
    background: var(--primary);
    color: #ffffff;
    text-align: center;
    padding: 40px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}

.cta-banner h2 {
    font-size: 24px;
    margin-bottom: 10px;
    font-family: "Georgia", "Times New Roman", serif;
}

.cta-banner p {
    font-size: 15px;
    margin-bottom: 18px;
}

.cta-banner-btn {
    display: inline-block;
    padding: 12px 26px;
    background: var(--accent);
    color: var(--primary-dark);
    font-weight: 700;
    border-radius: 30px;
    text-decoration: none;
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.cta-banner-btn:hover {
    background: #ffd84d;
}

/* FOOTER */
footer {
    background: var(--primary-dark);
    color: #ffffff;
    text-align: center;
    padding: 16px;
    margin-top: 30px;
    font-size: 12px;
}

.footer-top {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.footer-logo {
    height: 34px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    margin: 0 6px;
}

.footer-links a:hover {
    color: var(--accent);
}

/* FLOATING CTA */
.floating-cta {
    position: fixed;
    right: 16px;
    bottom: 16px;
    background: var(--accent);
    color: var(--primary-dark);
    padding: 10px 18px;
    border-radius: 24px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 1100;
    animation: pulseCta 2s ease-in-out infinite;
}

@keyframes pulseCta {
    0% { transform: scale(1); box-shadow: 0 4px 12px rgba(0,0,0,0.3); }
    50% { transform: scale(1.05); box-shadow: 0 6px 16px rgba(0,0,0,0.4); }
    100% { transform: scale(1); box-shadow: 0 4px 12px rgba(0,0,0,0.3); }
}

/* REVEAL ANIMATION */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero {
        height: auto;
        padding: 40px 18px;
        text-align: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero h1 {
        font-size: 30px;
    }

    .hero-tagline {
        font-size: 14px;
    }

    .hero-subtext {
        margin: 10px auto 0;
    }

    .hero-stats {
        justify-content: center;
    }

    .navbar {
        flex-wrap: wrap;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 8px;
    }

    .nav-links a {
        padding: 6px 0;
    }

    .nav-toggle {
        display: block;
    }

    .experience-grid,
    .campus-grid {
        grid-template-columns: 1fr;
    }

    .section {
        margin: 22px auto;
        padding: 18px 18px;
    }
}
