/* styles.css */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f5f7fa;
    color:#1e293b;
}

/* HERO */

.hero{
    min-height:100vh;
    background:
    linear-gradient(
        135deg,
        #0a4f88 0%,
        #1178bb 45%,
        #86b91f 100%
    );

    position:relative;
    overflow:hidden;
}

.hero::before{
    content:'';
    position:absolute;
    width:700px;
    height:700px;
    background:rgba(255,255,255,0.08);
    border-radius:50%;
    top:-250px;
    right:-200px;
}

.navbar{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:30px 80px;
    position:relative;
    z-index:2;
}

.logo-box img{
    height:90px;
    background:white;
    padding:10px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

.menu{
    display:flex;
    list-style:none;
    gap:35px;
}

.menu a{
    text-decoration:none;
    color:white;
    font-weight:500;
    transition:0.3s;
}

.menu a:hover{
    color:#d7ff84;
}

.hero-content{
    max-width:850px;
    margin:auto;
    text-align:center;
    color:white;
    padding:120px 25px;
    position:relative;
    z-index:2;
}

.tag{
    background:rgba(255,255,255,0.15);
    padding:10px 20px;
    border-radius:40px;
    font-size:14px;
    letter-spacing:1px;
}

.hero-content h1{
    font-size:68px;
    line-height:1.1;
    margin-top:35px;
    margin-bottom:30px;
}

.hero-content p{
    font-size:22px;
    line-height:1.8;
    color:#f2f2f2;
    margin-bottom:45px;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn-primary,
.btn-secondary{
    padding:16px 34px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.btn-primary{
    background:white;
    color:#1178bb;
}

.btn-primary:hover{
    transform:translateY(-3px);
}

.btn-secondary{
    border:2px solid white;
    color:white;
}

.btn-secondary:hover{
    background:white;
    color:#1178bb;
}

/* TITLES */

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title span{
    color:#86b91f;
    font-weight:600;
    letter-spacing:2px;
}

.section-title h2{
    font-size:46px;
    margin-top:15px;
}

.light h2{
    color:white;
}

/* SERVICES */

.services{
    padding:110px 80px;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.card{
    background:white;
    padding:40px;
    border-radius:24px;
    box-shadow:0 10px 35px rgba(0,0,0,0.08);
    transition:0.3s;
}

.card:hover{
    transform:translateY(-8px);
}

.icon{
    font-size:48px;
    margin-bottom:25px;
}

.card h3{
    margin-bottom:18px;
    color:#1178bb;
}

.card p{
    color:#64748b;
    line-height:1.8;
}

/* TECH */

.tech-section{
    padding:110px 80px;
    background:#0f172a;
}

.tech-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:25px;
}

.tech-item{
    background:#1e293b;
    color:white;
    text-align:center;
    padding:30px;
    border-radius:18px;
    font-size:22px;
    font-weight:600;
    transition:0.3s;
}

.tech-item:hover{
    background:#1178bb;
}

/* CONTACT */

.contact{
    padding:110px 25px;
    text-align:center;
}

.contact-box{
    background:white;
    max-width:700px;
    margin:auto;
    padding:60px;
    border-radius:28px;
    box-shadow:0 10px 40px rgba(0,0,0,0.08);
}

.contact-box p{
    font-size:20px;
    margin-bottom:25px;
}

.contact-box h3{
    font-size:38px;
    color:#1178bb;
    margin-bottom:15px;
}

.contact-box a{
    text-decoration:none;
    color:#86b91f;
    font-size:28px;
    font-weight:700;
}

/* FOOTER */

footer{
    background:#0f172a;
    color:#94a3b8;
    text-align:center;
    padding:30px;
}

/* RESPONSIVE */

@media(max-width:900px){

    .navbar{
        flex-direction:column;
        gap:30px;
        padding:30px;
    }

    .menu{
        gap:18px;
        flex-wrap:wrap;
        justify-content:center;
    }

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

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

    .services,
    .tech-section{
        padding:90px 25px;
    }

    .section-title h2{
        font-size:34px;
    }

}
