*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter',sans-serif;
    background:#f4f7fb;
    color:#0f172a;
    overflow-x:hidden;
}

/* HEADER */

.header{

    position:fixed;
    top:0;
    width:100%;

    background:#03203d;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:14px 6%;

    z-index:1000;

    box-shadow:
    0 4px 16px rgba(0,0,0,0.12);

}

.logo-section{

    display:flex;
    align-items:center;
    gap:14px;

}

.logo{

    width:68px;
    height:68px;

    border-radius:50%;

    object-fit:cover;

    border:3px solid white;

    box-shadow:
    0 4px 14px rgba(0,0,0,0.2);

}

.brand-text h1{

    color:white;

    font-size:25px;

    font-weight:800;

    line-height:1.1;

}

.brand-text p{

    color:#cbd5e1;

    font-size:13px;

    margin-top:4px;

}

nav{

    display:flex;
    gap:30px;

}

nav a{

    color:white;

    text-decoration:none;

    font-weight:600;

    transition:0.3s;

}

nav a:hover{

    color:#38bdf8;

}

/* HERO */

.hero{

    height:95vh;

    background:
    linear-gradient(
    rgba(3,32,61,0.78),
    rgba(3,32,61,0.78)
    ),
    url('images/starlink.jpg');

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    padding:0 6%;

}

.hero-content{

    max-width:920px;

    color:white;

}

.hero-small{

    color:#38bdf8;

    font-weight:700;

    letter-spacing:2px;

    font-size:13px;

}

.hero-content h2{

    font-size:68px;

    line-height:1.05;

    margin:22px 0;

}

.hero-content p{

    color:#dbeafe;

    font-size:20px;

    line-height:1.8;

    margin-bottom:34px;

}

.hero-buttons{

    display:flex;
    justify-content:center;

    gap:16px;

    flex-wrap:wrap;

}

.primary-btn,
.secondary-btn{

    padding:16px 34px;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

    transition:0.3s;

}

.primary-btn{

    background:#0284c7;

    color:white;

}

.primary-btn:hover{

    transform:translateY(-4px);

}

.secondary-btn{

    border:
    1px solid rgba(255,255,255,0.3);

    color:white;

}

.secondary-btn:hover{

    background:white;
    color:#03203d;

}

/* TITLES */

.section-title{

    text-align:center;

    margin-bottom:50px;

}

.section-title span{

    color:#0284c7;

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

}

.section-title h2{

    font-size:44px;

    margin-top:14px;

}

/* SERVICES */

.services{

    padding:90px 6%;

}

.services-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(300px,1fr));

    gap:24px;

}

.service-card{

    background:white;

    border-radius:22px;

    overflow:hidden;

    transition:0.35s;

    box-shadow:
    0 8px 24px rgba(15,23,42,0.06);

}

.service-card:hover{

    transform:translateY(-6px);

}

.service-card img{

    width:100%;
    height:220px;

    object-fit:cover;

}

.service-content{

    padding:26px;

}

.service-content h3{

    font-size:25px;

    margin-bottom:12px;

}

.service-content p{

    color:#64748b;

    line-height:1.7;

}

/* ABOUT */

.about{

    padding:90px 6%;

    background:white;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:40px;

    align-items:center;

}

.about-image img{

    width:100%;

    border-radius:24px;

}

.about-content span{

    color:#0284c7;

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

}

.about-content h2{

    font-size:48px;

    margin:18px 0;

    line-height:1.15;

}

.about-content p{

    color:#475569;

    line-height:1.8;

    margin-bottom:16px;

}

/* WHY */

.why-us{

    padding:90px 6%;

}

.why-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(260px,1fr));

    gap:22px;

}

.why-card{

    background:white;

    padding:32px;

    border-radius:22px;

    box-shadow:
    0 8px 24px rgba(15,23,42,0.05);

}

.why-card h3{

    margin-bottom:12px;

}

/* CONTACT */

.contact{

    padding:90px 6%;

}

.contact-box{

    background:#03203d;

    color:white;

    padding:70px 40px;

    border-radius:28px;

    text-align:center;

}

.contact-box h2{

    font-size:48px;

    margin-bottom:18px;

}

.contact-box p{

    color:#cbd5e1;

    margin-bottom:28px;

}

.contact-box a{

    display:inline-block;

    padding:16px 34px;

    border-radius:50px;

    background:#0284c7;

    color:white;

    text-decoration:none;

    font-weight:700;

}

/* FOOTER */

footer{

    background:#03203d;

    color:white;

    padding:60px 6% 24px;

}

.footer-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(220px,1fr));

    gap:34px;

    margin-bottom:34px;

}

.footer-logo{

    width:64px;
    height:64px;

    border-radius:50%;

    object-fit:cover;

    margin-bottom:16px;

}

.footer-grid h3,
.footer-grid h4{

    margin-bottom:14px;

}

.footer-grid p{

    color:#cbd5e1;

    line-height:1.8;

    font-size:15px;

}

.footer-bottom{

    text-align:center;

    border-top:
    1px solid rgba(255,255,255,0.1);

    padding-top:18px;

    color:#94a3b8;

    font-size:14px;

}

/* WHATSAPP */

.whatsapp-button{

    position:fixed;

    right:20px;
    bottom:20px;

    width:62px;
    height:62px;

    background:#25d366;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    box-shadow:
    0 8px 24px rgba(0,0,0,0.2);

}

.whatsapp-button img{

    width:34px;

}

/* MOBILE */

@media(max-width:900px){

    nav{
        display:none;
    }

    .hero-content h2{
        font-size:46px;
    }

    .hero-content p{
        font-size:18px;
    }

    .about{
        grid-template-columns:1fr;
    }

    .contact-box h2{
        font-size:34px;
    }

}
