*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#050816;
    color:white;
    overflow-x:hidden;
}

/* CONTAINER */

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

/* HEADER */

header{
    position:fixed;
    top:0;
    width:100%;
    z-index:999;
    padding:20px 0;
    backdrop-filter:blur(18px);
    background:rgba(255,255,255,0.05);
    border-bottom:1px solid rgba(255,255,255,0.08);
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    font-size:30px;
    font-weight:700;
    color:white;
}

.logo span{
    color:#5b7cff;
}

nav{
    display:flex;
    gap:35px;
}

nav a{
    color:white;
    text-decoration:none;
    font-weight:500;
    transition:0.3s;
}

nav a:hover{
    color:#5b7cff;
}

/* HERO */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    position:relative;
    overflow:hidden;
}

.hero-bg{
    position:absolute;
    width:700px;
    height:700px;
    background:#5b7cff;
    filter:blur(200px);
    opacity:0.25;
    top:-200px;
    right:-100px;
}

.hero-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.hero-left h1{
    font-size:68px;
    line-height:1.1;
    margin:25px 0;
    font-weight:600;
}

.hero-left p{
    color:#c6c6d3;
    font-size:18px;
    line-height:1.8;
    margin-bottom:35px;
}

.hero-tag{
    background:rgba(91,124,255,0.15);
    color:#8ea2ff;
    padding:10px 18px;
    border-radius:50px;
    font-size:14px;
    border:1px solid rgba(91,124,255,0.3);
}

.hero-buttons{
    display:flex;
    gap:20px;
}

.btn-primary,
.btn-secondary{
    padding:16px 28px;
    border-radius:14px;
    text-decoration:none;
    font-weight:600;
    transition:0.4s;
}

.btn-primary{
    background:linear-gradient(135deg,#5b7cff,#7f5bff);
    color:white;
}

.btn-primary:hover{
    transform:translateY(-4px);
}

.btn-secondary{
    border:1px solid rgba(255,255,255,0.15);
    color:white;
}

.btn-secondary:hover{
    background:white;
    color:black;
}

/* GLASS CARD */

.glass-card{
    position:relative;
    padding:50px;
    border-radius:30px;
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.1);
    backdrop-filter:blur(20px);
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,0.35);
}

.glass-card h3{
    font-size:40px;
    margin-bottom:20px;
}

.glass-card p{
    color:#d0d0da;
    margin-bottom:40px;
    line-height:1.8;
}

.card-stats{
    display:flex;
    gap:50px;
}

.card-stats h2{
    font-size:40px;
    color:#5b7cff;
}

.circle{
    position:absolute;
    border-radius:50%;
    filter:blur(10px);
}

.circle.one{
    width:180px;
    height:180px;
    background:#5b7cff;
    top:-60px;
    right:-60px;
    opacity:0.5;
}

.circle.two{
    width:120px;
    height:120px;
    background:#7f5bff;
    bottom:-40px;
    left:-40px;
    opacity:0.5;
}

/* SERVICES */

.services{
    padding:120px 0;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title span{
    color:#5b7cff;
    letter-spacing:2px;
    font-size:14px;
}

.section-title h2{
    font-size:48px;
    margin-top:15px;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.service-card{
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:25px;
    padding:40px;
    transition:0.4s;
}

.service-card:hover{
    transform:translateY(-10px);
    background:rgba(255,255,255,0.07);
}

.service-card .icon{
    font-size:45px;
    margin-bottom:25px;
}

.service-card h3{
    margin-bottom:20px;
    font-size:24px;
}

.service-card p{
    color:#bdbdcc;
    line-height:1.8;
}

/* FOOTER */

footer{
    padding:50px 0;
    border-top:1px solid rgba(255,255,255,0.08);
    text-align:center;
    color:#8f90a6;
}

/* RESPONSIVE */

@media(max-width:1100px){

    .hero-wrapper{
        grid-template-columns:1fr;
    }

    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .hero-left h1{
        font-size:52px;
    }
}

@media(max-width:768px){

    nav{
        display:none;
    }

    .hero{
        padding-top:120px;
    }

    .hero-left h1{
        font-size:40px;
    }

    .services-grid{
        grid-template-columns:1fr;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .glass-card{
        padding:35px;
    }

    .section-title h2{
        font-size:34px;
    }
}