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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Barlow',sans-serif;
    background:#040816;
    color:white;
    overflow-x:hidden;
}

/* NAVBAR */

nav{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:90px;
    padding:0 5%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    background:rgba(4,8,22,.92);
    backdrop-filter:blur(14px);
    border-bottom:1px solid rgba(255,255,255,.05);
    z-index:999;
}

.logo-img img{
    width:144px;
    display:block;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:45px;
}

.nav-links a{
    color:white;
    text-decoration:none;
    font-size:15px;
    font-weight:600;
    transition:.3s;
}

.nav-links a:hover{
    color:#315cff;
}

.nav-btn{
    background:#315cff;
    color:white;
    text-decoration:none;
    padding:14px 24px;
    border-radius:14px;
    font-weight:700;
    display:flex;
    align-items:center;
    gap:10px;
    box-shadow:0 0 25px rgba(49,92,255,.35);
    transition:.3s;
}

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

/* HERO */

.hero{
    min-height:100vh;
    padding:140px 5% 80px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    position:relative;
    overflow:hidden;

    background:
    radial-gradient(circle at right,
    rgba(49,92,255,.16),
    transparent 40%),
    #040816;
}

.hero::before{
    content:'';
    position:absolute;
    inset:0;

    background-image:
    linear-gradient(rgba(49,92,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(49,92,255,.04) 1px, transparent 1px);

    background-size:50px 50px;
}

.hero-left{
    width:45%;
    position:relative;
    z-index:2;
}

@media(min-width:961px){

.hero-left{
    padding-left:clamp(56px,9vw,160px);
}

}

.hero-left h1{
    font-size:120px;
    line-height:.88;
    font-weight:900;
    letter-spacing:-5px;
}

.hero-left h1 span{
    color:#315cff;
}

.hero-left p{
    margin-top:28px;
    color:#cbd5e1;
    font-size:22px;
    line-height:1.8;
    max-width:560px;
}

/* BUTTONS */

.hero-buttons{
    display:flex;
    gap:18px;
    margin-top:40px;
    flex-wrap:wrap;
}

.btn-primary{
    background:#315cff;
    color:white;
    text-decoration:none;
    padding:18px 30px;
    border-radius:14px;
    font-weight:700;
    display:flex;
    align-items:center;
    gap:10px;
    box-shadow:0 0 35px rgba(49,92,255,.4);
}

.btn-secondary{
    border:1px solid rgba(255,255,255,.15);
    color:white;
    text-decoration:none;
    padding:18px 30px;
    border-radius:14px;
    font-weight:700;
    display:flex;
    align-items:center;
    gap:10px;
}

/* BADGES */

.badges{
    display:flex;
    gap:50px;
    margin-top:60px;
    flex-wrap:wrap;
}

.badge{
    display:flex;
    gap:12px;
}

.badge i{
    color:#315cff;
    font-size:24px;
}

.badge h4{
    font-size:16px;
}

.badge p{
    color:#64748b;
    font-size:14px;
}

/* HERO RIGHT */

.hero-right{
    width:55%;
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
    z-index:2;
}

.hero-right img{
    width:850px;
    max-width:none;

    animation:floating 4s ease-in-out infinite;

    filter:
    drop-shadow(0 0 40px rgba(59,130,246,.55))
    drop-shadow(0 0 120px rgba(37,99,235,.45))
    drop-shadow(0 0 220px rgba(37,99,235,.25));
}

@keyframes floating{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-20px);
    }

}

/* SERVICES */

.services{
    padding:110px 5%;
    background:#07101f;
}

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

.section-title p{
    color:#315cff;
    font-size:13px;
    letter-spacing:3px;
    font-weight:700;
}

.section-title h2{
    font-size:58px;
    margin-top:12px;
}

/* CARDS */

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

.card{
    background:#111827;
    border-radius:24px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.05);
    transition:.35s;
}

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

