* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    scroll-behavior: smooth;
}

/* NAVIGATION */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background: #0a1f44;
    color: white;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}
.logo img{
    width: 15%;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #00c3ff;
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
}
#home{
    width: 100%;
    min-height: 100vh;
    padding: 120px 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* SECTIONS */
.section {
    width: 100%;
    min-height: 70vh;
    padding: 120px 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
/* HERO */
.hero {
    background: linear-gradient(to right, #001f3f, #0074D9);
    color: white;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn {
    background: #00c3ff;
    padding: 12px 25px;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    transition: 0.3s;
}

.btn:hover {
    background: #009edc;
}

/* SERVICES */
.services {
    text-align: center;
}

.service-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.card {
    background: #f4f4f4;
    padding: 30px;
    border-radius: 10px;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    background: #e0f7ff;
}

/* ABOUT */
.about {
    text-align: center;
}

.coverage {
    margin-top: 20px;
    list-style: none;
}

.coverage li {
    margin: 8px 0;
}

/* CONTACT */
.contact {
    background: #0a1f44;
    color: white;
    text-align: center;
}

footer {
    text-align: center;
    padding: 15px;
    background: #000;
    color: white;
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .nav-links {
        position: absolute;
        right: 0;
        top: 60px;
        background: #0a1f44;
        flex-direction: column;
        width: 200px;
        display: none;
    }

    .nav-links li {
        margin: 20px 0;
        text-align: center;
    }

    .menu-toggle {
        display: block;
    }

    .nav-active {
        display: flex;
    }

    .hero h1 {
        font-size: 2rem;
    }
}