/* =========================================================
   MAIN SECTION
========================================================= */

.jiya-health-services {

    width: 100%;

    padding: 85px 5%;

    background: #f7f9fb;

    overflow: hidden;

}


.jiya-services-container {

    max-width: 1250px;

    margin: auto;

}


/* =========================================================
   HEADING
========================================================= */

.jiya-services-heading {

    max-width: 720px;

    margin: 0 auto 55px;

    text-align: center;

}


.jiya-services-label {

    display: block;

    color: #20a98f;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.8px;

    margin-bottom: 10px;

}


.jiya-services-heading h2 {

    margin: 0 0 18px;

    color: #10182b;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 43px;

    line-height: 1.2;

    font-weight: 700;

}


.jiya-services-heading p {

    margin: auto;

    color: #7b8490;

    font-size: 14px;

    line-height: 1.8;

    max-width: 690px;

}


/* =========================================================
   SERVICE GRID
========================================================= */

.jiya-services-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

}


/* =========================================================
   SERVICE CARD
========================================================= */

.jiya-service-card {

    background: #ffffff;

    border: 1px solid #edf0f2;

    border-radius: 28px 28px 10px 10px;

    overflow: hidden;

    box-shadow: 0 8px 30px rgba(16, 24, 43, .07);

    transition: all .35s ease;

}


.jiya-service-card:hover {

    transform: translateY(-7px);

    box-shadow: 0 18px 40px rgba(16, 24, 43, .12);

}


/* =========================================================
   IMAGE
========================================================= */

.jiya-service-image {

    position: relative;

    margin: 12px;

    height: 255px;

    border-radius: 25px;

    overflow: hidden;

    background: #e9eeee;

}


.jiya-service-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .5s ease;

}


.jiya-service-card:hover
.jiya-service-image img {

    transform: scale(1.05);

}


/* =========================================================
   IMAGE ARROW
========================================================= */

.jiya-image-arrow {

    position: absolute;

    right: 12px;

    bottom: 12px;

    width: 47px;

    height: 47px;

    border-radius: 50%;

    background: rgba(16, 24, 43, .48);

    border: 1px solid rgba(255,255,255,.55);

    color: #ffffff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 14px;

    transition: all .3s ease;

    backdrop-filter: blur(3px);

}


.jiya-image-arrow:hover {

    background: #20a98f;

    border-color: #20a98f;

    transform: translateX(3px);

}


/* =========================================================
   CARD CONTENT
========================================================= */

.jiya-service-content {

    padding: 12px 24px 25px;

}


.jiya-service-content h3 {

    color: #10182b;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 22px;

    line-height: 1.35;

    margin: 0 0 12px;

}


.jiya-service-content p {

    color: #718096;

    font-size: 12px;

    line-height: 1.75;

    margin: 0 0 20px;

    display: -webkit-box;

    -webkit-line-clamp: 4;

    -webkit-box-orient: vertical;

    overflow: hidden;

}


/* =========================================================
   WHATSAPP BUTTON
========================================================= */

.jiya-whatsapp-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    width: 100%;

    color: #20a98f;

    font-size: 14px;

    font-weight: 700;

    text-decoration: none;

    border-top: 1px solid #edf0f2;

    padding-top: 15px;

    transition: .3s;

}


.jiya-whatsapp-button i {

    font-size: 21px;

}


.jiya-whatsapp-button:hover {

    color: #10182b;

}


/* =========================================================
   VIEW ALL SERVICES
========================================================= */

.jiya-view-services {

    text-align: center;

    margin-top: 45px;

}


.jiya-view-services a {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    background: #10182b;

    color: #ffffff;

    padding: 14px 25px;

    border-radius: 4px;

    font-size: 12px;

    font-weight: 600;

    transition: .3s;

}


