/* =========================================================
   ABOUT PAGE HERO
========================================================= */

.about-hero {

    width: 100%;

    background: #ffffff;

    position: relative;

    overflow: hidden;

    padding: 55px 0 70px;
}


/* =========================================================
   MAIN CONTAINER
========================================================= */

.about-hero__container {

    width: 90%;

    max-width: 1250px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 0.95fr 1.05fr;

    align-items: center;

    gap: 55px;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.about-hero__content {

    padding-left: 5px;

    position: relative;

    z-index: 2;
}


/* =========================================================
   ABOUT BADGE
   SAME STYLE AS HOME PAGE
========================================================= */

.about-hero__badge {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 10px 22px;

    margin-bottom: 22px;

    border-radius: 30px;

    background: #eaf8ef;

    color: #17643d;

    font-family: 'Plus Jakarta Sans', sans-serif;

    font-size: 13px;

    font-weight: 790;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


/* GREEN DOT */

.about-hero__badge span {

   width: 7px;
    height: 7px;

    background: #17704d;

    border-radius: 50%;

    display: block;

    flex-shrink: 0;
}


/* =========================================================
   MAIN HEADING
========================================================= */

.about-hero__title {
    margin: 0;
    max-width: 600px;

    font-family: 'Plus Jakarta Sans', sans-serif;

    font-size: 46px;   /* CHANGE THIS */
    line-height: 1.12;

    font-weight: 790;

    letter-spacing: -1.2px;

    color: #1d4488;
}


/* GREEN HEADING PART */

.about-hero__title span {

    display: block;

    color: #17643d;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.about-hero__description {

    max-width: 590px;

    margin: 24px 0 0;

    font-family: 'Plus Jakarta Sans', sans-serif;

    font-size: 17px;

    line-height: 1.8;

    color: #53627a;
}


/* SECOND PARAGRAPH */

.about-hero__description--second {

    margin-top: 10px;
}


/* =========================================================
   STATS
========================================================= */

.about-hero__stats {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 12px;

    max-width: 590px;

    margin-top: 28px;
}


/* =========================================================
   STAT CARD
========================================================= */

.about-stat {

    min-height: 95px;

    padding: 17px 16px;

    background: #ffffff;

    border: 1px solid #e6ebef;

    border-radius: 14px;

    box-shadow:
        0 8px 25px rgba(18, 48, 75, 0.07);

    display: flex;

    flex-direction: column;

    justify-content: center;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}


/* CARD HOVER */

.about-stat:hover {

    transform: translateY(-4px);

    border-color: #cfe9d9;

    box-shadow:
        0 14px 30px rgba(18, 48, 75, 0.10);
}


/* NUMBER */

.about-stat strong {

    font-family: 'Plus Jakarta Sans', sans-serif;

    font-size: 25px;

    line-height: 1;

    font-weight: 800;

    color: #17643d;

    margin-bottom: 8px;
}


/* LABEL */

.about-stat span {

    font-family: 'Plus Jakarta Sans', sans-serif;

    font-size: 15px;

    line-height: 1.45;

    font-weight: 600;

    color: #66758a;
}


/* =========================================================
   RIGHT IMAGE
========================================================= */

.about-hero__visual {

    width: 100%;

    display: flex;

    justify-content: flex-end;

    align-items: center;
}


/* =========================================================
   IMAGE WRAPPER
========================================================= */

.about-hero__image-wrap {

    width: 100%;

    max-width: 620px;

    height: 500px;

    overflow: hidden;

    border-radius: 24px;

    background: #f5f7f8;

    box-shadow:
        0 18px 45px rgba(18, 48, 75, 0.12);
}


/* =========================================================
   IMAGE
========================================================= */

.about-hero__image {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    transition: transform 0.5s ease;
}


/* IMAGE HOVER */

.about-hero__image-wrap:hover
.about-hero__image {

    transform: scale(1.025);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .about-hero {

        padding: 45px 0 60px;
    }


    .about-hero__container {

        width: 90%;

        grid-template-columns: 1fr;

        gap: 40px;
    }


    .about-hero__content {

        padding-left: 0;
    }


    .about-hero__title {

        max-width: 700px;
    }


    .about-hero__description {

        max-width: 700px;
    }


    .about-hero__stats {

        max-width: 700px;
    }


    .about-hero__visual {

        justify-content: center;
    }


    .about-hero__image-wrap {

        max-width: 700px;

        height: 450px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {
    

    .about-hero {

        padding: 35px 0 50px;
    }


    .about-hero__container {

        width: 88%;

        gap: 30px;
    }


   .about-hero__badge {
    font-size: 14px;
    letter-spacing: 1.4px;
    padding: 9px 17px;
    margin-bottom: 16px;

    /* CENTER BADGE ON MOBILE */
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}


    .about-hero__badge span {
    width: 7px;
    height: 7px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}


    .about-hero__title {

        font-size: 32px;

        line-height: 1.12;

        letter-spacing: -1px;
    }


    .about-hero__description {

        font-size: 15px;

        line-height: 1.7;

        margin-top: 18px;
    }


    .about-hero__description--second {

        margin-top: 8px;
    }


    .about-hero__stats {

        grid-template-columns: repeat(3, 1fr);

        gap: 7px;

        margin-top: 22px;
    }


    .about-stat {

        min-height: 82px;

        padding: 12px 8px;

        border-radius: 11px;
    }


    .about-stat strong {

        font-size: 20px;

        margin-bottom: 6px;
    }


    .about-stat span {

        font-size: 9px;
    }


    .about-hero__image-wrap {

        height: 360px;

        border-radius: 18px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .about-hero__title {

        font-size: 32px;
    }


    .about-hero__stats {

        gap: 6px;
    }


    .about-stat {

        padding: 10px 6px;
    }


    .about-stat strong {

        font-size: 18px;
    }


    .about-stat span {

        font-size: 8px;
    }


    .about-hero__image-wrap {

        height: 310px;
    }
}
/* =========================================================
   DOCTOR PROFILE SECTION
========================================================= */

.doctor-profile {
    width: 100%;
    background: #ffffff;
    padding: 30px 0 75px;
}


/* =========================================================
   SAME CONTAINER STYLE AS ABOUT HERO
========================================================= */

.doctor-profile__container {
    width: 90%;
    max-width: 1250px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.78fr 1.22fr;

    align-items: center;

    gap: 50px;
}


/* =========================================================
   LEFT IMAGE
========================================================= */

.doctor-profile__image-box {
    width: 100%;
    height: 420px;   /* reduce from 500px */

    overflow: hidden;
    border-radius: 22px;

    background: #f5f8f7;

    box-shadow: 0 15px 35px rgba(18, 48, 75, 0.08);
}


/* IMAGE */

.doctor-profile__image {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    transition: transform 0.4s ease;
}


.doctor-profile__image-box:hover
.doctor-profile__image {
    transform: scale(1.02);
}


/* =========================================================
   RIGHT CONTENT
========================================================= */

.doctor-profile__content {
    width: 100%;
    padding: 0;
}


/* =========================================================
   LABEL
========================================================= */

.doctor-profile__label {
    display: inline-flex;

    align-items: center;

    padding: 9px 17px;

    border-radius: 30px;

    background: #eaf8ef;

    color: #17643d;

    font-family: 'Plus Jakarta Sans', sans-serif;

    font-size: 13px;

    font-weight: 790;

    letter-spacing: 1.6px;

    text-transform: uppercase;
}

.doctor-profile__top-label {
    width: 100%;
    margin-bottom: 25px;
}

.doctor-profile__top-label span {
    display: block;
    width: fit-content;
    margin: 0 auto;

    padding: 10px 18px;
    border-radius: 30px;

    background: #e8f7ef;
    color: #087443;

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
}
.doctor-profile__top-label span::before {
    content: "";
    width: 7px;
    height: 7px;
    background: #087443;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle;
}
.doctor-profile__label::before {
    content: "";

    width: 7px;
    height: 7px;

    margin-right: 9px;

    border-radius: 50%;

    background: #17643d;
}


/* =========================================================
   HEADING
========================================================= */

.doctor-profile__title {
    margin: 17px 0 12px;

    font-family: 'Plus Jakarta Sans', sans-serif;

    font-size: 35px;

    line-height: 1.1;

    font-weight: 800;

    letter-spacing: -1.5px;

    color: #1d4488;
}


/* =========================================================
   GREEN LINE
========================================================= */

.doctor-profile__line {
    width: 70px;
    height: 4px;

    border-radius: 10px;

    background: #17643d;

    margin-bottom: 25px;
}


/* =========================================================
   PARAGRAPHS
========================================================= */

.doctor-profile__content p {
    width: 100%;
    max-width: none;

    margin: 0 0 15px;

    font-family: 'Plus Jakarta Sans', sans-serif;

    font-size: 17px;

    line-height: 1.75;

    color: #53627a;

    text-align: justify;
}


/* =========================================================
   QUALIFICATION SECTION
========================================================= */

.doctor-qualification {
    width: 90%;
    max-width: 1250px;

    margin: 45px auto 0;

    padding: 10px 28px;

    background: #f5f8f7;

    border: 1px solid #e8edf2;

    border-radius: 20px;

    box-shadow: 0 10px 30px rgba(18, 48, 75, 0.06);
}


/* =========================================================
   QUALIFICATION HEADING
========================================================= */

.doctor-qualification__heading {
    text-align: center;

    margin-bottom: 25px;
}


.doctor-qualification__heading span {
    position: relative;

    display: inline-block;

    padding-bottom: 10px;

    font-family: 'Plus Jakarta Sans', sans-serif;

    font-size: 22px;

    font-weight: 800;

    color: #1d4488;
}


.doctor-qualification__heading span::after {
    content: "";

    position: absolute;

    width: 50px;
    height: 3px;

    left: 50%;
    bottom: 0;

    transform: translateX(-50%);

    border-radius: 10px;

    background: #17643d;
}


/* =========================================================
   QUALIFICATION GRID
========================================================= */

.doctor-qualification__grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);
}


/* =========================================================
   QUALIFICATION CARD
========================================================= */

.qualification-card {
    min-height: 125px;

    padding: 8px 20px;

    text-align: center;

    border-right: 1px solid #e6ebef;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;
}


.qualification-card:last-child {
    border-right: none;
}


/* =========================================================
   QUALIFICATION ICON
========================================================= */

.qualification-card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
    border-radius: 50%;
    background: #eaf8ef;

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

    flex-shrink: 0;
}

.qualification-card__icon svg {
    width: 23px;
    height: 23px;

    fill: none;
    stroke: #17643d;
    stroke-width: 1.8;

    stroke-linecap: round;
    stroke-linejoin: round;

    display: block;
}

/* =========================================================
   QUALIFICATION TITLE
========================================================= */

.qualification-card h3 {
    margin: 0 0 5px;

    font-family: 'Plus Jakarta Sans', sans-serif;

    font-size: 15px;

    font-weight: 800;

    color: #17643d;
}


/* =========================================================
   QUALIFICATION TEXT
========================================================= */

.qualification-card p {
    margin: 0;

    font-family: 'Plus Jakarta Sans', sans-serif;

    font-size: 14px;

    line-height: 1.45;

    color: #53627a;

    text-align: center;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .doctor-profile {
        padding: 40px 0 60px;
    }

    .doctor-profile__container {
        width: 90%;

        grid-template-columns: 1fr;

        gap: 35px;
    }

    .doctor-profile__image-box {
        width: 100%;
        max-width: 650px;

        height: 450px;

        margin: 0 auto;
    }

    .doctor-profile__content {
        width: 100%;
        max-width: 750px;

        margin: 0 auto;
    }

    .doctor-profile__content p {
        max-width: 100%;
    }

    .doctor-qualification {
        width: 90%;
    }

    .doctor-qualification__grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 20px;
    }

    .qualification-card:nth-child(2) {
        border-right: none;
    }

    .qualification-card:nth-child(3),
    .qualification-card:nth-child(4) {
        border-top: 1px solid #e6ebef;
        padding-top: 20px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .doctor-profile {
        padding: 30px 0 50px;
    }

    .doctor-profile__container {
        width: 88%;

        gap: 28px;
    }

    .doctor-profile__image-box {
        height: 380px;

        border-radius: 18px;
    }

    .doctor-profile__label {
        font-size: 14px;

        padding: 8px 14px;
    }

    .doctor-profile__title {
        font-size: 32px;

        line-height: 1.12;

        letter-spacing: -1px;

        margin: 15px 0 10px;
    }

    .doctor-profile__line {
        width: 55px;

        height: 3px;

        margin-bottom: 20px;
    }

    .doctor-profile__content p {
        font-size: 16px;

        line-height: 1.5;

        text-align: justify;

        margin-bottom: 13px;
    }

    .doctor-qualification {
        width: 88%;

        padding: 25px 15px;

        margin-top: 30px;

        border-radius: 18px;
    }

    .doctor-qualification__heading {
        margin-bottom: 20px;
    }

    .doctor-qualification__heading span {
        font-size: 18px;
    }

    .doctor-qualification__grid {
        grid-template-columns: 1fr;
    }

    .qualification-card {
        min-height: 110px;

        border-right: none;

        border-bottom: 1px solid #e6ebef;

        padding: 15px 10px;
    }

    .qualification-card:last-child {
        border-bottom: none;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .doctor-profile__image-box {
        height: 340px;
    }

    .doctor-profile__title {
        font-size: 30px;
    }

    .doctor-profile__content p {
        font-size: 12.5px;
    }
}
/* =====================================================
   JOURNEY & EXCELLENCE
===================================================== */
/* =========================================================
   JOURNEY & EXCELLENCE
========================================================= */

.journey-section {
    width: 100%;
    padding: 10px 0;
    background: #ffffff;
}


/* SAME OUTER WIDTH / MARGIN AS HERO */

.journey-container {
    width: 90%;
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 ;

    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
gap: 70px;

    align-items: center;
}


/* =========================================================
   LEFT SIDE
========================================================= */

.journey-content {
    width: 100%;
    max-width: 500px;
}


/* BADGE */

/* =========================================================
   JOURNEY & EXCELLENCE - TOP CENTER BADGE
========================================================= */

.journey-top-badge {
    width: fit-content;
    margin: 0 auto 35px auto;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 10px 18px;

    background: #e8f7ef;
    color: #087443;

    border-radius: 30px;

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
}

/* GREEN DOT */
.journey-top-badge span {
    width: 7px;
    height: 7px;

    background: #087443;
    border-radius: 50%;

    display: inline-block;
    flex-shrink: 0;
}

/* TITLE */

.journey-title {
    margin: 0;

    font-size: 50px;
    line-height: 1.08;

    font-weight: 800;

    color: #204d92;

    letter-spacing: -1.5px;
}

.journey-title span {
    color: #087044;
}


/* GREEN LINE */

.journey-line {
    width: 70px;
    height: 4px;

    background: #087044;

    border-radius: 10px;

    margin: 24px 0 28px;
}


/* DESCRIPTION */

.journey-description {
    margin: 0;

    max-width: 480px;

    font-size: 16px;
    line-height: 1.8;

    color: #42618d;
}


/* =========================================================
   RIGHT SIDE
========================================================= */

.journey-cards {
    width: 100%;

    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 18px;
}


/* SMALL CARDS */

.journey-card {
    position: relative;

    min-height: 145px;

    padding: 25px 26px 24px;

    background: #f7fbf9;

    border: 1px solid #dcebe4;

    border-radius: 22px;

    box-sizing: border-box;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}


/* NUMBER */

.journey-number {
    position: absolute;

    top: 17px;
    right: 17px;

    width: 34px;
    height: 34px;

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

    border-radius: 50%;

    background: #e5f5ed;

    color: #087044;

    font-size: 12px;
    font-weight: 800;
}


/* CARD TITLE */

.journey-card h3 {
    margin: 15px 45px 10px 0;

    color: #123e7d;

    font-size: 18px;
    line-height: 1.25;

    font-weight: 800;
}


/* CARD TEXT */

.journey-card p {
    margin: 0;

    color: #42618d;

    font-size: 14px;
    line-height: 1.65;
}


/* HOVER */

.journey-card:hover {
    transform: translateY(-4px);

    border-color: #b9dcca;

    box-shadow: 0 12px 30px rgba(20, 80, 55, 0.08);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .journey-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .journey-content {
        max-width: 650px;
    }

    .journey-description {
        max-width: 600px;
    }

    .journey-cards {
        max-width: 700px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .journey-section {
        padding: 10px 0;
    }

    .journey-container {
        padding: 0 22px;

        gap: 35px;
    }

    .journey-title {
        font-size: 34px;
    }

    .journey-description {
        font-size: 15px;
    }

    .journey-cards {
        grid-template-columns: 1fr;

        gap: 14px;
    }

    .journey-card {
        min-height: auto;

        padding: 22px;
    }

    .journey-card h3 {
        font-size: 17px;
    }
}
/* =====================================================
   VISITING CONSULTANT
   SAME STYLE / MARGIN AS DOCTOR PROFILE
===================================================== */

.visiting-consultant {
    width: 100%;
    margin: 40px 0 70px;
    padding: 0;
}

.visiting-consultant__container {
    width: calc(100% - 136px);
    max-width: 1216px;
    margin: 0 auto;

    text-align: center;
}


/* =====================================================
   ASSOCIATED CARE BADGE
   SAME AS LEADING EXPERT
===================================================== */

.visiting-consultant__badge {

    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 11px 18px;

    background: #e9f7f0;

    border-radius: 30px;

    color: #08623f;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.5px;

    line-height: 1;

    text-transform: uppercase;
}


/* GREEN DOT */

.visiting-consultant__badge span {

    width: 7px;
    height: 7px;

    background: #17704d;

    border-radius: 50%;

    display: block;

    flex-shrink: 0;
}


/* =====================================================
   HEADING
===================================================== */

.visiting-consultant__title {

    margin: 18px 0 0;

    color: #214f96;

    font-size: 30px;

    font-weight: 800;

    line-height: 1.2;

    letter-spacing: -0.5px;
}


/* =====================================================
   GREEN UNDERLINE
===================================================== */

.visiting-consultant__line {

    width: 70px;
    height: 4px;

    margin: 14px auto 18px;

    background: #16704d;

    border-radius: 5px;
}


/* =====================================================
   DESCRIPTION
===================================================== */

.visiting-consultant__description {

    max-width: 720px;

    margin: 0 auto 26px;

    color: #365b91;

    font-size: 16px;

    line-height: 1.7;

    font-weight: 400;
}


/* =====================================================
   HOSPITAL CARDS
===================================================== */

.visiting-consultant__cards {

    display: flex;

    justify-content: center;

    align-items: stretch;

    gap: 36px;

    width: 100%;
}


/* =====================================================
   INDIVIDUAL HOSPITAL CARD
===================================================== */

.hospital-card {

    width: 330px;
    height: 74px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #dce9e4;

    border-radius: 14px;

    box-shadow: 0 8px 22px rgba(20, 70, 55, 0.06);

    text-align: left;
}


/* HOSPITAL IMAGE */

.hospital-card img {

    width: 110px;
    height: 74px;

    object-fit: cover;

    display: block;

    flex-shrink: 0;
}


/* CARD CONTENT */

.hospital-card__content {

    padding: 9px 18px;

    flex: 1;
}


/* HOSPITAL NAME */

.hospital-card__content h3 {

    margin: 0;

    color: #173f82;

    font-size: 14px;

    font-weight: 800;

    line-height: 1.35;
}


/* SMALL GREEN LINE */

.hospital-card__line {

    width: 22px;
    height: 2px;

    margin-top: 8px;

    background: #17704d;

    border-radius: 3px;
}



/* =====================================================
   OUR COMMITMENT
===================================================== */

.patient-commitment {

    width: calc(100% - 136px);

    max-width: 1216px;

    min-height: 125px;

    margin: 0 auto 70px;

    padding: 22px 30px;

    box-sizing: border-box;

    display: flex;

    align-items: center;

    background: #f4f9f7;

    border: 1px solid #dce9e4;

    border-radius: 16px;
}


/* =====================================================
   COMMITMENT LEFT SIDE
===================================================== */

.patient-commitment__intro {

    flex: 1.5;

    display: flex;

    align-items: center;

    gap: 20px;

    padding-right: 28px;
}


/* LEAF */

.patient-commitment__leaf {

    width: 62px;
    height: 62px;

    flex-shrink: 0;

    display: flex;

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

    color: #17704d;

    font-size: 38px;
}


/* TEXT */

.patient-commitment__text h2 {

    margin: 0 0 7px;

    color: #173f82;

    font-size: 17px;

    font-weight: 800;

    line-height: 1.25;
}


.patient-commitment__text p {

    max-width: 470px;

    margin: 0;

    color: #365b91;

    font-size: 14px;

    line-height: 1.6;
}


/* =====================================================
   RIGHT FEATURES
===================================================== */

.patient-commitment__features {

    flex: 1;

    height: 78px;

    display: grid;

    grid-template-columns: repeat(3, 1fr);
}


/* FEATURE */

.commitment-feature {

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    padding: 0 15px;

    text-align: center;

    border-left: 1px solid #d5e3de;
}


/* FEATURE ICON */

.commitment-feature__icon {

    width: 40px;
    height: 40px;

    margin-bottom: 7px;

    display: flex;

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

    background: #e5f3ed;

    border-radius: 50%;

    font-size: 17px;
}


/* FEATURE TEXT */

.commitment-feature span {

    color: #173f82;

    font-size: 14px;

    font-weight: 700;

    line-height: 1.3;
}



/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

    .visiting-consultant__container,
    .patient-commitment {

        width: calc(100% - 50px);
    }


    .visiting-consultant__cards {

        gap: 20px;
    }


    .hospital-card {

        width: 300px;
    }


    .patient-commitment {

        flex-direction: column;

        align-items: stretch;

        gap: 20px;
    }


    .patient-commitment__intro {

        padding-right: 0;
    }


    .patient-commitment__features {

        width: 100%;
    }
}



/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .visiting-consultant {

        margin-top: 60px;
    }


    .visiting-consultant__container,
    .patient-commitment {

        width: calc(100% - 32px);
    }


    .visiting-consultant__title {

        font-size: 26px;
    }


    .visiting-consultant__description {

        font-size: 13px;
    }


    .visiting-consultant__cards {

        flex-direction: column;

        align-items: center;

        gap: 15px;
    }


    .hospital-card {

        width: 100%;

        max-width: 360px;
    }


    .patient-commitment {

        padding: 20px;

        margin-bottom: 50px;
    }


    .patient-commitment__intro {

        align-items: flex-start;
    }


    .patient-commitment__features {

        grid-template-columns: 1fr;

        height: auto;
    }


    .commitment-feature {

        min-height: 65px;

        border-left: none;

        border-top: 1px solid #d5e3de;
    }

}
/* =====================================================
   FREQUENTLY ASKED QUESTIONS
===================================================== */

.faq-section {
    width: 100%;
    margin: 90px 0 80px;
    padding: 0;
}

.faq-container {
    width: calc(100% - 136px);
    max-width: 1216px;
    margin: 0 auto;
}


/* =====================================================
   HEADING
===================================================== */

.faq-heading {
    text-align: center;
}
/* =====================================================
   FAQ BADGE
   SAME STYLE AS ASSOCIATED CARE
===================================================== */

.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 11px 18px;

    background: #e9f7f0;

    border-radius: 30px;

    color: #08623f;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.5px;

    line-height: 1;

    text-transform: uppercase;
}
.faq-badge span {
    width: 7px;
    height: 7px;

    background: #17704d;

    border-radius: 50%;

    display: block;

    flex-shrink: 0;
}

.faq-heading h2 {
    margin: 18px 0 0;

    color: #214f96;

    font-size: 34px;
    font-weight: 800;

    line-height: 1.2;
    letter-spacing: -0.5px;
}

.faq-line {
    width: 70px;
    height: 4px;

    margin: 14px auto 18px;

    background: #16704d;
    border-radius: 5px;
}

.faq-heading p {
    max-width: 760px;

    margin: 0 auto 42px;

    color: #365b91;

    font-size: 14px;
    line-height: 1.7;
}


/* =====================================================
   FAQ GRID
===================================================== */

.faq-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px 22px;

    width: 100%;
}


