/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f5f7fa;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

/* Header */
.header {
    background-color: #0a3d62;
    color: #fff;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #d1d8e0;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #f6b93b;
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(10, 61, 98, 0.85), rgba(10, 61, 98, 0.85)), url('https://images.unsplash.com/photo-1517336714731-489689fd1ca8?auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
    color: #fff;
    padding: 120px 0;
    text-align: center;
    border-radius: 0 0 50px 50px;
}

.hero-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    background-color: #f6b93b;
    color: #0a3d62;
    padding: 14px 40px;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #e1a12a;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.section-title {
    font-size: 2.4rem;
    color: #0a3d62;
    margin-bottom: 50px;
    font-weight: 700;
}

.services-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.service-card {
    background-color: #f7f9fc;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(10, 61, 98, 0.1);
    flex: 1 1 30%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(10, 61, 98, 0.15);
}

.service-icon {
    font-size: 3rem;
    color: #f6b93b;
    margin-bottom: 20px;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #f0f4f8;
    text-align: center;
    border-radius: 30px;
    margin: 60px 0;
}

.about-content {
    max-width: 700px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 2.4rem;
    color: #0a3d62;
    margin-bottom: 25px;
    font-weight: 700;
}

.about-content p {
    font-size: 1.2rem;
    color: #555;
}

/* Footer */
.footer {
    background-color: #0a3d62;
    color: #fff;
    padding: 50px 0 30px 0;
    font-size: 0.9rem;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto 20px auto;
    padding: 0 15px;
}

.footer-section {
    flex: 1 1 45%;
    margin-bottom: 20px;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    border-bottom: 2px solid #f6b93b;
    padding-bottom: 8px;
}

.footer-section p {
    margin-bottom: 12px;
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: #fff;
    font-size: 1.8rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #f6b93b;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 15px;
    font-size: 0.85rem;
}

/* Icons in footer */
.footer-section i {
    margin-right: 8px;
}

/* Responsive footer */
@media (max-width: 600px) {
    .footer-container {
        flex-direction: column;
        padding: 0 10px;
    }

    .footer-section {
        flex: 1 1 100%;
    }
}

/* Mobile Menu Toggle */
@media (max-width: 768px) {
    .nav-list {
        display: none;
        flex-direction: column;
        background-color: #0a3d62;
        position: absolute;
        top: 70px;
        right: 20px;
        width: 200px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        padding: 10px 0;
        z-index: 1001;
    }

    .nav-list.active {
        display: flex;
    }

    .nav-list li {
        margin: 10px 0;
        text-align: right;
        padding-right: 20px;
    }

    .nav-list li a {
        color: #fff;
        font-weight: 600;
    }

    .menu-toggle {
        display: block;
    }
}
