/* =========================================================
   HIMALAYA MEDICAL SERVICES
   HOME PAGE CSS
   ========================================================= */


/* =========================================================
   1. HERO SECTION
   ========================================================= */

/* =========================================================
   HMS HOME PAGE
   PREMIUM HERO CAROUSEL
========================================================= */

.hero-carousel {

    position: relative;

    min-height: 760px;

    overflow: hidden;

    background: #123B70;

}


/* =========================================================
   BACKGROUND SLIDES
========================================================= */

.hero-slide {

    position: absolute;

    inset: 0;

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.8s ease,
        visibility 0.8s ease;

}


.hero-slide.active {

    opacity: 1;

    visibility: visible;

}


.hero-slide-image {

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

    transform: scale(1.02);

    transition:
        transform 6s ease;

}


.hero-slide.active .hero-slide-image {

    transform: scale(1);

}


/* =========================================================
   HMS DARK BLUE OVERLAY
========================================================= */

.hero-slide-overlay {

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            90deg,
            rgba(18, 59, 112, 0.97) 0%,
            rgba(18, 59, 112, 0.90) 30%,
            rgba(18, 59, 112, 0.62) 58%,
            rgba(18, 59, 112, 0.38) 100%
        );

}


/* =========================================================
   HERO CONTAINER
========================================================= */

.hero-carousel-container {

    position: relative;

    z-index: 3;

    display: flex;

    align-items: center;

    min-height: 760px;

}


.hero-carousel-content {

    width: 100%;

    max-width: 760px;

    padding-bottom: 130px;

}


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

.hero-carousel-label {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 24px;

    padding: 8px 15px;

    border: 1px solid
        rgba(50, 196, 141, 0.55);

    border-radius: 50px;

    background:
        rgba(18, 59, 112, 0.30);

    color: #FFFFFF;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1.1px;

}


.hero-carousel-label span {

    width: 9px;

    height: 9px;

    border-radius: 50%;

    background: #32C48D;

    box-shadow:
        0 0 0 5px
        rgba(50, 196, 141, 0.12);

}


/* =========================================================
   HERO TITLE
========================================================= */

.hero-carousel-title {

    margin: 0 0 22px;

    color: #FFFFFF;

    font-size: clamp(
        36px,
        4.6vw,
        62px
    );

    font-weight: 800;

    line-height: 1.06;

    letter-spacing: -1px;

}


.hero-carousel-title strong {

    display: block;

    color: #2F80ED;

    font-weight: 800;

}


/* =========================================================
   SUBTITLE
========================================================= */

.hero-carousel-subtitle {

    max-width: 640px;

    margin: 0 0 16px;

    color: #FFFFFF;

    font-size: clamp(
        17px,
        1.5vw,
        21px
    );

    font-weight: 600;

    line-height: 1.4;

}


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

.hero-carousel-description {

    max-width: 650px;

    margin: 0 0 30px;

    color:
        rgba(255, 255, 255, 0.78);

    font-size: 15px;

    line-height: 1.75;

}


/* =========================================================
   BUTTONS
========================================================= */

.hero-carousel-actions {

    display: flex;

    align-items: stretch;

    flex-wrap: wrap;

    gap: 14px;

}


.hero-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

    min-height: 58px;

    padding: 0 24px;

    border-radius: 9px;

    font-size: 13px;

    font-weight: 700;

    text-decoration: none;

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

}


.hero-btn:hover {

    transform: translateY(-3px);

}


/* PRIMARY */

.hero-btn-primary {

    min-width: 220px;

    background: #2F80ED;

    color: #FFFFFF;

    box-shadow:
        0 12px 30px
        rgba(47, 128, 237, 0.30);

}


.hero-btn-primary:hover {

    background: #1769C2;

}


/* SECONDARY */

.hero-btn-secondary {

    border: 1px solid
        rgba(255, 255, 255, 0.55);

    background:
        rgba(18, 59, 112, 0.35);

    color: #FFFFFF;

    backdrop-filter: blur(10px);

}


.hero-btn-secondary:hover {

    border-color: #32C48D;

    background:
        rgba(18, 59, 112, 0.60);

}


.hero-btn-secondary small {

    display: block;

    margin-bottom: 3px;

    color:
        rgba(255, 255, 255, 0.65);

    font-size: 10px;

    font-weight: 500;

}


.breakdown-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 36px;

    height: 36px;

    border-radius: 9px;

    background:
        rgba(50, 196, 141, 0.16);

    color: #32C48D;

}


/* =========================================================
   CAROUSEL ARROWS
========================================================= */

