/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #1E3A8A; /* Default blue background */
    color: #FFFFFF; /* White text */
    line-height: 1.6;
    position: relative;
    min-height: 100vh;
    padding-bottom: 100px; /* Gap for footer */
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    background-color: #1E3A8A; /* Deep blue header */
    padding: 10px 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #FFFFFF; /* White logo */
    text-decoration: none;
}

.nav {
    position: relative;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 101;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #FFFFFF; /* White hamburger lines */
    margin: 5px 0;
    transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-menu a {
    color: #FFFFFF; /* White nav links */
    text-decoration: none;
    font-weight: 500;
}

.nav .cta {
    background-color: #DC2626; /* Red CTA button */
    color: #FFFFFF; /* White text */
    padding: 8px 16px;
    border-radius: 5px;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 100px 0;
    background-color: #1E3A8A; /* Deep blue background */
    position: relative;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #FFFFFF; /* White heading */
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #D1D5DB; /* Light gray for contrast */
}

.cta {
    display: inline-block;
    background-color: #DC2626; /* Red accent */
    color: #FFFFFF; /* White text */
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #FFFFFF; /* White background */
    position: relative;
}

.services h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #1E3A8A; /* Blue heading for contrast */
}

.service-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
    align-items: center;
}

.service-item {
    background-color: #F3F4F6; /* Light gray for contrast on white */
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 100%;
    max-width: 600px;
}

.service-item img {
    width: 100%;
    max-width: 400px;
    height: 225px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.service-item h3 {
    color: #1E3A8A; /* Blue service titles */
}

.service-item p {
    color: #4B5563; /* Dark gray for readability on white */
}

/* Info Section */
.info {
    text-align: center;
    margin: 40px 0;
    color: #4B5563; /* Dark gray text */
}

.info strong {
    color: #1E3A8A; /* Blue for emphasis */
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #1E3A8A; /* Deep blue background */
    position: relative;
}

.contact h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #FFFFFF; /* White heading */
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-buttons .cta {
    background-color: #DC2626; /* Red accent */
    color: #FFFFFF; /* White text */
}

/* Footer */
.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #172554; /* Darker blue footer */
    padding: 20px 0;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 10;
}

.footer.visible {
    opacity: 1;
    transform: translateY(0);
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer ul {
    list-style: none;
    display: flex;
    gap: 15px;
}

.footer a {
    color: #FFFFFF; /* White footer links */
    text-decoration: none;
}

.footer-cta {
    color: #DC2626; /* Red accent */
    font-weight: bold;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #FFFFFF; /* White background */
    position: relative;
}

.about h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: #1E3A8A; /* Blue heading */
}

.about p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #4B5563; /* Dark gray text */
}

.map-placeholder {
    height: 300px;
    margin-bottom: 40px;
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: row;
        justify-content: space-between;
    }

    .hamburger {
        display: block;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        background-color: #1E3A8A; /* Deep blue menu */
        width: 200px;
        padding: 20px;
        text-align: center;
        z-index: 100;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        margin: 10px 0;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .service-item {
        max-width: 100%;
    }

    .service-item img {
        max-width: 300px;
        height: 169px;
    }

    .footer .container {
        flex-direction: column;
        gap: 10px;
    }

    .contact-buttons {
        flex-direction: column;
        gap: 15px;
    }
}