/* =====================================================
   MEDICAL SERVICES SECTION
===================================================== */

.services-section {

    padding: 100px 0;

    background:
        linear-gradient(180deg,
            #ffffff 0%,
            #f8fbff 100%);

}


/* =====================================================
   HEADER
===================================================== */

.services-section .section-header {

    text-align: center;

    max-width: 750px;

    margin: 0 auto 60px;

}


.services-section .section-header h2 {

    font-size: 44px;

    font-weight: 700;

    color: #0f172a;

    margin-bottom: 18px;

}


.services-section .section-header p {

    font-size: 18px;

    color: #64748b;

    line-height: 1.7;

}





/* =====================================================
   GRID
===================================================== */

.services-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

}





/* =====================================================
   CARD
===================================================== */

.service-card {

    position: relative;

    background: #ffffff;

    padding: 40px 30px;

    border-radius: 24px;

    text-align: center;

    overflow: hidden;

    border: 1px solid #e5e7eb;

    transition: .4s ease;

    box-shadow:

        0 10px 30px rgba(15, 23, 42, .05);

}



/* bottom line */

.service-card::after {

    content: "";

    position: absolute;

    bottom: 0;

    left: 0;

    width: 0;

    height: 4px;

    background: #0ea5a4;

    transition: .4s;

}



.service-card:hover::after {

    width: 100%;

}



.service-card:hover {


    transform: translateY(-12px);

    box-shadow:

        0 25px 60px rgba(15, 23, 42, .12);

}







/* =====================================================
   ICON
===================================================== */


.service-icon {


    width: 90px;

    height: 90px;

    margin: 0 auto 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 42px;

    border-radius: 25px;


    background:

        linear-gradient(135deg,
            #ecfeff,
            #f0fdfa);


    box-shadow:

        inset 0 0 20px rgba(14, 165, 164, .15);

}





/* =====================================================
   TITLE
===================================================== */


.service-card h3 {


    font-size: 23px;

    color: #0f172a;

    font-weight: 700;

    margin-bottom: 15px;


}





/* =====================================================
   TEXT
===================================================== */


.service-card p {


    color: #64748b;

    font-size: 16px;

    line-height: 1.8;

    margin-bottom: 25px;


}





/* =====================================================
   LINK
===================================================== */


.service-card a {


    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #0f766e;

    font-weight: 600;

    text-decoration: none;

    transition: .3s;


}



.service-card a:hover {


    color: #0284c7;


}





/* =====================================================
   RESPONSIVE
===================================================== */


@media(max-width:1024px) {


    .services-grid {

        grid-template-columns: repeat(2, 1fr);

    }


}



@media(max-width:768px) {


    .services-section {

        padding: 70px 0;

    }



    .services-section .section-header h2 {

        font-size: 32px;

    }



    .services-grid {

        grid-template-columns: repeat(2, 1fr);
        gap: 15px;

    }



    .service-card {

        padding: 20px 14px;

    }


    .service-icon {

        width: 55px;
        height: 55px;
        font-size: 26px;
        margin-bottom: 12px;

    }


    .service-card h3 {

        font-size: 16px;
        margin-bottom: 8px;

    }


    .service-card p {

        font-size: 13px;
        line-height: 1.5;

    }


}