/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Header Styles */
.header {
    background-color: #1A4D7F;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    z-index: 1001;
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.logo-text {
    color: white;
    font-size: 20px;
    font-weight: 600;
}

/* Navigation Container */
.nav-container {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s;
    font-size: 15px;
}

.nav-link:hover {
    color: #A0D8F1;
}

/* Navigation Buttons */
.nav-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background-color: #73C2E8;
    color: white;
}

.btn-primary:hover {
    background-color: #5AADD3;
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: #1A4D7F;
}

/* Hamburger Menu Button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger .bar {
    display: block;
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hamburger Animation when Active */
.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Overlay - Hidden by default */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    opacity: 1;
}

/* ==================== */
/* RESPONSIVE - TABLET  */
/* ==================== */
@media screen and (max-width: 992px) {
    .nav-menu {
        gap: 20px;
    }
    
    .nav-buttons {
        gap: 10px;
    }
    
    .btn {
        padding: 8px 18px;
        font-size: 13px;
    }
}

/* ==================== */
/* RESPONSIVE - MOBILE  */
/* ==================== */
@media screen and (max-width: 800px) {
    .container {
        padding: 0 20px;
    }
    
    /* Show Hamburger Button */
    .hamburger {
        display: flex;
    }
    
    /* Show Overlay on Mobile */
    .nav-overlay {
        display: block;
        pointer-events: none;
    }
    
    .nav-overlay.active {
        pointer-events: auto;
    }
    
    /* Mobile Navigation Container */
    .nav-container {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: #1A4D7F;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 100px 30px 30px;
        gap: 30px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        z-index: 999;
    }
    
    /* Show Mobile Menu when Active */
    .nav-container.active {
        right: 0;
    }
    
    /* Mobile Navigation Menu */
    .nav-menu {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }
    
    .nav-link {
        font-size: 18px;
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    /* Mobile Navigation Buttons */
    .nav-buttons {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        text-align: center;
        padding: 12px 25px;
    }
}

/* ======================== */
/* RESPONSIVE - SMALL MOBILE */
/* ======================== */
@media screen and (max-width: 480px) {
    .logo-text {
        font-size: 16px;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
    }
    
    .nav-container {
        width: 100%;
        right: -100%;
    }
    
    .nav-container.active {
        right: 0;
    }
}