.contact-section{

    /* padding:120px 0; */

    background:#d6d2d2;
}

.contact-form-wrapper{

    background:white;

    padding:50px;

    border-radius:30px;

    box-shadow:
    0 20px 50px rgba(0,0,0,.08);
}

.contact-form-wrapper h2{

    font-size:42px;

    margin-bottom:30px;
}

.form-control{

    height:60px;

    border:none;

    background:#f5f7fb;

    border-radius:15px;
}

textarea.form-control{

    height:auto;
}

.btn-contact{

    border:none;

    padding:16px 40px;

    border-radius:50px;

    background:
    linear-gradient(
        135deg,
        #ff6b35,
        #dc2626
    );

    color:white;

    font-weight:700;
}

.contact-info-section{

    margin-top:-80px;

    position:relative;

    z-index:10;
}

.contact-card{

    background:white;

    padding:40px;

    border-radius:25px;

    text-align:center;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);

    height:100%;
}

.icon-box{

    width:80px;
    height:80px;

    margin:auto auto 20px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
    linear-gradient(
        135deg,
        #ff6b35,
        #dc2626
    );

    color:white;

    font-size:28px;
}

.contact-image img{

    width:100%;

    border-radius:30px;

    height:700px;

    object-fit:cover;
}

.map-section iframe{

    width:100%;

    height:500px;

    border:none;
}

.contact-link{

    color:#081120;

    text-decoration:none;

    font-weight:600;

    transition:.3s;
}

.contact-link:hover{

    color:#ff6b35;

    text-decoration:none;
}