  /* FIX 1: Hover + active pe text white */
        .services-item-seven:hover .custom-title,
        .services-item-seven.active .custom-title,
        .services-item-seven:hover .service-content p,
        .services-item-seven.active .service-content p,
        .services-item-seven:hover .service-content p a,
        .services-item-seven.active .service-content p a {
            color: #fff !important;
        }

        /* FIX 2: Text image se pehle wrap ho */
        .services-item-seven .service-content {
            min-width: 0 !important;
            flex: 1 1 0% !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        .services-item-seven .service-img {
            flex-shrink: 0 !important;
        }    /* ═══════════════════════════════════════════
		   THEME VARIABLES — matches homepage red/white
		═══════════════════════════════════════════ */
    :root {
        --red: #d32f2f;
        --red-dark: #b71c1c;
        --red-light: #ef5350;
        --red-bg: #fff5f5;
        --red-border: #fecaca;
        --text-dark: #1a1a2e;
        --text-mid: #374151;
        --text-soft: #6b7280;
        --white: #ffffff;
        --off-white: #f9fafb;
        --border: #e5e7eb;
        --shadow-sm: 0 2px 12px rgba(211, 47, 47, 0.08);
        --shadow-md: 0 6px 28px rgba(211, 47, 47, 0.13);
        --shadow-lg: 0 16px 48px rgba(211, 47, 47, 0.18);
    }

  /
        .services-item-seven:hover .custom-title,
        .services-item-seven.active .custom-title,
        .services-item-seven:hover .service-content p,
        .services-item-seven.active .service-content p,
        .services-item-seven:hover .service-content p a,
        .services-item-seven.active .service-content p a {
            color: #fff !important;
        }


        .services-item-seven .service-content {
            min-width: 0 !important;
            flex: 1 1 0% !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        .services-item-seven .service-img {
            flex-shrink: 0 !important;
        }
    /* ─── SECTION LABEL (matches homepage "Our Specialty Services" style) ─── */
    .rk-eyebrow {
        font-size: 11.5px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--red);
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 8px;
    }

    .rk-eyebrow::before {
        content: '';
        width: 30px;
        height: 3px;
        background: var(--red);
        border-radius: 2px;
        flex-shrink: 0;
    }

    .rk-section-title {
        font-size: clamp(1.5rem, 3vw, 2rem);
        font-weight: 800;
        color: var(--text-dark);
        margin-bottom: 6px;
        line-height: 1.25;
    }

    .rk-section-title span {
        color: var(--red);
    }


    /* ─── DOCTOR CARD ─── */
    .doc-card {
        background: var(--white);
        border-radius: 20px;
        overflow: hidden;
        border: 1px solid var(--border);
        box-shadow: var(--shadow-sm);
        transition: all 0.32s cubic-bezier(0.4, 0, 0.2, 1);
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .doc-card:hover {
        box-shadow: var(--shadow-lg);
        transform: translateY(-6px);
        border-color: var(--red-border);
    }

    /* Top red banner with photo — mirrors homepage card style */
    .doc-banner {
        background: linear-gradient(135deg, #7f0000 0%, #c62828 100%);
        padding: 36px 28px 0;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .doc-banner .deco-ring {
        position: absolute;
        border: 2px solid rgba(255, 255, 255, 0.07);
        border-radius: 50%;
    }

    .doc-banner .deco-ring.r1 {
        width: 180px;
        height: 180px;
        top: -60px;
        right: -50px;
    }

    .doc-banner .deco-ring.r2 {
        width: 110px;
        height: 110px;
        bottom: 10px;
        left: -30px;
    }

    .doc-banner::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 38px;
        background: var(--white);
        border-radius: 50% 50% 0 0 / 30px 30px 0 0;
    }

    .doc-photo-wrap {
        display: inline-block;
        position: relative;
        z-index: 2;
        margin-bottom: 8px;
    }

    .doc-photo-wrap img {
        width: 155px;
        height: 155px;
        border-radius: 50%;
        object-fit: cover;
        object-position: top;
        border: 5px solid #fff;
        box-shadow: 0 6px 30px rgba(0, 0, 0, 0.25);
        display: block;
    }

    /* Red ring around photo — matches homepage circular photo style */
    .doc-photo-wrap::before {
        content: '';
        position: absolute;
        inset: -6px;
        border-radius: 50%;
        border: 3px solid rgba(255, 255, 255, 0.35);
    }

    .doc-spec-badge {
        position: absolute;
        bottom: 2px;
        left: 50%;
        transform: translateX(-50%);
        white-space: nowrap;
        background: linear-gradient(135deg, var(--red-dark), var(--red));
        color: #fff;
        font-size: 10.5px;
        font-weight: 700;
        padding: 4px 14px;
        border-radius: 100px;
        box-shadow: 0 3px 12px rgba(183, 28, 28, 0.45);
        letter-spacing: 0.4px;
    }

    /* Card body */
    .doc-body {
        padding: 16px 26px 28px;
        display: flex;
        flex-direction: column;
        flex: 1;
    }

    .doc-name {
        font-size: 1.22rem;
        font-weight: 800;
        color: var(--text-dark);
        text-align: center;
        margin-bottom: 2px;
    }

    .doc-degree {
        font-size: 12px;
        color: var(--text-soft);
        text-align: center;
        margin-bottom: 16px;
    }

    .doc-hr {
        height: 1px;
        background: var(--border);
        margin: 0 0 15px;
    }

    /* Specialty tags — pill style matching homepage badges */
    .doc-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 7px;
        margin-bottom: 16px;
    }

    .doc-tag {
        background: var(--red-bg);
        color: var(--red-dark);
        font-size: 11px;
        font-weight: 600;
        padding: 4px 12px;
        border-radius: 100px;
        border: 1px solid var(--red-border);
    }

    .doc-bio {
        font-size: 13.5px;
        color: var(--text-mid);
        line-height: 1.75;
        margin-bottom: 18px;
        flex: 1;
    }

    /* Info strip */
    .doc-info-strip {
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
        background: var(--red-bg);
        border: 1px solid var(--red-border);
        border-radius: 11px;
        padding: 12px 15px;
        margin-bottom: 20px;
    }

    .doc-info-item {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 12.5px;
        color: var(--text-mid);
    }

    .doc-info-item i {
        color: var(--red);
        font-size: 13px;
    }

    .doc-info-item strong {
        color: var(--text-dark);
    }

    /* Buttons — red gradient matching homepage CTA */
    .doc-actions {
        display: flex;
        gap: 10px;
    }

    .btn-rk-primary {
        flex: 1;
        display: block;
        text-align: center;
        background: linear-gradient(135deg, var(--red-dark), var(--red-light));
        color: #fff !important;
        font-size: 13.5px;
        font-weight: 700;
        padding: 12px 16px;
        border-radius: 10px;
        text-decoration: none;
        transition: all 0.22s;
        box-shadow: 0 4px 16px rgba(183, 28, 28, 0.32);
        letter-spacing: 0.3px;
    }

    .btn-rk-primary:hover {
        background: linear-gradient(135deg, #7f0000, var(--red-dark));
        box-shadow: 0 6px 22px rgba(183, 28, 28, 0.45);
        transform: translateY(-1px);
        color: #fff !important;
    }

    .btn-rk-outline {
        display: flex;
        align-items: center;
        gap: 7px;
        padding: 12px 16px;
        border-radius: 10px;
        border: 2px solid var(--red);
        color: var(--red);
        font-size: 13.5px;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.22s;
        white-space: nowrap;
    }

    .btn-rk-outline:hover {
        background: var(--red);
        color: #fff;
    }

    .banner-section-full {
        width: 100%;
        height: auto !important;
        overflow: hidden;
        position: relative;
        background: transparent !important;
    }

    .banner-carousel-full,
    .banner-carousel-full .slick-list,
    .banner-carousel-full .slick-track {
        height: auto !important;
    }

    .banner-slide {
        width: 100%;
        height: auto !important;
    }

    .banner-slide img {
        width: 100% !important;
        height: auto !important;
        object-fit: unset !important;
        display: block;
        background: transparent !important;
    }

    /* remove gap issue */
    .banner-carousel-full .slick-slide {
        margin: 0;
    }

    /* dots style (optional premium look) */
    .banner-carousel-full .slick-dots {
        bottom: 20px;
    }

    .banner-carousel-full .slick-dots li button:before {
        color: #fff;
        font-size: 10px;
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 768px) {
        .doctors-hero h1 {
            font-size: 1.8rem;
        }

        .hero-stats-grid {
            grid-template-columns: 1fr 1fr;
        }

        .hero-stat .s-num {
            font-size: 1.6rem;
        }

        .doc-actions {
            flex-direction: column;
        }

        .doc-info-strip {
            flex-direction: column;
            gap: 10px;
        }
    }

    .speciality-section .spaciality-item .custom-title {
        font-size: 21px !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        width: 100% !important;
    }

    .speciality-section .spaciality-item p {
        font-size: 16px !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    .btn-view-all-rk {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #1a1a2e;
        color: #fff !important;
        font-size: 15px;
        font-weight: 700;
        padding: 14px 40px;
        border-radius: 50px;
        text-decoration: none;
        transition: all 0.25s ease;
        letter-spacing: 0.4px;
    }

    .btn-view-all-rk:hover {
        background: #b71c1c;
        color: #fff !important;
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(183, 28, 28, 0.35);
    }

    /* ── Sticky header ── */
    header.header.sticky {
        position: fixed !important;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 999;
        background: #fff !important;
        box-shadow: 0 2px 16px rgba(0, 0, 0, .10);
        animation: slideDown .3s ease forwards;
    }

    @keyframes slideDown {
        from {
            transform: translateY(-100%);
        }

        to {
            transform: translateY(0);
        }
    }

    /* ─────────────────────────────────────────
   WORK SECTION TEXT FIX (SCOPED ONLY)
──────────────────────────────────────── */

    /* Target ONLY this section */
    .work-section-seven .work-item-two .custom-title {
        font-size: 18px !important;
        line-height: 1.4 !important;
        font-weight: 600 !important;
    }

    /* Paragraph inside work cards */
    .work-section-seven .work-item-two p {
        font-size: 14px !important;
        line-height: 1.7 !important;
        text-align: justify !important;
        color: #555 !important;
    }

    /* Reduce number size */
    .work-section-seven .count-number {
        font-size: 30px !important;
    }

    /* Improve spacing */
    .work-section-seven .work-item-two {
        padding: 18px !important;
    }

    /* Optional: slight heading improvement */
    .work-section-seven .section-title {
        font-size: 26px !important;
    }

    /* Mobile fix */
    @media (max-width: 768px) {
        .work-section-seven .work-item-two .custom-title {
            font-size: 16px !important;
        }

        .work-section-seven .work-item-two p {
            font-size: 13.5px !important;
        }
    }

    /* About section text justify ONLY */
    .about-section .about-content-details p {
        text-align: justify;
    }

    /* Reduce ONLY step card titles */
    .choose-step-nine .choose-step .custom-title {
        font-size: 20px;
        /* adjust if needed (16–18 best) */
        line-height: 1.4;
    }

    /* ─────────────────────────────────────────
       FAQ SECTION TITLE FONT SIZE FIX
    ──────────────────────────────────────── */
    .faq-section-eight .accordion-button {
        font-size: 16px !important;
        /* Adjust this number (e.g., 15px or 17px) if needed */
        font-weight: 600 !important;
        line-height: 1.5 !important;
    }

    @media (max-width: 768px) {
        .faq-section-eight .accordion-button {
            font-size: 15px !important;
            /* Slightly smaller on mobile devices */
        }
    }

    /* ─────────────────────────────────────────
       FAQ MAIN HEADING FONT SIZE FIX
    ──────────────────────────────────────── */
    .faq-section-eight .section-header-eight .section-title {
        font-size: 32px !important;
        /* Adjust this number down (e.g., 28px) if you want it even smaller */
        line-height: 1.3 !important;
    }

    @media (max-width: 768px) {
        .faq-section-eight .section-header-eight .section-title {
            font-size: 24px !important;
            /* Smaller size for mobile screens */
        }
    }

    /* ─────────────────────────────────────────
       REDUCE SPACING BETWEEN FAQ TITLE & ACCORDION
    ──────────────────────────────────────── */
    .faq-section-eight .section-header-eight {
        margin-bottom: 12px !important;
        /* Adjust this number to make the gap smaller or larger */
    }

    /* ─── Mobile Spacing Fix — index.php ─── */
    @media (max-width: 768px) {
        .speciality-section {
            padding-top: 45px !important;
            padding-bottom: 45px !important;
        }

        .about-section {
            padding-top: 45px !important;
            padding-bottom: 45px !important;
        }

        .work-section-seven {
            padding-top: 45px !important;
            padding-bottom: 45px !important;
        }

        .whychoose-section-nine {
            padding-top: 45px !important;
            padding-bottom: 45px !important;
        }

        .services-section {
            padding-top: 30px !important;
            padding-bottom: 30px !important;
        }

        .services-section-seven {
            padding-top: 45px !important;
            padding-bottom: 45px !important;
        }

        /* Doctors section */
        section[style*="padding: 56px"] {
            padding: 45px 0 50px !important;
        }

        .testimonial-section-one {
            padding-top: 45px !important;
            padding-bottom: 45px !important;
        }

        .faq-section-eight {
            padding-top: 45px !important;
            padding-bottom: 45px !important;
        }

        /* FAQ image height fix on mobile */
        .faq-support img {
            height: 250px !important;
        }

        /* Bootstrap utility override */
        .mt-5 {
            margin-top: 35px !important;
        }

        .mb-5 {
            margin-bottom: 35px !important;
        }

        .py-5 {
            padding-top: 35px !important;
            padding-bottom: 35px !important;
        }
    }

    @media (max-width: 768px) {
        .banner-section-full {
            margin-top: 0 !important;
            padding-top: 0 !important;
        }

        .speciality-section {
            padding-top: 20px !important;
        }
    }

    .rk-robotic-section {
        background: #f9fafb;
        padding: 80px 0 90px;
        overflow: hidden;
    }

    /* Two-column grid */
    .rk-robotic-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 64px;
        align-items: center;
    }

    /* ══ LEFT: Simple Image ══ */
    .rk-robotic-img-wrap {
        position: relative;
    }

    .rk-robotic-img-box {
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.13);
    }

    .rk-robotic-img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center;
        display: block;
        border-radius: 20px;
    }

    /* Floating doctor name card at bottom */
    .rk-doc-namecard {
        position: absolute;
        bottom: 20px;
        left: 20px;
        right: 20px;
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid #fecaca;
        border-radius: 14px;
        padding: 14px 18px;
        display: flex;
        align-items: center;
        gap: 14px;
        box-shadow: 0 6px 24px rgba(183, 28, 28, 0.14);
        backdrop-filter: blur(6px);
    }

    .rk-doc-namecard .doc-avatar {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: linear-gradient(135deg, #b71c1c, #ef5350);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .rk-doc-namecard .doc-avatar i {
        color: #fff;
        font-size: 20px;
    }

    .rk-doc-namecard .doc-card-info strong {
        display: block;
        font-size: 14.5px;
        font-weight: 800;
        color: #1a1a2e;
        line-height: 1.3;
    }

    .rk-doc-namecard .doc-card-info span {
        font-size: 12px;
        color: #6b7280;
    }

    /* Experience pill top-right */
    .rk-exp-pill {
        position: absolute;
        top: 18px;
        right: 18px;
        background: linear-gradient(135deg, #b71c1c, #d32f2f);
        color: #fff;
        border-radius: 100px;
        padding: 10px 16px;
        text-align: center;
        box-shadow: 0 4px 16px rgba(183, 28, 28, 0.35);
        line-height: 1.2;
        z-index: 2;
    }

    .rk-exp-pill .ep-num {
        font-size: 20px;
        font-weight: 900;
        display: block;
    }

    .rk-exp-pill .ep-label {
        font-size: 9.5px;
        font-weight: 700;
        letter-spacing: 0.6px;
        text-transform: uppercase;
        opacity: 0.9;
    }

    /* ══ RIGHT: Content ══ */
    .rk-robotic-content {}

    .rk-robotic-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #fff5f5;
        border: 1px solid #fecaca;
        color: #b71c1c;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 1.8px;
        text-transform: uppercase;
        padding: 6px 16px;
        border-radius: 100px;
        margin-bottom: 16px;
    }

    .rk-robotic-heading {
        font-size: clamp(1.6rem, 2.8vw, 2.1rem);
        font-weight: 900;
        color: #1a1a2e;
        line-height: 1.22;
        margin-bottom: 6px;
    }

    .rk-robotic-heading .red {
        color: #d32f2f;
    }

    .rk-robotic-doctor-line {
        font-size: 20px;
        font-weight: 700;
        color: #374151;
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 20px;
    }

    .rk-robotic-doctor-line::before {
        content: '';
        width: 28px;
        height: 2px;
        background: #d32f2f;
        flex-shrink: 0;
    }

    /* Content paragraphs */
    .rk-robotic-content p {
        font-size: 14.5px;
        color: #4b5563;
        line-height: 1.85;
        margin-bottom: 14px;
        text-align: justify;
    }

    /* Highlight box */
    .rk-highlight-box {
        background: #fff5f5;
        border-left: 4px solid #d32f2f;
        border-radius: 0 12px 12px 0;
        padding: 14px 18px;
        margin: 20px 0 24px;
        font-size: 14px;
        color: #374151;
        font-weight: 500;
        line-height: 1.7;
    }

    .rk-highlight-box strong {
        color: #b71c1c;
    }

    /* Features grid */
    .rk-features-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px 24px;
        margin-bottom: 28px;
    }

    .rk-feat-item {
        display: flex;
        align-items: flex-start;
        gap: 9px;
        font-size: 13.5px;
        color: #374151;
        font-weight: 500;
        line-height: 1.45;
    }

    .rk-feat-item .fi {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: #fff5f5;
        border: 1px solid #fecaca;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-top: 1px;
    }

    .rk-feat-item .fi i {
        color: #d32f2f;
        font-size: 9px;
    }

    /* Stats strip */
    .rk-stats-strip {
        display: flex;
        background: #fff;
        border: 1px solid #fecaca;
        border-radius: 14px;
        padding: 18px 20px;
        margin-bottom: 28px;
        gap: 0;
    }

    .rk-stat {
        flex: 1;
        text-align: center;
        position: relative;
    }

    .rk-stat+.rk-stat::before {
        content: '';
        position: absolute;
        left: 0;
        top: 15%;
        height: 70%;
        width: 1px;
        background: #fecaca;
    }

    .rk-stat .sn {
        display: block;
        font-size: 1.75rem;
        font-weight: 900;
        color: #d32f2f;
        line-height: 1.1;
    }

    .rk-stat .sl {
        font-size: 11px;
        color: #6b7280;
        font-weight: 500;
    }

    /* CTA buttons */
    .rk-ctas {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
    }

    .rk-btn-red {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: linear-gradient(135deg, #b71c1c, #ef5350);
        color: #fff !important;
        font-size: 14px;
        font-weight: 700;
        padding: 13px 26px;
        border-radius: 10px;
        text-decoration: none;
        box-shadow: 0 5px 18px rgba(183, 28, 28, 0.30);
        transition: all 0.22s;
        letter-spacing: 0.3px;
    }

    .rk-btn-red:hover {
        background: linear-gradient(135deg, #7f0000, #b71c1c);
        box-shadow: 0 7px 24px rgba(183, 28, 28, 0.42);
        transform: translateY(-2px);
        color: #fff !important;
    }

    .rk-btn-outline {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        border: 2px solid #d32f2f;
        color: #d32f2f !important;
        font-size: 14px;
        font-weight: 700;
        padding: 12px 24px;
        border-radius: 10px;
        text-decoration: none;
        transition: all 0.22s;
    }

    .rk-btn-outline:hover {
        background: #d32f2f;
        color: #fff !important;
    }

    /* Responsive */
    @media (max-width: 991px) {
        .rk-robotic-inner {
            grid-template-columns: 1fr;
            gap: 56px;
        }

        .rk-robotic-img-wrap {
            max-width: 480px;
            margin: 0 auto;
        }
    }

    @media (max-width: 575px) {
        .rk-robotic-section {
            padding: 55px 0 65px;
        }

        .rk-features-grid {
            grid-template-columns: 1fr;
        }

        .rk-stats-strip {
            flex-direction: column;
            gap: 14px;
        }

        .rk-stat+.rk-stat::before {
            display: none;
        }

        .rk-ctas {
            flex-direction: column;
        }

        .rk-btn-red,
        .rk-btn-outline {
            justify-content: center;
        }
    }

    .rk-priyanka-section {
        background: #f9fafb;
        padding: 80px 0 90px;
        overflow: hidden;
    }

    .rk-priyanka-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 64px;
        align-items: center;
    }

    /* ══ LEFT: Content ══ */
    .rk-priyanka-content {}

    .rk-priyanka-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #fff5f5;
        border: 1px solid #fecaca;
        color: #b71c1c;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 1.8px;
        text-transform: uppercase;
        padding: 6px 16px;
        border-radius: 100px;
        margin-bottom: 16px;
    }

    .rk-priyanka-heading {
        font-size: clamp(1.6rem, 2.8vw, 2.1rem);
        font-weight: 900;
        color: #1a1a2e;
        line-height: 1.22;
        margin-bottom: 6px;
    }

    .rk-priyanka-heading .red {
        color: #d32f2f;
    }

    .rk-priyanka-doctor-line {
        font-size: 20px;
        font-weight: 700;
        color: #374151;
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 20px;
    }

    .rk-priyanka-doctor-line::before {
        content: '';
        width: 28px;
        height: 2px;
        background: #d32f2f;
        flex-shrink: 0;
    }

    .rk-priyanka-content p {
        font-size: 14.5px;
        color: #4b5563;
        line-height: 1.85;
        margin-bottom: 14px;
        text-align: justify;
    }

    .rk-priyanka-features-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px 24px;
        margin-bottom: 28px;
    }

    .rk-priyanka-feat-item {
        display: flex;
        align-items: flex-start;
        gap: 9px;
        font-size: 13.5px;
        color: #374151;
        font-weight: 500;
        line-height: 1.45;
    }

    .rk-priyanka-feat-item .fi {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: #fff5f5;
        border: 1px solid #fecaca;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-top: 1px;
    }

    .rk-priyanka-feat-item .fi i {
        color: #d32f2f;
        font-size: 9px;
    }

    .rk-priyanka-stats-strip {
        display: flex;
        background: #fff;
        border: 1px solid #fecaca;
        border-radius: 14px;
        padding: 18px 20px;
        margin-bottom: 28px;
        gap: 0;
    }

    .rk-priyanka-stat {
        flex: 1;
        text-align: center;
        position: relative;
    }

    .rk-priyanka-stat+.rk-priyanka-stat::before {
        content: '';
        position: absolute;
        left: 0;
        top: 15%;
        height: 70%;
        width: 1px;
        background: #fecaca;
    }

    .rk-priyanka-stat .sn {
        display: block;
        font-size: 1.75rem;
        font-weight: 900;
        color: #d32f2f;
        line-height: 1.1;
    }

    .rk-priyanka-stat .sl {
        font-size: 11px;
        color: #6b7280;
        font-weight: 500;
    }

    .rk-priyanka-ctas {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
    }

    .rk-priyanka-btn-red {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: linear-gradient(135deg, #b71c1c, #ef5350);
        color: #fff !important;
        font-size: 14px;
        font-weight: 700;
        padding: 13px 26px;
        border-radius: 10px;
        text-decoration: none;
        box-shadow: 0 5px 18px rgba(183, 28, 28, 0.30);
        transition: all 0.22s;
        letter-spacing: 0.3px;
    }

    .rk-priyanka-btn-red:hover {
        background: linear-gradient(135deg, #7f0000, #b71c1c);
        box-shadow: 0 7px 24px rgba(183, 28, 28, 0.42);
        transform: translateY(-2px);
        color: #fff !important;
    }

    .rk-priyanka-btn-outline {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        border: 2px solid #d32f2f;
        color: #d32f2f !important;
        font-size: 14px;
        font-weight: 700;
        padding: 12px 24px;
        border-radius: 10px;
        text-decoration: none;
        transition: all 0.22s;
    }

    .rk-priyanka-btn-outline:hover {
        background: #d32f2f;
        color: #fff !important;
    }

    /* ══ RIGHT: Image ══ */
    .rk-priyanka-img-wrap {
        position: relative;
    }

    .rk-priyanka-img-box {
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.13);
    }

    .rk-priyanka-img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center;
        display: block;
        border-radius: 20px;
    }

    .rk-priyanka-doc-namecard {
        position: absolute;
        bottom: 20px;
        left: 20px;
        right: 20px;
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid #fecaca;
        border-radius: 14px;
        padding: 14px 18px;
        display: flex;
        align-items: center;
        gap: 14px;
        box-shadow: 0 6px 24px rgba(183, 28, 28, 0.14);
        backdrop-filter: blur(6px);
    }

    .rk-priyanka-doc-namecard .doc-avatar {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: linear-gradient(135deg, #b71c1c, #ef5350);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .rk-priyanka-doc-namecard .doc-avatar i {
        color: #fff;
        font-size: 20px;
    }

    .rk-priyanka-doc-namecard .doc-card-info strong {
        display: block;
        font-size: 14.5px;
        font-weight: 800;
        color: #1a1a2e;
        line-height: 1.3;
    }

    .rk-priyanka-doc-namecard .doc-card-info span {
        font-size: 12px;
        color: #6b7280;
    }

    .rk-priyanka-exp-pill {
        position: absolute;
        top: 18px;
        left: 18px;
        background: linear-gradient(135deg, #b71c1c, #d32f2f);
        color: #fff;
        border-radius: 100px;
        padding: 10px 16px;
        text-align: center;
        box-shadow: 0 4px 16px rgba(183, 28, 28, 0.35);
        line-height: 1.2;
        z-index: 2;
    }

    .rk-priyanka-exp-pill .ep-num {
        font-size: 20px;
        font-weight: 900;
        display: block;
    }

    .rk-priyanka-exp-pill .ep-label {
        font-size: 9.5px;
        font-weight: 700;
        letter-spacing: 0.6px;
        text-transform: uppercase;
        opacity: 0.9;
    }

    /* Responsive */
    @media (max-width: 991px) {
        .rk-priyanka-inner {
            grid-template-columns: 1fr;
            gap: 56px;
        }

        /* On mobile, image goes BELOW content */
        .rk-priyanka-img-wrap {
            order: 2;
            max-width: 480px;
            margin: 0 auto;
        }

        .rk-priyanka-content {
            order: 1;
        }
    }

    @media (max-width: 575px) {
        .rk-priyanka-section {
            padding: 55px 0 65px;
        }

        .rk-priyanka-features-grid {
            grid-template-columns: 1fr;
        }

        .rk-priyanka-stats-strip {
            flex-direction: column;
            gap: 14px;
        }

        .rk-priyanka-stat+.rk-priyanka-stat::before {
            display: none;
        }

        .rk-priyanka-ctas {
            flex-direction: column;
        }

        .rk-priyanka-btn-red,
        .rk-priyanka-btn-outline {
            justify-content: center;
        }
    }

.about-section .main-heading {
    font-size: 30px !important;
    margin-bottom: 20px !important;
}

.about-section {
    padding-top: 30px !important;
    padding-bottom: 50px !important;
}
@media (max-width: 768px) {
    .about-section {
        padding-top: 10px !important;
        padding-bottom: 35px !important;
    }
    
    .about-section .main-heading {
        font-size: 20px !important;
        margin-bottom: 25px !important;
    }
    
    .about-content-details p {
        font-size: 17px !important;
        line-height: 1.5 !important;
        margin-bottom: 18px !important;
    }
}
 /* ═══════════════════════════════════════════
       THEME VARIABLES & DOCTOR CARD STYLES
    ═══════════════════════════════════════════ */
    :root {
        --red: #d32f2f;
        --red-dark: #b71c1c;
        --red-light: #ef5350;
        --red-bg: #fff5f5;
        --red-border: #fecaca;
        --text-dark: #1a1a2e;
        --text-mid: #374151;
        --text-soft: #6b7280;
        --white: #ffffff;
        --border: #e5e7eb;
        --shadow-sm: 0 2px 12px rgba(211, 47, 47, 0.08);
        --shadow-lg: 0 16px 48px rgba(211, 47, 47, 0.18);
    }

    .rk-eyebrow {
        font-size: 11.5px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--red);
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 8px;
    }

    .rk-eyebrow::before {
        content: '';
        width: 30px;
        height: 3px;
        background: var(--red);
        border-radius: 2px;
        flex-shrink: 0;
    }

    .rk-section-title {
        font-size: clamp(1.5rem, 3vw, 2rem);
        font-weight: 800;
        color: var(--text-dark);
        margin-bottom: 6px;
        line-height: 1.25;
    }

    .rk-section-title span {
        color: var(--red);
    }

    /* DOCTOR CARD */
    .doc-card {
        background: var(--white);
        border-radius: 20px;
        overflow: hidden;
        border: 1px solid var(--border);
        box-shadow: var(--shadow-sm);
        transition: all 0.32s;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .doc-card:hover {
        box-shadow: var(--shadow-lg);
        transform: translateY(-6px);
        border-color: var(--red-border);
    }

    .doc-banner {
        background: linear-gradient(135deg, #7f0000 0%, #c62828 100%);
        padding: 36px 28px 0;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .doc-banner .deco-ring {
        position: absolute;
        border: 2px solid rgba(255, 255, 255, 0.07);
        border-radius: 50%;
    }

    .doc-banner .deco-ring.r1 {
        width: 180px;
        height: 180px;
        top: -60px;
        right: -50px;
    }

    .doc-banner .deco-ring.r2 {
        width: 110px;
        height: 110px;
        bottom: 10px;
        left: -30px;
    }

    .doc-banner::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 38px;
        background: var(--white);
        border-radius: 50% 50% 0 0 / 30px 30px 0 0;
    }

    .doc-photo-wrap {
        display: inline-block;
        position: relative;
        z-index: 2;
        margin-bottom: 8px;
    }

    .doc-photo-wrap img {
        width: 155px;
        height: 155px;
        border-radius: 50%;
        object-fit: cover;
        object-position: top;
        border: 5px solid #fff;
        box-shadow: 0 6px 30px rgba(0, 0, 0, 0.25);
        display: block;
    }

    .doc-photo-wrap::before {
        content: '';
        position: absolute;
        inset: -6px;
        border-radius: 50%;
        border: 3px solid rgba(255, 255, 255, 0.35);
    }

    .doc-spec-badge {
        position: absolute;
        bottom: 2px;
        left: 50%;
        transform: translateX(-50%);
        white-space: nowrap;
        background: linear-gradient(135deg, var(--red-dark), var(--red));
        color: #fff;
        font-size: 10.5px;
        font-weight: 700;
        padding: 4px 14px;
        border-radius: 100px;
        box-shadow: 0 3px 12px rgba(183, 28, 28, 0.45);
    }

    .doc-body {
        padding: 16px 26px 28px;
        display: flex;
        flex-direction: column;
        flex: 1;
    }

    .doc-name {
        font-size: 1.22rem;
        font-weight: 800;
        color: var(--text-dark);
        text-align: center;
        margin-bottom: 2px;
    }

    .doc-degree {
        font-size: 12px;
        color: var(--text-soft);
        text-align: center;
        margin-bottom: 16px;
    }

    .doc-hr {
        height: 1px;
        background: var(--border);
        margin: 0 0 15px;
    }

    .doc-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 7px;
        margin-bottom: 16px;
    }

    .doc-tag {
        background: var(--red-bg);
        color: var(--red-dark);
        font-size: 11px;
        font-weight: 600;
        padding: 4px 12px;
        border-radius: 100px;
        border: 1px solid var(--red-border);
    }

    .doc-bio {
        font-size: 13.5px;
        color: var(--text-mid);
        line-height: 1.75;
        margin-bottom: 18px;
        flex: 1;
    }

    .doc-info-strip {
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
        background: var(--red-bg);
        border: 1px solid var(--red-border);
        border-radius: 11px;
        padding: 12px 15px;
        margin-bottom: 20px;
    }

    .doc-info-item {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 12.5px;
        color: var(--text-mid);
    }

    .doc-info-item i {
        color: var(--red);
        font-size: 13px;
    }

    .doc-info-item strong {
        color: var(--text-dark);
    }

    .doc-actions {
        display: flex;
        gap: 10px;
    }

    .btn-rk-primary {
        flex: 1;
        display: block;
        text-align: center;
        background: linear-gradient(135deg, var(--red-dark), var(--red-light));
        color: #fff !important;
        font-size: 13.5px;
        font-weight: 700;
        padding: 12px 16px;
        border-radius: 10px;
        text-decoration: none;
        box-shadow: 0 4px 16px rgba(183, 28, 28, 0.32);
    }

    .btn-rk-primary:hover {
        background: linear-gradient(135deg, #7f0000, var(--red-dark));
        box-shadow: 0 6px 22px rgba(183, 28, 28, 0.45);
        transform: translateY(-1px);
    }

    .btn-rk-outline {
        display: flex;
        align-items: center;
        gap: 7px;
        padding: 12px 16px;
        border-radius: 10px;
        border: 2px solid var(--red);
        color: var(--red);
        font-size: 13.5px;
        font-weight: 700;
        text-decoration: none;
    }

    .btn-rk-outline:hover {
        background: var(--red);
        color: #fff;
    }

    @media (max-width: 768px) {
        .doc-actions {
            flex-direction: column;
        }

        .doc-info-strip {
            flex-direction: column;
            gap: 10px;
        }
    }
    .doc-read-more-btn {
    background: none;
    border: none;
    color: #c0392b;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 4px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 4px;
}
.doc-read-more-btn:hover { text-decoration: underline; }
.doc-read-more-btn i { font-size: 0.7rem; transition: transform 0.2s; }
.doc-read-more-btn.open i { transform: rotate(180deg); }
/* ════════════════════════════════════════════════
   OUR STORY SECTION
════════════════════════════════════════════════ */
.rk-our-story-section {
    padding: 96px 0 100px;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.rk-our-story-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(220,53,69,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.rk-our-story-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(13,110,253,0.04) 0%, transparent 70%);
    pointer-events: none;
}

/* ══ TOP: Centered Intro ════════════════════════ */
.rk-story-top-center {
    text-align: center;
    max-width: 740px;
    margin: 0 auto 64px;
}

.rk-story-main-heading {
    font-size: clamp(1.85rem, 3.2vw, 2.6rem);
    font-weight: 900;
    color: #1a1a2e;
    line-height: 1.22;
    margin: 10px 0 18px;
}

.rk-story-main-heading .accent {
    color: #dc3545;
}

.rk-story-intro-text {
    font-size: 1rem;
    color: #5a5a78;
    line-height: 1.82;
    margin-bottom: 36px;
}

/* Stat Strip */
.rk-story-stat-strip {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 18px;
    padding: 18px 36px;
    gap: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-strip-item {
    text-align: center;
    padding: 6px 28px;
}

.stat-strip-num {
    font-size: 1.65rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.5px;
    line-height: 1;
}

.stat-strip-lbl {
    font-size: 0.67rem;
    color: rgba(255,255,255,0.52);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
    margin-top: 5px;
}

.stat-strip-sep {
    width: 1px;
    height: 38px;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
}

/* ══ BOTTOM: Body Row ═══════════════════════════ */
.rk-story-body-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 991px) {
    .rk-story-body-row {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

/* ══ LEFT: Image Column ════════════════════════ */
.rk-story-img-col { /* wrapper */ }

.rk-story-visual {
    position: relative;
    padding-bottom: 90px;
    padding-right: 56px;
}

/* Main Image */
.story-img-main {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 64px rgba(0,0,0,0.13);
    z-index: 2;
}

.story-img-main img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.55s ease;
}

.story-img-main:hover img {
    transform: scale(1.035);
}

/* Experience Badge */
.story-exp-badge {
    position: absolute;
    top: 28px;
    left: -20px;
    background: linear-gradient(135deg, #dc3545, #b02a37);
    color: #fff;
    border-radius: 18px;
    padding: 16px 18px;
    box-shadow: 0 10px 30px rgba(220,53,69,0.38);
    z-index: 5;
    text-align: center;
    min-width: 96px;
}

.story-exp-badge .exp-num {
    font-size: 1.9rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -1px;
}

.story-exp-badge .exp-label {
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.88;
    margin-top: 4px;
    line-height: 1.3;
}

/* Floating Secondary Image */
.story-img-float {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 210px;
    border-radius: 18px;
    overflow: hidden;
    border: 5px solid #fff;
    box-shadow: 0 12px 36px rgba(0,0,0,0.16);
    z-index: 3;
}

.story-img-float img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.45s ease;
}

.story-img-float:hover img {
    transform: scale(1.04);
}

/* Floating Stat Card */
.story-float-card {
    position: absolute;
    bottom: 30px;
    left: 20px;
    background: #fff;
    border-radius: 14px;
    padding: 13px 16px;
    display: flex;
    align-items: center;
    gap: 11px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.11);
    border: 1px solid #eef0f4;
    z-index: 4;
    min-width: 185px;
}

.sfc-icon {
    width: 38px;
    height: 38px;
    background: rgba(220,53,69,0.09);
    color: #dc3545;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.sfc-num {
    font-size: 1.05rem;
    font-weight: 900;
    color: #1a1a2e;
    line-height: 1;
}

.sfc-lbl {
    font-size: 0.66rem;
    color: #8c8fa5;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-top: 3px;
}

/* ══ RIGHT: Content Column ══════════════════════ */
.rk-story-content-col { /* wrapper */ }

.story-body-lead {
    font-size: 0.97rem;
    font-weight: 500;
    color: #3a3a5c;
    line-height: 1.8;
    border-left: 3px solid #dc3545;
    padding-left: 16px;
    margin-bottom: 16px;
}

.story-body-text {
    font-size: 0.9rem;
    color: #5a5a78;
    line-height: 1.82;
    margin-bottom: 28px;
}

/* Highlights Grid */
.rk-story-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 32px;
}

.story-hl-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #3a3a5c;
    padding: 9px 13px;
    border-radius: 10px;
    background: #f8f9fb;
    border: 1px solid #eef0f4;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    cursor: default;
}

.story-hl-item:hover {
    background: #fff5f5;
    border-color: #fecaca;
    transform: translateX(4px);
}

.hl-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.hl-red    { background: rgba(220,53,69,0.10);  color: #dc3545; }
.hl-blue   { background: rgba(13,110,253,0.10); color: #0d6efd; }
.hl-green  { background: rgba(25,135,84,0.10);  color: #198754; }
.hl-orange { background: rgba(253,126,20,0.10); color: #fd7e14; }
.hl-pink   { background: rgba(214,51,132,0.10); color: #d63384; }
.hl-purple { background: rgba(111,66,193,0.10); color: #6f42c1; }
.hl-yellow { background: rgba(255,193,7,0.13);  color: #c49a00; }
.hl-teal   { background: rgba(13,202,240,0.10); color: #0d8daa; }

/* CTA Row */
.story-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

/* ══ Responsive ═════════════════════════════════ */
@media (max-width: 991px) {
    .rk-our-story-section { padding: 72px 0 80px; }

    .rk-story-visual {
        padding-right: 44px;
        padding-bottom: 72px;
        max-width: 480px;
        margin: 0 auto;
    }
}

@media (max-width: 575px) {
    .rk-our-story-section { padding: 56px 0 60px; }

    .rk-story-top-center { margin-bottom: 44px; }

    .rk-story-stat-strip {
        padding: 14px 16px;
        gap: 4px;
        border-radius: 14px;
    }
    .stat-strip-item   { padding: 4px 14px; }
    .stat-strip-num    { font-size: 1.25rem; }
    .stat-strip-sep    { display: none; }

    .story-img-main img  { height: 280px; }

    .story-exp-badge {
        top: 14px;
        left: -10px;
        min-width: 78px;
        padding: 10px 12px;
    }
    .story-exp-badge .exp-num { font-size: 1.4rem; }

    .story-img-float { width: 150px; }
    .story-img-float img { height: 120px; }

    .story-float-card  { min-width: 160px; left: 10px; }

    .rk-story-highlights { grid-template-columns: 1fr; }

    .story-cta-row { flex-direction: column; align-items: stretch; }
    .story-cta-row .rk-btn-primary,
    .story-cta-row .rk-btn-outline { text-align: center; justify-content: center; }
}

/* ════════════════════════════════════════════════
   AWARDS & ACCREDITATIONS OVERRIDE (Top Icon Layout)
════════════════════════════════════════════════ */
.rk-award-card {
    display: flex !important;
    flex-direction: column !important; /* Forces top-to-bottom */
    align-items: center !important;    /* Centers horizontally */
    text-align: center;                /* Centers text */
    background: #fff;
    padding: 40px 24px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    border: 1px solid #eef0f4;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rk-award-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.rk-award-card .aw-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #dc3545, #b02a37);
    color: #fff;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    margin-bottom: 24px; /* Space between icon and text */
    box-shadow: 0 10px 24px rgba(220,53,69,0.35);
}

.rk-award-card .aw-content h4 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 12px;
    line-height: 1.4;
}

.rk-award-card .aw-content p {
    font-size: 0.9rem;
    color: #5a5a78;
    line-height: 1.7;
    margin-bottom: 0;
}
/* ─── Mobile Spacing Fix — about-us.php ─── */
@media (max-width: 768px) {
    .about-section {
        padding-top: 35px !important;
        padding-bottom: 35px !important;
    }
    .rk-our-story-section {
        padding-top: 35px !important;
        padding-bottom: 35px !important;
    }
    .rk-awards-section {
        padding-top: 35px !important;
        padding-bottom: 35px !important;
    }
}
@media (max-width: 768px) {
    .rk-story-body-row {
        gap: 24px !important;
    }
}
 
 /* ═══════════════════════════════════════════════════════
   SERVICES OVERVIEW SECTION — alignment fix only
════════════════════════════════════════════════════════ */

/* Make all 4 cards same height */
.rk-services-overview-section .row.g-4 {
    align-items: stretch;
}

.rk-service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 32px 28px 28px;
    border: 1.5px solid #e8eaf0;
    border-radius: 16px;
    background: #fff;
    position: relative;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.rk-service-card:hover {
    box-shadow: 0 12px 36px rgba(192,57,43,0.12);
    transform: translateY(-4px);
}

/* Icon — proper size, red box */
.rk-service-card .svc-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, #c0392b, #e74c3c);
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 4px 14px rgba(192,57,43,0.28);
}

/* Title */
.rk-service-card .svc-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 10px;
    line-height: 1.35;
}

/* Description */
.rk-service-card .svc-desc {
    font-size: 13.5px;
    color: #5a6480;
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

/* Link — always at bottom */
.rk-service-card .svc-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: #c0392b;
    text-decoration: none;
    margin-top: 20px;
    transition: gap 0.2s ease;
}
.rk-service-card .svc-link:hover {
    gap: 10px;
}

/* ═══════════════════════════════════════════════════════
   AWARDS SECTION — alignment fix only
════════════════════════════════════════════════════════ */

.rk-awards-section .row.g-4 {
    align-items: stretch;
}

.rk-award-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 32px 26px 28px;
    border: 1.5px solid #e8eaf0;
    border-radius: 16px;
    background: #fff;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.rk-award-card:hover {
    box-shadow: 0 12px 36px rgba(192,57,43,0.10);
    transform: translateY(-4px);
}

/* Icon — proper size, red box */
.rk-award-card .aw-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #c0392b, #e74c3c);
    color: #fff;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(192,57,43,0.28);
}

/* Title */
.rk-award-card .aw-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 10px;
    line-height: 1.35;
}

/* Description */
.rk-award-card .aw-content p {
    font-size: 13.5px;
    color: #5a6480;
    line-height: 1.68;
    margin: 0;
}

.rk-award-card .aw-content p strong {
    color: #1a1a2e;
    font-weight: 700;
}

/* First card light red highlight */
.rk-award-card:first-child {
    background: #fff5f5;
    border-color: rgba(192,57,43,0.20);
}
   :root {
            --brand-primary: #1d4ed8;
            --text-dark: #0f172a;
            --text-muted: #64748b;
            --bg-page: #f1f5f9;
            --card-shadow: 0 10px 40px rgba(15, 23, 42, 0.05);
            --border-soft: #e2e8f0;
            --font-main: 'Inter', sans-serif;
            --font-heading: 'Playfair Display', serif;
        }

        body {
            background-color: var(--bg-page);
            font-family: var(--font-main);
            color: var(--text-dark);
        }

        /* ── Banner / Profile Header ── */
        .profile-header-bg {
            position: relative;
            width: 100%;
            display: block; /* koi overlap nahi — normal flow mein rahega */
            <?php if ($hasBannerImage): ?>
            background-image: url("<?= asset($doctorFeatureImage) ?>");
            background-color: #1e293b;
            <?php else: ?>
            background-color: #1e293b;
            <?php endif; ?>
            background-size: cover;
            background-position: center center; /* image center se dikhegi — top crop nahi */
            background-repeat: no-repeat;
            /* Desktop */
            height: 420px;
        }

        /* Tablet */
        @media (max-width: 991px) {
            .profile-header-bg {
                height: 320px;
            }
        }

        /* Mobile — POORI image dikhegi, crop nahi */
        @media (max-width: 767px) {
            .profile-header-bg {
                /* aspect-ratio se image apne proportion mein rahegi */
                height: auto;
                aspect-ratio: 16 / 9;
                background-size: contain;        /* poori image fit hogi, crop nahi */
                background-position: center center;
                background-color: #1e293b;       /* sides pe dark fill */
            }
        }

        /* ── Breadcrumb — banner ke BAAD neeche aayega, image ke UPAR nahi ── */
        /* Theme ke style.css mein agar position:absolute hai toh override */
        .breadcrumb-strip {
            position: relative !important;
            top: auto !important;
            left: auto !important;
            right: auto !important;
            bottom: auto !important;
            z-index: 10 !important;
            background: #ffffff;
            border-bottom: 1px solid var(--border-soft);
            padding: 10px 0;
        }

        /* ── Master Profile Card ── */
        .master-profile-wrap {
            position: relative;
            z-index: 5;
            margin-top: 0;
            margin-bottom: 40px;
        }

        .master-profile-card {
            background: #ffffff;
            border-radius: 20px;
            box-shadow: var(--card-shadow);
            padding: 30px;
            display: flex;
            gap: 30px;
            align-items: center;
        }

        /* Mobile: card stack ho jaye */
        @media (max-width: 767px) {
            .master-profile-card {
                flex-direction: column;
                text-align: center;
                gap: 18px;
                padding: 20px 16px;
                border-radius: 16px;
            }
        }

        /* Avatar */
        .mp-avatar-wrap {
            flex-shrink: 0;
            position: relative;
            display: flex;
            align-items: center;
        }

        .mp-avatar {
            width: 140px;
            height: 140px;
            object-fit: cover;
            border-radius: 16px;
            border: 4px solid #fff;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            background: #f8fafc;
        }

        @media (max-width: 767px) {
            .mp-avatar {
                width: 110px;
                height: 110px;
            }
        }

        .mp-verified {
            position: absolute;
            bottom: -4px;
            right: -4px;
            background: #10b981;
            color: #fff;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            border: 3px solid #fff;
        }

        /* Info */
        .mp-info { flex-grow: 1; }

        .mp-info h1 {
            font-family: var(--font-heading);
            font-size: 2.2rem;
            margin: 0 0 4px;
            color: #0f172a;
            font-weight: 800;
        }

        @media (max-width: 767px) {
            .mp-info h1 {
                font-size: 1.5rem;
            }
        }

        .mp-info .designation {
            font-size: 1.05rem;
            color: #2563eb;
            font-weight: 500;
            margin-bottom: 16px;
        }

        @media (max-width: 767px) {
            .mp-info .designation {
                font-size: 0.95rem;
                margin-bottom: 12px;
            }
        }

        .mp-tags {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        @media (max-width: 767px) {
            .mp-tags {
                justify-content: center;
            }
        }

        .mp-tag {
            padding: 6px 14px;
            border-radius: 6px;
            font-size: 12.5px;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .mp-tag.specialty { background: #eff6ff; color: #2563eb; }
        .mp-tag.location  { background: #f1f5f9; color: #475569; }

        /* Stats */
        .mp-stats {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            border-left: 1px solid #e2e8f0;
            padding-left: 40px;
            padding-right: 20px;
            flex-shrink: 0;
        }

        @media (max-width: 767px) {
            .mp-stats {
                border-left: none;
                border-top: 1px solid var(--border-soft);
                padding-left: 0;
                padding-right: 0;
                padding-top: 16px;
                width: 100%;
                flex-direction: row;
                gap: 30px;
                justify-content: center;
            }
        }

        .stat-block { text-align: center; }

 
        .stat-num {
            font-size: 1.7rem;
            font-weight: 800;
            margin: 0 0 2px;
            color: #0f172a;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }

        .stat-num i { color: #f59e0b; font-size: 1.1rem; }

        .stat-block p {
            font-size: 10px;
            color: #64748b;
            margin: 0;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        /* ── Cards ── */
        .doc-card {
            background: #fff;
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 4px 15px rgba(15,23,42,0.02);
            border: 1px solid #e2e8f0;
            margin-bottom: 24px;
        }

        @media (max-width: 767px) {
            .doc-card {
                padding: 20px 16px;
                border-radius: 12px;
                margin-bottom: 16px;
            }
        }

        .doc-card-title {
            font-family: var(--font-heading);
            font-size: 1.4rem;
            color: var(--text-dark);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--border-soft);
        }

        @media (max-width: 767px) {
            .doc-card-title {
                font-size: 1.2rem;
            }
        }

        .doc-card-title .icon-box {
            background: #eff6ff;
            color: var(--brand-primary);
            width: 36px;
            height: 36px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            flex-shrink: 0;
        }

        /* ── Timeline ── */
        .modern-timeline {
            position: relative;
            padding-left: 25px;
        }

        .modern-timeline::before {
            content: '';
            position: absolute;
            left: 5px;
            top: 0;
            bottom: 0;
            width: 2px;
            border-left: 2px dashed #cbd5e1;
        }

        .mt-item {
            position: relative;
            margin-bottom: 25px;
        }

        .mt-item:last-child { margin-bottom: 0; }

        .mt-dot {
            position: absolute;
            left: -25px;
            top: 4px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #fff;
            border: 2px solid var(--brand-primary);
            box-shadow: 0 0 0 4px #fff;
        }

        .mt-content h3 {
            font-size: 1.05rem;
            font-weight: 600;
            margin: 0 0 4px;
            color: var(--text-dark);
        }

        @media (max-width: 767px) {
            .mt-content h3 {
                font-size: 0.95rem;
            }
        }

        .mt-content .highlight {
            display: inline-block;
            background: #eff6ff;
            color: var(--brand-primary);
            padding: 4px 10px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 500;
            margin-bottom: 6px;
        }

        .mt-content .date {
            font-size: 13px;
            color: var(--text-muted);
            font-weight: 400;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        /* ── Sidebar Info ── */
        .info-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .info-list li {
            display: flex;
            gap: 15px;
            margin-bottom: 18px;
            align-items: flex-start;
        }

        .info-list li:last-child { margin-bottom: 0; }

        .info-list i {
            font-size: 18px;
            color: var(--brand-primary);
            margin-top: 3px;
            flex-shrink: 0;
        }

        .info-list .info-label {
            font-size: 12px;
            color: var(--text-muted);
            font-weight: 500;
            text-transform: uppercase;
            margin-bottom: 2px;
        }

        .info-list .info-val {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-dark);
        }

        /* FIX: Sticky hata diya sidebar se — normal flow */
        .sticky-sidebar {
            position: static; /* was: sticky — hata diya bhai */
        }

        /* ── CTA Buttons ── */
        .btn-book-appointment {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: var(--brand-primary);
            color: #fff !important;
            border: none;
            padding: 13px 20px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            text-decoration: none !important;
            width: 100%;
            margin-top: 20px;
            transition: background 0.2s ease, transform 0.2s ease;
        }

        .btn-book-appointment:hover {
            background: #1e40af;
            transform: translateY(-2px);
            color: #fff !important;
        }

        .btn-call-now {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: #fff;
            color: var(--brand-primary) !important;
            border: 2px solid var(--brand-primary);
            padding: 11px 20px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            text-decoration: none !important;
            width: 100%;
            margin-top: 10px;
            transition: background 0.2s ease, color 0.2s ease;
        }

        .btn-call-now:hover {
            background: var(--brand-primary);
            color: #fff !important;
        }

        /* ── Specializations tags mobile ── */
        @media (max-width: 767px) {
            .specs-wrap {
                gap: 8px !important;
            }

            .spec-tag {
                font-size: 12px !important;
                padding: 6px 10px !important;
            }
        }

        /* ── Map iframe responsive ── */
        .map-container {
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-soft);
        }

        .map-container iframe {
            width: 100% !important;
            height: 200px;
            border: 0;
            display: block;
        }

        /* ── Bio text ── */
        .bio-para {
            font-size: 1rem;
            line-height: 1.8;
            color: var(--text-muted);
            margin: 0 0 16px 0;
            text-align: justify;
        }

        @media (max-width: 767px) {
            .bio-para {
                font-size: 0.92rem;
                line-height: 1.7;
                text-align: left;
            }
        }

        /* ── E-E-A-T Trust Section ── */
        .eeat-grid {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .eeat-item {
            display: flex;
            gap: 16px;
            align-items: flex-start;
            padding: 16px;
            background: #f8fafc;
            border-radius: 10px;
            border: 1px solid var(--border-soft);
        }

        .eeat-icon {
            background: #eff6ff;
            color: var(--brand-primary);
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 17px;
            flex-shrink: 0;
        }

        /* ✅ SEO: H3 under H2 — proper hierarchy, keyword-rich */
        .eeat-item h3 {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--text-dark);
            margin: 0 0 6px;
        }

        .eeat-item p {
            font-size: 13.5px;
            color: var(--text-muted);
            margin: 0;
            line-height: 1.6;
        }

        @media (max-width: 767px) {
            .eeat-item {
                padding: 14px 12px;
                gap: 12px;
            }

            .eeat-icon {
                width: 34px;
                height: 34px;
                font-size: 14px;
            }

            .eeat-item h3 {
                font-size: 0.88rem;
            }
        }

        /* ── E-E-A-T Stats Strip (1000+ surgeries etc) ── */
        .stats-strip {
            background: #fff;
            border-radius: 16px;
            border: 1px solid #fecdd3;
            padding: 20px 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0;
            margin-bottom: 28px;
            flex-wrap: wrap;
        }

        .stats-strip-item {
            text-align: center;
            flex: 1;
            min-width: 120px;
            padding: 10px 20px;
            border-right: 1px solid #e2e8f0;
        }

        .stats-strip-item:last-child { border-right: none; }

        .stats-strip-num {
            font-size: 1.8rem;
            font-weight: 800;
            color: #dc2626;
            line-height: 1;
            margin-bottom: 6px;
        }

        .stats-strip-num i { color: #dc2626; font-size: 1.4rem; }

        .stats-strip-label {
            font-size: 12px;
            color: #64748b;
            font-weight: 500;
        }

        @media (max-width: 767px) {
            .stats-strip {
                padding: 16px 10px;
                gap: 0;
                border-radius: 12px;
            }

            .stats-strip-item {
                min-width: 80px;
                padding: 8px 10px;
            }

            .stats-strip-num { font-size: 1.3rem; }
            .stats-strip-label { font-size: 10px; }
        }

        /* ── Keyword Tags (hidden visually but SEO value) ── */
        .keyword-section {
            background: #f8fafc;
            border: 1px solid var(--border-soft);
            border-radius: 12px;
            padding: 16px 20px;
            margin-bottom: 24px;
        }

        .keyword-section-title {
            font-size: 12px;
            font-weight: 600;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 10px;
        }

        .keyword-tags-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .keyword-tag {
            font-size: 12px;
            color: var(--brand-primary);
            background: #eff6ff;
            border: 1px solid #bfdbfe;
            padding: 4px 12px;
            border-radius: 20px;
            font-weight: 500;
        }

        @media (max-width: 767px) {
            .keyword-section { padding: 14px 14px; }
            .keyword-tag { font-size: 11px; padding: 4px 10px; }
        }

        /* ── Explore links ── */
        .explore-link {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13.5px;
            color: var(--brand-primary);
            font-weight: 500;
            text-decoration: none;
        }

        .explore-link:hover {
            text-decoration: underline;
            color: #1e40af;
        }

        @media (max-width: 767px) {
            .explore-link {
                font-size: 13px;
            }
        }
        .rk-faq-section {
    padding: 80px 0;
    background: #f8fafc;
    font-family: 'DM Sans', sans-serif;
}
.rk-faq-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.rk-faq-left {
    position: sticky;
    top: 100px;
}
.rk-faq-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #E8002D;
    margin-bottom: 14px;
}
.rk-faq-eyebrow::before {
    content: '';
    width: 22px;
    height: 2px;
    background: #E8002D;
    display: block;
}
.rk-faq-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin: 0 0 16px;
}
.rk-faq-heading span {
    color: #E8002D;
    font-style: italic;
}
.rk-faq-desc {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    margin: 0 0 28px;
}
.rk-faq-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.rk-faq-img-wrap img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}
.rk-faq-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(15,23,42,0.85) 0%, transparent 100%);
    padding: 24px 20px 20px;
    border-radius: 0 0 20px 20px;
}
.rk-faq-img-stat {
    display: flex;
    gap: 20px;
}
.rk-faq-img-stat-item {
    text-align: center;
}
.rk-faq-img-stat-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    display: block;
    line-height: 1;
    margin-bottom: 4px;
}
.rk-faq-img-stat-lbl {
    font-size: 11px;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
}
.rk-faq-cta-strip {
    margin-top: 24px;
    background: #fff;
    border-radius: 14px;
    padding: 18px 20px;
    border: 1.5px solid #fecdd3;
    display: flex;
    align-items: center;
    gap: 14px;
}
.rk-faq-cta-icon {
    width: 46px;
    height: 46px;
    background: #E8002D;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
}
.rk-faq-cta-text p {
    margin: 0;
    font-size: 13px;
    color: #64748b;
}
.rk-faq-cta-text a {
    font-size: 15px;
    font-weight: 700;
    color: #E8002D;
    text-decoration: none;
}
.rk-faq-cta-text a:hover { text-decoration: underline; }

/* RIGHT — Accordion */
.rk-faq-right { display: flex; flex-direction: column; gap: 12px; }

.rk-faq-item {
    background: #fff;
    border-radius: 14px;
    border: 1.5px solid #e2e8f0;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.rk-faq-item.active {
    border-color: #E8002D;
    box-shadow: 0 4px 20px rgba(232,0,45,0.08);
}
.rk-faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    text-align: left;
}
.rk-faq-q-left {
    display: flex;
    align-items: center;
    gap: 14px;
}
.rk-faq-num {
    width: 32px;
    height: 32px;
    background: #fff0f0;
    color: #E8002D;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
    transition: background 0.2s, color 0.2s;
}
.rk-faq-item.active .rk-faq-num {
    background: #E8002D;
    color: #fff;
}
.rk-faq-q-text {
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.4;
}
.rk-faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 12px;
    flex-shrink: 0;
    transition: all 0.25s ease;
}
.rk-faq-item.active .rk-faq-icon {
    background: #E8002D;
    border-color: #E8002D;
    color: #fff;
    transform: rotate(45deg);
}
.rk-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.2s ease;
}
.rk-faq-item.active .rk-faq-answer {
    max-height: 300px;
}
.rk-faq-answer-inner {
    padding: 0 20px 18px 66px;
    font-size: 14.5px;
    color: #475569;
    line-height: 1.75;
}
.rk-faq-answer-inner a {
    color: #E8002D;
    font-weight: 600;
    text-decoration: none;
}
.rk-faq-answer-inner a:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 991px) {
    .rk-faq-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .rk-faq-left { position: static; }
    .rk-faq-heading { font-size: 1.8rem; }
    .rk-faq-img-wrap img { height: 260px; }
}
@media (max-width: 575px) {
    .rk-faq-section { padding: 50px 0; }
    .rk-faq-heading { font-size: 1.5rem; }
    .rk-faq-answer-inner { padding-left: 20px; }
    .rk-faq-q-text { font-size: 14px; }
}

