/*=====================================
            PAGE BANNER
======================================*/

.page-banner{

    position:relative;

    height:350px;

    background:url("../images/building2.jpeg") center/cover no-repeat;

    display:flex;

    justify-content:center;

    align-items:center;

}

.banner-overlay{

    position:absolute;

    inset:0;

    background:rgba(76,29,149,.75);

}

.banner-content{

    position:relative;

    z-index:2;

    color:#fff;

    text-align:center;

}

.banner-content h1{

    font-size:50px;

    margin-bottom:15px;

}

.banner-content p{

    font-size:18px;

}

.banner-content a{

    color:#FBBF24;

    text-decoration:none;

    font-weight:600;

}

.banner-content span{

    margin:0 10px;

}

/*=====================================
        CONTACT INFO
======================================*/

.contact-info{

    padding:90px 8%;

    background:#F8F5FF;

}

.section-heading{

    text-align:center;

    margin-bottom:60px;

}

.section-heading h4{

    color:#6D28D9;

    text-transform:uppercase;

    letter-spacing:2px;

}

.section-heading h2{

    font-size:42px;

    color:#2E1065;

    margin:12px 0;

}

.title-line{

    width:90px;

    height:4px;

    background:#FBBF24;

    margin:auto;

    border-radius:20px;

}

.contact-container{

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.contact-card{

    background:#fff;

    text-align:center;

    padding:40px 25px;

    border-radius:18px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.35s;

}

.contact-card:hover{

    transform:translateY(-10px);

    box-shadow:0 18px 40px rgba(0,0,0,.15);

}

.contact-card i{

    width:75px;

    height:75px;

    border-radius:50%;

    background:#4C1D95;

    color:#FBBF24;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:0 auto 20px;

    font-size:28px;

}

.contact-card h3{

    color:#2E1065;

    margin-bottom:15px;

    font-size:24px;

}

.contact-card p{

    color:#666;

    line-height:1.8;

}

/*=====================================
        CONTACT FORM
======================================*/

.contact-form-section{

    padding:90px 8%;

    background:#fff;

}

.form-container{

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}

.form-content h2{

    font-size:42px;

    color:#2E1065;

    margin-bottom:20px;

}

.form-content p{

    color:#666;

    line-height:1.9;

    font-size:17px;

}

.contact-form{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.contact-form input,

.contact-form textarea{

    width:100%;

    padding:16px 18px;

    border:2px solid #ddd;

    border-radius:10px;

    font-size:16px;

    outline:none;

    transition:.3s;

    font-family:"Poppins",sans-serif;

}

.contact-form input:focus,

.contact-form textarea:focus{

    border-color:#6D28D9;

}

.contact-form textarea{

    resize:none;

}

.contact-form button{

    background:#4C1D95;

    color:#fff;

    border:none;

    padding:15px;

    border-radius:10px;

    cursor:pointer;

    font-size:17px;

    font-weight:600;

    transition:.35s;

}

.contact-form button:hover{

    background:#FBBF24;

    color:#2E1065;

}

/*=====================================
            MAP
======================================*/

.map-section{

    padding:90px 8%;

    background:#F8F5FF;

}

.map-container{

    max-width:1200px;

    margin:auto;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 12px 35px rgba(0,0,0,.12);

}

.map-container iframe{

    width:100%;

    height:500px;

    border:0;

}