.jiya-view-services a:hover {

    background: #20a98f;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .jiya-services-grid {

        grid-template-columns: repeat(2, 1fr);

    }

    .jiya-service-card:last-child {

        grid-column: 1 / -1;

        max-width: 50%;

        margin: auto;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .jiya-health-services {

        padding: 60px 5%;

    }


    .jiya-services-heading {

        margin-bottom: 35px;

    }


    .jiya-services-label {

        font-size: 9px;

        letter-spacing: 1.4px;

    }


    .jiya-services-heading h2 {

        font-size: 31px;

        line-height: 1.25;

    }


    .jiya-services-heading p {

        font-size: 12px;

        line-height: 1.7;

    }


    .jiya-services-grid {

        grid-template-columns: 1fr;

        gap: 22px;

    }


    .jiya-service-card:last-child {

        grid-column: auto;

        max-width: none;

    }


    .jiya-service-image {

        height: 220px;

        margin: 10px;

        border-radius: 21px;

    }


    .jiya-service-content {

        padding: 12px 20px 22px;

    }


    .jiya-service-content h3 {

        font-size: 20px;

    }


    .jiya-service-content p {

        font-size: 12px;

        line-height: 1.7;

        -webkit-line-clamp: unset;

    }


    .jiya-image-arrow {

        width: 42px;

        height: 42px;

        right: 10px;

        bottom: 10px;

    }


    .jiya-whatsapp-button {

        font-size: 13px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .jiya-health-services {

        padding: 50px 4%;

    }


    .jiya-services-heading h2 {

        font-size: 27px;

    }


    .jiya-service-image {

        height: 195px;

    }


    .jiya-service-content h3 {

        font-size: 18px;

    }

}

/* =========================================================
   JIYA HOME CTA
========================================================= */

.jiya-home-cta {

    width: 100%;

    padding: 0 4%;

    margin: 30px 0;

}


/* =========================================================
   CTA BOX
========================================================= */

.jiya-cta-content {

    max-width: 1450px;

    min-height: 165px;

    margin: auto;

    padding: 35px 45px;

    background: linear-gradient(
        110deg,
        #159b8e,
        #119b91
    );

    border-radius: 17px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    position: relative;

    overflow: hidden;

}


/* subtle background decoration */

.jiya-cta-content::before {

    content: "";

    position: absolute;

    width: 300px;

    height: 300px;

    border-radius: 50%;

    background: rgba(255,255,255,.04);

    top: -190px;

    left: 25%;

}


.jiya-cta-content::after {

    content: "";

    position: absolute;

    width: 220px;

    height: 220px;

    border-radius: 50%;

    background: rgba(255,255,255,.035);

    bottom: -150px;

    right: 25%;

}


/* =========================================================
   TEXT
========================================================= */

.jiya-cta-text {

    position: relative;

    z-index: 2;

}


.jiya-cta-text h2 {

    margin: 0 0 8px;

    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 31px;

    font-weight: 700;

    line-height: 1.25;

}


.jiya-cta-text p {

    margin: 0;

    color: rgba(255,255,255,.92);

    font-size: 14px;

    line-height: 1.6;

}


/* =========================================================
   BUTTON AREA
========================================================= */

.jiya-cta-buttons {

    display: flex;

    align-items: center;

    gap: 16px;

    position: relative;

    z-index: 2;

}


/* =========================================================
   CALL BUTTON
========================================================= */

.jiya-cta-call {

    min-width: 207px;

    height: 55px;

    padding: 0 25px;

    background: #ffffff;

    color: #10182b;

    border-radius: 30px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    font-size: 13px;

    font-weight: 600;

    text-decoration: none;

    box-shadow: 0 5px 15px rgba(0,0,0,.08);

    transition: all .3s ease;

}


.jiya-cta-call i {

    font-size: 13px;

}


.jiya-cta-call:hover {

    background: #10182b;

    color: #ffffff;

    transform: translateY(-2px);

}


/* =========================================================
   REQUEST QUOTE BUTTON
========================================================= */

.jiya-cta-quote {

    min-width: 175px;

    height: 55px;

    padding: 0 25px;

    background: #10182b;

    color: #ffffff;

    border-radius: 30px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    font-size: 13px;

    font-weight: 600;

    text-decoration: none;

    box-shadow: 0 5px 15px rgba(0,0,0,.12);

    transition: all .3s ease;

}


.jiya-cta-quote i {

    font-size: 11px;

}


.jiya-cta-quote:hover {

    background: #ffffff;

    color: #10182b;

    transform: translateY(-2px);

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .jiya-cta-content {

        padding: 30px;

    }


    .jiya-cta-text h2 {

        font-size: 26px;

    }


    .jiya-cta-buttons {

        gap: 10px;

    }


    .jiya-cta-call,
    .jiya-cta-quote {

        min-width: auto;

        padding: 0 18px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .jiya-home-cta {

        padding: 0 4%;

        margin: 25px 0;

    }


    .jiya-cta-content {

        min-height: auto;

        padding: 30px 22px;

        border-radius: 15px;

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        justify-content: center;

        gap: 24px;

    }


    .jiya-cta-text {

        width: 100%;

    }


    .jiya-cta-text h2 {

        font-size: 25px;

        line-height: 1.3;

    }


    .jiya-cta-text p {

        font-size: 12px;

        line-height: 1.7;

    }


    .jiya-cta-buttons {

        width: 100%;

        display: flex;

        flex-direction: column;

        gap: 10px;

    }


    .jiya-cta-call,
    .jiya-cta-quote {

        width: 100%;

        min-width: 0;

        height: 50px;

        font-size: 12px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .jiya-cta-content {

        padding: 26px 18px;

    }


    .jiya-cta-text h2 {

        font-size: 22px;

    }


    .jiya-cta-text p {

        font-size: 11px;

    }

}

<------------------------------>
