body {
    background-color: #FAFAFA;
}

.join-us {
    color: #1DAC8E;
    font-family: "CuristicBold";
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 20px;
}

/* ── Hero banner ─────────────────────────────────────────── */
.hero-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 0 0 32px 32px;
    margin-bottom: 0;
}

.hero-banner__img {
    display: block;
    width: 100%;
    height: 560px;
    object-fit: cover;
    object-position: center top;
}

.hero-banner__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.82) 45%, rgba(255, 255, 255, 0) 75%);
}

.hero-banner__content {
    max-width: 560px;
    padding-block: 48px;
}

html[dir="rtl"] .hero-banner__overlay {
    background: linear-gradient(to left, rgba(255, 255, 255, 0.82) 45%, rgba(255, 255, 255, 0) 75%);
}

/* ── Hero text ───────────────────────────────────────────── */
.first-head {
    color: #0a0a0a;
    font-family: "CuristicExtraBold";
    font-size: 44px;
    line-height: 64px;
    margin-bottom: 20px;
}

.first-head span {
    color: #1DAC8E;
}

.slog {
    color: #555555;
    font-family: "CuristicRegular";
    font-size: 22px;
    line-height: 34px;
    margin-bottom: 30px;
}

.explore-services-btn {
    color: #FFFFFF;
    font-family: "CuristicBold";
    font-size: 18px;
    line-height: 21.94px;
    background-color: #0974BA;
    padding: 14px 24px;
    border-radius: 14px;
    text-decoration: none;
    margin-inline-end: 15px;
}

.explore-more-btn {
    color: #0974BA;
    font-family: "CuristicBold";
    font-size: 18px;
    line-height: 21.94px;
    background-color: #FFFFFF;
    padding: 14px 24px;
    border-radius: 14px;
    text-decoration: none;
    border: 1px solid #0974BA;
}


.card-serv {
    background-color: #FFFFFF;
    border-radius: 24px;
    padding: 34px;
    box-shadow: 0px 14px 24px 0px #0000001A;
    height: 298px;
}

.card-serv img {
    width: 72px;
    height: 72px;
    background-color: #1DAC8E;
    padding: 11px;
    border-radius: 200px;
    margin-bottom: 20px;
}

.card-serv h3 {
    color: black;
    font-family: "CuristicBold";
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 20px;
}

.card-serv p {
    color: #737373;
    font-family: "CuristicRegular";
    font-size: 14px;
    line-height: 24px;
    margin-top: 20px;
    margin-bottom: 0px;
}

.card-serv div {
    background-color: #ECB558;
    width: 50px;
    height: 2px;
}

.padding-container {
    padding: 100px 0px;
}

.padding-container.bg-white {
    background-color: white;
}

.partners {
    color: black;
    font-family: "CuristicBold";
    font-size: 24px;
    line-height: 29.26px;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.partners-logo {
    display: block;
    width: 165px;
    max-width: 165px;
    height: auto;
    padding: 20px 10px;
    object-fit: contain;
}

.partners-logo--wide {
    width: 210px;
    max-width: 210px;
    padding: 16px 8px;
}

.partners-logo--square {
    width: 120px;
    max-width: 120px;
    height: 120px;
    object-fit: contain;
    padding: 10px;
}

.partners-marquee {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(to right,
            transparent 0%,
            #000 8%,
            #000 92%,
            transparent 100%);
    -webkit-mask-image: linear-gradient(to right,
            transparent 0%,
            #000 8%,
            #000 92%,
            transparent 100%);
}

.partners-marquee__track {
    display: flex;
    width: max-content;
    animation: partners-marquee-scroll 28s linear infinite;
}

.partners-marquee__group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.partners-marquee__item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
}

@keyframes partners-marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

html[dir="rtl"] .partners-marquee {
    mask-image: linear-gradient(to left,
            transparent 0%,
            #000 8%,
            #000 92%,
            transparent 100%);
    -webkit-mask-image: linear-gradient(to left,
            transparent 0%,
            #000 8%,
            #000 92%,
            transparent 100%);
}

html[dir="rtl"] .partners-marquee__track {
    animation-direction: reverse;
}

@media (prefers-reduced-motion: reduce) {
    .partners-marquee__track {
        animation: none;
        flex-wrap: wrap;
        width: 100%;
        justify-content: center;
    }

    .partners-marquee__group[aria-hidden="true"] {
        display: none;
    }

    .partners-marquee {
        mask-image: none;
        -webkit-mask-image: none;
    }
}

@media (max-width: 767px) {
    .partners-marquee__item {
        padding: 0 4px;
    }

    .partners-logo {
        width: 120px;
        max-width: 120px;
        padding: 16px 8px;
    }

    .partners-logo--wide {
        width: 160px;
        max-width: 160px;
        padding: 14px 6px;
    }
}