.hero-carousel-arrow {

    position: absolute;

    top: 50%;

    z-index: 5;

    width: 54px;

    height: 54px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid
        rgba(255, 255, 255, 0.35);

    border-radius: 50%;

    background:
        rgba(18, 59, 112, 0.30);

    color: #FFFFFF;

    font-size: 38px;

    font-weight: 300;

    line-height: 1;

    cursor: pointer;

    transform:
        translateY(-50%);

    backdrop-filter: blur(8px);

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;

}


.hero-carousel-arrow:hover {

    background: #2F80ED;

    border-color: #2F80ED;

}


.hero-carousel-prev {

    left: 24px;

}


.hero-carousel-next {

    right: 24px;

}


/* =========================================================
   INDICATORS
========================================================= */

.hero-carousel-indicators {

    position: absolute;

    left: 30px;

    bottom: 165px;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 8px;

}


.hero-indicator {

    width: 32px;

    height: 4px;

    padding: 0;

    border: 0;

    border-radius: 10px;

    background:
        rgba(255, 255, 255, 0.35);

    cursor: pointer;

    transition:
        width 0.3s ease,
        background 0.3s ease;

}


.hero-indicator.active {

    width: 48px;

    background: #2F80ED;

}


.hero-slide-count {

    margin-left: 8px;

    color:
        rgba(255, 255, 255, 0.70);

    font-size: 11px;

    font-weight: 600;

}


/* =========================================================
   BOTTOM TRUST PANEL
========================================================= */

.hero-trust-panel {

    position: absolute;

    left: 50%;

    bottom: -1px;

    z-index: 6;

    width: min(
        calc(100% - 48px),
        1080px
    );

    display: grid;

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

    transform:
        translateX(-50%);

    background: #FFFFFF;

    border-radius:
        22px
        22px
        0
        0;

    box-shadow:
        0 -10px 45px
        rgba(18, 59, 112, 0.18);

}


.hero-trust-item {

    min-height: 125px;

    display: flex;

    align-items: center;

    gap: 18px;

    padding: 24px 30px;

    border-right:
        1px solid #D8E5F2;

}


.hero-trust-item:last-child {

    border-right: none;

}


.hero-trust-icon {

    flex-shrink: 0;

    width: 52px;

    height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        rgba(50, 196, 141, 0.12);

    color: #32C48D;

    font-size: 21px;

}


.hero-trust-icon.blue {

    background: #EAF3FF;

    color: #2F80ED;

}


.hero-trust-content {

    display: flex;

    align-items: center;

    gap: 12px;

}


.hero-trust-content > strong {

    color: #123B70;

    font-size: 26px;

    font-weight: 800;

    line-height: 1;

}


.hero-trust-content > div {

    display: flex;

    flex-direction: column;

    gap: 4px;

}


.hero-trust-content b {

    color: #123B70;

    font-size: 13px;

    font-weight: 800;

}


.hero-trust-content span {

    color: #5B6B82;

    font-size: 11px;

    line-height: 1.35;

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .hero-carousel {

        min-height: 720px;

    }

    .hero-carousel-container {

        min-height: 720px;

    }

    .hero-carousel-title {

        font-size: 50px;

    }

    .hero-trust-item {

        padding: 20px;

    }

}


@media (max-width: 900px) {

    .hero-carousel {

        min-height: 850px;

    }

    .hero-carousel-container {

        min-height: 850px;

        align-items: flex-start;

        padding-top: 90px;

    }

    .hero-carousel-content {

        padding-bottom: 170px;

    }

    .hero-carousel-title {

        font-size: 44px;

    }

    .hero-trust-panel {

        width:
            calc(100% - 30px);

    }

    .hero-trust-item {

        min-height: 105px;

        padding: 18px;

        gap: 10px;

    }

    .hero-trust-icon {

        width: 42px;

        height: 42px;

        font-size: 17px;

    }

    .hero-trust-content {

        gap: 7px;

    }

    .hero-trust-content > strong {

        font-size: 21px;

    }

    .hero-trust-content b {

        font-size: 11px;

    }

}


@media (max-width: 640px) {

    .hero-carousel {

        min-height: 920px;

    }

    .hero-carousel-container {

        min-height: 920px;

        padding-top: 65px;

    }

    .hero-carousel-content {

        padding-bottom: 240px;

    }

    .hero-carousel-title {

        font-size: 34px;

        letter-spacing: -0.5px;

    }

    .hero-carousel-subtitle {

        font-size: 16px;

    }

    .hero-carousel-description {

        font-size: 13.5px;

    }

    .hero-carousel-actions {

        flex-direction: column;

    }

    .hero-btn {

        width: 100%;

    }

    .hero-carousel-arrow {

        width: 42px;

        height: 42px;

        font-size: 29px;

    }

    .hero-carousel-prev {

        left: 10px;

    }

    .hero-carousel-next {

        right: 10px;

    }

    .hero-carousel-indicators {

        left: 20px;

        bottom: 205px;

    }

    .hero-trust-panel {

        bottom: 0;

        width: 100%;

        grid-template-columns: 1fr;

        border-radius: 18px 18px 0 0;

    }

    .hero-trust-item {

        min-height: 85px;

        border-right: none;

        border-bottom:
            1px solid #D8E5F2;

    }

    .hero-trust-item:last-child {

        border-bottom: none;

    }

}

