        :root {
            --primary: #1a2b44;
            --accent: #e67e22;
            --light: #f8f9fa;
            --text: #2c3e50;
            --muted: #6c757d;
            --gradient: linear-gradient(135deg, #1a2b44 0%, #2c3e50 100%);
            --glow: 0 0 20px rgba(230, 126, 34, 0.3);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--text);
            background: #fff;
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            color: var(--primary);
        }

        /* Navbar */
        .navbar {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            padding: 15px 0;
        }

        .navbar.scrolled {
            padding: 10px 0;
            background: rgba(255, 255, 255, 0.98);
        }

        .navbar-brand {
            font-weight: 800;
            font-size: 1.6rem;
            color: var(--primary) !important;
            letter-spacing: 1px;
        }

        .navbar-brand span {
            color: var(--accent);
        }

        .nav-link {
            color: var(--text) !important;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.9rem;
            margin: 0 12px;
            position: relative;
            transition: all 0.3s;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background: var(--accent);
            transition: all 0.3s;
            transform: translateX(-50%);
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 80%;
        }

        .book-apt {
            background: var(--accent) !important;
            color: #fff !important;
            padding: 10px 25px !important;
            border-radius: 50px !important;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
            transition: all 0.3s;
        }

        .book-apt:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(230, 126, 34, 0.4);
        }

        /* Hero Carousel */
        .hero-carousel .carousel-item {
            height: 110vh;
            min-height: 500px;
            background: no-repeat center center/cover;
        }

        .hero-carousel .carousel-caption {
            bottom: 25%;
            text-align: left;
            max-width: 1000px;
            left: 10% !important;
            right: auto;
        }

        .hero-carousel h1 {
            font-size: 3.8rem;
            font-weight: 800;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
            animation: fadeInUp 1s ease;
            color: white;
        }

        .hero-carousel h3 {
            font-size: 1.9rem;
            font-weight: 500;
            margin: 15px 0;
            animation: fadeInUp 1.2s ease;
            color: white;
        }

        .hero-carousel .btn {
            animation: fadeInUp 1.4s ease;
            padding: 14px 35px;
            border-radius: 50px;
            font-weight: 600;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        /* Section */
        .section {
            padding: 100px 0;
        }

        .section-title {
            font-size: 2.3rem;
            position: relative;
            display: inline-block;
            padding-bottom: 12px;
            margin-bottom: 50px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--accent);
            border-radius: 2px;
        }

        /* About */
        .about-img {
            border-radius: 20px;
            transition: all 0.5s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            overflow: hidden;
        }

        .about-img:hover {
            transform: scale(1.05);
            box-shadow: var(--glow);
        }

        .about-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .about-img:hover img {
            transform: scale(1.1);
        }

        /* Expertise Cards */
        .exp-card {
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            height: 100%;
        }

        .exp-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), var(--glow);
        }

        .exp-icon {
            height: 140px;
            background: var(--gradient);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .exp-icon svg {
            width: 70px;
            height: 70px;
            fill: #fff;
        }

        .exp-body {
            padding: 30px;
        }

        .exp-body h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
        }

        /* FAQ */
        .faq-item {
            margin-bottom: 20px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }

        .faq-header {
            background: var(--gradient);
            color: #fff;
            padding: 18px 25px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
        }

        .faq-header:hover {
            background: linear-gradient(135deg, #2c3e50 0%, #1a2b44 100%);
        }

        .faq-body {
            padding: 25px;
            background: #fff;
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .faq-body.show {
            display: block;
        }

        /* WhatsApp Sticky */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 25px;
            right: 25px;
            background: #25d366;
            color: #fff;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
            z-index: 1000;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
        }

        .whatsapp-float i {
            animation: pulse 2s infinite;
        }

        /* Footer */
        .footer {
            background: var(--gradient);
            color: #fff;
            padding: 80px 0 30px;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"%3E%3Cpolygon fill="rgba(255,255,255,0.05)" points="0,100 100,0 100,100"/%3E%3C/svg%3E') center/cover;
            opacity: 0.1;
        }

        .footer h5 {
            color: #fff;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
        }

        .footer h5::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--accent);
        }

        .footer a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: all 0.3s;
        }

        .footer a:hover {
            color: #fff;
            transform: translateX(5px);
        }

        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            text-align: center;
            line-height: 40px;
            border-radius: 50%;
            margin: 0 8px;
            transition: all 0.3s;
        }

        .social-icons a:hover {
            background: var(--accent);
            transform: translateY(-5px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            margin-top: 40px;
            font-size: 0.9rem;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.1);
            }

            100% {
                transform: scale(1);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        @media (max-width: 768px) {
            .hero-carousel .carousel-caption {
                bottom: 25%;
                left: 5% !important;
            }

            .hero-carousel h1 {
                font-size: 2.4rem;
            }

            .hero-carousel h3 {
                font-size: 1.4rem;
            }

            .section {
                padding: 70px 0;
            }

            .navbar-brand {
                font-size: 1.3rem;
            }

            .nav-link {
                font-size: 0.8rem;
                margin: 0 5px;
            }
        }







        .accordion-button {
            background: var(--gradient);
            color: #fff;
            font-weight: 600;
            border: none;
        }

        .accordion-button:not(.collapsed) {
            background: var(--gradient);
            color: #fff;
        }

        .accordion-button:focus {
            box-shadow: none;
        }

        .accordion-body {
            background: #fff;
            padding: 25px;
        }