*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background: linear-gradient(-45deg,#0f2027,#203a43,#2c5364,#1c1c1c);
    background-size:400% 400%;
    animation: gradient 10s ease infinite;
    color:white;
    height:100vh;
    overflow:hidden;
}

@keyframes gradient{
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}

/* NAVBAR */
nav{
    height:70px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 50px;
}

nav h1{
    color:#00eaff;
    font-size:26px;
}

nav ul{
    list-style:none;
    display:flex;
    gap:25px;
}

nav ul li{
    cursor:pointer;
    position:relative;
}

nav ul li a{
    text-decoration:none;
    color:white;
}

nav ul li::after{
    content:'';
    width:0;
    height:2px;
    background:#00eaff;
    position:absolute;
    bottom:-6px;
    left:0;
    transition:0.3s;
}

nav ul li:hover::after{
    width:100%;
}

/* CONTACT SECTION */
.contact{
    height:calc(100vh - 70px);
    display:flex;
    justify-content:center;
    align-items:center;
    padding:40px;
}

.contact-card{
    display:flex;
    gap:40px;
    background:rgba(255,255,255,0.1);
    backdrop-filter:blur(15px);
    border-radius:25px;
    padding:40px;
    max-width:1000px;
    width:100%;
    box-shadow:0 25px 60px rgba(0,0,0,0.6);
}

/* LEFT INFO */
.contact-info{
    flex:1;
}

.contact-info h2{
    font-size:38px;
    margin-bottom:10px;
}

.contact-info h2 span{
    color:#00eaff;
}

.contact-info p{
    color:#e0e0e0;
    margin-bottom:25px;
    line-height:1.6;
}

.info-box{
    background:rgba(255,255,255,0.08);
    padding:15px;
    border-radius:15px;
    margin-bottom:15px;
    font-size:15px;
}

/* FORM */
.contact-form{
    flex:1;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:14px;
    margin-bottom:15px;
    border:none;
    border-radius:15px;
    outline:none;
    background:rgba(255,255,255,0.08);
    color:white;
    font-size:14px;
}

.contact-form textarea{
    resize:none;
    height:120px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
    color:#ccc;
}

/* BUTTON */
.btn{
    width:100%;
    padding:14px;
    border:none;
    border-radius:50px;
    background:linear-gradient(45deg,#00eaff,#00ffa2);
    font-size:16px;
    cursor:pointer;
    box-shadow:0 0 20px rgba(0,234,255,0.5);
    transition:0.3s;
}

.btn:hover{
    transform:translateY(-4px);
}

/* RESPONSIVE */
@media(max-width:900px){
    nav{padding:0 20px}
    .contact-card{
        flex-direction:column;
        text-align:center;
    }
}