
        :root {
            --primary-color: #6366f1;
            --secondary-color: #8b5cf6;
            --accent-color: #06b6d4;
            --text-dark: #1f2937;
            --text-light: #6b7280;
            --bg-light: #f8fafc;
            --white: #ffffff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
        }

        /* Navigation */
        .navbar {
            background: var(--white);
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }

        .navbar-brand {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
        }

        .navbar-nav .nav-link {
            font-weight: 500;
            color: var(--text-dark) !important;
            margin: 0 0.5rem;
            transition: color 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary-color) !important;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: transform 0.3s ease;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0e7ff 100%);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0.1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: var(--text-dark);
        }

        .hero .highlight {
            color: var(--primary-color);
        }

        .hero p {
            font-size: 1.2rem;
            color: var(--text-light);
            margin-bottom: 2rem;
        }

        .play-btn {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 600;
            margin-left: 2rem;
        }

        .play-btn .play-icon {
            width: 50px;
            height: 50px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        
        .custom-spacing a:first-child {
            margin-right: 20px;
        }


        /* Add Hero Image Animation after existing hero styles */
        .hero img {
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
            100% {
                transform: translateY(0px);
            }
        }
        

        /* Stats Section */
        .stats {
            background: var(--white);
            padding: 80px 0;
        }

        .stat-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            text-align: center;
            transition: transform 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-10px);
        }

        .stat-card .icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            color: var(--white);
            font-size: 2rem;
        }

        /* Stats Icon Animation - add after existing .stat-card .icon */
        .stat-card .icon {
            animation: pulse 2s infinite;
            transition: all 0.3s ease;
        }

        .stat-card:hover .icon {
            animation: bounce 1s infinite;
            transform: scale(1.1);
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.7);
            }
            70% {
                transform: scale(1.05);
                box-shadow: 0 0 0 10px rgba(99, 102, 241, 0);
            }
            100% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(99, 102, 241, 0);
            }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0) scale(1.1);
            }
            40% {
                transform: translateY(-10px) scale(1.1);
            }
            60% {
                transform: translateY(-5px) scale(1.1);
            }
        }

        .stat-card h3 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        /* About Section */
        .about {
            background: var(--bg-light);
            padding: 100px 0;
        }

        .about-content h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        .about-content .highlight {
            color: var(--primary-color);
        }

        .progress-item {
            margin-bottom: 1.5rem;
        }

        .progress-item label {
            font-weight: 600;
            margin-bottom: 0.5rem;
            display: block;
        }

        .progress {
            height: 8px;
            border-radius: 10px;
            background: #e5e7eb;
        }

        .progress-bar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 10px;
        }

        .about .about-content {
            margin-top: 30px;
        }

        @media (max-width: 767.98px) {
        .about .about-content {
            text-align: center;
        }

        .about .progress-item {
            margin-bottom: 20px;
        }
    }


        /* Services Section */
        .services {
            padding: 100px 0;
            background: var(--white);
        }

        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .section-title .highlight {
            color: var(--primary-color);
        }

        .service-card {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            text-align: center;
            transition: all 0.3s ease;
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }

        .service-card .icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: var(--white);
            font-size: 2rem;
        }

        /* Service Icon Animation - add after existing .service-card .icon */
        .service-card .icon {
            transition: all 0.4s ease;
            animation: rotate 8s linear infinite;
        }

        .service-card:hover .icon {
            animation: shake 0.5s ease-in-out;
            transform: scale(1.2);
        }

        @keyframes rotate {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

        @keyframes shake {
            0%, 100% {
                transform: translateX(0) scale(1.2);
            }
            25% {
                transform: translateX(-5px) scale(1.2);
            }
            75% {
                transform: translateX(5px) scale(1.2);
            }
        }

        .service-card h4 {
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        /* Appointment Section */
        .appointment {

            padding: 100px 0;
            position: relative;
        }

        .appointment-form {
            margin-top: 120px;
        }


        .appointment::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent 30%, rgba(97, 100, 241, 0.05) 50%, transparent 100%);
        }

        .contact-info-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .contact-item {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 1.5rem;
            border-radius: 15px;
            margin-bottom: 1.5rem;
            transition: transform 0.3s ease;
        }

        .contact-item:hover {
            transform: translateY(-5px);
        }

        .contact-item .icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .appointment-form {
            background: var(--white);
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
        }

        .form-control {
            border: 2px solid #e5e7eb;
            border-radius: 10px;
            padding: 0.75rem 1rem;
            margin-bottom: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
        }

        /* Pricing Section */
        .pricing {
            padding: 100px 0;
            background: var(--white);
        }

        .pricing-card {
            background: var(--white);
            border: 2px solid #e5e7eb;
            border-radius: 20px;
            padding: 2.5rem;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            height: 100%;
        }

        .pricing-card.featured {
            background: linear-gradient(135deg, var(--primary-color), #4a3087);
            color: var(--white);
            border-color: var(--primary-color);
            transform: scale(1.05);
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }

        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }

        .pricing-card .price {
            font-size: 3rem;
            font-weight: 800;
            margin: 1rem 0;
        }

        .pricing-card .price span {
            font-size: 1rem;
            font-weight: 400;
        }

        .pricing-card ul {
            list-style: none;
            padding: 0;
            margin: 2rem 0;
        }

        .pricing-card ul li {
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(0,0,0,0.1);
        }

        .pricing-card.featured ul li {
            border-bottom-color: rgba(255,255,255,0.2);
        }

        /* Team Section */
        .team {
            background: var(--bg-light);
            padding: 100px 0;
        }

        .team-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
        }

        .team-card:hover {
            transform: translateY(-10px);
        }

        .team-card img {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }

        .team-card-body {
            padding: 1.5rem;
            text-align: center;
        }

        .team-card h5 {
            margin-bottom: 0.5rem;
        }

        .team-card .position {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .social-links {
            display: flex;
            justify-content: left;
            gap: 1rem;
        }

        .social_links {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }

        .social_links a {
            width: 40px;
            height: 40px;
            background: var(--bg-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-dark);
            transition: all 0.3s ease;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: var(--bg-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-dark);
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--primary-color);
            color: var(--white);
        }
        

        /* FAQ Section */
        .faq {
            padding: 100px 0;
            background: var(--white);
        }

        .accordion-item {
            border: none;
            margin-bottom: 1rem;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }

        .accordion-button {
            background: var(--white);
            border: none;
            padding: 1.5rem;
            font-weight: 600;
            font-size: 1.1rem;
        }

        .accordion-button:not(.collapsed) {
            background: var(--primary-color);
            color: var(--white);
        }

        .accordion-body {
            padding: 1.5rem;
            background: var(--bg-light);
        }

        /* Testimonials */
        .testimonials {
            background: var(--bg-light);
            padding: 100px 0;
        }

        /* Add Testimonial Slider Styles */
        .testimonial-slider {
            position: relative;
            overflow: hidden;
        }

        .testimonial-slide {
            display: none;
            animation: slideIn 0.5s ease-in-out;
        }

        .testimonial-slide.active {
            display: block;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .slider-controls {
            text-align: center;
            margin-top: 2rem;
        }

        .slider-btn {
            background: var(--primary-color);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin: 0 0.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .slider-btn:hover {
            background: var(--secondary-color);
            transform: scale(1.1);
        }

        .testimonial-card {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            text-align: center;
            height: 100%;
        }

        .testimonial-card .quote {
            font-size: 1.1rem;
            font-style: italic;
            margin-bottom: 2rem;
            color: var(--text-light);
        }

        .testimonial-card .author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }

        .testimonial-card .author img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
        }

        .testimonial-card .author-info h6 {
            margin-bottom: 0.25rem;
        }

        .testimonial-card .author-info small {
            color: var(--text-light);
        }

        /* Blog Section */
        .blog {
            padding: 100px 0;
            background: var(--white);
        }

        .blog-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
            height: 100%;
        }

        .blog-card:hover {
            transform: translateY(-10px);
        }

        .blog-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .blog-card-body {
            padding: 1.5rem;
        }

        .blog-card .date {
            color: var(--primary-color);
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }

        .blog-card h5 {
            margin-bottom: 1rem;
            line-height: 1.4;
        }

        .blog-card .read-more {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
        }

        /* Footer */
        .footer {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--white);
            padding: 80px 0 30px;
        }

        .footer h5 {
            margin-bottom: 1.5rem;
        }

        .footer ul {
            list-style: none;
            padding: 0;
        }

        .footer ul li {
            margin-bottom: 0.5rem;
        }

        .footer ul li a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer ul li a:hover {
            color: var(--white);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.2);
            margin-top: 3rem;
            padding-top: 2rem;
            text-align: center;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .pricing-card.featured {
                transform: none;
            }
        }

        html, body {
            overflow-x: hidden;
        }