/* =========================================================
   8. ABOUT PREVIEW
   ========================================================= */

.about-preview {

    background: #FFFFFF;

}


.about-grid {
    display: grid;
    grid-template-columns:
        1.05fr
        0.95fr;
    align-items: center;
    gap: 80px;
}

.about-content {
    grid-column: 1;
    grid-row: 1;
}

.about-image-wrapper {
    grid-column: 2;
    grid-row: 1;
}


/* =========================================================
   9. ABOUT IMAGE
   ========================================================= */

.about-image-wrapper {

    position: relative;

}


.about-image {

    width: 100%;

    height: 480px;

    object-fit: cover;

    border-radius:
        24px
        90px
        24px
        24px;

    box-shadow:
        0 20px 50px rgba(18, 59, 112, 0.12);

}


.about-image-wrapper::before {

    content: "";

    position: absolute;

    z-index: -1;

    left: -20px;

    bottom: -20px;

    width: 180px;

    height: 180px;

    border-radius: 20px;

    border: 2px solid #D8E5F2;

}


.about-experience-card {

    position: absolute;

    right: -25px;

    bottom: 35px;

    display: flex;

    flex-direction: column;

    min-width: 190px;

    padding: 18px 20px;

    background: #123B70;

    border-radius: 14px;

    color: #FFFFFF;

    box-shadow:
        0 15px 35px rgba(18, 59, 112, 0.22);

}


.about-experience-card strong {

    font-size: 22px;

    font-weight: 800;

}


.about-experience-card span {

    margin-top: 4px;

    color: rgba(255, 255, 255, 0.70);

    font-size: 11px;

}


/* =========================================================
   10. ABOUT CONTENT
   ========================================================= */

.about-content {

    max-width: 620px;

}


.about-content .section-title {

    margin-bottom: 20px;

    font-size: clamp(
        28px,
        3.2vw,
        40px
    );

}


.about-content p {

    margin-bottom: 18px;

    color: #5B6B82;

    font-size: 15px;

    line-height: 1.85;

}


.about-content .text-link {

    margin-top: 12px;

}


/* =========================================================
   11. STATISTICS
   ========================================================= */

.stats-section {

    padding: 0;

    background: #123B70;

}


.stats-grid {

    display: grid;

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

}


.stat-card {

    min-height: 170px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    padding: 30px;

    border-right:
        1px solid rgba(255, 255, 255, 0.12);

    text-align: center;

}


.stat-card:last-child {

    border-right: none;

}


.stat-card strong {

    margin-bottom: 8px;

    color: #FFFFFF;

    font-size: 30px;

    font-weight: 800;

    line-height: 1.1;

}


.stat-card span {

    color: rgba(255, 255, 255, 0.65);

    font-size: 12px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 0.8px;

}


   ========================================================= */
/* =========================================================
   12. BIOMEDICAL CHALLENGE / SOLUTION SECTION
========================================================= */

.biomedical-challenge-section {
    position: relative;
    overflow: hidden;

    padding: 100px 0;

    background: #F7FAFD;

    color: #172B4D;
}


/* =========================================================
   BACKGROUND DECORATION
========================================================= */

.biomedical-challenge-section::before {
    content: "";

    position: absolute;

    top: -180px;
    right: -120px;

    width: 420px;
    height: 420px;

    border: 1px solid
        rgba(47, 128, 237, 0.10);

    border-radius: 50%;

    pointer-events: none;
}

.biomedical-challenge-section::after {
    content: "";

    position: absolute;

    left: -120px;
    bottom: -220px;

    width: 420px;
    height: 420px;

    border: 1px solid
        rgba(47, 128, 237, 0.08);

    border-radius: 50%;

    pointer-events: none;
}


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

.biomedical-challenge-container {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(430px, 0.92fr);

    align-items: center;

    gap: 70px;
}


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

.biomedical-challenge-content {
    width: 100%;
    max-width: 780px;
}


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

.biomedical-section-label {
    display: inline-flex;

    align-items: center;

    gap: 11px;

    margin-bottom: 22px;

    color: #32C48D;

    font-size: 12px;

    font-weight: 800;

    line-height: 1;

    letter-spacing: 1.3px;

    text-transform: uppercase;
}