/* =====================================================
   FAQ ITEM
===================================================== */

.faq-item {
    background: #ffffff;

    border: 1px solid #dce9e4;

    border-radius: 16px;

    overflow: hidden;

    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: #b9dacc;

    box-shadow: 0 8px 25px rgba(20, 70, 55, 0.06);
}


/* =====================================================
   QUESTION
===================================================== */

.faq-question {
    width: 100%;

    min-height: 94px;

    padding: 18px 22px;

    display: flex;
    align-items: center;

    gap: 18px;

    border: none;
    background: transparent;

    cursor: pointer;

    text-align: left;
}


/* NUMBER */

.faq-number {
    width: 44px;
    height: 44px;

    flex-shrink: 0;

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

    background: #e7f5ef;

    border-radius: 50%;

    color: #08704a;

    font-size: 13px;
    font-weight: 700;
}


/* QUESTION TEXT */

.faq-title {
    flex: 1;

    color: #173f82;

    font-size: 15px;
    font-weight: 700;

    line-height: 1.4;
}


/* PLUS */

.faq-plus {
    width: 36px;
    height: 36px;

    flex-shrink: 0;

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

    background: #e7f5ef;

    border-radius: 50%;

    color: #08704a;

    font-size: 24px;
    font-weight: 400;

    line-height: 1;

    transition: transform 0.3s ease;
}


