:root {
    /* Colors */
    --primary-blue: #002D62;
    --primary-gold: #C5A021;
    --dark-black: #1A1A1A;
    --white: #FFFFFF;
    --soft-grey: #ECECEC;
    --text-main: #333333;
    --text-muted: #666666;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 100px 5%;
    --container-width: 1200px;

    /* Shadows & Effects */
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-3d: 0 15px 35px rgba(0, 45, 98, 0.08);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
    font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--dark-black);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Reusable Components */

.btn {
    display: inline-block;
    padding: 14px 34px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--dark-black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-3d);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--primary-blue);
    color: var(--primary-blue);
}

.btn-outline:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.section-title {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-gold);
    margin: 15px auto 0;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 50px;
}

/* Card Style */
.card {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-3d);
    border-color: var(--primary-gold);
}

/* Navbar */
/* Navbar */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--primary-blue);
    padding: 20px 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
}

header h1 {
    font-size: 1.5rem;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links li a {
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: var(--primary-gold);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--white);
    z-index: 1100;
    /* Higher than nav-links */
}

/* Mobile Header */
@media (max-width: 992px) {
    .nav-links {
        display: flex;
        /* Always flex but hidden by transform */
        flex-direction: column;
        gap: 0;
        background-color: var(--primary-blue);
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 0;
        /* Remove padding for cleaner list transitions */
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        z-index: 1000;
        transform: translateY(-110%);
        /* Start hidden above the header */
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        pointer-events: none;
        /* Block interactions when hidden */
        opacity: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: left;
        /* Better for icons */
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-links li a {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 20px 40px;
        font-size: 1.1rem;
        font-weight: 500;
        color: var(--white);
        transition: background 0.3s;
    }

    .nav-links li a i {
        color: var(--primary-gold);
        width: 20px;
        text-align: center;
    }

    .nav-links li a:hover {
        background-color: rgba(255, 255, 255, 0.05);
        color: var(--primary-gold);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links.active {
        transform: translateY(0);
        pointer-events: all;
        opacity: 1;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 4px;
        transition: var(--transition-smooth);
        cursor: pointer;
        z-index: 1100;
    }

    .menu-toggle:hover {
        background: rgba(255, 255, 255, 0.2);
    }
}

/* Footer Styles */
footer {
    background-color: var(--dark-black);
    color: var(--white);
    padding: 80px 20px 40px;
    border-top: 50px solid var(--primary-gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    max-width: var(--container-width);
    margin: 0 auto 50px;
    text-align: left;
}

.footer-grid h3 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-grid h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-gold);
}


.footer-grid div {
    margin-bottom: 20px;
}

.footer-links li {
    margin: 10px 0;
}

.footer-links li a {
    color: var(--soft-grey);
    font-size: 0.5rem;
}

.footer-links li a:hover {
    color: var(--primary-gold);
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}