.banner-carousel-full .slick-dots {
    display: none !important;
}
/* ── Parent menu item ── */
.main-nav .has-submenu {
    position: relative;
}

/* ── Dropdown container (CENTER aligned under Doctors) ── */
.main-nav .has-submenu .submenu.sub-menu-default {
    position: absolute !important;
    top: 100% !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(6px);
    margin-top: 0 !important;
    min-width: 240px !important;
    max-width: 270px !important;
    padding: 6px 0 !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .12) !important;
    border: 1px solid #ebebeb !important;
    background: #fff !important;
    opacity: 0;
    visibility: hidden;
    transition: all 0.18s ease;
    z-index: 999;
}

/* ── Show dropdown ── */
.main-nav .has-submenu:hover .submenu.sub-menu-default {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* 🔥 Invisible hover bridge (prevents vanish issue) */
.main-nav .has-submenu::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 12px;
}

/* ── Divider between items ── */
.main-nav .has-submenu .submenu.sub-menu-default > li {
    padding: 0 !important;
    margin: 0 !important;
    border-bottom: 1px solid #f4f4f4 !important;
}

.main-nav .has-submenu .submenu.sub-menu-default > li:last-child {
    border-bottom: none !important;
}

/* ── Each row link ── */
.main-nav .has-submenu .submenu.sub-menu-default > li > a {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 8px 14px !important;
    text-align: left !important;
    text-decoration: none !important;
    transition: background .15s ease !important;
    background: transparent !important;
    color: inherit !important;
}

