@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;
    scroll-behavior:smooth;
}

body{
    background:#000;
    color:#fff;
    overflow-x:hidden;
}

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

::-webkit-scrollbar-track{
    background:#0d0d0d;
}

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

::-webkit-scrollbar-thumb:hover{
    background:#ff4fc3;
}

nav{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:85px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 8%;
    background:rgba(0,0,0,.75);
    backdrop-filter:blur(18px);
    border-bottom:1px solid rgba(255,20,147,.2);
    z-index:1000;
}

.logo{
    width:150px;
    cursor:pointer;
}

nav ul{
    display:flex;
    gap:35px;
    list-style:none;
}

nav ul li a{
    color:white;
    text-decoration:none;
    font-weight:500;
    font-size:16px;
    transition:.4s;
    position:relative;
}

nav ul li a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:#ff1493;
    transition:.4s;
}

nav ul li a:hover{
    color:#ff1493;
}

nav ul li a:hover::after{
    width:100%;
}

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:120px 8%;
    position:relative;
    overflow:hidden;
}

.hero::before{
    content:'';
    position:absolute;
    width:600px;
    height:600px;
    background:#ff1493;
    filter:blur(220px);
    opacity:.15;
    top:-180px;
    right:-150px;
}

.hero::after{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:#ff4fc3;
    filter:blur(200px);
    opacity:.08;
    bottom:-180px;
    left:-120px;
}

.content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    width:100%;
    gap:80px;
    z-index:2;
}

.text{
    max-width:650px;
}

.text h1{
    font-size:72px;
    line-height:1.1;
    font-weight:800;
    margin-bottom:25px;
    color:#fff;
}

.text p{
    font-size:18px;
    color:#cfcfcf;
    line-height:1.8;
    margin-bottom:40px;
}

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

.buttons a,
button{
    padding:15px 38px;
    border-radius:50px;
    background:#ff1493;
    color:#fff;
    text-decoration:none;
    font-size:16px;
    font-weight:600;
    border:2px solid #ff1493;
    cursor:pointer;
    transition:.4s;
    box-shadow:0 0 10px #ff1493,0 0 25px #ff1493,0 0 45px #ff1493;
}

.buttons a:hover,
button:hover{
    transform:translateY(-5px) scale(1.05);
    background:#fff;
    color:#ff1493;
    box-shadow:0 0 15px #fff,0 0 35px #ff1493,0 0 70px #ff1493,0 0 120px #ff1493;
}

.feature-img{
    width:600px;
    max-width:100%;
    border-radius:50px;
    transition:.5s;
    filter:drop-shadow(0 0 20px #ff1493) drop-shadow(0 0 40px #ff1493);
}

.feature-img:hover{
    transform:scale(1.05);
    filter:drop-shadow(0 0 30px #ff1493) drop-shadow(0 0 80px #ff1493);
}

.social-icons{
    display:flex;
    gap:22px;
    margin:30px 0;
}

.social-icons a{
    width:55px;
    height:55px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    background:#111;
    color:#ff1493;
    text-decoration:none;
    border:2px solid #ff1493;
    transition:.4s;
    box-shadow:0 0 12px #ff1493;
}

.social-icons a:hover{
    background:#ff1493;
    color:#fff;
    transform:translateY(-6px);
    box-shadow:0 0 18px #ff1493,0 0 40px #ff1493,0 0 80px #ff1493;
}


form{
    display:flex;
    flex-direction:column;
    gap:18px;
    width:100%;
    max-width:420px;
}

input{
    padding:16px 20px;
    border:none;
    outline:none;
    border-radius:12px;
    background:#111;
    color:#fff;
    border:1px solid #333;
    transition:.3s;
}

input:focus{
    border-color:#ff1493;
    box-shadow:0 0 12px #ff1493;
}

h2{
    font-size:42px;
    margin-bottom:20px;
    color:#fff;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(60px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.hero{
    animation:fadeUp 1s ease;
}

@media(max-width:1000px){
    .content{
        flex-direction:column-reverse;
        text-align:center;
    }

    .text h1{
        font-size:50px;
    }

    .buttons{
        justify-content:center;
    }

    nav{
        padding:0 5%;
    }

    nav ul{
        gap:18px;
    }
}

@media(max-width:650px){
    .text h1{
        font-size:38px;
    }

    .text p{
        font-size:15px;
    }

    .logo{
        width:110px;
    }

    .feature-img{
        width:300px;
    }

    nav ul{
        font-size:14px;
    }
}
nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 8%;
    background:#111;
    position:sticky;
    top:0;
    z-index:1000;
}

.logo{
    width:120px;
}

nav ul{
    display:flex;
    list-style:none;
    gap:25px;
}

nav ul li{
    display:inline-block;
}

nav ul li a{
    color:#fff;
    text-decoration:none;
    font-size:18px;
    transition:.3s;
}

nav ul li a:hover{
    color:#00bfff;
}

.menu-toggle{
    display:none;
    color:white;
    font-size:32px;
    cursor:pointer;
    user-select:none;
}

@media (max-width:768px){

    .menu-toggle{
        display:block;
    }

    nav ul{
        display:none;
        flex-direction:column;
        position:absolute;
        top:70px;
        left:0;
        width:100%;
        background:#111;
        text-align:center;
        padding:20px 0;
    }

    nav ul.active{
        display:flex;
    }

    nav ul li{
        margin:15px 0;
    }
}