
.mastalgia-treatment-cards {
    background: #f8fbff;
}

/* Heading */
.mastalgia-title {
    font-size: 2.5rem;
    color: #0a2a5e;
}

.mastalgia-title span {
    color: #0d6efd;
}

.mastalgia-desc {
    color: #6c757d;
    font-size: 1.05rem;
}

/* Card */
.treatment-card-box {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid silver;
    overflow: hidden;
    transition: 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
}


/* Image */
.card-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Content */
.card-content {
    padding: 20px;
}

.card-content h5 {
    color: #0a2a5e;
    margin-bottom: 10px;
}

.card-content ul {
    padding-left: 18px;
    margin: 0;
}

.card-content ul li {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 6px;
}

/* Responsive */
@media (max-width: 992px) {
    .mastalgia-title {
        font-size: 29px;
    }
}

@media (max-width: 768px) {
    .treatment-card-box {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .mastalgia-title {
        font-size: 1.6rem;
    }

    .mastalgia-desc {
        font-size: 0.95rem;
    }

    .card-img img {
        height: 180px;
    }
}

.treatment-options {
    background-color: #fdfeff;
}

.section-title {
    font-size: 35px;
    color: #0a2a5e;
}

.premium-badge {
    background: rgba(13, 110, 253, 0.08);
    color: #0d6efd;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Card Design */
.treatment-card {
    background: #ffffff;
    border: 1px solid #eef2f6;
    padding: 40px 30px;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.treatment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(13, 110, 253, 0.08);
    border-color: rgba(13, 110, 253, 0.2);
}

/* Icon Styles */
.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 25px;
}

.blue-gradient { background: #172965; }
.purple-gradient { background: linear-gradient(135deg, #172965, #f04e30); }
.teal-gradient { background: #172965; }

/* List Styles */
.card-heading {
    color: #0a2a5e;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.treatment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.treatment-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: #5f7285;
    font-size: 1.05rem;
    line-height: 1.4;
}

.treatment-list li i {
    color: #172965;
    font-size: 1.2rem;
    margin-top: 2px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 25px;
    }
    .treatment-card {
        padding: 30px 20px;
    }
}

.mastalgia-overview-advanced {
    padding: 100px 0;
    background: white;
    overflow: hidden;
}

/* Badge */
.mastalgia-badge {
    display: inline-block;
    background: rgba(13,110,253,0.1);
    color: #182b65;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Title */
.mastalgia-title {
    font-size: 35px;
    color: #0a2a5e;
    margin-bottom: 20px;
    line-height: 1.3;
}

.mastalgia-title span {
    color: #0d6efd;
}

/* Text */
.mastalgia-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

/* Buttons */
.mastalgia-btn-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.mastalgia-btn {
    padding: 14px 30px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 55px; /* ðŸ”¥ REQUIRED */
    transition: 0.3s ease;
    display: inline-block;
}

/* Primary */
.primary-btn {
    border: 1px solid red;

    color: red;
    box-shadow: 0 8px 20px rgba(13,110,253,0.25);
}

.primary-btn:hover {
    
        background: linear-gradient(45deg, #172965, #172965);
}

/* Outline */
.outline-btn {
    border: 2px solid #0d6efd;
    color: #0d6efd;
}

.outline-btn:hover {
    background: #0d6efd;
    color: #fff;
    transform: translateY(-3px);
}

/* Image */
.mastalgia-image-wrapper {
    position: relative;
}

.mastalgia-main-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: 0.4s;
}


/* Floating Box */
.mastalgia-floating-box {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #fff;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.mastalgia-floating-box i {
    color: #0d6efd;
    margin-right: 5px;
}

/* ===== Responsive ===== */

/* Tablet */
@media (max-width: 992px) {
    .mastalgia-title {
        font-size: 25px;

    }


    .mastalgia-btn-group {
        justify-content: center;
    }

    .mastalgia-main-img {
        height: 400px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .mastalgia-overview-advanced {
        padding: 60px 0;
    }

    .mastalgia-title {
        font-size: 1.7rem;
    }

    .mastalgia-text {
        font-size: 1rem;
    }

    /* ðŸ”¥ Buttons Mobile Perfect */
    .mastalgia-btn-group {
        flex-direction: column;
    }

    .mastalgia-btn {
        width: 100%;
        text-align: center;
        padding: 14px;
    }

    .mastalgia-main-img {
        height: 300px;
    }
}

.btn-warning1{
    background-color: #f04e30 !important;
    color: white;
  
}
.main-breadcrumb-heading{
    font-size: 32px;
}
    .mastalgia-overview {
        background: radial-gradient(circle at top right, #ffffff, #f0f7ff);
        padding: 100px 0;
        overflow: hidden;
    }

    .premium-badge {
        background: rgba(13, 110, 253, 0.1);
        color: #0d6efd;
        letter-spacing: 1px;
        text-transform: uppercase;
        font-size: 0.8rem;
        border: 1px solid rgba(13, 110, 253, 0.2);
    }

    .main-title {
        font-size: 32px;
        line-height: 1.2;
        letter-spacing: -1px;
    }

    .highlight-card {
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.5);
        transition: transform 0.3s ease;
    }

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

    .image-container {
        position: relative;
        z-index: 1;
    }

    .image-container::before {
        content: "";
        position: absolute;
        width: 110%;
        height: 110%;
        background: radial-gradient(circle, rgba(13, 110, 253, 0.08) 0%, transparent 70%);
        top: -5%;
        left: -5%;
        z-index: -1;
    }

    .experience-floating-tag {
        position: absolute;
        bottom: 30px;
        left: -20px;
        background: #ffffff;
        padding: 20px;
        border-radius: 15px;
        box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        display: flex;
        align-items: center;
        gap: 15px;
        animation: float 3s ease-in-out infinite;
    }

    @keyframes float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
    }

    @media (max-width: 991px) {
        .main-title { font-size: 2.2rem; }
        .experience-floating-tag { display: none; }
    }
    @media(max-width: 576px){
        .main-breadcrumb-heading{
    font-size: 27px;
}
    }

.mastalgia-causes-modern {
    background: #f4f8ff;
}

/* Card */
.mastalgia-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #ffffff;
    padding: 25px;
    border-radius: 20px;
    transition: 0.3s ease;
    height: 100%;
    border: 1px solid #e6ecf5;
}

/* Hover */
.mastalgia-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* Icon */
.mastalgia-card .icon {
    min-width: 60px;
    height: 60px;
    background: #0a2a5e;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 22px;
}

/* Content */
.mastalgia-card h5 {
    color: #0a2a5e;
    margin-bottom: 5px;
}

.mastalgia-card p {
    margin: 0;
    font-size: 17px;
}

/* Responsive */
@media (max-width: 768px) {
    .mastalgia-card {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .mastalgia-card {
        flex-direction: row;
        gap: 15px;
    }

    .mastalgia-card .icon {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
}

.mastalgia-prevent-step {
    background: #ffffff;
}

/* Heading */
.mastalgia-title {
    font-size: 35px;
    color: #0a2a5e;
}

.mastalgia-desc {
    color: #6c757d;
    font-size: 1.05rem;
}

/* Card */
.prevent-step-card {
    position: relative;
    background: #f8fbff;
    padding: 45px 20px 20px;
    border-radius: 18px;
    transition: 0.3s ease;
    height: 100%;
    border: 1px solid #e6ecf5;
}

/* Step Number */
.step-number {
    position: absolute;
    top: -15px;
    left: 20px;
    background: #172965;
    color: #fff;
    font-size: 0.8rem;
    padding: 6px 14px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(13,110,253,0.3);
}

/* Hover */
.prevent-step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.08);
}

/* Title */
.prevent-step-card h6 {
    font-size: 19px;
    color: #0a2a5e;
    margin-bottom: 10px;
}

/* Text */
.prevent-step-card p {
    margin: 0;
font-size: 17px;
}

/* Responsive */
@media (max-width: 992px) {
    .mastalgia-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .mastalgia-title {
        font-size: 1.6rem;
    }

    .mastalgia-desc {
        font-size: 0.95rem;
    }

    .prevent-step-card {
        padding: 45px 15px 15px;
    }
}


.udx-treatment-sec {
    background: linear-gradient(135deg, #f5faff, #edf4ff);
}

.udx-treatment-heading {
    font-size: 34px;
    font-weight: 700;
    color: #0b1d2a;
}

.udx-treatment-subtext {
    color: #6c757d;
    font-size: 15.5px;
}

/* ===== CARD STYLE ===== */
.udx-treatment-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px 24px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
}

.udx-treatment-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

/* ===== STEP NUMBER ===== */
.udx-step-badge {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #172965;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

/* ===== TEXT ===== */
.udx-treatment-box h5 {
    font-weight: 600;
    color: #0b1d2a;
    margin-bottom: 12px;
}

.udx-treatment-box ul {
    padding-left: 18px;
    margin-bottom: 0;
}

.udx-treatment-box ul li {
    font-size: 17px;
    color: #555;
    margin-bottom: 8px;
}

.udx-treatment-box ul {
    padding-left: 0;
}

.udx-treatment-box ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 16px;
    margin-bottom: 10px;
}

.udx-treatment-box ul li i {
    color: #172965;
    font-size: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}


.image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.bg-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 20px;
}

/* Glass Effect Box */
.glass-box {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Icon Gradient */
.icon-box {
    width: 65px;
    height: 65px;
    min-width: 65px;
    border-radius: 15px;
    background: linear-gradient(135deg, #172965, #172965);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
}

/* Text */
.content h4 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #1c2b39;
}

.content p {
    margin: 5px 0 0;
    font-size: 16px;
    color: #5a6a7a;
}

:root {

    --text-gray: #64748b;
    --bg-light: #f8fafc;
}

.clinic-section {
    background-color: #f4f8ff;

}

.bg-success-soft {
    background-color: rgba(16, 185, 129, 0.1);
}

/* Card Design */
.clinic-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 24px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.clinic-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08);
    border-color: #f04e30;
}

/* Icon Box */
.icon-box {
    min-width: 56px;
    height: 56px;
    background: #faedea;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: #172965;
    margin-right: 20px;
    font-size: 22px;
    transition: all 0.3s ease;
}

.clinic-card:hover .icon-box {
    background: #f04e30;
    color: #fff;
    transform: rotate(-5deg);
}

/* Typography */
.clinic-card h5 {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--dark-blue);
}

.clinic-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 0;
}

