* {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
}


.hero-section {
    min-height: 100vh;
}

.hero-image {
    background-image: url("../images/Hero section.webp");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.55);
}

.hero-mobile-image {
    width: 100%;
    height: 300px;
    background-image: url("../images/moblie.webp");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

@media (min-width: 992px) {
    .hero-section .container {
        position: relative;
        z-index: 2;
    }
}

.section-label {
    color: #0d6efd;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 3px solid #0d6efd;
    padding-bottom: 4px;
    display: inline-block;
}

.feature-wrapper {
    background: #eef8fd;
    border-radius: 24px;
    padding: 28px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
}

.feature-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1293e6;
    font-size: 28px;
    flex-shrink: 0;
    background: #fff;
}

.feature-item h6 {
    font-size: 1.25rem;
    color: #222;
}

.feature-item p {
    margin-top: 3px;
    font-size: 1.1rem;
    color: #222;
    line-height: 1.4;
}

.feature-divider {
    width: 1px;
    align-self: stretch;
    background: #d5dde4;
}

.solutions-section {
    background: #fff;
}

.solution-timeline {
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #5f5f5f;
    transform: translateX(-50%);
}

.solution-box {
    background: #fff;
    border: 2px solid #202020;
    border-radius: 24px;
    padding: 18px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: .3s;
}

.solution-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.solution-icon {
    width: 56px;
    height: 56px;
    background: #e8f6ff;
    color: #0d8ce9;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    flex-shrink: 0;
}

.solution-box h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.solution-box p {
    margin: 0;
    color: #666;
    font-size: 15px;
    line-height: 1.45;
}

.doctor-img img {
    display: block;
}

.why-choose {
    background: #fff;
}

.slider-row {
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}

.slider-row::-webkit-scrollbar {
    display: none;
}

.feature-card {
    border: 2px solid #1d1d1d;
    transition: .3s;
    min-height: 170px;
    background: #f8f9fa;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 .75rem 1.5rem rgba(0, 0, 0, .15);
}

.feature-img {
    width: 90px;
    height: 90px;
    border-radius: 14px;
    object-fit: cover;
    flex-shrink: 0;
}

.digital-box {
    background: linear-gradient(135deg, #f9fcff, #eef6ff);
    border-radius: 30px;
    padding: 60px;
    position: relative;
    overflow: hidden;
    background-image: url("../images/ctasection.webp");
    background-size: cover;
    background-position: center;
}

.digital-box::before {
    content: "";
    position: absolute;
    left: -150px;
    bottom: -120px;
    width: 500px;
    height: 500px;
    background: rgba(13, 110, 253, .08);
    border-radius: 50%;
}

.digital-box::after {
    content: "";
    position: absolute;
    right: -200px;
    top: -200px;
    width: 500px;
    height: 500px;
    background: rgba(13, 110, 253, .05);
    border-radius: 50%;
}

.digital-box>* {
    position: relative;
    z-index: 2;
}

.title-line {
    width: 70px;
    height: 3px;
    background: #0d6efd;
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #eaf5ff;
    color: #0d6efd;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    margin: auto;
}

.icon-circle i {
    line-height: 1;
}


@media (max-width: 991.98px) {
    .hero-section {
        min-height: auto;
    }

    .feature-wrapper {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        gap: 28px;
    }

    .feature-item {
        width: 100%;
    }

    .timeline-line {
        display: none;
    }

    .solution-box {
        margin-bottom: 20px;
    }

    .digital-box {
        padding: 40px;
        text-align: center;
    }

    .title-line {
        margin: auto;
    }
}

@media (max-width: 767.98px) {
    .display-5 {
        font-size: 2rem;
    }

    .solution-box {
        padding: 15px;
        gap: 14px;
    }

    .solution-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .solution-box h5 {
        font-size: 17px;
    }

    .solution-box p {
        font-size: 14px;
    }

    .digital-box {
        padding: 30px 20px;
    }

    .icon-circle {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }

    .feature-card {
        min-height: auto;
    }

    .feature-img {
        width: 75px;
        height: 75px;
    }
}

@media (max-width: 575.98px) {
    .feature-wrapper {
        padding: 20px;
        border-radius: 18px;
    }

    .feature-item {
        gap: 14px;
    }

    .feature-icon-circle {
        width: 52px;
        height: 52px;
        font-size: 24px;
    }

    .feature-item h6 {
        font-size: 1rem;
    }

    .feature-item p {
        font-size: .9rem;
    }
}

.hero-image {
    background-image: url("../images/Hero section.webp");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
}

@media (max-width: 991.98px) {
    .hero-image {
        background-image: url("../images/moblie.webp");
        background-position: center;
        background-size: cover;
    }
}

#whyChooseCarousel .carousel-control-prev,
#whyChooseCarousel .carousel-control-next {
    width: 5%;
}

#whyChooseCarousel .carousel-control-prev-icon,
#whyChooseCarousel .carousel-control-next-icon {
    background-size: 60% 60%;
    background-position: center;
}

@media (max-width: 767.98px) {

    #whyChooseCarousel .carousel-control-prev,
    #whyChooseCarousel .carousel-control-next {
        width: 12%;
    }
}