:root {
    /* Primary Brand Colors */
    --primary: #0F2A44;
    --primary-light: #1C3D5A;
    --primary-dark: #0A1E30;

    /* Accent Colors */
    --accent: #C8A96A;
    --accent-light: #E0C48A;
    --accent-dark: #A8894F;

    /* Background Colors */
    --bg-main: #F8F9FB;
    --bg-light: #FFFFFF;
    --bg-dark: #0F2A44;

    /* Text Colors */
    --text-primary: #0F2A44;
    --text-secondary: #5A6B7B;
    --text-light: #FFFFFF;

    /* Border & UI */
    --border: #E3E7ED;
    --card-bg: #FFFFFF;
    --shadow: rgba(15, 42, 68, 0.08);

    /* Highlight / CTA */
    --cta: #D4AF37;
    --cta-hover: #B8962E;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    overflow: auto;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-primary);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.display-font,
.navbar-brand {
    font-family: 'Playfair Display', serif;
}

.text-points {
    color: var(--bg-main);
}

.badge-span {
    background: var(--primary) !important;
    color: #E9ECF3 !important;
}

/* Custom button styles */
.btn-gold {
    background-color: var(--cta);
    color: var(--primary-dark);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 40px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
}

.btn-gold:hover {
    background-color: var(--cta-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(184, 150, 46, 0.3);
}

.btn-outline-gold {
    border: 2px solid var(--accent);
    background: transparent;
    color: var(--accent);
    font-weight: 600;
    padding: 0.7rem 1.8rem;
    border-radius: 40px;
    transition: 0.3s;
}

.btn-outline-gold:hover {
    background-color: var(--accent);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-primary-custom {
    background-color: var(--primary);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 40px;
    font-weight: 600;
    transition: 0.3s;
    border: none;
}

.btn-primary-custom:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

/* Navbar styling */
.navbar {
    background-color: rgba(15, 42, 68, 0.96);
    backdrop-filter: blur(8px);
    padding: 1rem 0;
    transition: 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.wh-70 {
    /* width: 80px; */
    height: 55px;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: white !important;
}

.navbar-brand span {
    color: var(--accent);
    font-weight: 800;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent) !important;
}

/* Hero section */
.hero-section {
    background: linear-gradient(135deg, rgba(15, 42, 68, 0.92), rgba(10, 30, 48, 0.88)), url('https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center 30%;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 76px;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.2;
    color: white;
    margin-top: 2rem;
}

.hero-title .gold-text {
    color: var(--accent);
    border-bottom: 3px solid var(--accent);
    display: inline-block;
}

.hero-sub {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 550px;
}

/* Section headers */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 70px;
    height: 4px;
    background: var(--accent);
    border-radius: 4px;
}

.text-center .section-title:after {
    left: 50%;
    transform: translateX(-50%);
}

/* Card styling */
.card-hover {
    border: none;
    border-radius: 24px;
    background: var(--card-bg);
    box-shadow: 0 12px 30px var(--shadow);
    transition: all 0.35s ease;
    overflow: hidden;
    height: 100%;
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 40px rgba(15, 42, 68, 0.12);
}

.program-card .card-body {
    padding: 2rem 1.5rem;
}

.program-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.stat-card {
    background: var(--bg-light);
    border-radius: 32px;
    text-align: center;
    padding: 2rem 1rem;
    box-shadow: 0 8px 20px var(--shadow);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    font-family: "Lobster Two", sans-serif;
    color: var(--primary);
}

.stat-label {
    color: var(--text-secondary);
    font-weight: 500;
}

/* About section */
.about-img-wrapper {
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
}

.gold-accent-text {
    color: var(--accent-dark);
    font-weight: 700;
}

/* Testimonials */
.testimonial-card {
    background: var(--bg-light);
    border-radius: 28px;
    padding: 2rem;
    box-shadow: 0 12px 28px var(--shadow);
    border: 1px solid var(--border);
}

.testimonial-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--accent);
}

.rating i {
    color: var(--cta);
    margin-right: 2px;
}

/* CTA section */
.cta-section {
    background: linear-gradient(105deg, var(--primary-dark) 0%, var(--primary) 100%);
    border-radius: 48px;
    padding: 4rem 2rem;
}

/* Footer */
.footer {
    background-color: var(--primary-dark);
    color: #cfdfed;
}

.footer a {
    color: #cddce9;
    text-decoration: none;
    transition: 0.2s;
}

.footer a:hover {
    color: var(--accent);
}

.footer .social-icon {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: 0.2s;
}

.footer .social-icon:hover {
    background: var(--accent);
    color: var(--primary-dark);
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
        margin-top: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .navbar-brand {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh;
        margin-top: 68px;
    }

    .cta-section {
        padding: 2rem 1rem;
    }
}