/* Bottom Info Section */
.clinic-card .bottom {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.info-pill {
    background: #f8fafc;
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: #475569;
    display: flex;
    align-items: center;
}

.info-pill i {
    color: #f04e30;
    margin-right: 8px;
}

/* Responsive Fixes */
@media(max-width: 768px) {
    .clinic-card {
        padding: 20px;
    }
    .clinic-card .bottom {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 10px;
    }
    .info-pill {
        width: 100%;
    }
}


.digital-title {
    font-weight: 700;
    color: #1e293b;
}

.digital-desc {
    max-width: 600px;
    color: #64748b;
    font-size: 15px;
}

/* Card */
.digital-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 18px;
    border: 1px solid #ecfdf5;
    transition: all 0.35s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* Hover Effect */
.digital-card:hover {
    transform: translateY(-8px);
    
}

/* Icon */
.digital-icon {
    width: 60px;
    height: 60px;
    background: #f04e30;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: #fff;
    font-size: 22px;
    margin-bottom: 15px;
}

/* Title */
.digital-card h5 {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

/* Text */
.digital-card p {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 0;
}

/* Subtle Glow */
.digital-card::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgb(240, 78, 48, 0.1);
    top: -40px;
    right: -40px;
    border-radius: 50%;
}

    .ach-sec-x93 {
    background: linear-gradient(135deg, #eef4ff, #f9fbff);
}

.ach-title-x93 {
    font-size: 35px;
    color: #1a2b4c;
}

.ach-subtitle-x93 {
    color: #6c757d;
    max-width: 700px;
    margin: 10px auto 0;
}

/* CARD */
.ach-card-x93 {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    transition: 0.3s;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* Hover effect */
.ach-card-x93:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* ICON */
.ach-icon-x93 {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: #172965;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ach-icon-x93 i {
    color: #fff;
    font-size: 22px;
}

/* CONTENT */
.ach-content-x93 h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #1a2b4c;
}

.ach-content-x93 p {
    margin: 6px 0 0;
    font-size: 17px;
    color: #4B5563;
}

/* MOBILE */
@media (max-width: 576px) {
    .ach-title-x93 {
        font-size: 24px;
    }

    .ach-card-x93 {
        padding: 15px;
        gap: 15px;
    }

    .ach-icon-x93 {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }

    .ach-content-x93 h5 {
        font-size: 16px;
    }

    .ach-content-x93 p {
        font-size: 13px;
    }
}