/* =====================================================
   ANSWER
===================================================== */

.faq-answer {
    display: grid;

    grid-template-rows: 0fr;

    transition: grid-template-rows 0.35s ease;
}

.faq-answer p {
    min-height: 0;

    overflow: hidden;

    margin: 0;

    padding: 0 84px;

    color: #365b91;

    font-size: 13px;

    line-height: 1.7;

    opacity: 0;

    transition:
        opacity 0.25s ease,
        padding 0.35s ease;
}


/* =====================================================
   ACTIVE ANSWER
===================================================== */

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

.faq-item.active .faq-answer p {
    padding: 0 84px 22px;

    opacity: 1;
}


/* CHANGE + TO × */

.faq-item.active .faq-plus {
    transform: rotate(45deg);
}


/* =====================================================
   HOVER
===================================================== */

.faq-question:hover .faq-plus {
    background: #d8eee5;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

    .faq-container {
        width: calc(100% - 50px);
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .faq-section {
        margin-top: 60px;
    }

    .faq-container {
        width: calc(100% - 32px);
    }

    .faq-heading h2 {
        font-size: 27px;
    }

    .faq-heading p {
        font-size: 15px;
    }

    .faq-question {
        min-height: 82px;

        padding: 15px;

        gap: 12px;
    }

    .faq-number {
        width: 38px;
        height: 38px;

        font-size: 12px;
    }

    .faq-title {
        font-size: 14px;
    }

    .faq-plus {
        width: 32px;
        height: 32px;

        font-size: 21px;
    }

    .faq-item.active .faq-answer p {
        padding: 0 15px 20px 65px;
    }

}
/* =========================================================
   ARTICLES & MEDIA FEATURES
   ========================================================= */

.media-section {
    width: 100%;
    margin: 100px 0 80px;
    padding: 0;
    box-sizing: border-box;
}


/* =========================================================
   MAIN CONTAINER
   SAME MARGIN AS FAQ / OTHER SECTIONS
   ========================================================= */

.media-container {
    width: calc(100% - 150px);
    max-width: 1216px;
    margin: 0 auto;
    box-sizing: border-box;
}


/* =========================================================
   HEADING
   ========================================================= */

.media-heading {
    text-align: center;
    margin-bottom: 52px;
}


/* =========================================================
   KNOWLEDGE HUB BADGE
   SAME STYLE AS ASSOCIATED CARE
   ========================================================= */

.media-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 11px 19px;

    background: #e8f6ef;
    border-radius: 30px;

    color: #08623f;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.5px;
    line-height: 1;

    text-transform: uppercase;
}