.main-nav .has-submenu .submenu.sub-menu-default > li > a:hover {
    background: #f0f4ff !important;
}

.main-nav .has-submenu .submenu.sub-menu-default > li > a:hover strong {
    color: #2563eb !important;
}

/* ── Avatar ── */
.main-nav .has-submenu .submenu.sub-menu-default > li > a .rk-nav-avatar {
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    flex-shrink: 0 !important;
    border: 2px solid #e8eaf6 !important;
}

/* ── Text block ── */
.main-nav .has-submenu .submenu.sub-menu-default > li > a .rk-nav-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: left;
}

.main-nav .has-submenu .submenu.sub-menu-default > li > a .rk-nav-info strong {
    display: block;
    font-size: .83rem !important;
    font-weight: 600 !important;
    color: #1a1a2e !important;
    line-height: 1.3 !important;
    transition: color .15s;
}

.main-nav .has-submenu .submenu.sub-menu-default > li > a .rk-nav-info small {
    display: block;
    font-size: .72rem !important;
    color: #8a8a9a !important;
    line-height: 1.2 !important;
    font-weight: 400 !important;
}

/* ── Logo Fix ── */
.navbar-brand.logo {
    display: flex;
    align-items: center;
    padding: 0 !important;
}

.navbar-brand.logo img {
    height: 55px !important;
    width: auto !important;
    max-width: 100% !important;
    object-fit: contain;
}

