@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --navy: #0A1F44;
    --slate: #6B7A8F;
    --white: #FFFFFF;
    --light: #F4F6F9;
    --accent: #1C3FAA;
}

* {
    margin: 0;.map-container {
    margin-top: 40px;
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border-radius: 10px;
}

    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: var(--white);
    color: var(--navy);
    scroll-behavior: smooth;
}

/* HEADER */
header {
    background: var(--navy);
    padding: 15px 6%;
    position: sticky;
    top: 0;
    z-index: 1000;
}



.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 100px;
    background: white;
    padding: 1px 2px;
    border-radius: 6px;
}

}

}

.logo {
    color: white;
    font-weight: 700;
    font-size: 20px;
}

.logo span {
    font-weight: 400;
    color: var(--slate);
}

/* NAV LINKS */
.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--slate);
}

/* HAMBURGER */
.menu-toggle {
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

/* HERO */
.hero {
    height: 85vh;
    background: linear-gradient(135deg, #0A1F44 0%, #1C3FAA 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    max-width: 600px;
    margin: auto;
    margin-bottom: 30px;
}

.btn {
    background: var(--accent);
    padding: 12px 28px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.btn:hover {
    background: white;
    color: var(--navy);
}

/* SECTIONS */
.section {
    padding: 80px 8%;
    text-align: center;
}

.section h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.card {
    background: var(--light);
    padding: 30px;
    border-radius: 12px;
    transition: 0.3s;
}

.card i {
    font-size: 40px;
    margin-bottom: 15px;
    color: var(--accent);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* COUNTERS */
.counter-section {
    background: var(--navy);
    color: white;
    padding: 70px 8%;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    text-align: center;
    gap: 30px;
}

.counter {
    font-size: 40px;
    font-weight: 700;
}

/* CONTACT */
form {
    max-width: 600px;
    margin: auto;
}

input, textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid var(--slate);
    border-radius: 5px;
}

/* GOOGLE MAP */
.map-container {
    margin-top: 40px;
}

iframe {
    width: 100%;
    height: 350px;
    border-radius: 10px;
}

/* FOOTER */
footer {
    background: var(--navy);
    color: white;
    text-align: center;
    padding: 20px;
}

/* WHATSAPP BUTTON */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    line-height: 60px;
    z-index: 1000;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* MOBILE */
@media(max-width:768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background: var(--navy);
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
        padding: 20px;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 28px;
    }
}
