/* ---------- CUSTOM COLOR VARIABLES (Exact Provided Scheme) ---------- */
:root {
    /* 🔵 Primary Identity (Deep Academic Blue) */
    --primary-blue: #0B2C8A;
    --primary-blue-dark: #081F66;
    --primary-blue-light: #1D4ED8;

    /* 🔴 Accent (Symbol + Energy) */
    --primary-red: #D90429;
    --primary-red-dark: #A1031E;

    /* 🟡 Subtle Heritage Gold (premium feel) */
    --accent-gold: #D4AF37;
    --accent-gold-light: #FACC15;

    /* ⚪ Base */
    --white: #FFFFFF;
    --off-white: #F8FAFC;

    /* 🖤 Text */
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-on-dark: #FFFFFF;

    /* 🧱 Borders */
    --border-light: #E2E8F0;
    --border-dark: #1E3A8A;

    /* 🌫️ Shadow */
    --shadow-soft: 0 8px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 12px 30px rgba(0, 0, 0, 0.12);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    background-color: var(--off-white);
    overflow-x: hidden;
}

/* Typography & Utilities */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

.w60 {
    width: 65px;
}

.section-padding {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 70px;
    height: 4px;
    background: var(--primary-red);
    border-radius: 4px;
}

.text-center .section-title:after {
    left: 50%;
    transform: translateX(-50%);
}

/* Buttons */
.btn-primary-custom {
    background-color: var(--primary-blue);
    border: none;
    color: white;
    padding: 0.75rem 1.8rem;
    font-weight: 600;
    border-radius: 40px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary-custom:hover {
    background-color: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.btn-outline-gold {
    border: 2px solid var(--accent-gold);
    background: transparent;
    color: var(--accent-gold);
    padding: 0.7rem 1.6rem;
    font-weight: 600;
    border-radius: 40px;
    transition: 0.3s;
}

.btn-outline-gold:hover {
    background: var(--accent-gold);
    color: var(--primary-blue-dark);
    border-color: var(--accent-gold);
}

.btn-red {
    background-color: var(--primary-red);
    border: none;
    color: white;
    padding: 0.75rem 1.8rem;
    font-weight: 600;
    border-radius: 40px;
    transition: 0.3s;
}

.btn-red:hover {
    background-color: var(--primary-red-dark);
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    background: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    padding: 0.8rem 0;
    transition: all 0.2s;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.7rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.navbar-brand span {
    color: var(--primary-red);
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
}

.nav-link {
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0.5rem;
    transition: 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-blue);
}

.nav-link.active {
    border-bottom: 2px solid var(--primary-red);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(11, 44, 138, 0.92) 0%, rgba(8, 31, 102, 0.85) 100%), url('/img/website/hero_img.jpg');
    background-size: cover;
    background-position: center 30%;
    padding: 8rem 0 7rem;
    color: var(--text-on-dark);
    position: relative;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
}

.hero .gold-text {
    color: var(--accent-gold-light);
    font-weight: 700;
}

.hero-badge {
    background: var(--primary-red);
    display: inline-block;
    padding: 0.5rem 1.2rem;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* Stats Section */
.stat-card {
    background: var(--white);
    border-radius: 1.5rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
}

.stat-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-gold-light);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.stat-label {
    color: var(--text-secondary);
    font-weight: 500;
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.12);
    border-bottom: 3px solid var(--accent-gold);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(11, 44, 138, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--primary-blue);
}

.feature-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* About Section */
.about-img {
    border-radius: 2rem;
    box-shadow: var(--shadow-soft);
    width: 100%;
    transition: 0.3s;
}

.quote-gold {
    border-left: 5px solid var(--accent-gold);
    background: var(--off-white);
    padding: 1.5rem;
    border-radius: 1rem;
    font-style: italic;
    font-weight: 500;
}

/* Programs */
.program-card {
    background: white;
    border-radius: 1.2rem;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: var(--shadow-soft);
    height: 100%;
}

.program-img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.program-body {
    padding: 1.5rem;
}

.program-tag {
    background: var(--primary-red);
    color: white;
    font-size: 0.7rem;
    padding: 0.25rem 0.9rem;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 0.8rem;
}

/* Testimonials */
.testimonial-card {
    background: white;
    border-radius: 1.2rem;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
    transition: 0.2s;
}

.testimonial-card i.fa-quote-left {
    color: var(--accent-gold);
    font-size: 2rem;
    opacity: 0.5;
    margin-bottom: 1rem;
}

.testimonial-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-gold-light);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(120deg, var(--primary-blue-dark), var(--primary-blue));
    border-radius: 2rem;
    padding: 3rem;
}

/* Footer */
.footer {
    background: var(--primary-blue-dark);
    color: #e2e8f0;
    padding-top: 4rem;
    padding-bottom: 2rem;
}

.footer ul{
    line-height: 2.5rem;
}

.footer a {
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.2s;
}

.footer a:hover {
    color: var(--accent-gold-light);
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
}

.footer-logo span {
    color: var(--accent-gold);
}

.social-icons i {
    font-size: 1.3rem;
    margin-right: 1rem;
    transition: 0.2s;
}

.social-icons i:hover {
    color: var(--accent-gold);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .section-padding {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-section {
        padding: 2rem;
    }
}