/* Desktop Default */
.about-hero {
    min-height: 200px;
    padding: 60px 0;
    display: flex;
    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(32, 40, 98, 0.92) 0%,
            rgba(4, 8, 60, 0.96) 100%
        ),
        url("/image/why-choose-image-removebg-preview.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-title {
    font-size: 52px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #fff;
}

/* Tablet View */
@media (max-width: 991px) {
    .about-hero {
        padding: 50px 0;
        text-align: center;
    }

    .about-title {
        font-size: 38px;
    }
}

/* Mobile View */
@media (max-width: 576px) {
    .about-hero {
        padding: 40px 15px;
        min-height: auto;
        text-align: center;
    }

    .about-title {
        font-size: 26px;
        line-height: 1.3;
    }

    .breadcrumb {
        font-size: 14px;
    }
}

/* Default (Desktop) */
.dental-section {
    background: #f5f7f9;
}

.tag {
    color: #1d4ed8;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 14px;
}

.main-title {
    font-size: 48px;
    font-weight: 700;
    color: #222;
    line-height: 1.2;
}

.feature-list li {
    margin-bottom: 12px;
    font-size: 16px;
}

.feature-list i {
    color: #1d4ed8;
    margin-right: 8px;
}
.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #1d4ed8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.custom-btn {
    background: #1d4ed8;
    color: #fff;
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
}

.custom-btn:hover {
    background: #1d4ed8;
    color: #fff;
}

.image-box {
    width: 100% !important;
    height: 400px !important;
    border-radius: 20px !important;
    overflow: hidden !important;
}

.image-box img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
}

/* 📱 Tablet View */
@media (max-width: 991px) {
    .main-title {
        font-size: 36px;
    }

    .image-box img {
        height: 400px;
    }
}

/* 📱 Mobile View */
@media (max-width: 576px) {
    .main-title {
        font-size: 28px;
        line-height: 1.3;
    }

    .tag {
        font-size: 12px;
    }

    .feature-list li {
        font-size: 14px;
    }

    .custom-btn {
        width: 100%;
        text-align: center;
    }

    .image-box img {
        height: 280px;
        border-radius: 15px;
    }
}

/* SECTION */
.help-section {
    background: #f5f7f9;
}

/* TAG */
.tag {
    color: #1d4ed8;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 14px;
}

/* TITLE */
.main-title {
    font-size: 46px;
    font-weight: 700;
    color: #222;
    line-height: 1.2;
}

/* TEXT */
.text-muted {
    font-size: 16px;
}

/* IMAGE */
.help-img img {
    border-radius: 25px;
    width: 100%;
    height: 420px;
    object-fit: cover;
}

/* FEATURE BOX */
.feature-box {
    background: #1d4ed8;
    color: #fff;
    padding: 18px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    transition: 0.3s;
}

.feature-box i {
    font-size: 18px;
}

.feature-box:hover {
    background: #1d4ed8;
}

/* TABLET */
@media (max-width: 991px) {
    .main-title {
        font-size: 34px;
    }

    .help-img img {
        height: 300px;
    }
}

/* MOBILE */
@media (max-width: 576px) {
    .help-section {
        padding: 10px 0;
        text-align: start;
    }

    .main-title {
        font-size: 26px;
    }

    .tag {
        font-size: 12px;
    }

    .text-muted {
        font-size: 14px;
    }

    .feature-box {
        justify-content: center;
        text-align: center;
        font-size: 14px;
        padding: 14px;
    }

    .help-img img {
        height: 250px;
        margin-top: 20px;
        border-radius: 15px;
    }
}
