@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#050816;
    overflow-x:hidden;
    color:white;
}

/* HEADER */

.top-header{
    width:100%;
    background:rgba(255,255,255,0.05);
    backdrop-filter:blur(12px);
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 5%;
 background: linear-gradient(135deg,#4f6df5,#7b4cc9);
}

.left-logo img,
.right-logo img{
    width:90px;
    height:90px;
    object-fit:contain;
    border-radius:12px;
}

.header-text{
    text-align:center;
    width:70%;
}

.header-text h2{
    font-size:28px;
    color:#ffffff;
    margin-bottom:10px;
    line-height:1.4;
}

.iit-link{
    text-decoration:none;
    color:#fdffff;
    font-size:15px;
    transition:0.3s;
}

.iit-link:hover{
    color:#00e5ff;
}

/* NAVBAR */

.navbar{
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 18px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.navbar a{
    text-decoration: none;
    color: #222;
    font-size: 18px;
    position: relative;
    transition: 0.3s;
}

.navbar a:hover,
.navbar .active{
    color: #4f6df5;
}

/* UNDERLINE EFFECT */

.navbar a::after{
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #4f6df5;
    left: 0;
    bottom: -6px;
    transition: 0.4s;
}

.navbar a:hover::after{
    width: 100%;
}

/* CONTACT SECTION */

.contact-section{
    width:100%;
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:60px 20px;
}

/* MAIN BOX */

.contact-container{
    width:1150px;
    display:flex;
    border-radius:30px;
    overflow:hidden;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(20px);
    box-shadow:0 0 40px rgba(0,0,0,0.5);
}

/* LEFT SIDE */

.contact-left{
    width:45%;
    padding:60px;
    background:linear-gradient(135deg,#7c3aed,#00e5ff);
}

.contact-tag{
    background:rgba(255,255,255,0.2);
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    letter-spacing:1px;
}

.contact-left h1{
    font-size:48px;
    margin:25px 0 20px;
    line-height:1.2;
}

.contact-left p{
    font-size:15px;
    line-height:1.9;
    margin-bottom:40px;
    color:#f1f5f9;
}

/* INFO */

.contact-info{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.info-box{
    display:flex;
    align-items:center;
    gap:18px;
}

.info-box i{
    width:58px;
    height:58px;
    border-radius:18px;
    background:white;
    color:#7c3aed;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:20px;
}

.info-box h3{
    margin-bottom:5px;
    font-size:18px;
}

.info-box span{
    font-size:14px;
    color:#f8fafc;
}

/* SOCIAL ICONS */

.social-icons{
    display:flex;
    gap:16px;
    margin-top:45px;
}

.social-icons a{
    width:52px;
    height:52px;
    border-radius:18px;
    background:rgba(255,255,255,0.18);
    display:flex;
    justify-content:center;
    align-items:center;
    color:white;
    text-decoration:none;
    font-size:20px;
    transition:0.4s;
}

.social-icons a:hover{
    transform:translateY(-8px);
    background:white;
    color:#7c3aed;
    box-shadow:0 0 20px rgba(255,255,255,0.4);
}

/* RIGHT SIDE */

.contact-right{
    width:55%;
    padding:60px;
    background:rgba(0,0,0,0.2);
}

.contact-right h2{
    font-size:38px;
    margin-bottom:35px;
}

/* INPUTS */

.input-box{
    margin-bottom:22px;
}

.input-box input,
.input-box textarea{
    width:100%;
    padding:18px 22px;
    border:none;
    outline:none;
    border-radius:18px;
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.08);
    color:white;
    font-size:16px;
    transition:0.4s;
}

.input-box input:focus,
.input-box textarea:focus{
    border-color:#00e5ff;
    box-shadow:0 0 18px rgba(0,229,255,0.4);
}

.input-box textarea{
    height:170px;
    resize:none;
}

.input-box input::placeholder,
.input-box textarea::placeholder{
    color:#94a3b8;
}

/* BUTTON */

button{
    width:100%;
    padding:18px;
    border:none;
    border-radius:18px;
    background:linear-gradient(90deg,#00e5ff,#7c3aed);
    color:white;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
    transition:0.4s;
}

button:hover{
    transform:scale(1.02);
    box-shadow:0 0 25px rgba(0,229,255,0.5);
}

/* RESPONSIVE */

@media(max-width:1000px){

.contact-container{
    flex-direction:column;
    width:95%;
}

.contact-left,
.contact-right{
    width:100%;
}

.top-header{
    flex-direction:column;
    gap:20px;
}

.header-text{
    width:100%;
}

.header-text h2{
    font-size:22px;
}

.navbar{
    flex-wrap:wrap;
    gap:20px;
}

.contact-left h1{
    font-size:36px;
}

.contact-right h2{
    font-size:30px;
}

}
.footer{
    background:#002147;
    color:white;
    text-align:center;
    padding:18px;
    font-size:16px;
}