/*==========================
    RESET
===========================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    background:#06112d;
    color:#fff;
}


/*==========================
    CONTAINER
===========================*/

.container{

    width:90%;
    max-width:1280px;
    margin:auto;
}


/*==========================
    HEADER
===========================*/

header{

    width:100%;
    position:absolute;
    top:0;
    left:0;
    z-index:100;
}


nav{

    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:28px 0;
}


.logo img{

    width:220px;
}


/*==========================
        MENU
===========================*/

.menu{

    list-style:none;

    display:flex;

    gap:42px;
}

.menu a{

    text-decoration:none;
    color:white;
    font-size:15px;
    font-weight:500;
    transition:.3s;
    position:relative;
}

.menu a:hover{

    color:#3d8bff;
}


.menu a.active{

    color:#3d8bff;
}


.menu a.active::after{

    content:'';

    position:absolute;

    width:100%;

    height:2px;

    background:#3d8bff;

    left:0;

    bottom:-8px;
}


/*==========================
      BUTTON
===========================*/

.btn{

    display:inline-block;

    padding:15px 34px;

    background:linear-gradient(90deg,#2c5eff,#5b63ff);

    border-radius:14px;

    color:white;

    text-decoration:none;

    font-weight:500;

    transition:.35s;
}

.btn:hover{

    transform:translateY(-3px);

    box-shadow:0 15px 40px rgba(60,120,255,.35);
}

/*=================================
            HERO
==================================*/

.hero{

    position:relative;

    overflow:hidden;

    min-height:100vh;

    display:flex;

    align-items:center;

    background:
    radial-gradient(circle at top right,#2f54ff 0%,transparent 35%),
    radial-gradient(circle at bottom,#592cff 0%,transparent 30%),
    linear-gradient(135deg,#07122f,#0a1b4d);

}


.hero-container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:70px;

    position:relative;

    z-index:2;
}

/*======================
LEFT CONTENT
=======================*/

.hero-content{

    width:55%;
}

.hero-tag{

    color:#4fa7ff;

    font-weight:600;

    letter-spacing:2px;

    font-size:13px;
}

.hero h1{

    font-size:68px;

    line-height:1.15;

    margin:25px 0;

    font-weight:700;
}

.hero h1 span{

    color:#2b84ff;
}

.hero p{

    color:#d7d7d7;

    font-size:18px;

    line-height:1.9;

    max-width:620px;
}


/*====================
Buttons
=====================*/

.hero-buttons{

    display:flex;

    gap:22px;

    margin-top:45px;
}


.btn-outline{

    padding:15px 38px;

    border:1px solid rgba(255,255,255,.35);

    border-radius:14px;

    color:white;

    text-decoration:none;

    transition:.35s;
}

.btn-outline:hover{

    background:white;

    color:#111;
}


/*====================
Glass Card
=====================*/

.hero-card{

    width:430px;

    padding:40px;

    border-radius:28px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(22px);

    border:1px solid rgba(255,255,255,.15);

    box-shadow:
    0 30px 60px rgba(0,0,0,.25);
}

.feature{

    display:flex;

    gap:22px;

    margin-bottom:38px;
}

.feature:last-child{

    margin-bottom:0;
}

.icon{

    width:65px;

    height:65px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

    background:rgba(74,122,255,.18);

    flex-shrink:0;
}

.feature h3{

    margin-bottom:8px;

    font-size:22px;

    font-weight:600;
}

.feature p{

    color:#d8d8d8;

    font-size:15px;

    line-height:1.8;
}


/*====================
Glow Effects
=====================*/

.glow{

    position:absolute;

    border-radius:50%;

    filter:blur(120px);

    opacity:.6;
}

.glow1{

    width:350px;

    height:350px;

    background:#2563ff;

    top:-80px;

    right:80px;
}

.glow2{

    width:300px;

    height:300px;

    background:#9340ff;

    bottom:50px;

    left:45%;
}

.glow3{

    width:260px;

    height:260px;

    background:#0099ff;

    bottom:-60px;

    right:15%;
}


/*====================
Animation
=====================*/

@keyframes floating{

    0%{

        transform:translateY(0px);
    }

    50%{

        transform:translateY(-18px);
    }

    100%{

        transform:translateY(0px);
    }

}

.hero-card{

    animation:floating 6s ease-in-out infinite;
}

/*=====================================
            SERVICES
======================================*/

.services{

    background:#f6f8fc;

    padding:110px 0;

    position:relative;
}

/* subtle glow */

.services::before{

    content:'';

    position:absolute;

    width:550px;

    height:550px;

    background:#dce9ff;

    border-radius:50%;

    filter:blur(120px);

    left:-180px;

    top:120px;

    opacity:.45;
}

.section-title{

    text-align:center;

    margin-bottom:70px;

    position:relative;

    z-index:2;
}

.section-title span{

    color:#347dff;

    font-size:14px;

    font-weight:700;

    letter-spacing:2px;
}

.section-title h2{

    color:#16254d;

    font-size:48px;

    margin:18px 0;
}

.section-title p{

    color:#6f7b95;

    font-size:18px;

    max-width:700px;

    margin:auto;

    line-height:1.8;
}

/*=========================
Grid
=========================*/

.service-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    position:relative;

    z-index:2;
}

/*=========================
Card
=========================*/

.service-card{

    background:white;

    padding:45px 32px;

    border-radius:24px;

    text-align:center;

    transition:.35s;

    border:1px solid #edf0f7;

    box-shadow:0 10px 30px rgba(24,45,90,.05);
}

.service-card:hover{

    transform:translateY(-14px);

    box-shadow:0 35px 60px rgba(38,77,180,.15);
}

/*=========================
Icons
=========================*/

.service-icon{

    width:92px;

    height:92px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:auto auto 30px;

    color:#2b7cff;

    background:radial-gradient(circle,#dbe9ff,#f4f8ff);

    font-size:40px;
}

.service-icon.purple{

    color:#7d4cff;

    background:radial-gradient(circle,#f1e5ff,#fbf8ff);
}

.service-icon.blue{

    color:#308dff;
}

.service-icon.pink{

    color:#9658ff;

    background:radial-gradient(circle,#f3e7ff,#ffffff);
}

/*=========================
Typography
=========================*/

.service-card h3{

    color:#17284b;

    font-size:26px;

    margin-bottom:18px;
}

.service-card p{

    color:#69758e;

    line-height:1.9;

    margin-bottom:28px;

    font-size:16px;
}

.service-card a{

    color:#2d79ff;

    text-decoration:none;

    font-weight:600;
}

.service-card a:hover{

    letter-spacing:1px;
}

/*======================================
            ABOUT
=======================================*/

.about{

    position:relative;

    overflow:hidden;

    padding:120px 0;

    background:
    radial-gradient(circle at top right,#3a5fff 0%,transparent 30%),
    radial-gradient(circle at bottom left,#6a2cff 0%,transparent 28%),
    linear-gradient(135deg,#07122f,#08193f);

}

/*==========================
Glow Effects
===========================*/

.about-glow{

    position:absolute;

    border-radius:50%;

    filter:blur(140px);

    opacity:.45;
}

.glow-left{

    width:350px;

    height:350px;

    background:#2d77ff;

    left:-100px;

    top:120px;
}

.glow-right{

    width:420px;

    height:420px;

    background:#8a3dff;

    right:-80px;

    bottom:-100px;
}

/*==========================
Layout
===========================*/

.about-container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:70px;

    position:relative;

    z-index:2;
}

/*==========================
Left
===========================*/

.about-content{

    width:42%;
}

.section-tag{

    color:#4ca7ff;

    letter-spacing:2px;

    font-size:14px;

    font-weight:600;
}

.about-content h2{

    margin:20px 0;

    font-size:56px;

    line-height:1.15;

    font-weight:700;
}

.title-line{

    width:70px;

    height:4px;

    background:#3d8bff;

    border-radius:50px;

    margin-bottom:30px;
}

.about-content p{

    color:#d5d5d5;

    font-size:17px;

    line-height:2;

    margin-bottom:40px;
}

/*==========================
Stats Card
===========================*/

.stats-card{

    width:55%;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    background:rgba(255,255,255,.07);

    border:1px solid rgba(255,255,255,.12);

    backdrop-filter:blur(20px);

    border-radius:28px;

    overflow:hidden;

    box-shadow:0 25px 60px rgba(0,0,0,.25);

}

/*==========================
Stat Item
===========================*/

.stat{

    padding:45px 20px;

    text-align:center;

    border-right:1px solid rgba(255,255,255,.08);

    transition:.35s;
}

.stat:last-child{

    border-right:none;
}

.stat:hover{

    background:rgba(255,255,255,.05);
}

.stat-icon{

    width:65px;

    height:65px;

    margin:auto auto 18px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

    color:#5fa8ff;
}

.stat h3{

    font-size:42px;

    font-weight:700;

    margin-bottom:10px;
}

.stat span{

    color:#d7d7d7;

    font-size:16px;
}

/*==================================
            FOOTER
===================================*/

.footer{

    position:relative;

    overflow:hidden;

    padding:90px 0 30px;

    background:#050d24;

}

/* Glow */

.footer-glow{

    position:absolute;

    width:450px;

    height:450px;

    background:#235cff;

    border-radius:50%;

    filter:blur(160px);

    right:-120px;

    top:-120px;

    opacity:.22;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1.3fr;

    gap:60px;

    position:relative;

    z-index:2;

}

/* Logo */

.footer-logo img{

    width:170px;

    margin-bottom:25px;

}

.footer-col p{

    color:#bfc8df;

    line-height:1.9;

    margin-bottom:30px;

}

/* Headings */

.footer-col h3{

    margin-bottom:28px;

    font-size:22px;

    color:white;

    position:relative;

}

.footer-col h3::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-10px;

    width:45px;

    height:3px;

    background:#3f86ff;

    border-radius:20px;

}

/* Lists */

.footer-col ul{

    list-style:none;

}

.footer-col ul li{

    margin-bottom:16px;

}

.footer-col ul li a{

    text-decoration:none;

    color:#bfc8df;

    transition:.3s;

}

.footer-col ul li a:hover{

    color:#4d97ff;

    padding-left:6px;

}

/* Contact */

.contact-info li{

    color:#bfc8df;

    display:flex;

    align-items:center;

    gap:14px;

    line-height:1.7;

}

.contact-info i{

    color:#4b90ff;

    width:20px;

}

/* Social */

.social-icons{

    display:flex;

    gap:15px;

}

.social-icons a{

    width:46px;

    height:46px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    display:flex;

    justify-content:center;

    align-items:center;

    color:white;

    transition:.35s;

    text-decoration:none;

}

.social-icons a:hover{

    background:#3b83ff;

    transform:translateY(-5px);

}

/* Bottom */

.footer-bottom{

    margin-top:70px;

    padding-top:30px;

    border-top:1px solid rgba(255,255,255,.08);

    display:flex;

    justify-content:space-between;

    align-items:center;

    color:#9ca8c8;

}

.footer-links{

    display:flex;

    gap:30px;

}

.footer-links a{

    text-decoration:none;

    color:#9ca8c8;

    transition:.3s;

}

.footer-links a:hover{

    color:white;

}