.biomedical-section-label::before {
    content: "";

    width: 30px;
    height: 2px;

    background: #32C48D;
}


/* =========================================================
   MAIN TITLE
========================================================= */

.biomedical-challenge-title {
    max-width: 780px;

    margin: 0 0 24px;

    color: #123B70;

    font-size: clamp(
        28px,
        3vw,
        42px
    );

    font-weight: 800;

    line-height: 1.15;

    letter-spacing: -0.5px;

    text-transform: uppercase;
}

.biomedical-challenge-title strong {
    display: block;

    margin-top: 7px;

    color: #2F80ED;

    font-weight: 800;
}


/* =========================================================
   INTRO TEXT
========================================================= */

.biomedical-challenge-intro {
    margin: 0 0 16px;

    color: #5B6B82;

    font-size: 15px;

    font-weight: 600;

    line-height: 1.6;
}


/* =========================================================
   CHALLENGE LIST
========================================================= */

.biomedical-challenge-list {
    display: grid;

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

    gap: 0 32px;
}


/* =========================================================
   CHALLENGE COLUMN
========================================================= */

.biomedical-challenge-column {
    border-top:
        1px solid #D8E5F2;
}


/* =========================================================
   CHALLENGE ITEM
========================================================= */

.biomedical-challenge-item {
    display: flex;

    align-items: center;

    gap: 14px;

    min-height: 66px;

    padding: 10px 0;

    border-bottom:
        1px solid #D8E5F2;

    color: #172B4D;

    font-size: 14px;

    font-weight: 500;

    line-height: 1.45;

    transition:
        transform 0.25s ease,
        color 0.25s ease;
}

.biomedical-challenge-item:hover {
    color: #123B70;

    transform: translateX(5px);
}


/* =========================================================
   NUMBER
========================================================= */

.biomedical-challenge-icon {
    flex-shrink: 0;

    width: 38px;
    height: 38px;

    display: flex;

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

    border: 1.5px solid #2F80ED;

    border-radius: 50%;

    background: #FFFFFF;

    color: #1769C2;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.3px;
}

.biomedical-challenge-icon.blue {
    border-color: #2F80ED;

    color: #1769C2;
}


/* =========================================================
   RIGHT SOLUTION PANEL
========================================================= */

.biomedical-solution-panel {
    width: 100%;
    max-width: 570px;

    margin-left: auto;
}


/* =========================================================
   WHAT IF CARD
========================================================= */

.biomedical-question-card {
    position: relative;

    margin: 0 0 34px;

    padding: 50px 35px 34px;

    border:
        1px solid #D8E5F2;

    border-radius: 22px;

    background: #FFFFFF;

    box-shadow:
        0 18px 45px
        rgba(18, 59, 112, 0.08);

    text-align: center;
}


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

.biomedical-question-mark {
    position: absolute;

    top: -27px;
    left: 50%;

    width: 54px;
    height: 54px;

    display: flex;

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

    transform: translateX(-50%);

    border:
        2px solid #2F80ED;

    border-radius: 50%;

    background: #FFFFFF;

    color: #2F80ED;

    font-size: 27px;

    font-weight: 800;

    box-shadow:
        0 0 0 8px
        rgba(47, 128, 237, 0.08);
}


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

.biomedical-question-card h3 {
    margin: 0;

    color: #172B4D;

    font-size: clamp(
        20px,
        2vw,
        26px
    );

    font-weight: 800;

    line-height: 1.2;

    letter-spacing: -0.3px;

    text-transform: uppercase;
}

.biomedical-question-card h3 strong {
    display: block;

    margin: 5px 0;

    color: #2F80ED;

    font-weight: 800;
}


/* =========================================================
   VALUE STATEMENTS
========================================================= */

.biomedical-value {
    display: flex;

    align-items: center;

    gap: 20px;

    padding: 8px 0;
}


/* =========================================================
   VALUE ICON
========================================================= */

.biomedical-value-icon {
    flex-shrink: 0;

    width: 62px;
    height: 62px;

    display: flex;

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

    border-radius: 50%;

    background: #EAF3FF;

    color: #2F80ED;

    font-size: 25px;

    font-weight: 700;
}

.biomedical-value-icon.green {
    background:
        rgba(50, 196, 141, 0.12);

    color: #32C48D;
}


/* =========================================================
   VALUE TEXT
========================================================= */

.biomedical-value-content {
    display: flex;

    flex-direction: column;

    gap: 3px;
}

