        /* ===== CSS Variables ===== */
        :root {
            --primary-blue: #004A99;
            --accent-pink: #E91E63;
            --accent-pink-light: #fce4ec;
            --dark-text: #333;
            --light-bg: #f8f9fa;
            --success-green: #10b981;
            --light-gray: #e2e8f0;
            --shadow: 0 4px 6px rgba(0,0,0,0.07);
            --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
            --radius: 5px;
            --radius-lg: 50px;
            --transition: all 0.3s ease;
        }
        
        * { 
            margin: 0; 
            padding: 0; 
            box-sizing: border-box; 
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            line-height: 1.6;
            color: var(--dark-text);
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5 {
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
        }
        
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 5%;
        }
        
        section {
            padding: 80px 0;
        }
        
        /* ===== Header & Navigation ===== */
        .main-header { 
            position: fixed; 
            top: 0; 
            background: #fff; 
            z-index: 1000; 
            box-shadow: 0 2px 10px rgba(0,0,0,0.1); 
            width: 100%;
        }
        
        .top-bar { 
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
            padding: 10px 5%; 
            border-bottom: 1px solid #eee; 
        }
        
        .logo-section { 
            display: flex; 
            align-items: center; 
            gap: 15px; 
        }
        
        .logo {
            height: 50px;
            width: auto;
        }
        
        .reg-info { 
            font-size: 12px; 
            color: #777; 
            border-left: 1px solid #ddd; 
            padding-left: 15px; 
            line-height: 1.4;
        }
        
        .contact-actions { 
            display: flex; 
            align-items: center; 
            gap: 20px; 
        }
        
        .action-item {
            text-align: center;
            color: var(--primary-blue);
            font-size: 13px;
        }
        
        .action-item strong {
            display: block;
            font-size: 18px;
        }
        
        .navbar { 
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
            padding: 15px 5%; 
        }
        
        .nav-links { 
            display: flex; 
            list-style: none; 
            gap: 25px; 
        }
        
        .nav-links a { 
            text-decoration: none; 
            color: var(--dark-text); 
            font-weight: 500; 
            font-size: 14px; 
            transition: var(--transition);
            padding: 5px 0;
            position: relative;
        }
        
        .nav-links a:hover,
        .nav-links a.active { 
            color: var(--primary-blue); 
        }
        
        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--primary-blue);
        }
        
        .dropdown {
            position: relative;
        }
        
        .dropdown-content {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 220px;
            box-shadow: var(--shadow-lg);
            border-radius: var(--radius);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: var(--transition);
            z-index: 100;
            padding: 10px 0;
        }
        
        .dropdown:hover .dropdown-content {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .dropdown-content a {
            display: block;
            padding: 12px 20px;
            transition: background-color 0.3s;
            border-bottom: 1px solid var(--light-gray);
        }
        
        .dropdown-content a:last-child {
            border-bottom: none;
        }
        
        .dropdown-content a:hover {
            background-color: var(--light-bg);
            color: var(--primary-blue);
        }
        
        /* ===== Buttons ===== */
        .btn { 
            padding: 10px 20px; 
            border: none; 
            border-radius: var(--radius); 
            cursor: pointer; 
            font-weight: 600; 
            display: inline-flex; 
            align-items: center; 
            gap: 8px; 
            transition: var(--transition);
            text-decoration: none;
        }
        
        .btn-blue { 
            background: var(--primary-blue); 
            color: #fff; 
        }
        
        .btn-blue:hover {
            background: #003d82;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 74, 153, 0.3);
        }
        
        .btn-pink { 
            background: var(--accent-pink); 
            color: #fff; 
        }
        
        .btn-pink:hover {
            background: #d81b60;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
        }
        
        .btn-outline { 
            border: 2px solid var(--primary-blue); 
            background: transparent; 
            color: var(--primary-blue); 
        }
        
        .btn-outline:hover {
            background: var(--primary-blue);
            color: white;
        }
        
        .btn-round { 
            border-radius: var(--radius-lg); 
            padding: 12px 30px; 
        }
        
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--primary-blue);
            cursor: pointer;
        }
        
        /* ===== Hero Slider ===== */
        .hero-slider {
            position: relative;
            width: 100%;
            height: 85vh;
            max-height: 700px;
            overflow: hidden;
            margin-top: 130px;
            background: #f0f4f8;
        }
        
        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
            display: flex;
            align-items: center;
            background-size: cover;
            background-position: center;
        }
        
        .hero-slide.active {
            opacity: 1;
            z-index: 1;
        }
        
        .slide-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            z-index: -1;
        }
        
        .slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(255, 255, 255, 0.95) 40%, rgba(240, 244, 248, 0.7) 100%);
            z-index: -1;
        }
        
        .hero-container {
            display: flex;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 5%;
            position: relative;
            z-index: 2;
            height: 100%;
        }
        
        .hero-content {
            flex: 1;
            padding-right: 50px;
            animation: fadeInUp 1s ease-out;
        }
        
        .hero-content h1 {
            font-size: 48px;
            color: var(--primary-blue);
            line-height: 1.2;
            margin-bottom: 20px;
        }
        
        .text-pink { 
            color: var(--accent-pink); 
        }
        
        .subtitle {
            font-weight: 700;
            color: #555;
            margin-bottom: 10px;
            font-size: 18px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .desc {
            color: var(--primary-blue);
            margin-bottom: 30px;
            font-size: 18px;
            max-width: 600px;
        }
        
        .hero-btns {
            display: flex;
            gap: 15px;
            margin-bottom: 40px;
        }
        
        .specialty-icons {
            display: flex;
            gap: 30px;
            margin-top: 30px;
        }
        
        .icon-box {
            text-align: center;
            color: var(--primary-blue);
            background: white;
            padding: 15px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            min-width: 120px;
        }
        
        .icon-box:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }
        
        .icon-box i {
            font-size: 28px;
            margin-bottom: 10px;
            color: var(--accent-pink);
        }
        
        .icon-box p {
            font-size: 14px;
            font-weight: 600;
        }
        
        .hero-image {
            flex: 1;
            text-align: right;
            animation: fadeInRight 1s ease-out;
        }
        
        .hero-image img {
            width: 100%;
            max-width: 500px;
            border-radius: 50% 50% 0 50%;
            box-shadow: var(--shadow-lg);
        }
        
        /* Individual Slide Styles */
        .slide-1 .slide-bg {
            background-image: url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
        }
        
        .slide-2 .slide-bg {
            background-image: url('https://images.unsplash.com/photo-1582750433449-648ed127bb54?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
        }
        
        .slide-2 .slide-overlay {
            background: linear-gradient(to right, rgba(255, 255, 255, 0.95) 40%, rgba(240, 244, 248, 0.7) 100%);
        }
        
        .slide-3 .slide-bg {
            background-image: url('https://images.unsplash.com/photo-1544005313-94ddf0286df2?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
        }
        
        .slide-3 .slide-overlay {
            background: linear-gradient(to right, rgba(255, 255, 255, 0.95) 40%, rgba(240, 244, 248, 0.7) 100%);
        }
        
        /* Slider Controls */
        .slider-controls {
            position: absolute;
            bottom: 40px;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 10;
            gap: 20px;
        }
        
        .slider-dots {
            display: flex;
            gap: 12px;
        }
        
        .slider-dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: rgba(0, 74, 153, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .slider-dot.active {
            background: var(--primary-blue);
            transform: scale(1.2);
            box-shadow: 0 0 10px rgba(0, 74, 153, 0.5);
        }
        
        .slider-dot:hover {
            background: var(--primary-blue);
            transform: scale(1.1);
        }
        
        .slider-nav {
            display: flex;
            gap: 15px;
            position: absolute;
            right: 5%;
            bottom: 35px;
        }
        
        .slider-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.9);
            border: 2px solid var(--primary-blue);
            color: var(--primary-blue);
            font-size: 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .slider-btn:hover {
            background: var(--primary-blue);
            color: white;
            transform: scale(1.1);
        }
        
        /* ===== Mobile Action Bar ===== */
        .mobile-action-bar {
            display: none;
            position: fixed;
            bottom: 0;
            width: 100%;
            background: #fff;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
            z-index: 999;
        }
        
        .m-action {
            flex: 1;
            text-align: center;
            padding: 12px;
            font-size: 13px;
            text-decoration: none;
            color: var(--primary-blue);
            font-weight: bold;
            border-right: 1px solid #eee;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
        }
        
        .m-action i {
            font-size: 18px;
        }
        
        .m-action.pink {
            background: var(--accent-pink);
            color: #fff;
            border: none;
        }
        
        /* ===== Services Section ===== */
        .services {
            background: var(--light-bg);
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-header h2 {
            font-size: 2.5rem;
            color: var(--primary-blue);
            position: relative;
            display: inline-block;
        }
        
        .section-header h2::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: var(--accent-pink);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .section-header p {
            color: #666;
            max-width: 700px;
            margin: 25px auto 0;
            font-size: 18px;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background: white;
            border-radius: 10px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid var(--light-gray);
            position: relative;
            overflow: hidden;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(to bottom, var(--primary-blue), var(--accent-pink));
            transition: width 0.3s ease;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }
        
        .service-card:hover::before {
            width: 100%;
            opacity: 0.1;
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-blue), var(--accent-pink));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: white;
            font-size: 32px;
            box-shadow: var(--shadow);
        }
        
        .service-card h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--primary-blue);
        }
        
        .service-card p {
            color: #666;
            margin-bottom: 20px;
        }
        
        .learn-more {
            color: var(--primary-blue);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            transition: var(--transition);
        }
        
        .learn-more:hover {
            color: var(--accent-pink);
            gap: 10px;
        }
        
        /* ===== About Section ===== */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .about-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            position: relative;
        }
        
        .about-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--accent-pink);
            color: white;
            padding: 10px 20px;
            border-radius: var(--radius-lg);
            font-weight: 600;
            box-shadow: var(--shadow);
        }
        
        .about-text h2 {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 20px;
        }
        
        .about-text p {
            margin-bottom: 20px;
            color: #666;
            font-size: 17px;
        }
        
        .doctor-profile {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-top: 30px;
            padding: 20px;
            background: var(--light-bg);
            border-radius: var(--radius);
        }
        
        .doctor-avatar {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-blue), var(--accent-pink));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 28px;
            font-weight: 600;
        }
        
        .doctor-info h4 {
            margin-bottom: 5px;
            color: var(--dark-text);
        }
        
        .doctor-info p {
            margin: 0;
            color: #666;
            font-size: 0.9rem;
        }
        
        /* ===== Appointment Section ===== */
        .appointment {
            background: var(--light-bg);
        }
        
        .appointment-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .appointment-form-container {
            background: white;
            border-radius: 10px;
            padding: 40px;
            box-shadow: var(--shadow-lg);
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--dark-text);
        }
        
        .form-control {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid var(--light-gray);
            border-radius: var(--radius);
            font-size: 1rem;
            transition: var(--transition);
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 3px rgba(0, 74, 153, 0.1);
        }
        
        .captcha {
            background-color: #f9f9f9;
            padding: 15px;
            border-radius: var(--radius);
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .captcha-code {
            font-size: 1.5rem;
            letter-spacing: 3px;
            background-color: #eee;
            padding: 10px 15px;
            border-radius: 5px;
            font-weight: 600;
        }
        
        /* ===== Testimonials Section ===== */
        .testimonials-container {
            position: relative;
            overflow: hidden;
        }
        
        .testimonial-slider {
            display: flex;
            gap: 30px;
            overflow-x: auto;
            padding: 20px 10px;
            scrollbar-width: thin;
            scrollbar-color: var(--primary-blue) var(--light-gray);
        }
        
        .testimonial-slider::-webkit-scrollbar {
            height: 8px;
        }
        
        .testimonial-slider::-webkit-scrollbar-track {
            background: var(--light-gray);
            border-radius: 10px;
        }
        
        .testimonial-slider::-webkit-scrollbar-thumb {
            background: var(--primary-blue);
            border-radius: 10px;
        }
        
        .testimonial-card {
            min-width: 350px;
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-top: 5px solid var(--accent-pink);
        }
        
        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }
        
        .testimonial-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .testimonial-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-blue), var(--accent-pink));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
        }
        
        .testimonial-info h4 {
            font-size: 1.2rem;
            margin-bottom: 5px;
            color: var(--primary-blue);
        }
        
        .testimonial-info p {
            color: #666;
            font-size: 0.9rem;
        }
        
        .testimonial-text {
            font-style: italic;
            color: var(--dark-text);
            margin-bottom: 15px;
        }
        
        .rating {
            color: #FFC107;
        }
        
        /* ===== FAQ Section ===== */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: white;
            border-radius: var(--radius);
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            border-left: 4px solid var(--primary-blue);
        }
        
        .faq-question {
            padding: 20px 25px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            transition: var(--transition);
            background: var(--light-bg);
        }
        
        .faq-question:hover {
            background: #e3f2fd;
        }
        
        .faq-question.active {
            background: #e3f2fd;
            color: var(--primary-blue);
        }
        
        .faq-answer {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }
        
        .faq-answer.open {
            padding: 0 25px 25px;
            max-height: 500px;
        }
        
        /* ===== Blog Section ===== */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .blog-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }
        
        .blog-image {
            height: 200px;
            background: linear-gradient(135deg, var(--primary-blue), var(--accent-pink));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 48px;
        }
        
        .blog-content {
            padding: 25px;
        }
        
        .blog-meta {
            display: flex;
            justify-content: space-between;
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 15px;
        }
        
        .blog-content h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--primary-blue);
        }
        
        .blog-content p {
            color: #666;
            margin-bottom: 15px;
        }
        
        /* ===== Footer ===== */
        footer {
            background: var(--primary-blue);
            color: white;
            padding: 70px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .footer-column h3 {
            color: white;
            font-size: 1.3rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background: var(--accent-pink);
            bottom: 0;
            left: 0;
            border-radius: 2px;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: #cbd5e1;
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .footer-links a:hover {
            color: white;
            transform: translateX(5px);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .social-links a:hover {
            background: var(--accent-pink);
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #94a3b8;
            font-size: 0.9rem;
        }
        
        /* ===== Animations ===== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        /* ===== Responsive Design ===== */
        @media (max-width: 992px) {
            .hero-slider {
                height: 70vh;
                margin-top: 110px;
            }
            
            .hero-content h1 {
                font-size: 38px;
            }
            
            .about-content,
            .appointment-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .section-header h2 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .top-bar .contact-actions,
            .navbar .btn-outline {
                display: none;
            }
            
            .hamburger {
                display: block;
            }
            
            .nav-links {
                position: fixed;
                top: 110px;
                left: 0;
                width: 100%;
                background: white;
                flex-direction: column;
                padding: 20px;
                box-shadow: var(--shadow-lg);
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: var(--transition);
                z-index: 999;
            }
            
            .nav-links.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            
            .dropdown-content {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                padding-left: 20px;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
                margin-top: 10px;
            }
            
            .dropdown.active .dropdown-content {
                max-height: 500px;
            }
            
            .hero-slider {
                height: 60vh;
                margin-top: 0;
            }
            
            .main-header {
                position: relative;
            }
            
            .hero-container {
                flex-direction: column;
                text-align: center;
                padding-top: 30px;
            }
            
            .hero-content {
                padding: 0;
                margin-bottom: 30px;
            }
            
            .hero-btns {
                justify-content: center;
                flex-wrap: wrap;
            }
            
            .specialty-icons {
                justify-content: center;
                flex-wrap: wrap;
            }
            
            .slider-nav {
                right: 20px;
                bottom: 30px;
            }
            
            .slider-btn {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
            
            .slider-controls {
                bottom: 25px;
            }
            
            /* Show mobile contact buttons */
            .mobile-action-bar {
                display: flex;
            }
            
            .whatsapp-float {
                bottom: 80px;
            }
        }
        
        @media (max-width: 576px) {
            section {
                padding: 60px 0;
            }
            
            .hero-slider {
                height: 50vh;
            }
            
            .hero-content h1 {
                font-size: 28px;
            }
            
            .desc {
                font-size: 16px;
            }
            
            .btn-round {
                padding: 10px 20px;
                font-size: 14px;
            }
            
            .slider-nav {
                display: none;
            }
            
            .service-card,
            .testimonial-card,
            .blog-card,
            .appointment-form-container {
                padding: 25px;
            }
            
            .testimonial-card {
                min-width: 280px;
            }
            
            .mobile-action-bar {
                padding: 10px 15px;
            }
            
            .m-action {
                font-size: 0.8rem;
                padding: 10px 8px;
            }
        }