.number {
    color: black;
    font-family: "CuristicBold";
    font-size: 54px;
    line-height: 80px;
    margin-bottom: 0px;
}

.num-descrip {
    color: #B2B2B2;
    font-family: "CuristicBold";
    font-size: 18px;
    line-height: 24px;
}


.card-why-choose {
    background-color: #FFFFFF;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0px 14px 24px 0px #0000001A;
}

.card-why-choose.top {
    margin-top: 40px;
}

.card-why-choose img {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
}

.card-why-choose h3 {
    color: black;
    font-family: "CuristicBold";
    font-size: 16px;
    line-height: 19.5px;
    margin-bottom: 20px;
}

.card-why-choose p {
    color: #737373;
    font-family: "CuristicRegular";
    font-size: 14px;
    line-height: 17.07px;
    margin-top: 20px;
    margin-bottom: 0px;
}


.Blogs {
    color: black;
    font-family: "CuristicBold";
    font-size: 24px;
    line-height: 29.26px;
    margin-bottom: 40px;
}

.Blogs span:first-of-type {
    color: #1DAC8E;
    font-family: "CuristicExtraBold";
}

.Blogs span {
    font-family: "CuristicRegular";
}

.card-blogs {
    background-color: #FFFFFF;
    border-radius: 24px;
    box-shadow: 0px 14px 24px 0px #0000001A;
}

.card-blogs div {
    padding: 24px;
}

.card-blogs img {
    width: 100%;
    border-radius: 24px 24px 0px 0px;
    object-fit: cover;
}

.card-blogs hr {
    border: 2px solid #bcbcbc;
}

.card-blogs h3 {
    color: black;
    font-family: "CuristicSemiBold";
    font-size: 15px;
    line-height: 17.07px;
    margin-bottom: 20px;
}

.card-blogs h3 i {
    margin-inline-end: 10px;
}


.card-blogs h1 {
    color: black;
    font-family: "CuristicBold";
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-blogs p {
    color: #737373;
    font-family: "CuristicRegular";
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.card-blogs a {
    color: #0974BA !important;
    font-family: "CuristicBold";
    font-size: 16px;
    line-height: 19.5px;
    margin-bottom: 20px;
    text-decoration: none;
}

.card-blogs a i {
    margin-inline-start: 10px;
}

@media (max-width: 768px) {

    /* Tall enough to show doctor, positioned so his face+body is on the right */
    .hero-banner__img {
        height: 400px;
        object-position: 65% top;
    }

    /* Gradient fades left ~55% white → transparent, letting doctor show on right */
    .hero-banner__overlay {
        background: linear-gradient(to right, rgba(255, 255, 255, 0.90) 50%, rgba(255, 255, 255, 0.10) 78%, rgba(255, 255, 255, 0) 100%);
        align-items: center;
    }

    html[dir="rtl"] .hero-banner__overlay {
        background: linear-gradient(to left, rgba(255, 255, 255, 0.90) 50%, rgba(255, 255, 255, 0.10) 78%, rgba(255, 255, 255, 0) 100%);
    }

    .hero-banner__content {
        max-width: 65%;
        padding-block: 24px;
        padding-inline: 20px;
    }

    /* Smaller heading & slogan on tablet/mobile */
    .first-head {
        font-size: 26px;
        line-height: 38px;
        margin-bottom: 12px;
    }

    .slog {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 20px;
    }

    .explore-services-btn,
    .explore-more-btn {
        font-size: 14px;
        padding: 10px 16px;
    }
}

@media (max-width: 480px) {
    .hero-banner__img {
        height: 360px;
        object-position: 72% top;
    }

    .hero-banner__content {
        max-width: 60%;
        padding-inline: 16px;
    }

    .first-head {
        font-size: 22px;
        line-height: 32px;
        margin-bottom: 10px;
    }

    .slog {
        font-size: 13px;
        line-height: 20px;
        margin-bottom: 16px;
    }

    .explore-services-btn,
    .explore-more-btn {
        font-size: 13px;
        padding: 9px 14px;
    }

    .join-us {
        margin-bottom: 15px;
    }

    .card-serv {
        margin: 30px 10px 0px 10px;
    }

    .partners {
        font-size: 22px;
        margin-left: 10px;
        margin-right: 10px;
    }

    .padding-container {
        padding: 50px 0px;
    }

    .number {
        font-size: 45px;
    }

    .card-why-choose {
        /* margin-top: 25px; */
        margin: 10px;
    }

    .card-why-choose.top {
        margin-top: 25px;
    }

    .Blogs {
        font-size: 22px;
        margin-left: 10px;
        margin-bottom: 30px;
        margin-right: 10px;
    }

    .card-blogs {
        margin: 10px 10px 20px 10px;
    }

    .why-choose-row {
        margin-left: 0px;
        margin-right: 0px;
    }
}