.header-nav {
    min-height: 70px;
    display: flex;
    align-items: center;
}

/* ── Mobile toggle button — no JS void ── */
#mobile_btn,
#menu_close {
    cursor: pointer;
}

/* Mobile Fix */
@media (max-width: 575.98px) {
    .navbar-brand.logo img {
        height: 40px !important;
    }
}

@media (max-width: 991.98px) {
    .main-nav .has-submenu .submenu.sub-menu-default {
        position: static !important;
        transform: none !important;
        left: auto !important;
        top: auto !important;
        min-width: 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        box-shadow: none !important;
        border-radius: 8px !important;
        border: 1px solid #ebebeb !important;
        margin-top: 6px !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
}


        /* ══ WYSIWYG Content ══ */
    .service-content, .widget.about-widget {
        width:100% !important; max-width:100% !important;
        display:block !important; box-sizing:border-box !important;
    }
    .service-content *, .widget.about-widget * { max-width:100% !important; }
    .service-content p, .widget.about-widget p, .service-content div {
        width:100% !important; max-width:100% !important;
        text-align:justify !important; margin-bottom:1.2rem !important;
        line-height:1.8 !important; color:#555 !important;
        padding-right:0 !important; margin-right:0 !important;
        word-wrap:break-word !important;
    }
    .service-content .ql-align-justify,.widget .ql-align-justify { text-align:justify !important; }
    .service-content .ql-align-center,.widget .ql-align-center   { text-align:center !important; }
    .service-content .ql-align-right,.widget .ql-align-right     { text-align:right !important; }
    .service-content .ql-align-left,.widget .ql-align-left       { text-align:left !important; }
    .service-content ul,.widget.about-widget ul {
        list-style-type:disc !important; padding-left:2.5rem !important; margin-bottom:1.5rem !important;
    }
    .service-content ol,.widget.about-widget ol {
        list-style-type:decimal !important; padding-left:2.5rem !important; margin-bottom:1.5rem !important;
    }
    .service-content li,.widget.about-widget li {
        list-style:inherit !important; display:list-item !important;
        margin-bottom:8px !important; line-height:1.7;
    }
    ul.experience-list { list-style-type:none !important; padding-left:0 !important; }
    ul.experience-list li { list-style:none !important; display:block !important; }

    /* ══ CTA Banner ══ */
    .rk-cta-banner {
        display:flex; align-items:center; justify-content:center;
        flex-wrap:wrap; gap:12px; padding:10px 0 4px;
    }
    .rk-cta-banner .cta-btn {
        display:inline-flex; align-items:center; gap:7px;
        background:#c0392b; color:#fff !important;
        font-weight:600; font-size:14px; padding:10px 22px;
        border-radius:8px; text-decoration:none !important;
        white-space:nowrap; transition:background .2s ease;
    }
    .rk-cta-banner .cta-btn:hover { background:#a93226; }
    .rk-cta-banner .cta-btn-outline {
        background:#fff; color:#1a3c8f !important;
        border:2px solid #1a3c8f;
    }
    .rk-cta-banner .cta-btn-outline:hover { background:#1a3c8f; color:#fff !important; }
    @media (max-width:576px) { .rk-cta-banner .cta-btn { font-size:13px; padding:9px 16px; } }

    /* ══ Date picker ══ */
    .date-icon { position:absolute; right:12px; top:50%; transform:translateY(-50%); color:#0d6efd; pointer-events:none; }
    .flatpickr-calendar { border-radius:12px; box-shadow:0 10px 30px rgba(0,0,0,.1); }
    .flatpickr-day.selected { background:#0d6efd; border-color:#0d6efd; }
    .flatpickr-day:hover { background:#e7f1ff; color:#0d6efd; }

    /* ══ Custom bullet points ══ */
    .custom-point {
        position:relative; padding:16px 16px 16px 45px;
        background:#fff; border-radius:10px;
        transition:all .3s ease; border:1px solid #f1f1f1;
    }
    .custom-point:hover { transform:translateY(-3px); box-shadow:0 8px 20px rgba(0,0,0,.05); }
    .custom-point::before {
        content:""; position:absolute; left:15px; top:20px;
        width:12px; height:12px; border-radius:50%;
        background:linear-gradient(135deg,#0d6efd,#00c6ff);
        box-shadow:0 0 0 4px rgba(13,110,253,.15);
    }
    .custom-point h6 { margin-bottom:5px; font-weight:600; color:#0b1c39; }
    .custom-point p  { margin:0; font-size:14px; color:#6c757d; }

    /* ══ Icon badge ══ */
    .icon-style {
        width:60px; height:60px; background:#6f42c1;
        border-radius:50%; display:flex; align-items:center; justify-content:center;
    }
    .icon-style i { color:#fff; font-size:24px; }

    /* ══ Service nav list ══ */
    .service-nav-list { list-style:none; padding:0; margin:0; }
    .service-nav-list li a {
        display:flex; align-items:center; gap:10px;
        padding:9px 12px; border-radius:8px;
        color:#444; text-decoration:none; font-size:14px; font-weight:500;
        transition:background .2s,color .2s;
    }
    .service-nav-list li a:hover,
    .service-nav-list li.active a { background:#e7f1ff; color:#0d6efd; }
    .service-nav-list li.active a { font-weight:700; }
    .service-nav-list li a i { font-size:18px; color:#0d6efd; flex-shrink:0; }

    /* ══ Gallery ══ */
    .service-gallery .gallery-item { overflow:hidden; border-radius:10px; display:block; }
    .service-gallery img {
        border-radius:10px; object-fit:cover; width:100%; height:180px;
        transition:transform .3s; display:block;
    }
    .service-gallery a:hover img { transform:scale(1.04); }

    .aboutsection { padding:20px 0 0; }
    
      /* ═══════════════════════════════════════════
           THEME VARIABLES — matches homepage red/white
        ═══════════════════════════════════════════ */
        :root {
            --red: #d32f2f;
            --red-dark: #b71c1c;
            --red-light: #ef5350;
            --red-bg: #fff5f5;
            --red-border: #fecaca;
            --text-dark: #1a1a2e;
            --text-mid: #374151;
            --text-soft: #6b7280;
            --white: #ffffff;
            --off-white: #f9fafb;
            --border: #e5e7eb;
            --shadow-sm: 0 2px 12px rgba(211, 47, 47, 0.08);
            --shadow-md: 0 6px 28px rgba(211, 47, 47, 0.13);
            --shadow-lg: 0 20px 60px rgba(211, 47, 47, 0.18);
            --primary: #316dff;
            --blue-dark: #1a3fa3;
            --blue-bg: #eef3ff;
            --blue-border: #c3d0f8;
        }

        /* ─── BANNER ─── */
        .contact-hero-banner {
            margin-left: 0 !important;
            margin-right: 0 !important;
            width: 100% !important;
            max-width: 100% !important;
        }

        /* ─── META BAR ─── */
        .pp-meta-bar {
            background: var(--off-white);
            border-bottom: 1px solid var(--border);
            padding: 14px 0;
        }

        .pp-meta-inner {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 12px;
        }

        .pp-updated-badge {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 6px 8px;
            font-size: 12.5px;
            color: var(--text-soft);
            line-height: 1.6;
        }
        .pp-updated-badge i { color: var(--primary); flex-shrink: 0; }
        .pp-updated-badge strong { color: var(--text-dark); }

        .pp-print-btn {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            font-size: 12.5px;
            font-weight: 600;
            color: var(--text-mid);
            background: none;
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 6px 16px;
            cursor: pointer;
            transition: all 0.2s;
            white-space: nowrap;
        }
        .pp-print-btn:hover { background: var(--white); border-color: var(--red); color: var(--red); }

        @media (min-width: 768px) {
            .pp-meta-inner {
                flex-direction: row;
                align-items: center;
                justify-content: space-between;
            }
        }
        @media (max-width: 767px) {
            .pp-print-btn {
                width: 100%;
                justify-content: center;
            }
        }

        /* ─── MAIN LAYOUT ─── */
        .pp-wrapper {
            padding: 60px 0 80px;
            background: #fff;
        }

        /* ─── STICKY SIDEBAR TOC ─── */
        .pp-sidebar {
            position: sticky;
            top: 90px;
        }

        .pp-toc {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 18px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
        }

        .pp-toc-header {
            background: linear-gradient(135deg, var(--red-dark), var(--red));
            padding: 18px 22px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .pp-toc-header i { color: #fff; font-size: 16px; }
        .pp-toc-header h5 {
            margin: 0;
            color: #fff;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 0.5px;
        }

        .pp-toc-list { padding: 14px 0; }
        .pp-toc-list a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 9px 22px;
            font-size: 13px;
            font-weight: 500;
            color: var(--text-mid);
            text-decoration: none;
            transition: all 0.2s;
            border-left: 3px solid transparent;
        }
        .pp-toc-list a .toc-num {
            min-width: 22px;
            height: 22px;
            border-radius: 50%;
            background: var(--off-white);
            color: var(--red);
            font-size: 10.5px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--red-border);
            transition: all 0.2s;
            flex-shrink: 0;
        }
        .pp-toc-list a:hover {
            color: var(--red);
            background: var(--red-bg);
            border-left-color: var(--red);
        }
        .pp-toc-list a:hover .toc-num {
            background: var(--red);
            color: #fff;
            border-color: var(--red);
        }
        .pp-toc-list a.active {
            color: var(--red);
            background: var(--red-bg);
            border-left-color: var(--red);
            font-weight: 700;
        }
        .pp-toc-list a.active .toc-num {
            background: var(--red);
            color: #fff;
        }

        /* Contact Card in Sidebar */
        .pp-contact-card {
            background: linear-gradient(135deg, #0d1b4b 0%, #1a3fa3 100%);
            border-radius: 18px;
            padding: 26px 22px;
            margin-top: 20px;
            text-align: center;
        }
        .pp-contact-card i { font-size: 28px; color: rgba(255,255,255,0.8); margin-bottom: 12px; display: block; }
        .pp-contact-card h6 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 6px; }
        .pp-contact-card p { color: rgba(255,255,255,0.7); font-size: 12.5px; margin-bottom: 16px; }
        .pp-contact-card a {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            background: var(--red);
            color: #fff;
            font-size: 13px;
            font-weight: 700;
            padding: 10px 22px;
            border-radius: 100px;
            text-decoration: none;
            transition: all 0.22s;
        }
        .pp-contact-card a:hover { background: var(--red-dark); transform: translateY(-1px); color: #fff; }

        /* ─── CONTENT SECTIONS ─── */
        .pp-section {
            margin-bottom: 48px;
            scroll-margin-top: 100px;
        }

        .pp-section-header {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 22px;
            padding-bottom: 18px;
            border-bottom: 2px solid var(--border);
        }

        .pp-section-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
        }
        .pp-section-icon.red { background: var(--red-bg); color: var(--red); border: 1px solid var(--red-border); }
        .pp-section-icon.blue { background: var(--blue-bg); color: var(--primary); border: 1px solid var(--blue-border); }

        .pp-section-header-text { flex: 1; }
        .pp-section-num {
            font-size: 10.5px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--red);
            margin-bottom: 3px;
        }
        .pp-section-title {
            font-size: 1.25rem;
            font-weight: 800;
            color: var(--text-dark);
            margin: 0;
        }

        .pp-prose {
            font-size: 14.5px;
            color: var(--text-mid);
            line-height: 1.85;
        }

        /* List style */
        .pp-list {
            list-style: none;
            padding: 0;
            margin: 14px 0 0;
        }
        .pp-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 11px 0;
            border-bottom: 1px solid var(--border);
            font-size: 14px;
            color: var(--text-mid);
            line-height: 1.65;
        }
        .pp-list li:last-child { border-bottom: none; }
        .pp-list li .li-icon {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: var(--red-bg);
            color: var(--red);
            font-size: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 2px;
            border: 1px solid var(--red-border);
            transition: all 0.2s;
        }
        .pp-list li .li-icon.blue { background: var(--blue-bg); color: var(--primary); border-color: var(--blue-border); }

        /* Highlight box */
        .pp-highlight {
            background: var(--red-bg);
            border: 1px solid var(--red-border);
            border-left: 4px solid var(--red);
            border-radius: 10px;
            padding: 16px 20px;
            margin-top: 16px;
            font-size: 13.5px;
            color: var(--text-mid);
            line-height: 1.75;
        }
        .pp-highlight.blue {
            background: var(--blue-bg);
            border-color: var(--blue-border);
            border-left-color: var(--primary);
        }
        .pp-highlight strong { color: var(--text-dark); }

        /* Info grid */
        .pp-info-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
            margin-top: 18px;
        }
        .pp-info-card {
            background: var(--off-white);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 16px 18px;
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }
        .pp-info-card i {
            font-size: 18px;
            color: var(--primary);
            margin-top: 2px;
            flex-shrink: 0;
        }
        .pp-info-card h6 { font-size: 13px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
        .pp-info-card p { font-size: 12.5px; color: var(--text-soft); margin: 0; line-height: 1.5; }

        /* Data Table */
        .pp-data-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 18px;
            font-size: 13.5px;
            overflow: hidden;
            border-radius: 12px;
            border: 1px solid var(--border);
        }
        .pp-data-table thead tr {
            background: linear-gradient(135deg, var(--red-dark), var(--red));
        }
        .pp-data-table thead th {
            color: #fff;
            font-weight: 700;
            padding: 12px 16px;
            text-align: left;
            font-size: 12.5px;
            letter-spacing: 0.3px;
        }
        .pp-data-table tbody tr {
            border-bottom: 1px solid var(--border);
            transition: background 0.15s;
        }
        .pp-data-table tbody tr:last-child { border-bottom: none; }
        .pp-data-table tbody tr:nth-child(even) { background: var(--off-white); }
        .pp-data-table tbody tr:hover { background: var(--red-bg); }
        .pp-data-table tbody td {
            padding: 11px 16px;
            color: var(--text-mid);
            vertical-align: top;
            line-height: 1.6;
        }
        .pp-data-table tbody td:first-child {
            font-weight: 600;
            color: var(--text-dark);
        }

        /* ─── AGREEMENT FOOTER BANNER ─── */
        .pp-agreement-banner {
            background: linear-gradient(135deg, #0d1b4b 0%, #1a1a2e 50%, #7f0000 100%);
            border-radius: 20px;
            padding: 48px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
            margin-top: 16px;
        }
        .pp-agreement-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M20 20.5V18H0v5h5v5H0v5h20v-2.5h-5V20.5h5zM15 45V20H0v5h5v5H0v5h5v5H0v5h15v-5H5v-5h5v-5H5v-5h10z'/%3E%3C/g%3E%3C/svg%3E");
        }
        .pp-agreement-banner i {
            font-size: 42px;
            color: rgba(255,255,255,0.35);
            display: block;
            margin-bottom: 16px;
            position: relative;
            z-index: 1;
        }
        .pp-agreement-banner h3 {
            color: #fff;
            font-size: 1.55rem;
            font-weight: 800;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }
        .pp-agreement-banner p {
            color: rgba(255,255,255,0.7);
            font-size: 14.5px;
            max-width: 540px;
            margin: 0 auto 26px;
            position: relative;
            z-index: 1;
        }
        .pp-agreement-actions {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }
        .btn-pp-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, var(--red-dark), var(--red-light));
            color: #fff;
            font-size: 14px;
            font-weight: 700;
            padding: 13px 30px;
            border-radius: 100px;
            text-decoration: none;
            transition: all 0.22s;
            box-shadow: 0 5px 20px rgba(183,28,28,0.4);
        }
        .btn-pp-primary:hover {
            background: linear-gradient(135deg, #7f0000, var(--red-dark));
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(183,28,28,0.55);
            color: #fff;
        }
        .btn-pp-outline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: 2px solid rgba(255,255,255,0.35);
            color: rgba(255,255,255,0.85);
            font-size: 14px;
            font-weight: 700;
            padding: 13px 30px;
            border-radius: 100px;
            text-decoration: none;
            transition: all 0.22s;
        }
        .btn-pp-outline:hover {
            border-color: #fff;
            color: #fff;
            background: rgba(255,255,255,0.08);
        }

        /* ═══════════════════════════════════════════
           RESPONSIVE BREAKPOINTS
        ═══════════════════════════════════════════ */

        @media (max-width: 991px) {
            .pp-sidebar {
                position: static;
                margin-bottom: 32px;
            }
        }

        @media (max-width: 768px) {
            .pp-info-grid {
                grid-template-columns: 1fr;
            }
            .pp-agreement-banner {
                padding: 36px 24px;
            }
            .pp-agreement-banner h3 {
                font-size: 1.25rem;
            }
            .pp-wrapper {
                padding: 40px 0 60px;
            }
            .pp-data-table {
                display: block;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
            }
        }

        @media (max-width: 576px) {
            .pp-section-header {
                flex-direction: column;
                gap: 12px;
            }
            .pp-section-title {
                font-size: 1.1rem;
            }
            .pp-prose {
                font-size: 14px;
            }
            .pp-highlight {
                font-size: 13px;
                padding: 14px 16px;
            }
            .pp-info-card {
                padding: 14px 14px;
            }
            .pp-agreement-banner {
                padding: 28px 18px;
            }
            .btn-pp-primary,
            .btn-pp-outline {
                width: 100%;
                justify-content: center;
                padding: 13px 20px;
            }
            .pp-agreement-actions {
                flex-direction: column;
                gap: 10px;
            }
            .pp-section {
                margin-bottom: 36px;
            }
        }
       
.tc-sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}
    
.banner-section-full {
    display: block;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    line-height: 0;        /* kills inline-block ghost space */
    font-size: 0;          /* extra safety for slick slider gap */
}

    .banner-carousel-full {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
        line-height: 0;
    }

    .banner-carousel-full:not(.slick-initialized) .banner-slide:not(:first-child) {
        display: none;
    }

    .banner-carousel-full:not(.slick-initialized) {
        aspect-ratio: 1920 / 700;
        overflow: hidden;
    }

    .banner-slide img {
        display: block;        /* removes inline bottom gap on <img> */
        width: 100%;
        height: auto;
        margin-bottom: 0 !important;
    }

.about-section {
    margin-top: 0 !important;
    padding-top: 40px;   
}

