*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#050505;
    color:white;
    overflow-x:hidden;
}

body::before{
    content:'';
    position:fixed;
    inset:0;
    background:
    radial-gradient(circle at top left,rgba(34,197,94,.15),transparent 30%),
    radial-gradient(circle at bottom right,rgba(16,185,129,.1),transparent 30%);
    z-index:-1;
}

.header{
    position:fixed;
    top:0;
    width:100%;
    z-index:999;
    background:rgba(0,0,0,.4);
    backdrop-filter:blur(18px);
    border-bottom:1px solid rgba(255,255,255,.08);
}

.nav-container{
    max-width:1300px;
    margin:auto;
    padding:0 30px;
    height:88px;

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

.logo {
    display: flex;
    align-items: center;
    height: 100%;
    width: 40%;
}

.logo-image {
    display: block;
    width: auto;
    height: auto;
    max-height: 70px;
    object-fit: contain;
}

.nav{
    display:flex;
    align-items:center;
    gap:40px;
    height:100%;
}

.nav a{
    display:flex;
    align-items:center;
    height:100%;
    color:#fff;
    text-decoration:none;
}

.nav-btn,
.btn{
    background:linear-gradient(135deg,#4ade80,#22c55e);
    color:black;
    border:none;
    padding:15px 30px;
    border-radius:16px;
    font-weight:700;
    cursor:pointer;
    transition:.4s;
    box-shadow:0 10px 30px rgba(34,197,94,.25);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    text-decoration: none;
}

.btn i {
    font-size: 30px;
}

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

.btn-group{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.btn-secondary{
    background:transparent;
    border:1px solid rgba(255,255,255,.12);
    color:white;
    box-shadow:none;
}

footer{
    padding:40px;
    text-align:center;
    color:#9ca3af;
    border-top:1px solid rgba(255,255,255,.06);
}

.w100 {
    width: 100%;
}

.w90 {
    width: 90%;
}

.w80 {
    width: 80%;
}

.w70 {
    width: 70%;
}

.w60 {
    width: 60%;
}

.w50 {
    width: 50%;
}

.w40 {
    width: 40%;
}

.w30 {
    width: 30%;
}

.w20 {
    width: 20%;
}

.w10 {
    width: 10%;
}

.menu-toggle{
    display:none;
}

.tar {
    text-align: right;
}

.section-title{
    text-align:center;
    font-size:60px;
    margin-bottom:20px;
    font-weight:900;
}

.section-title span{
    color:#4ade80;
}

@media(max-width:950px){

    .hero-content{
        grid-template-columns:1fr;
    }

    .hero h1{
        font-size:60px;
    }

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

    /* .nav{
        display:none;
    } */

    .product-card img{
        height:500px;
    }

}

@media (max-width:768px){

    .menu-toggle{
        display:flex;
        align-items:center;
        justify-content:center;
        width:42px;
        height:42px;
        background:none;
        border:none;
        color:#fff;
        font-size:30px;
        cursor:pointer;
    }

    .logo {
        width: 70%;
    }

    .logo-image {
        width: auto;
        max-height: 50px;
    }

    .nav{
        position:absolute;
        top:100%;
        left:0;
        right:0;
        width:100%;
        height: auto;
        box-sizing:border-box;
        display:flex;
        flex-direction:column;
        align-items:center;
        gap:18px;
        padding:25px;
        background:#050505;
        border-top:1px solid rgba(255,255,255,.08);
        border-bottom:1px solid rgba(255,255,255,.08);
        opacity:0;
        visibility:hidden;
        transform:translateY(-10px);
        transition:.3s ease;
    }

    .nav.active{
        opacity:1;
        visibility:visible;
        transform:translateY(0);
    }

    .nav a{
        width:100%;
        text-align:center;
        text-decoration:none;
        color:#fff;
        padding:10px 0;
    }

    .nav-btn{
        width:100%;
        max-width:220px;
    }

}