        /* Generic Section Headings */
        .section-label {
            color: var(--brand-red);
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.8rem;
            letter-spacing: 1.5px;
            display: block;
            margin-bottom: 6px;
        }
        .section-main-title {
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 2rem;
            position: relative;
        }

        /* --- SECTION 1: STATS RIBBON BANNER --- */
        .stats-ribbon {
            background: var(--grad-primary);
            color: #ffffff;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 92, 255, 0.15);
        }
        .stat-box {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }
        .stat-box i {
            font-size: 2rem;
            color: #ffffff;
            opacity: 0.9;
        }
        .stat-number {
            font-size: 1.6rem;
            font-weight: 700;
            line-height: 1.1;
        }
        .stat-text {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.85);
        }
        .stat-divider {
            border-right: 1px solid rgba(255, 255, 255, 0.25);
        }

        /* --- DISTINCT FULL-WIDTH COLOR BACKGROUNDS --- */
        .bg-section-treatments {
            background-color: var(--bg-light);
        }
        .bg-section-doctors {
            background-color: var(--bg-white);
        }
        .bg-section-why {
            background-color: #f8fafc; /* Changed from dark to a clean modern off-white tint */
        }

        /* --- INFINITE TICKER SLIDER ENGINE (SECTIONS 2 & 4) --- */
        .ticker-wrapper {
            width: 100%;
            overflow: hidden;
            padding: 1.5rem 0;
            position: relative;
        }
        .ticker-track {
            display: flex;
            width: max-content;
            animation: continuousSlide 25s linear infinite;
        }
        .ticker-wrapper:hover .ticker-track {
            animation-play-state: paused;
        }
        @keyframes continuousSlide {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* --- SECTION 2: TREATMENTS CARDS --- */
        .treatment-card {
            background: var(--bg-white);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 2.5rem 1.75rem;
            text-align: center;
            width: 280px;
            margin-right: 24px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
            transition: all 0.3s ease;
            flex-shrink: 0;
        }
        .treatment-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 92, 255, 0.08);
            border-color: var(--topbar-bg);
        }
        .treatment-icon-circle {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.5rem;
            background-color: var(--bg-light);
            color: var(--topbar-bg);
        }
        .treatment-card h5 {
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }
        .treatment-card p {
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.5;
            margin-bottom: 1.5rem;
            height: 65px;
            overflow: hidden;
        }
        .learn-more-link {
            color: var(--topbar-bg);
            font-weight: 700;
            font-size: 0.8rem;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .learn-more-link:hover {
            color: var(--brand-red);
        }

        /* --- SECTION 3: DOCTORS CAROUSEL (ONE BY ONE) --- */
        .doctor-showcase-container {
            background: var(--bg-white);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
        }
        .doctor-img-wrapper {
            position: relative;
            background-color: var(--bg-light);
        }
        .doctor-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            min-height: 380px;
        }
        .badge-certified {
            position: absolute;
            bottom: 20px;
            right: 20px;
            background: var(--grad-primary);
            color: #ffffff;
            padding: 8px 16px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 4px 15px rgba(0, 92, 255, 0.2);
        }
        .badge-certified i {
            color: #ffffff;
        }
        .list-checks {
            list-style: none;
            padding-left: 0;
            font-size: 0.85rem;
        }
        .list-checks li {
            margin-bottom: 8px;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .list-checks i {
            color: var(--topbar-bg);
            font-size: 0.9rem;
        }
        .btn-know-more {
            background-color: var(--text-dark);
            color: #ffffff;
            font-size: 0.85rem;
            font-weight: 600;
            padding: 10px 20px;
            border-radius: 6px;
            border: none;
            letter-spacing: 0.5px;
            transition: background 0.2s;
        }
        .btn-know-more:hover {
            background-color: var(--brand-gray);
            color: #ffffff;
        }
        
        .appointment-action-box {
            background-color: var(--text-dark);
            color: #ffffff;
            border-radius: 14px;
            padding: 2rem 1.5rem;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .appointment-action-box h5 {
            color: #ffffff;
            font-weight: 700;
        }
        .btn-book-now {
            background: var(--grad-accent);
            color: #ffffff;
            font-weight: 700;
            width: 100%;
            padding: 12px;
            border-radius: 6px;
            border: none;
            margin-top: 1.5rem;
            transition: opacity 0.2s;
        }
        .btn-book-now:hover {
            opacity: 0.9;
            color: #ffffff;
        }

        /* Fixed Carousel Navigation Custom Colors & Positioning */
        .carousel-indicators {
            margin-bottom: 0;
            bottom: 5px;
        }
        .carousel-indicators [data-bs-target] {
            background-color: var(--topbar-bg) !important;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            margin: 0 6px;
            opacity: 0.4;
        }
        .carousel-indicators .active {
            opacity: 1;
        }
        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            background-color: var(--topbar-bg);
            padding: 1.25rem;
            border-radius: 50%;
            background-size: 50%;
        }

        /* --- SECTION 4: WHY CHOOSE US --- */
        .why-card {
            background: var(--bg-white);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 1.5rem 1rem;
            text-align: center;
            width: 160px;
            margin-right: 16px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.02);
            flex-shrink: 0;
            transition: all 0.2s;
        }
        .why-card:hover {
            border-color: var(--topbar-bg);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 92, 255, 0.06);
        }
        .why-card i {
            font-size: 1.8rem;
            color: var(--topbar-bg);
            margin-bottom: 12px;
            display: block;
        }
        .why-card span {
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--text-dark);
            display: block;
            line-height: 1.3;
        }

        /* Responsive Breakdowns */
        @media (max-width: 768px) {
            .stat-divider {
                border-right: none;
            }
        }