/* LANDING PAGE */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f7fa;
    color: #222;
}

/* HEADER */

header {
    background-color: #0b1f3a;
    padding: 20px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.logo span {
    color: #00bfff;
}

/* NAVIGATION */

nav a {
    color: white;
    text-decoration: none;
    margin-left: 25px;
    font-size: 16px;
    font-weight: bold;
}

nav a:hover {
    color: #00bfff;
}

/* HERO / LANDING SECTION */

.hero {
    min-height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(
        135deg,
        #0b1f3a,
        #123c69
    );
    color: white;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #e5e5e5;
}

/* BUTTON */

.btn {
    display: inline-block;
    background-color: #00bfff;
    color: white;
    padding: 14px 30px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    background-color: white;
    color: #0b1f3a;
    transform: translateY(-3px);
}

/* MOBILE */

@media (max-width: 768px) {

    header {
        flex-direction: column;
        gap: 15px;
    }

    nav a {
        margin: 0 10px;
    }

    .hero {
        min-height: 80vh;
        padding: 30px 20px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 17px;
    }
}
.services{
    padding: 70px 8%;
    background:#f5f7fb;
    text-align: center;
}
.services h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color:#0b1f4d;
}
.service-card{
    background:white;
    padding:30px;
    margin: 20px auto;
    max-width: 700px;
    border-radius: 12px;
    box-shadow: 08px 20px
    rgba(0,0,0,0.08);
}
.service-card p {
    line-height: 1.6;
    color: #555;
}
.contact{
    padding:60px 8%;
    text-align:center;
    background:#0b1f4d;
    color:white;
}
.contact h2{
    font-size:34px;
    margin-bottom:15px;
}
.contact-buttons{
    margin-top:25px;
    display:flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}
.contact-btn{
    display:inline-block;
    padding:14px 25px;
    background:#22d3ee;
    color: #0b1f4d;
    text-decoration: none;
    font-size: bold;
    border-radius:8px;
    transition:0.9;
}
.contact-btn:hover{
    transform: translateY(-3px);
    opacity:0.9s;
}
.footer{
    background:#07152f;
    color:white;
    text-align:center;
    padding: 25px 15px;
    font-size:14px;
    border-top: 1px solid 
    rgba(255, 255, 255, 0.1);
}
.footer p{
    margin:0;
}
@media(max-width:768px){
    .navbar{
         flex-direction: column;
         gap:15px;
         padding:20px;
    }
    nav{
        display:flex;
        gap:15px;
        flex-wrap:wrap;
        justify-content: center;
    }
    .hero{
        padding:70px 20px;
        text-align: center;
    }
    .hero h1{
        font-size:36px;
    }
    .hero p{
        font-size:16px;
    }
    .service-card{
        width:100%;
        padding:25px 15px;
    }
    .contact{
        padding:50px 20px;
    }
    .contact-buttons{
        flex-direction: colomn;
        align-items: center;
    }
    .contact-btn{
        width:100%;
        max-width:300px;
        text-align: center;
}
.footer{
    font-size: 12px;
    padding:20px 10px;
}
}