* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #10182b;
}

a {
    text-decoration: none;
}


/* =====================================================
   CONTACT SECTION
===================================================== */

.jiya-contact-section {

    width: 100%;

    padding: 90px 5%;

    background: #f5faf9;

}


.jiya-contact-container {

    max-width: 1150px;

    margin: auto;

}


/* =====================================================
   HEADING
===================================================== */

.jiya-contact-heading {

    text-align: center;

    max-width: 700px;

    margin: 0 auto 55px;

}


.jiya-contact-heading .small-title {

    color: #20a98f;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1.8px;

    display: block;

    margin-bottom: 10px;

}


.jiya-contact-heading h2 {

    color: #10182b;

    font-size: 40px;

    font-weight: 600;

    margin-bottom: 15px;

}


.jiya-contact-heading h2 span {

    color: #20a98f;

}


.jiya-contact-heading p {

    color: #6b7280;

    font-size: 14px;

    line-height: 1.8;

}


/* =====================================================
   CONTACT GRID
===================================================== */

.jiya-contact-grid {

    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 35px;

    align-items: stretch;

}


/* =====================================================
   LEFT CONTACT INFORMATION
===================================================== */

.jiya-contact-info {

    background: #10182b;

    border-radius: 8px;

    padding: 42px 35px;

    position: relative;

    overflow: hidden;

}


.jiya-contact-info::before {

    content: "";

    position: absolute;

    width: 260px;

    height: 260px;

    border: 1px solid rgba(32,169,143,.2);

    border-radius: 50%;

    top: -130px;

    right: -100px;

}


.jiya-contact-info::after {

    content: "";

    position: absolute;

    width: 200px;

    height: 200px;

    border: 1px solid rgba(32,169,143,.15);

    border-radius: 50%;

    bottom: -100px;

    left: -80px;

}


.jiya-contact-info-content {

    position: relative;

    z-index: 2;

}


.jiya-contact-info h3 {

    color: #ffffff;

    font-size: 27px;

    font-weight: 600;

    margin-bottom: 12px;

}


.jiya-contact-info > .jiya-contact-info-content > p {

    color: #b9c4cf;

    font-size: 13px;

    line-height: 1.8;

    margin-bottom: 32px;

}


/* =====================================================
   INFO ITEMS
===================================================== */

.jiya-info-item {

    display: flex;

    gap: 16px;

    margin-bottom: 25px;

}


.jiya-info-icon {

    flex-shrink: 0;

    width: 45px;

    height: 45px;

    border-radius: 50%;

    background: rgba(32,169,143,.13);

    border: 1px solid rgba(32,169,143,.25);

    color: #20a98f;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 15px;

}


.jiya-info-text h4 {

    color: #ffffff;

    font-size: 13px;

    margin-bottom: 5px;

}


.jiya-info-text p,
.jiya-info-text a {

    color: #b9c4cf;

    font-size: 12px;

    line-height: 1.7;

}


.jiya-info-text a:hover {

    color: #20a98f;

}


/* =====================================================
   CALL BUTTON
===================================================== */

.jiya-call-now {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    background: #20a98f;

    color: #ffffff;

    padding: 13px 20px;

    border-radius: 4px;

    font-size: 12px;

    font-weight: 600;

    margin-top: 8px;

    transition: .3s;

}


.jiya-call-now:hover {

    background: #ffffff;

    color: #10182b;

}


/* =====================================================
   FORM BOX
===================================================== */

.jiya-contact-form-box {

    background: #ffffff;

    border: 1px solid #e0ebe8;

    border-radius: 8px;

    padding: 42px 38px;

    box-shadow: 0 10px 35px rgba(16,24,43,.06);

}


.jiya-contact-form-box h3 {

    color: #10182b;

    font-size: 25px;

    margin-bottom: 8px;

}


.jiya-contact-form-box > p {

    color: #7a8492;

    font-size: 12px;

    margin-bottom: 25px;

}


/* =====================================================
   FORM ROW
===================================================== */

.jiya-form-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 17px;

}


.jiya-form-group {

    margin-bottom: 17px;

}


.jiya-form-group label {

    display: block;

    color: #10182b;

    font-size: 11px;

    font-weight: 600;

    margin-bottom: 7px;

}


.jiya-form-group label span {

    color: #e05252;

}


.jiya-form-group input,
.jiya-form-group select,
.jiya-form-group textarea {

    width: 100%;

    border: 1px solid #dce5e3;

    background: #fbfdfd;

    border-radius: 4px;

    padding: 13px 14px;

    font-family: inherit;

    font-size: 12px;

    color: #10182b;

    outline: none;

    transition: .3s;

}


.jiya-form-group input:focus,
.jiya-form-group select:focus,
.jiya-form-group textarea:focus {

    border-color: #20a98f;

    background: #ffffff;

    box-shadow: 0 0 0 3px rgba(32,169,143,.08);

}


.jiya-form-group textarea {

    height: 125px;

    resize: vertical;

}


/* =====================================================
   SUBMIT BUTTON
===================================================== */

.jiya-submit-btn {

    width: 100%;

    border: none;

    background: #10182b;

    color: #ffffff;

    padding: 15px 20px;

    border-radius: 4px;

    font-size: 12px;

    font-weight: 600;

    cursor: pointer;

    transition: .3s;

}


.jiya-submit-btn:hover {

    background: #20a98f;

}


.jiya-submit-btn i {

    margin-left: 7px;

}


/* =====================================================
   SUCCESS / ERROR
===================================================== */

.jiya-success {

    background: #e7f8f3;

    border: 1px solid #bce8dd;

    color: #147c68;

    padding: 12px 15px;

    border-radius: 4px;

    font-size: 12px;

    margin-bottom: 20px;

}


.jiya-error {

    background: #fff1f1;

    border: 1px solid #f0c5c5;

    color: #b42318;

    padding: 12px 15px;

    border-radius: 4px;

    font-size: 12px;

    margin-bottom: 20px;

}


/* =====================================================
   HIDDEN SPAM FIELD
===================================================== */

.jiya-hidden-field {

    display: none !important;

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 800px) {

    .jiya-contact-section {

        padding: 60px 5%;

    }


    .jiya-contact-heading {

        margin-bottom: 35px;

    }


    .jiya-contact-heading h2 {

        font-size: 30px;

    }


    .jiya-contact-heading p {

        font-size: 12px;

    }


    .jiya-contact-grid {

        grid-template-columns: 1fr;

        gap: 20px;

    }


    .jiya-contact-info {

        padding: 32px 25px;

    }


    .jiya-contact-form-box {

        padding: 30px 22px;

    }


    .jiya-contact-form-box h3 {

        font-size: 22px;

    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 500px) {

    .jiya-contact-section {

        padding: 50px 5%;

    }


    .jiya-contact-heading h2 {

        font-size: 27px;

    }


    .jiya-form-row {

        grid-template-columns: 1fr;

        gap: 0;

    }


    .jiya-contact-info {

        padding: 28px 20px;

    }


    .jiya-contact-info h3 {

        font-size: 23px;

    }


    .jiya-info-item {

        gap: 12px;

    }


    .jiya-info-icon {

        width: 40px;

        height: 40px;

        font-size: 13px;

    }


    .jiya-info-text p,
    .jiya-info-text a {

        font-size: 11px;

    }


    .jiya-contact-form-box {

        padding: 27px 18px;

    }

}