/*====================================
        CONTACT PAGE
=====================================*/


.contact-hero{

    padding:80px 0 50px;

    background:#f3f8ff;

    text-align:center;

}


.contact-heading h1{

    font-size:48px;

    color:#143d7a;

    font-weight:700;

}



.contact-heading p{

    max-width:750px;

    margin:20px auto;

    color:#64748b;

    font-size:17px;

    line-height:1.8;

}



/* CONTACT SECTION */


.contact-section{

    padding:90px 0;

    background:white;

}




.contact-left h2,
.contact-form h2{

    color:#143d7a;

    font-size:34px;

    font-weight:700;

    margin-bottom:20px;

}



.contact-left p{

    color:#64748b;

    line-height:1.8;

}





/* INFO */


.contact-info{

    margin-top:35px;

}


.info-item{

    display:flex;

    gap:20px;

    margin-bottom:25px;

    align-items:center;

}



.info-item i{

    width:50px;

    height:50px;

    background:#eaf3ff;

    color:#0d6efd;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

}



.info-item h5{

    margin:0;

    color:#143d7a;

}


.info-item p{

    margin:5px 0 0;

}





/* OFFICE BOX */


.office-box{

    margin-top:35px;

    padding:25px;

    background:#f3f8ff;

    border-radius:18px;

    border:1px solid #dbeafe;

}



.office-box h4{

    color:#143d7a;

}




/* FORM */


.contact-form{

    background:white;

    padding:40px;

    border-radius:25px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    border:1px solid #e2e8f0;

}



.contact-form label{

    font-weight:600;

    color:#334155;

    margin-bottom:8px;

}



.form-control{

    height:50px;

    border-radius:12px;

    border:1px solid #cbd5e1;

}



textarea.form-control{

    height:auto;

}



.form-control:focus{

    border-color:#0d6efd;

    box-shadow:none;

}



.error{

    color:red;

    font-size:13px;

}





.contact-btn{

    margin-top:25px;

    padding:14px 40px;

    border:none;

    background:#0d6efd;

    color:white;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

}



.contact-btn:hover{

    background:#084dbd;

    transform:translateY(-3px);

}



/* MOBILE */


@media(max-width:768px){


.contact-heading h1{

    font-size:34px;

}


.contact-heading p{

    font-size:15px;

}



.contact-section{

    padding:60px 0;

}



.contact-form{

    padding:25px;

}



.contact-left h2,
.contact-form h2{

    font-size:28px;

}


}
/* success mesage */
.success-toast{

    position:fixed;

    top:100px;

    right:30px;

    background:#198754;

    color:white;

    padding:15px 25px;

    border-radius:12px;

    font-size:15px;

    font-weight:600;

    box-shadow:0 10px 30px rgba(0,0,0,.15);

    opacity:0;

    visibility:hidden;

    transform:translateY(-20px);

    transition:.3s;

    z-index:99999;

}



.success-toast.show{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}



@media(max-width:576px){

.success-toast{

    left:20px;

    right:20px;

    text-align:center;

}

}