/* GREEN DOT */

.media-badge::before {
    content: "";

    width: 7px;
    height: 7px;

    background: #17704d;

    border-radius: 50%;

    display: block;
}


/* =========================================================
   MAIN HEADING
   ========================================================= */

.media-heading h2 {
    margin: 20px 0 0;

    color: #214f96;

    font-size: 40px;
    font-weight: 800;

    line-height: 1.15;

    letter-spacing: -0.8px;
}


/* =========================================================
   GREEN UNDERLINE
   ========================================================= */

.media-heading h2::after {
    content: "";

    display: block;

    width: 76px;
    height: 4px;

    margin: 18px auto 20px;

    background: #17704d;

    border-radius: 5px;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.media-heading p {
    max-width: 760px;

    margin: 0 auto;

    color: #365b91;

    font-size: 15px;

    line-height: 1.7;

    font-weight: 400;
}


/* =========================================================
   MEDIA CARDS CONTAINER
   TWO CARDS IN SAME LINE
   ========================================================= */

.media-grid {
    width: 100%;

    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 36px;

    align-items: stretch;
}


/* =========================================================
   INDIVIDUAL MEDIA CARD
   ========================================================= */

.media-card {
    width: 100%;

    background: #ffffff;

    border: 1px solid #e0ebe7;

    border-radius: 18px;

    overflow: hidden;

    box-shadow: 0 12px 30px rgba(20, 70, 55, 0.07);

    cursor: pointer;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;

    box-sizing: border-box;
}


.media-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 18px 35px rgba(20, 70, 55, 0.11);
}


