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

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

body{
    background:linear-gradient(-45deg, #0f172a, #1e293b, #2563eb, #0f172a);
    background-size:400% 400%;
    animation:bgAnimation 12s ease infinite;
    color:white;
}

@keyframes bgAnimation{
    0%{
        background-position:0% 50%;
    }

    50%{
        background-position:100% 50%;
    }

    100%{
        background-position:0% 50%;
    }
}

header{
    min-height:100vh;
    padding:20px 10%;
}

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

.logo{
    font-size:30px;
    font-weight:600;
}

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

nav ul li{
    margin-left:30px;
}

nav ul li a{
    text-decoration:none;
    color:white;
    transition:0.3s;
}

nav ul li a:hover{
    color:#60a5fa;
}

.hero{
    display:flex;
    justify-content:space-between;
    align-items:center;
    min-height:85vh;
    gap:50px;
    flex-wrap:wrap;
}

.hero-text{
    flex:1;
}

.hero-text h2{
    font-size:35px;
}

.hero-text h1{
    font-size:70px;
    color:#60a5fa;
}

.hero-text h3{
    margin:15px 0;
    font-size:28px;
}

.hero-text p{
    line-height:1.8;
    max-width:600px;
}

.hero-buttons{
    margin-top:30px;
}

.btn{
    display:inline-block;
    padding:14px 30px;
    background:#2563eb;
    color:white;
    text-decoration:none;
    border-radius:40px;
    margin-right:15px;
    transition:0.3s;
}

.btn:hover{
    transform:translateY(-5px);
    background:#60a5fa;
}

.btn-secondary{
    background:transparent;
    border:2px solid white;
}

.hero-image img{
    width:350px;
    height:350px;
    border-radius:50%;
    object-fit:cover;
    border:6px solid rgba(255,255,255,0.4);
    box-shadow:0 0 30px rgba(255,255,255,0.3);
}

section{
    padding:80px 10%;
}

section h2{
    font-size:45px;
    margin-bottom:30px;
    text-align:center;
}

.glass{
    background:rgba(255,255,255,0.1);
    backdrop-filter:blur(10px);
    border-radius:20px;
    margin:20px 10%;
}

.glass p{
    line-height:2;
    text-align:center;
    font-size:18px;
}

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

.card{
    background:rgba(255,255,255,0.1);
    backdrop-filter:blur(10px);
    padding:40px;
    border-radius:20px;
    text-align:center;
    transition:0.3s;
}

.card:hover{
    transform:translateY(-10px);
}

.card i{
    font-size:50px;
    margin-bottom:20px;
    color:#60a5fa;
}

.card h3{
    margin-bottom:15px;
}

.social-icons{
    text-align:center;
    margin-bottom:30px;
}

.social-icons a{
    color:white;
    font-size:35px;
    margin:0 15px;
    transition:0.3s;
}

.social-icons a:hover{
    color:#60a5fa;
}

form{
    max-width:700px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:20px;
}

input,
textarea{
    padding:15px;
    border:none;
    border-radius:10px;
    outline:none;
}

button{
    padding:15px;
    border:none;
    border-radius:40px;
    background:#2563eb;
    color:white;
    cursor:pointer;
    transition:0.3s;
    font-size:16px;
}

button:hover{
    background:#60a5fa;
}

footer{
    text-align:center;
    padding:30px;
    background:rgba(0,0,0,0.3);
}

/* MOBILE RESPONSIVE */

@media(max-width:768px){

    nav{
        flex-direction:column;
        gap:20px;
    }

    nav ul{
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero{
        text-align:center;
        justify-content:center;
    }

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

    .hero-image img{
        width:250px;
        height:250px;
    }

    section h2{
        font-size:35px;
    }

}