*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#f4f7ff;
    overflow-x:hidden;
    color:#0f172a;
}

/* NAVBAR */

.navbar{
    background:
    linear-gradient(
        90deg,
        #ffffff 0%,
        #eef6ff 35%,
        #dbeafe 100%
    );

    backdrop-filter:blur(16px);

    padding:12px 40px;

    border-bottom:1px solid rgba(59,130,246,0.12);

    box-shadow:
    0 8px 25px rgba(59,130,246,0.08);
}

.logo-wrapper{
    background:white;
    padding:10px 18px;
    border-radius:20px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:2px solid rgba(37,99,235,0.15);

    box-shadow:
    0 10px 30px rgba(37,99,235,0.10);
}

.main-logo{
    height:85px;
    width:auto;
}

.nav-link{
    color:#0f172a !important;
    margin-left:25px;
    font-weight:600;
    position:relative;
    transition:0.3s;
}

.nav-link::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-5px;
    width:0;
    height:2px;
    background:#2563eb;
    transition:0.4s;
}

.nav-link:hover,
.nav-link.active{
    color:#2563eb !important;
}

.nav-link:hover::after{
    width:100%;
}

/* CONTACT */

.contact-section{
    min-height:100vh;
    padding:160px 0 100px;
    background:#f4f7ff;
}

.contact-content h1{
    font-size:65px;
    font-weight:800;
    margin-bottom:25px;
    color:#0f172a;
}

.contact-content p{
    color:#64748b;
    line-height:1.9;
    margin-bottom:20px;
}

.contact-info{
    margin-top:40px;
}

.info-box{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:25px;
}

.info-box i{
    width:55px;
    height:55px;
    border-radius:50%;

    background:
    linear-gradient(45deg,#3b82f6,#00d4ff);

    display:flex;
    align-items:center;
    justify-content:center;

    color:white;
    font-size:22px;
}

.info-box span{
    color:#0f172a;
    font-weight:500;
}

/* FORM */

.contact-form{
    background:white;

    padding:45px;

    border-radius:30px;

    border:1px solid #eef2ff;

    box-shadow:
    0 15px 40px rgba(0,0,0,0.05);
}

.form-control{
    background:#f8fafc;
    border:1px solid #e2e8f0;

    color:#0f172a;

    padding:16px 20px;

    border-radius:15px;
}

.form-control::placeholder{
    color:#94a3b8;
}

.form-control:focus{
    background:white;

    color:#0f172a;

    border:1px solid #3b82f6;

    box-shadow:
    0 0 10px rgba(59,130,246,0.2);
}

.btn-submit{
    width:100%;
    border:none;

    padding:16px;

    border-radius:50px;

    background:
    linear-gradient(
    45deg,
    #3b82f6,
    #00d4ff
    );

    color:white;

    font-size:18px;
    font-weight:600;

    transition:0.4s;

    box-shadow:
    0 10px 30px rgba(0,212,255,0.25);
}

.btn-submit:hover{
    transform:translateY(-5px);

    box-shadow:
    0 20px 40px rgba(0,212,255,0.35);
}

/* RESPONSIVE */

@media(max-width:768px){

.contact-content h1{
    font-size:42px;
}

.contact-form{
    margin-top:40px;
    padding:30px;
}

.navbar{
    padding:10px 18px;
}

.main-logo{
    height:58px;
}

}