/* =========================================================
   MEDIA IMAGE
   IMPORTANT:
   PREVENTS HUGE / STACKED IMAGE PROBLEM
   ========================================================= */

.media-card img {
    width: 100%;

    height: 270px;

    display: block;

    object-fit: cover;

    object-position: center;

    background: #f5f8f7;
}


/* =========================================================
   CARD CONTENT
   ========================================================= */

.media-card-content {
    padding: 20px 22px 22px;

    box-sizing: border-box;
}


/* CARD TITLE */

.media-card-content h3 {
    margin: 0 0 8px;

    color: #173f82;

    font-size: 17px;

    font-weight: 800;

    line-height: 1.35;
}


/* CARD DESCRIPTION */

.media-card-content p {
    margin: 0;

    color: #365b91;

    font-size: 13px;

    line-height: 1.6;
}


/* =========================================================
   IMAGE LIGHTBOX
   IF YOUR IMAGE OPENS LARGE ON CLICK
   ========================================================= */

.media-lightbox {
    position: fixed;

    inset: 0;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.88);

    display: none;

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

    z-index: 9999;

    padding: 30px;

    box-sizing: border-box;
}


.media-lightbox.active {
    display: flex;
}


/* LARGE IMAGE */

.media-lightbox img {
    max-width: 80vw;

    max-height: 85vh;

    width: auto;
    height: auto;

    object-fit: contain;

    border-radius: 10px;

    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}


/* CLOSE BUTTON */

.media-lightbox-close {
    position: absolute;

    top: 25px;
    right: 40px;

    width: 45px;
    height: 45px;

    display: flex;

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

    color: #ffffff;

    font-size: 34px;

    font-weight: 300;

    cursor: pointer;

    z-index: 10000;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .media-container {
        width: calc(100% - 50px);
    }


    .media-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 22px;
    }


    .media-card img {
        height: 230px;
    }


    .media-heading h2 {
        font-size: 34px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .media-section {
        margin: 70px 0 60px;
    }


    .media-container {
        width: calc(100% - 32px);
    }


    .media-heading {
        margin-bottom: 35px;
    }


    .media-heading h2 {
        font-size: 28px;

        line-height: 1.2;
    }


    .media-heading p {
        font-size: 15px;
    }


    .media-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }


    .media-card img {
        height: 220px;
    }


    .media-card-content {
        padding: 17px 18px 20px;
    }


    .media-card-content h3 {
        font-size: 16px;
    }


    .media-lightbox {
        padding: 15px;
    }


    .media-lightbox img {
        max-width: 94vw;
        max-height: 80vh;
    }


    .media-lightbox-close {
        top: 15px;
        right: 20px;
    }
}