.card img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.card-content{
    padding:30px;
    text-align:center;
}

.card-icon{
    width:76px;
    height:76px;
    margin:-68px auto 22px;
    border-radius:50%;
    background:#315cff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    position:relative;
    z-index:2;
}

.card-content h3{
    font-size:32px;
    margin-bottom:14px;
}

.card-content p{
    color:#cbd5e1;
    line-height:1.8;
    font-size:15px;
}

.card-btn{
    display:inline-block;
    margin-top:22px;
    border:1px solid rgba(49,92,255,.4);
    color:white;
    text-decoration:none;
    padding:12px 22px;
    border-radius:12px;
}

/* ABOUT */

.about{
    padding:100px 5%;
    background:#050b18;
}

.about-box{
    border:1px solid rgba(49,92,255,.15);
    border-radius:24px;
    padding:60px;
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:50px;
}

.about-left{
    max-width:520px;
}

.about-left span{
    color:#315cff;
    font-size:13px;
    font-weight:700;
    letter-spacing:3px;
}

.about-left h2{
    font-size:54px;
    margin-top:14px;
}

.about-left h2 b{
    color:#315cff;
}

.about-left p{
    margin-top:24px;
    line-height:1.9;
    color:#94a3b8;
}

.stats{
    display:flex;
    gap:60px;
    flex-wrap:wrap;
}

.stat{
    text-align:center;
}

.stat i{
    color:#315cff;
    font-size:40px;
    margin-bottom:16px;
}

.stat h3{
    font-size:60px;
}

.stat p{
    color:#64748b;
}

/* FOOTER */

footer{
    background:#040816;
    padding:90px 5% 30px;
    border-top:1px solid rgba(255,255,255,.05);
}

.footer-top{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    flex-wrap:wrap;
    gap:50px;
}

.footer-left{
    padding-top:10px;
}

.footer-box{
    min-width:260px;
    padding-top:10px;
}

.footer-logo img{
    width:144px;
}

.footer-text{
    margin-top:20px;
    color:#64748b;
    line-height:1.8;
    max-width:260px;
}

.footer-social{
    display:flex;
    gap:14px;
    margin-top:24px;
}

.footer-social a{
    width:44px;
    height:44px;
    border-radius:12px;
    background:#111827;
    display:flex;
    justify-content:center;
    align-items:center;
    color:white;
    text-decoration:none;
    transition:.3s;
}

.footer-social a:hover{
    background:#315cff;
    transform:translateY(-3px);
}

.footer-box h4{
    margin-bottom:24px;
    font-size:14px;
    letter-spacing:2px;
}

.footer-item{
    display:flex;
    gap:12px;
    margin-bottom:18px;
}

.footer-item i{
    color:#315cff;
}

.footer-item p{
    color:#94a3b8;
}

.copy{
    margin-top:70px;
    text-align:center;
    color:#475569;
    font-size:13px;
}

/* FLOAT BUTTON */

.wa-float{
    position:fixed;
    right:24px;
    bottom:24px;
    width:65px;
    height:65px;
    border-radius:50%;
    background:#22c55e;
    display:flex;
    justify-content:center;
    align-items:center;
    color:white;
    text-decoration:none;
    font-size:30px;
    box-shadow:0 0 35px rgba(34,197,94,.45);
    z-index:999;
}

/* MOBILE */

@media(max-width:960px){

nav{
    padding:0 20px;
}

.nav-links{
    display:none;
}

.hero{
    flex-direction:column;
    text-align:center;
    gap:80px;
}

.hero-left,
.hero-right{
    width:100%;
}

.hero-left h1{
    font-size:74px;
}

.hero-buttons,
.badges{
    justify-content:center;
}

.logo-img img{
    width:108px;
}

.hero-right img{
    width:520px;
    max-width:100%;
}

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

.about-box{
    padding:35px;
}

.footer-top{
    flex-direction:column;
}

.card img{
    height:220px;
}

}