 :root {
            --medical-blue: #3e4b9e;
            --soft-bg: #f0f4ff;
            --progress-green: #28a745;
        }

        body {
            background-color: #ffffff;
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        }

        .specialities-section {
            padding: 80px 0;
        }

        /* Swiper Grid Container - Fixed height is REQUIRED for 2 rows */
        .medicalSwiper {
            width: 100%;
            height: 520px; /* Adjust based on card height + gap */
            margin: 20px auto;
            padding-bottom: 40px !important;
        }

        /* Individual Card Styling */
        .specialty-card {
            background-color: var(--soft-bg);
            border: none;
            border-radius: 16px;
            height: 240px; /* Fixed height for consistency */
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 25px;
            transition: all 0.3s ease;
            text-decoration: none;
            box-sizing: border-box;
        }

        .specialty-card:hover {
            transform: translateY(-8px);
            background-color: #e8eeff;
            box-shadow: 0 10px 20px rgba(62, 75, 158, 0.1);
        }

        .specialty-icon {
            font-size: 3.5rem;
            color: var(--medical-blue);
            margin-bottom: 20px;
        }

        .specialty-title {
            color: var(--medical-blue);
            font-size: 1.05rem;
            font-weight: 600;
            text-align: center;
            line-height: 1.3;
            margin: 0;
        }

        /* Green Progress Bar at the bottom */
        .swiper-pagination-progressbar {
            background: #e9ecef !important;
            height: 5px !important;
            top: auto !important;
            bottom: 0 !important;
            border-radius: 10px;
        }

        .swiper-pagination-progressbar-fill {
            background: var(--progress-green) !important;
            border-radius: 10px;
        }

        /* Navigation Arrows (Bottom Right) */
        .slider-controls {
            display: flex;
            justify-content: flex-end;
            gap: 12px;
            margin-top: 30px;
        }

        .nav-btn {
            width: 50px;
            height: 50px;
            border: 1.5px solid #d1d1d1;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: #444;
            transition: all 0.3s ease;
            background: white;
        }

        .nav-btn:hover {
            border-color: var(--medical-blue);
            color: var(--medical-blue);
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }

        .swiper-container-wrapper {
            position: relative;
        }