/* assets/css/style.css */

:root {
    --navy: #001f3f;
    --navy-light: #003366;
    --cyan: #00a8ff;
    --magenta: #d63384;
    --white: #ffffff;
    --bg-light: #f8f9fa;
    --text-dark: #333333;
    --text-gray: #666666;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}


.navbar {
    background-color: var(--navy);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.logo img {
    height: 45px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--cyan);
}

.btn-primary {
    background: linear-gradient(135deg, var(--cyan), var(--magenta));
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 168, 255, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--magenta), var(--cyan));
    color: var(--white);
}

.btn-outline {
    border: 2px solid var(--cyan);
    color: var(--cyan);
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    margin-right: 15px;
}


.hamburger {
    display: none;
    font-size: 28px;
    color: var(--white);
    cursor: pointer;
    background: none;
    border: none;
}


.hero {
    background-color: var(--navy);
    color: var(--white);
    padding: 100px 5%;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: -webkit-linear-gradient(45deg, var(--cyan), var(--magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #cccccc;
}


.stats-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 60px 5%;
    margin-top: -50px;
}

.stat-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    flex: 1;
    max-width: 300px;
}

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 10px;
}

.stat-card p {
    color: var(--text-gray);
    font-weight: 500;
}


@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 250px;
        background-color: var(--navy-light);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 80px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.2);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 20px 0;
        text-align: center;
    }

    .stats-container {
        flex-direction: column;
        align-items: center;
        margin-top: 20px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }
}