.biomedical-value-content span {
    color: #123B70;

    font-size: 12px;

    font-weight: 800;

    line-height: 1.2;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.biomedical-value-content strong {
    color: #2F80ED;

    font-size: clamp(
        17px,
        1.6vw,
        22px
    );

    font-weight: 800;

    line-height: 1.2;

    letter-spacing: -0.2px;

    text-transform: uppercase;
}


/* Second statement */

.biomedical-value-icon.green
~ .biomedical-value-content strong {
    color: #32C48D;
}


/* =========================================================
   DIVIDER
========================================================= */

.biomedical-divider {
    width: 100%;

    height: 1px;

    margin: 20px 0;

    background: #D8E5F2;
}


/* =========================================================
   CTA BUTTON
========================================================= */

.biomedical-services-btn {
    display: flex;

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

    width: 100%;

    min-height: 58px;

    margin-top: 30px;

    padding: 0 22px;

    border: none;

    border-radius: 9px;

    background: #2F80ED;

    color: #FFFFFF;

    text-decoration: none;

    font-size: 13px;

    font-weight: 800;

    line-height: 1;

    letter-spacing: 0.7px;

    text-transform: uppercase;

    box-shadow:
        0 12px 30px
        rgba(47, 128, 237, 0.25);

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

.biomedical-services-btn:hover {
    transform: translateY(-3px);

    background: #1769C2;

    box-shadow:
        0 16px 35px
        rgba(23, 105, 194, 0.28);
}

.biomedical-services-btn strong {
    font-size: 25px;

    font-weight: 400;

    line-height: 1;

    transition:
        transform 0.25s ease;
}

.biomedical-services-btn:hover strong {
    transform: translateX(5px);
}


/* =========================================================
   RESPONSIVE — 1100px
========================================================= */

@media (max-width: 1100px) {

    .biomedical-challenge-container {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .biomedical-challenge-content {
        max-width: 900px;
    }

    .biomedical-solution-panel {
        max-width: 720px;

        margin: 0 auto;
    }

    .biomedical-challenge-title {
        max-width: 850px;
    }
}


/* =========================================================
   RESPONSIVE — 992px
========================================================= */

@media (max-width: 992px) {

    .biomedical-challenge-section {
        padding: 85px 0;
    }

    .biomedical-challenge-title {
        font-size: 38px;
    }

    .biomedical-challenge-container {
        gap: 55px;
    }
}


/* =========================================================
   RESPONSIVE — 768px
========================================================= */

@media (max-width: 768px) {

    .biomedical-challenge-section {
        padding: 75px 0;
    }

    .biomedical-challenge-title {
        font-size: 34px;

        letter-spacing: -0.5px;
    }

    .biomedical-challenge-list {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .biomedical-question-card {
        padding:
            48px
            28px
            32px;
    }

    .biomedical-question-card h3 {
        font-size: 23px;
    }
}


/* =========================================================
   RESPONSIVE — 640px
========================================================= */

@media (max-width: 640px) {

    .biomedical-challenge-section {
        padding: 64px 0;
    }

    .biomedical-section-label {
        margin-bottom: 18px;

        font-size: 10px;

        letter-spacing: 1px;
    }

    .biomedical-section-label::before {
        width: 24px;
    }

    .biomedical-challenge-title {
        margin-bottom: 20px;

        font-size: 28px;

        line-height: 1.15;

        letter-spacing: -0.3px;
    }

    .biomedical-challenge-intro {
        font-size: 13px;
    }

    .biomedical-challenge-item {
        min-height: 62px;

        gap: 12px;

        font-size: 13px;
    }

    .biomedical-challenge-icon {
        width: 34px;
        height: 34px;

        font-size: 9px;
    }

    .biomedical-question-card {
        margin-bottom: 30px;

        padding:
            43px
            20px
            28px;

        border-radius: 18px;
    }

    .biomedical-question-mark {
        width: 46px;
        height: 46px;

        top: -23px;

        font-size: 22px;
    }

    .biomedical-question-card h3 {
        font-size: 20px;

        letter-spacing: -0.3px;
    }

    .biomedical-value {
        gap: 14px;
    }

    .biomedical-value-icon {
        width: 52px;
        height: 52px;

        font-size: 21px;
    }

    .biomedical-value-content span {
        font-size: 10px;
    }

    .biomedical-value-content strong {
        font-size: 16px;
    }

    .biomedical-divider {
        margin: 18px 0;
    }

    .biomedical-services-btn {
        min-height: 55px;

        margin-top: 27px;

        padding: 0 17px;

        font-size: 10px;
    }

    .biomedical-services-btn strong {
        font-size: 22px;
    }
}


/* =========================================================
   RESPONSIVE — 400px
========================================================= */

@media (max-width: 400px) {

    .biomedical-challenge-title {
        font-size: 24px;
    }

    .biomedical-question-card h3 {
        font-size: 19px;
    }

    .biomedical-value-content strong {
        font-size: 16px;
    }

    .biomedical-services-btn {
        font-size: 9px;
    }
}
/* =========================================================
   17. WHY CHOOSE US
   ========================================================= */

.why-choose-us {

    background: #FFFFFF;

}


.why-choose-us .section-title {

    font-size: clamp(
        28px,
        3.2vw,
        40px
    );

}


/* =========================================================
   18. BENEFITS GRID
   ========================================================= */

.benefits-grid {

    display: grid;

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

    gap: 20px;

}


.benefit-card {

    padding: 30px 25px;

    background: #F7FAFD;

    border: 1px solid #D8E5F2;

    border-radius: 16px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;

}


.benefit-card:hover {

    transform: translateY(-6px);

    background: #FFFFFF;

    box-shadow:
        0 15px 35px rgba(18, 59, 112, 0.08);

}


/* =========================================================
   19. BENEFIT ICON
   ========================================================= */

.benefit-icon {

    width: 50px;

    height: 50px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 20px;

    border-radius: 12px;

    background: #EAF3FF;

    color: #2F80ED;

    font-size: 20px;

    font-weight: 800;

}


.benefit-card h3 {

    margin-bottom: 10px;

    color: #123B70;

    font-size: 18px;

    font-weight: 700;

}


.benefit-card p {

    color: #5B6B82;

    font-size: 14px;

    line-height: 1.7;

}


/* =========================================================
   20. CTA SECTION
   ========================================================= */

.cta-section {

    padding: 100px 0;

    background:
        linear-gradient(
            135deg,
            #123B70 0%,
            #1769C2 100%
        );

}


.cta-content {

    max-width: 850px;

    margin: 0 auto;

    text-align: center;

}


.cta-content .section-label {

    color: #A9D1FF;

}


.cta-content h2 {

    margin-bottom: 18px;

    color: #FFFFFF;

    font-size: clamp(
        28px,
        3.2vw,
        40px
    );

    font-weight: 800;

    line-height: 1.2;

}


.cta-content h2 span {

    color: #8FC4FF;

}


.cta-content p {

    max-width: 680px;

    margin: 0 auto 30px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 15px;

    line-height: 1.8;

}


.cta-actions {

    display: flex;

    justify-content: center;

    align-items: center;

    flex-wrap: wrap;

    gap: 14px;

}


/* =========================================================
   21. RESPONSIVE — LARGE TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .about-grid {

        gap: 50px;

    }


    .benefits-grid {

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

    }

}


/* =========================================================
   22. RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 992px) {

    .about-grid {

        grid-template-columns: 1fr;

    }


    .about-image-wrapper {

        max-width: 650px;

        margin: 0 auto;

    }


    .about-content {

        max-width: 750px;

        margin: 0 auto;

        text-align: center;

    }


    .stats-grid {

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

    }


    .stat-card:nth-child(2) {

        border-right: none;

    }


    .stat-card:nth-child(1),
    .stat-card:nth-child(2) {

        border-bottom:
            1px solid rgba(255, 255, 255, 0.12);

    }

}


/* =========================================================
   23. RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 640px) {

    .about-image {

        height: 360px;

        border-radius:
            20px
            60px
            20px
            20px;

    }


    .about-experience-card {

        right: 15px;

        bottom: 20px;

        min-width: 165px;

        padding: 14px 16px;

    }


    .about-experience-card strong {

        font-size: 18px;

    }


    .about-experience-card span {

        font-size: 9px;

    }


    .stats-grid {

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

    }


    .stat-card {

        min-height: 140px;

        padding: 20px 10px;

    }


    .stat-card strong {

        font-size: 24px;

    }


    .stat-card span {

        font-size: 9px;

    }


    .benefits-grid {

        grid-template-columns: 1fr;

    }


    .benefit-card {

        padding: 25px 22px;

    }


    .cta-section {

        padding: 70px 0;

    }


    .cta-content h2 {

        font-size: 30px;

    }


    .cta-actions {

        flex-direction: column;

    }


    .cta-actions .btn {

        width: 100%;

    }

}


/* =========================================================
   24. EXTRA SMALL DEVICES
   ========================================================= */

@media (max-width: 400px) {

    .stat-card strong {

        font-size: 22px;

    }

}
/* =========================================================
   25. FOOTER
========================================================= */

.site-footer {
    width: 100%;
}


/* =========================================================
   FOOTER GRID
========================================================= */

.footer-grid {
    display: grid;

    grid-template-columns:
        1.35fr
        0.8fr
        1.05fr
        1.05fr;

    column-gap: 50px;

    align-items: start;
}


/* =========================================================
   FOOTER COMPANY
========================================================= */

.footer-company {
    max-width: 360px;
}


/* BRAND */

.footer-brand {
    display: inline-flex;
    align-items: center;

    gap: 15px;

    margin-bottom: 22px;

    text-decoration: none;
}

.footer-brand img {
    width: 62px;
    height: auto;

    object-fit: contain;
}

.footer-brand > div {
    display: flex;
    flex-direction: column;
}

.footer-brand strong {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.05;
}

.footer-brand span {
    margin-top: 5px;

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

    letter-spacing: 1px;
    text-transform: uppercase;
}


/* =========================================================
   COMPANY TEXT
========================================================= */

.footer-company p {
    margin: 0;

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

.footer-company .footer-tagline {
    max-width: 360px;

    margin-bottom: 18px;
}

.footer-company .footer-partner-message {
    max-width: 360px;

    margin: 0;
}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.footer-column {
    min-width: 0;
}


/* HEADINGS */

.footer-column h3 {
    margin: 0 0 22px;

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

    line-height: 1.2;
}


/* LIST */

.footer-column ul {
    display: flex;
    flex-direction: column;

    gap: 16px;

    margin: 0;
    padding: 0;

    list-style: none;
}


/* LIST ITEMS */

.footer-column li {
    margin: 0;
    padding: 0;
}


/* LINKS */

.footer-column a {
    display: inline-block;

    font-size: 14px;
    line-height: 1.45;

    text-decoration: none;

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.footer-column a:hover {
    transform: translateX(4px);
}


/* =========================================================
   CONTACT US
========================================================= */

.footer-contact {
    display: flex;
    flex-direction: column;

    gap: 20px;

    margin: 0;
    padding: 0;

    list-style: none;
}


/* CONTACT ITEM */

.footer-contact li {
    display: flex !important;

    flex-direction: row !important;

    align-items: flex-start;

    gap: 12px;

    margin: 0;
    padding: 0;
}


/* =========================================================
   CONTACT ICON
========================================================= */

.footer-contact-icon {
    flex: 0 0 20px;

    width: 20px;
    height: 20px;

    display: flex;

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

    margin-top: 2px;

    color: rgba(255, 255, 255, 0.65);
}

.footer-contact-icon svg {
    width: 18px;
    height: 18px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.7;

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


/* =========================================================
   CONTACT CONTENT
========================================================= */

.footer-contact li > div {
    flex: 1;

    min-width: 0;

    display: flex;

    flex-direction: column;

    gap: 4px;
}


/* CONTACT LABEL */

.footer-contact li > div > span {
    display: block;

    margin: 0;

    color: rgba(255, 255, 255, 0.55);

    font-size: 11px;

    font-weight: 700;

    line-height: 1.3;

    letter-spacing: 0.8px;

    text-transform: uppercase;
}


/* CONTACT VALUE */

.footer-contact a {
    display: inline-block;

    margin: 0;

    color: rgba(255, 255, 255, 0.85);

    font-size: 14px;

    font-weight: 400;

    line-height: 1.5;

    text-decoration: none;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.footer-contact a:hover {
    color: #FFFFFF;

    transform: translateX(2px);
}


/* ADDRESS */

.footer-contact p {
    margin: 0;

    color: rgba(255, 255, 255, 0.85);

    font-size: 13px;

    line-height: 1.6;
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
    margin-top: 42px;
}

.footer-bottom .container {
    min-height: 68px;

    display: flex;

    align-items: center;
}

.footer-bottom p {
    margin: 0;

    font-size: 12px;

    line-height: 1.5;
}


/* =========================================================
   RESPONSIVE — 1100px
========================================================= */

@media (max-width: 1100px) {

    .footer-grid {
        grid-template-columns:
            1.3fr
            0.8fr
            1fr
            0.95fr;

        column-gap: 35px;
    }

}


/* =========================================================
   RESPONSIVE — 900px
========================================================= */

@media (max-width: 900px) {

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

        row-gap: 40px;
        column-gap: 40px;
    }

    .footer-company {
        max-width: 100%;
    }

    .footer-company .footer-tagline,
    .footer-company .footer-partner-message {
        max-width: 500px;
    }

}


/* =========================================================
   RESPONSIVE — 640px
========================================================= */

@media (max-width: 640px) {

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

        row-gap: 35px;
    }

    .footer-brand {
        margin-bottom: 20px;
    }

    .footer-brand img {
        width: 55px;
    }

    .footer-brand strong {
        font-size: 22px;
    }

    .footer-column h3 {
        margin-bottom: 18px;

        font-size: 17px;
    }

    .footer-column ul {
        gap: 13px;
    }

    .footer-contact {
        gap: 16px;
    }

    .footer-bottom {
        margin-top: 35px;
    }

    .footer-bottom .container {
        min-height: 65px;
    }

}


/* =========================================================
   RESPONSIVE — 400px
========================================================= */

@media (max-width: 400px) {

    .footer-grid {
        row-gap: 30px;
    }

    .footer-brand img {
        width: 50px;
    }

    .footer-brand strong {
        font-size: 20px;
    }

    .footer-brand span {
        font-size: 9px;
    }

    .footer-company p,
    .footer-column a {
        font-size: 13px;
    }

    .footer-bottom p {
        font-size: 11px;
    }

}

/* =========================================================
   ABOUT HMS — FULL RESPONSIVE FIX
   ========================================================= */

/* Large tablets / small laptops */
@media (max-width: 1100px) {

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

    .about-image {
        height: 420px;
    }

    .about-experience-card {
        right: -15px;
        bottom: 25px;
    }

    .about-content {
        max-width: 100%;
    }

    .about-content .section-title {
        font-size: clamp(30px, 3.5vw, 38px);
    }
}


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

@media (max-width: 992px) {

    .about-preview {
        padding: 80px 0;
    }

    .about-grid {
        display: flex;
        flex-direction: column;
        gap: 55px;
        width: 100%;
    }

    /* IMAGE FIRST */
    .about-image-wrapper {
        order: 1;
        width: 100%;
        max-width: 680px;
        margin: 0 auto;
    }

    .about-image {
        width: 100%;
        height: 420px;
        display: block;
        object-fit: cover;
    }

    .about-content {
        order: 2;
        width: 100%;
        max-width: 720px;
        margin: 0 auto;
        text-align: center;
    }

    .about-content .section-title {
        font-size: clamp(30px, 4vw, 38px);
        line-height: 1.15;
    }

    .about-content p {
        font-size: 15px;
        line-height: 1.8;
    }

    .about-content .text-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .about-experience-card {
        right: 20px;
        bottom: 25px;
    }
}


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

@media (max-width: 640px) {

    .about-preview {
        padding: 60px 0;
    }

    .about-grid {
        gap: 42px;
    }

    /* IMAGE */
   
.about-image-wrapper {
    padding:8px;
    padding: 12px;
    border: 1px solid #D8E5F2;
    border-radius: 24px;
    background: #FFFFFF;
}

.about-content {
     padding: 25px 22px;
    border: 1px solid #D8E5F2;
    border-radius: 20px;
    background: #FFFFFF;
    box-shadow: 0 12px 35px rgba(18, 59, 112, 0.06);
}

    .about-image {
        display:block;
        width: 100%;
        height: 330px;
        border-radius: 20px 55px 20px 20px;
        object-fit: cover;
    }

    /* Remove large decorative shape from overflowing */
    .about-image-wrapper::before {
        left: -8px;
        bottom: -10px;
        width: 100px;
        height: 100px;
        border-radius: 14px;
    }

    /* EXPERIENCE CARD */
    .about-experience-card {
        right: 10px;
        bottom: 15px;
        min-width: 150px;
        max-width: 175px;
        padding: 12px 14px;
        border-radius: 12px;
    }

    .about-experience-card strong {
        font-size: 17px;
        line-height: 1.2;
    }

    .about-experience-card span {
        font-size: 9px;
        line-height: 1.4;
    }

    /* CONTENT */
    .about-content {
        width: 100%;
        max-width: 100%;
        text-align: left;
    }

    .about-content .section-title {
        margin-bottom: 18px;
        font-size: 29px;
        line-height: 1.18;
        letter-spacing: -0.3px;
    }

    .about-content p {
        margin-bottom: 16px;
        font-size: 14px;
        line-height: 1.75;
    }

    .about-content .text-link {
        margin-top: 8px;
        font-size: 13px;
    }
}


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

@media (max-width: 400px) {

    .about-preview {
        padding: 50px 0;
    }

    .about-grid {
        gap: 35px;
    }

    .about-image {
        height: 280px;
        border-radius: 18px 60px 18px 18px;
    }

    .about-experience-card {
        right: 8px;
        bottom: 12px;
        min-width: 135px;
        max-width: 155px;
        padding: 10px 12px;
    }

    .about-experience-card strong {
        font-size: 15px;
    }

    .about-experience-card span {
        font-size: 8px;
    }

    .about-content .section-title {
        font-size: 26px;
    }

    .about-content p {
        font-size: 13.5px;
        line-height: 1.7;
    }
}