
.contact-body{
    background: linear-gradient(90deg, rgb(6, 100, 8) 0%, rgb(27, 136, 7) 30%, black 30%, black 100%);
    position: relative;
}
.contactUs {
    position: relative;
    width: 100%;
    padding: 40px 100px;
    
}

.contactUs .title {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
}
.contactUs .title h2{
    color: white;
    font-weight: 500;
}
.contactBox {
   position: relative; 
   display: grid;
   grid-template-columns: 2fr 1fr;
   grid-template-rows: 5fr 4fr;
   grid-template-areas: "form info" "form map";
   grid-gap: 20px;
   margin-top: 20px;
}
.form {
    grid-area: form;
}
.info {
    grid-area: info;
}
.map {
    grid-area: map;
}
.contact {
    padding: 40px;
    background: white;
}

.contact h3{
    color: #0e3959;
    font-weight: bold;
    font-size: 1.6rem;
    margin-bottom: 10px;
}

/* form */
.formBox {
    position: relative;
    width: 100%;
}
.formBox .row50 {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    
}
.inputBox {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    width: 50%;
    border: 1px;
}
.formBox .row100 .inputBox {
    width: 100%;
}
.inputBox, .inputbox2 span{
    color: black;
    margin-top: 10px;
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 1.4rem;
}
.inputBox input {
    padding: 10px;
    font-size: 1.4rem;
    outline: none;
    border: 1px solid #333;
    border-radius: 5px;
}
.inputBox select {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    width: 50%;
    padding: 10px;
    outline: none;
    border-radius: 5px;
    border: 1px #333;
}
.inputBox textarea {
    padding: 10px;
    font-size: 1.4em;
    outline: none;
    border: 1px solid #333;
    resize: none;
    min-height: 220px;
    margin-bottom: 10px;
    border-radius: 5px;
}
.inputBox input[type=submit] {
    background-color: red;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.4rem;
    max-width: 120px;
    font-weight: 500;
    cursor: pointer;
    padding: 14px 15px;
}
.inputBox ::placeholder {
    color: #999;
}


/* info */
.info {
    background: rgb(159, 3, 3);
}
.info h3{
    color: white;
}
.info .infoBox div{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.info .infoBox div span {
    max-width: 40px;
    height: 40px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    border-radius: 50%;
    margin-right: 15px;
}
.info .infoBox div p{
    color: white;
    font-size: 1.4rem;
}
.info .infoBox div a {
    color: white;
    font-size: 1.2rem;
}
.sci {
    margin-top: 40px;
    display: flex;
}
.sci li {
    list-style: none;
    margin-right: 15px;
}
.sci li a {
    color: white;
    font-size: 2em;
    color: #ccc;
}
.sci li a:hover {
    color: #fff;
}
.map{
    padding: 0;
    min-height: 300px;
}
.map iframe{
    width: 100%;
    height: 100%;
}

.whatsapp-icon {
    font-size: 28px;
    text-align: center;
    color: white;
    background-color: green;
    padding: 8px;
    padding-right: 40px;
    border-radius: 8px;
}

/* Responsiveness */
@media (max-width: 991px) {
    .contact-body {
        background: #00470b;
    }
    .contactUs {
        padding: 20px;
        justify-content: center;
        align-items: center;
    }
    .contactBox {
        position: relative;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-template-areas: "form" "info" "map";

    }
    .formBox .row50 {
        display: flex;
        gap: 0;
        flex-direction: column;
    }
    .inputBox {
        width: 100%;
    }
    .inputBox select {
        width: 100%;
    }
    .contact{
        padding: 30px;
    }
    .map {
        padding: 0;
    }
}


/* popup success note */

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 300px;
}

.popup-content h3 {
    margin: 0;
    color: #28a745;
}

.popup-content button {
    background: #28a745;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.popup-content button:hover {
    background: #218838;
}




/* popup end */