*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}


body{
    font-family:Poppins, sans-serif;
    background:#F8FAFC;
}

header{
    width:100%;
    background:#FFFFFF;
    position:fixed;
    top:0;
    left:0;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
    z-index:1000;
}

.menu-toggle{
    display: none;
    font-size: 1.8rem;
    color: #1E3A8A;
    cursor: pointer;
}
@media (max-width:768px){

    .nav-links,
    .nav-btn{
        display:none;
    }

    .menu-toggle{
        display:block;
    }
}

.navbar{
    width:90%;
    max-width:1200px;
    margin:auto;
    height:80px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo h2{
    color:#1E3A8A;
    font-size:1.8rem;
    font-weight:700;
}

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

.nav-links a{
    text-decoration:none;
    color:#374151;
    font-weight:500;
    transition:.3s;
}

.nav-links a:hover,
.nav-links .active{
    color:#F59E0B;
}

.nav-btn{
    text-decoration:none;
    background:#F59E0B;
    color:#fff;
    padding:12px 24px;
    border-radius:8px;
    font-weight:600;
    transition:.3s;
}

.nav-btn:hover{
    background:#ca6b05;
}

.contact-hero{
    margin-top: 80px;
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, #1E3A8A,#2563EB);
}

.contact-hero h1{
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.contact-hero p{
    max-width: 700px;
    margin: auto;
    line-height: 1.8;
}

.contact-hero p{
    max-width: 700px;
    margin: auto;
    line-height: 1.8;
}


.contact{
    width: 90%;
    max-width: 1200px;
    margin: 80px auto;
}

.contact-container{
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
}

.info-box{
    background: rgb(230, 192, 192);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
}

.info-box i{
    font-size: 2rem;
    color: #12151c;
}

.info-box h3{
    color: #1E3ABA;
}

/* this is for the contact form */

.contact-form{
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
}

.contact-form input,.contact-form textarea{
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Poppins',sans-serif;
    background-color: #a09d9961;
} 

.contact-form input:focus, .contact-form textarea:focus{
    outline: none;
    border-color: #F59E0B;
}
.contact-form input:hover, .contact-form textarea:hover{
    outline: none;
    background-color: #d4d9e7;
}

.contact-form button{
width: 100%;
padding: 15px;
background: #F59E0B;
color: white;
border: none;
border-radius: 8px;
font-size: 1.1rem;
font-weight: 600;
cursor: pointer;
transition: .3s;
}

.contact-form button:hover{
    background: #5e6471;
}
.contact{
    padding-bottom: 80px;
}

footer{
    background: #1E3A8A;
    color: white;
    margin-top: 120px;
}

.footer-container{
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 60px 0;

    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 40px;
}

.footer-box h2, .footer-box h3{
    margin-bottom: 20px;
}

.footer-box p{
    line-height: 1.8;
    color: #E5E7EB;

}

.footer-box ul{
    list-style:none ;
}

.footer-box ul li{
    margin-bottom: 12px;

}
.footer-box a{
    text-decoration: none;
    color: #fff;
    transition: 3s;
}
.footer-box a:hover{
    color: #ca6b05;
}

.copyright{
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 15);
}

.social-links{
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a{
    color: rgb(235, 171, 171);
    font-size: 1.3rem;
    transition: .3s;
}

.social-links a:hover{
    color: #261903;
}

@media (max-width:992px){

    .contact-container{
        grid-template-columns:1fr;
        gap:40px;
    }

    .contact-hero h1{
        font-size:2.5rem;
    }
     .footer-container{
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width:768px){

    .navbar{
        width:95%;
    }

    .logo h2{
        font-size:1.4rem;
    }

    .nav-links{
        gap:20px;
    }

    .nav-btn{
        padding:10px 18px;
        font-size:.9rem;
    }

    .contact-hero{
        padding:60px 20px;
    }

    .contact-hero h1{
        font-size:2rem;
    }

    .contact-hero p{
        font-size:.95rem;
    }

    .contact{
        width:95%;
    }

    .contact-form{
        padding:25px;
    }

    .info-box{
        padding:20px;
    }
     .footer-container{
        grid-template-columns: repeat(2, 1fr);
    }
}