/* ===========================
   ABDUL AI V3
=========================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

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

html{
    scroll-behavior:smooth;
}

body{
    background:#050816;
    color:#fff;
    overflow-x:hidden;
    line-height:1.7;
}

/* Background Glow */

body::before{
    content:"";
    position:fixed;
    width:500px;
    height:500px;
    background:#00e5ff33;
    border-radius:50%;
    filter:blur(140px);
    top:-150px;
    right:-150px;
    z-index:-1;
}

body::after{
    content:"";
    position:fixed;
    width:500px;
    height:500px;
    background:#7c3aed33;
    border-radius:50%;
    filter:blur(140px);
    bottom:-150px;
    left:-150px;
    z-index:-1;
}

a{
    text-decoration:none;
    color:white;
}

img{
    max-width:100%;
    display:block;
}

/* ===========================
   NAVBAR
=========================== */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 8%;
    background:rgba(5,8,22,.8);
    backdrop-filter:blur(15px);
    z-index:1000;
}

.logo{
    font-size:30px;
    font-weight:700;
    color:#00e5ff;
}

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

.nav-links a{
    transition:.3s;
}

.nav-links a:hover{
    color:#00e5ff;
}

.menu-btn{
    display:none;
}

/* ===========================
   HERO
=========================== */

.hero{
    min-height:100vh;
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:60px;
    padding:120px 8%;
}

.hero-text h1{
    font-size:60px;
    line-height:1.2;
    margin:20px 0;
}

.hero-text p{
    font-size:20px;
    color:#cbd5e1;
    margin-bottom:35px;
}

.tag{
    display:inline-block;
    padding:8px 18px;
    background:#00e5ff22;
    color:#00e5ff;
    border-radius:50px;
    font-size:14px;
}

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

.btn{
    background:#00e5ff;
    color:#050816;
    padding:15px 35px;
    border-radius:50px;
    font-weight:700;
    transition:.3s;
}

.btn:hover{
    transform:translateY(-5px);
    box-shadow:0 0 25px #00e5ff;
}

.btn.outline{
    background:transparent;
    border:2px solid #00e5ff;
    color:#00e5ff;
}

.hero-image img{
    border-radius:20px;
    box-shadow:0 0 40px rgba(0,229,255,.3);
}/* ===========================
   SECTIONS
=========================== */

section{
    padding:100px 8%;
}

section h2{
    text-align:center;
    font-size:42px;
    margin-bottom:60px;
    color:#00e5ff;
}

/* ===========================
   GRID
=========================== */

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

/* ===========================
   CARDS
=========================== */

.card,
.price-card{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(15px);
    border-radius:20px;
    padding:35px;
    transition:.35s;
}

.card:hover,
.price-card:hover{
    transform:translateY(-10px);
    box-shadow:0 0 30px rgba(0,229,255,.3);
}

.card h1{
    color:#00e5ff;
    font-size:42px;
    margin-bottom:10px;
}

.card h3{
    color:#00e5ff;
    margin-bottom:15px;
}

.card p{
    color:#d1d5db;
}

/* ===========================
   PRICING
=========================== */

.price-card{
    text-align:center;
    position:relative;
}

.price-card h1{
    font-size:55px;
    margin:20px 0;
    color:#00e5ff;
}

.price-card p{
    margin:12px 0;
}

.price-card .btn{
    display:inline-block;
    margin-top:20px;
}

.featured{
    border:2px solid #00e5ff;
}

.badge{
    position:absolute;
    top:-15px;
    left:50%;
    transform:translateX(-50%);
    background:#00e5ff;
    color:#050816;
    padding:8px 18px;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
}

/* ===========================
   ABOUT
=========================== */

.about p{
    max-width:850px;
    margin:auto;
    text-align:center;
    color:#cbd5e1;
    font-size:18px;
}

/* ===========================
   CONTACT
=========================== */

form{
    max-width:650px;
    margin:auto;
}

form input,
form textarea{
    width:100%;
    margin:12px 0;
    padding:16px;
    border:none;
    outline:none;
    border-radius:12px;
    background:#111827;
    color:white;
}

form textarea{
    resize:none;
}

form button{
    width:100%;
    border:none;
    cursor:pointer;
}

/* ===========================
   FOOTER
=========================== */

footer{
    padding:40px 20px;
    text-align:center;
    background:#0b1120;
    border-top:1px solid rgba(255,255,255,.08);
}

footer h2{
    color:#00e5ff;
    margin-bottom:10px;
}

footer p{
    color:#cbd5e1;
    margin:8px 0;
}

/* ===========================
   SCROLLBAR
=========================== */

::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-thumb{
    background:#00e5ff;
    border-radius:20px;
}

/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:900px){

    .hero{
        grid-template-columns:1fr;
        text-align:center;
        padding-top:150px;
    }

    .hero-text h1{
        font-size:42px;
    }

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

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

    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
        gap:15px;
        margin-top:15px;
    }

}

@media(max-width:600px){

    .hero-text h1{
        font-size:34px;
    }

    .hero-text p{
        font-size:17px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .btn{
        width:100%;
        text-align:center;
    }

    section{
        padding:70px 20px;
    }

    section h2{
        font-size:32px;
    }

}

/* ===========================
   ANIMATION
=========================== */

.card,
.price-card,
.hero-image img{
    animation:fadeUp .8s ease;
}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(30px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}