/* ============================================================
   EXPERTISE PAGE - MAIN CONTENT STYLES
   ============================================================ */

/* Reusing shared UI from common_header.css */

/* ===================== MAIN SERVICE WRAP = Attachment Layout ===================== */

.service-main-container {
    padding: 80px 0;
}

.service-card-premium {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(10, 36, 114, 0.12);
    border: 1px solid rgba(10, 36, 114, 0.05);
}

.service-img-side {
    position: relative;
    overflow: hidden;
}

.service-img-side img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.service-card-premium:hover .service-img-side img {
    transform: scale(1.05);
}

.service-content-side {
    padding: 50px;
}

.service-content-side h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #0a2472;
    margin-bottom: 25px;
}

.fee-card-premium {
    background: #f8fbff;
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 30px;
    border-left: 5px solid #0cacee;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.fee-card-premium h6 {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    color: #0a2472;
    margin-bottom: 15px;
}

.fee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.fee-item img { width: 20px; }

/* ===================== MODERN TABS ===================== */

.custom-tabs-wrap {
    margin-top: 50px;
}

.nav-pills.custom-pills {
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.nav-pills.custom-pills .nav-link {
    background: #fff;
    color: #0a2472;
    border-radius: 50px;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(10, 36, 114, 0.06);
    border: 1px solid rgba(10, 36, 114, 0.08);
    transition: all 0.4s ease;
}

.nav-pills.custom-pills .nav-link.active {
    background: linear-gradient(135deg, #0cacee 0%, #0a2472 100%);
    color: #fff;
    box-shadow: 0 10px 25px rgba(12, 172, 238, 0.35);
    border-color: transparent;
}

.tab-pane-premium {
    animation: fadeInSlide 0.6s ease-out;
}

.video-container-premium {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    margin: 20px 0;
    aspect-ratio: 16/9;
}

.video-container-premium iframe {
    width: 100%;
    height: 100%;
}

/* ===================== A TO Z DISEASES ===================== */

.diseases-section {
    padding: 100px 0;
    background: #f8fafc;
    color: #475569;
}

.diseases-section h3.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 46px;
    color: #0a2472;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 800;
}

.disease-tabs-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.disease-tab-btn {
    background: #fff;
    border: 1px solid rgba(10, 36, 114, 0.08);
    color: #0a2472;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.4s;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(10, 36, 114, 0.05);
}

.disease-tab-btn.active, .disease-tab-btn:hover {
    background: linear-gradient(135deg, #0cacee 0%, #0a2472 100%);
    color: #fff;
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(10, 36, 114, 0.2);
}

.disease-content-box {
    background: #fff;
    border-radius: 40px;
    padding: 60px;
    border: 1px solid rgba(10, 36, 114, 0.05);
    box-shadow: 0 30px 80px rgba(10, 36, 114, 0.08);
}

.disease-content-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    color: #0a2472;
    margin-bottom: 25px;
}

.disease-content-box .bio-main-text {
    color: #64748b !important;
}

.btn-luxury {
    background: #0cacee;
    color: #fff;
    padding: 18px 38px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s;
}

.btn-luxury:hover { 
    background: #fff; 
    color: #0a2472; 
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* ===================== REVIEWS & RESULTS ===================== */

.reviews-section {
    padding: 60px 0;
    background: #fff;
}
.reviews-section h3.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 46px;
    color: #0a2472;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 800;
}
.for_tabs .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 46px;
    color: #0a2472;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 800;
}
@keyframes fadeInSlide {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.treatment-box-premium {
    overflow: hidden;
    border-radius: 20px;
    transition: all 0.4s ease;
}

.treatment-box-premium img {
    transition: transform 0.6s ease;
}

.treatment-box-premium:hover img {
    transform: scale(1.08);
}

.reviews-minimal-list::-webkit-scrollbar {
    width: 6px;
}
.reviews-minimal-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}
.reviews-minimal-list::-webkit-scrollbar-thumb {
    background: #0cacee;
    border-radius: 10px;
}
.reviews-minimal-list::-webkit-scrollbar-thumb:hover {
    background: #0a2472;
}

@media (max-width: 991px) {
    .service-content-side { padding: 40px; }
    .disease-content-box { padding: 30px; }
    .disease-content-box h2 { font-size: 28px; }
}

@media(max-width:767px){
    .diseases-section h3.section-title {
    font-size: 25px;
    color: #0a2472;
    text-align: center;
    margin-bottom: 30px;
}
.for_tabs .section-title {
 font-size: 25px;
    color: #0a2472;
    text-align: center;
    margin-bottom: 30px;
}
.service-content-side h2 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 25px;
}
.diseases-section {
    padding: 30px 0;
    background: #f8fafc;
    color: #475569;
}
.reviews-section h3.section-title {
      font-size: 25px;
    color: #0a2472;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 800;
}
}
