
        :root {
            --primary-color: #6366f1;
            --secondary-color: #8b5cf6;
            --accent-color: #06b6d4;
            --text-dark: #1e293b;
            --text-light: #64748b;
            --bg-light: #f8fafc;
            --white: #ffffff;
            --purple-light: #f3f4f6;
            --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
            --gradient-secondary: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }

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

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
        }
        .text-primary {
            color:  #6366f1 !important;
        }


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

        /* Navigation */
        .navbar {
            background: var(--white);
            box-shadow: var(--shadow-sm);
            padding: 1rem 0;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
        }

        .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 10px;
            transition: color 0.3s ease;
        }

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

        .btn-primary {
            background: var(--gradient-primary);
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .btn-outline-primary {
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-outline-primary:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-2px);
        }

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

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="medical" patternUnits="userSpaceOnUse" width="20" height="20"><circle cx="10" cy="10" r="2" fill="%236366f1" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23medical)"/></svg>');
        }

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

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

        .hero-content p {
            font-size: 1.2rem;
            color: var(--text-light);
            margin-bottom: 2rem;
        }
        .custom-img-height {
            height: 700px;
            object-fit: cover;
            width: 100%; 
        }

        
        @media (max-width: 767.98px) {
        .custom-img-height {
            height: 400px;
            margin-bottom: 24px; 
               }
        }

        .stats-card {
            background: var(--white);
            padding: 30px;
            border-radius: 20px;
            box-shadow: var(--shadow-md);
            text-align: center;
            margin: 10px 0;
            transition: transform 0.3s ease;
        }

        .stats-card:hover {
            transform: translateY(-5px);
        }

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

        /* Experience Section */
        .experience-section {
            padding: 100px 0;
            background: var(--white);
        }

        .experience-card {
            background: var(--white);
            border-radius: 20px;
            padding: 40px;
            box-shadow: var(--shadow-lg);
            position: relative;
            overflow: hidden;
        }

        .experience-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-primary);
        }

        .experience-number {
            font-size: 4rem;
            font-weight: 800;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

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

        .service-card {
            background: var(--white);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: var(--shadow-md);
            transition: all 0.4s ease;
            height: 100%;
            border: 1px solid #e2e8f0;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient-primary);
            opacity: 0;
            transition: all 0.4s ease;
            z-index: 1;
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-xl);
            color: white;
        }

        .service-card:hover .service-icon {
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.1);
        }

        .service-card > * {
            position: relative;
            z-index: 2;
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
            color: white;
            transition: all 0.4s ease;
            box-shadow: var(--shadow-md);
        }
        

        /* Appointment Section */
        .appointment-section {
            padding: 100px 0;
            background: var(--white);
        }

        .appointment-form {
            background: var(--white);
            padding: 50px;
            border-radius: 20px;
            box-shadow: var(--shadow-lg);
        }

        .form-control {
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            padding: 15px;
            font-size: 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);
        }

        /* Enhanced Pricing Section */
        .pricing-section {
            padding: 100px 0;
            background: var(--bg-light);
            position: relative;
        }

        .pricing-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="pricing-pattern" patternUnits="userSpaceOnUse" width="40" height="40"><circle cx="20" cy="20" r="1.5" fill="%236366f1" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23pricing-pattern)"/></svg>');
        }

        .pricing-card {
            background: var(--white);
            border-radius: 25px;
            padding: 50px 40px;
            text-align: center;
            box-shadow: var(--shadow-md);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            border: 2px solid transparent;
            height: 100%;
        }

        .pricing-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient-primary);
            opacity: 0;
            border-radius: 25px;
            transition: opacity 0.4s ease;
            z-index: 1;
        }

        .pricing-card:hover::before {
            opacity: 0.05;
        }

        .pricing-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: var(--shadow-xl);
            border-color: var(--primary-color);
        }

        .pricing-card > * {
            position: relative;
            z-index: 2;
        }

        .pricing-card.featured {
            background: var(--gradient-primary);
            color: white;
            transform: scale(1.05);
            border-color: var(--primary-color);
        }

        .pricing-card.featured::before {
            opacity: 0;
        }

        .pricing-card.featured .btn {
            background: white;
            color: var(--primary-color);
            font-weight: 600;
        }

        .pricing-card.featured .btn:hover {
            background: rgba(255, 255, 255, 0.9);
            transform: translateY(-2px);
        }

        .pricing-header {
            margin-bottom: 30px;
        }

        .pricing-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
            color: white;
            box-shadow: var(--shadow-md);
            transition: all 0.4s ease;
        }

        .pricing-card.featured .pricing-icon {
            background: rgba(255, 255, 255, 0.2);
        }

        .pricing-card:hover .pricing-icon {
            transform: scale(1.1) rotate(10deg);
            box-shadow: var(--shadow-lg);
        }

        .price {
            font-size: 3.5rem;
            font-weight: 800;
            margin: 20px 0;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .pricing-card.featured .price {
            color: white;
            background: none;
            -webkit-text-fill-color: white;
        }

        .pricing-features {
            margin: 30px 0;
        }

        .pricing-features li {
            padding: 12px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: flex-start;
        }

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

        .pricing-features li:last-child {
            border-bottom: none;
        }

        .pricing-features li i {
            margin-right: 12px;
            font-size: 1.1rem;
        }

        .popular-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #f59e0b, #f97316);
            color: white;
            padding: 8px 25px;
            border-radius: 25px;
            font-size: 0.85rem;
            font-weight: 600;
            box-shadow: var(--shadow-md);
        }

        /* Why Choose Us Section */
        .why-choose-section {
            padding: 100px 0;
            background: var(--white);
        }

        .feature-list {
            list-style: none;
            padding: 0;
        }

        .feature-list li {
            padding: 15px 0;
            border-bottom: 1px solid #e2e8f0;
            display: flex;
            align-items: center;
        }

        .feature-list li:last-child {
            border-bottom: none;
        }

        .feature-list li i {
            width: 40px;
            height: 40px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            margin-right: 15px;
            font-size: 1rem;
            box-shadow: var(--shadow-sm);
        }

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

        .doctor-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: all 0.3s ease;
            position: relative;
        }

        .doctor-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-xl);
        }

        .doctor-image-container {
            position: relative;
            width: 100%;
            height: 300px;
            overflow: hidden;
        }

        .doctor-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .doctor-card:hover .doctor-image {
            transform: scale(1.1);
        }

        .doctor-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(99, 102, 241, 0.8), rgba(139, 92, 246, 0.8));
            opacity: 0;
            transition: opacity 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }

        .doctor-card:hover .doctor-overlay {
            opacity: 1;
        }

        .doctor-social {
            display: flex;
            gap: 15px;
        }

        .doctor-social a {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .doctor-social a:hover {
            background: white;
            color: var(--primary-color);
            transform: translateY(-3px);
        }

        .doctor-info {
            padding: 30px;
            text-align: center;
        }

        .doctor-specialty {
            display: inline-block;
            background: var(--gradient-primary);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 10px;
        }

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

        .faq-item {
            background: var(--white);
            border: 1px solid #e2e8f0;
            border-radius: 10px;
            margin-bottom: 15px;
            overflow: hidden;
        }

        .faq-question {
            padding: 20px;
            background: var(--bg-light);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
        }

        .faq-answer {
            padding: 20px;
            display: none;
        }

        .faq-item.active .faq-answer {
            display: block;
        }

        @media (max-width: 767.98px) {
        .faq-section .btn {
            margin-bottom: 40px;
            }
        }

        @media (max-width: 980px) {
        .faq-section .btn {
            display: inline-block;
            margin-bottom: 40px;
           } 
        }

        /* Enhanced Testimonials Section with Carousel */
        .testimonials-section {
            padding: 100px 0;
            background: var(--bg-light);
            position: relative;
        }

        .testimonials-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="testimonial-pattern" patternUnits="userSpaceOnUse" width="60" height="60"><circle cx="30" cy="30" r="2" fill="%236366f1" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23testimonial-pattern)"/></svg>');
        }

        .testimonial-carousel {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }

        .testimonial-slide {
            display: none;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

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

        .testimonial-card {
            background: var(--white);
            padding: 50px 40px;
            border-radius: 25px;
            box-shadow: var(--shadow-lg);
            position: relative;
            text-align: center;
            border: 1px solid rgba(99, 102, 241, 0.1);
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 6rem;
            color: var(--primary-color);
            font-family: serif;
            opacity: 0.3;
        }

        .testimonial-content {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-light);
            margin-bottom: 30px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
        }

        .author-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid var(--primary-color);
        }

        .author-info h6 {
            color: var(--text-dark);
            font-weight: 600;
            margin-bottom: 5px;
        }

        .author-info small {
            color: var(--primary-color);
            font-weight: 500;
        }

        .testimonial-rating {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin-bottom: 20px;
        }

        .testimonial-rating i {
            color: #fbbf24;
            font-size: 1.2rem;
        }

        .carousel-controls {
            display: flex;
            justify-content: center;
            gap: 120px;
            margin-top: 40px;
        }

        .carousel-btn {
            width: 50px;
            height: 50px;
            border: 2px solid var(--primary-color);
            background: transparent;
            border-radius: 50%;
            color: var(--primary-color);
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .carousel-btn:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-2px);
        }

        .carousel-indicators {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(99, 102, 241, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator.active {
            background: var(--primary-color);
            transform: scale(1.2);
        }

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

        .blog-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: all 0.3s ease;
        }

        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-xl);
        }

        .blog-image {
            width: 100%;
            height: 200px;
            background: var(--gradient-secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
        }

        .blog-content {
            padding: 30px;
        }

        .blog-image {
            height: 250px;
            overflow: hidden;
        }

        .blog-image img {
            height: 140%;
            object-fit: cover;
        }
        
    
        /* Footer */
        .footer {
            background: var(--gradient-primary);
            color: white;
            padding: 80px 0 30px;
        }

        .footer h5 {
            color: white;
            margin-bottom: 20px;
        }

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

        .footer a:hover {
            color: white;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .appointment-form,
            .experience-card {
                padding: 30px 20px;
            }
            
            .stats-card,
            .service-card,
            .pricing-card {
                margin-bottom: 20px;
            }

            .pricing-card {
                padding: 40px 30px;
            }

            .testimonial-card {
                padding: 30px 20px;
            }

            .carousel-controls {
                gap: 70px;
            }

            .carousel-btn {
                width: 45px;
                height: 45px;
            }
        }

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .contact-info-grid {
            margin-top: 2rem;
        }

        .contact-info-item {
            padding: 20px;
            background: rgba(99, 102, 241, 0.05);
            border-radius: 15px;
            border-left: 4px solid var(--primary-color);
            transition: all 0.3s ease;
        }

        .contact-info-item:hover {
            background: rgba(99, 102, 241, 0.1);
            transform: translateX(5px);
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-md);
        }

        .contact-info-item h6 {
            color: var(--text-dark);
            font-weight: 600;
        }

        .contact-info-item p {
            color: var(--primary-color);
            font-weight: 500;
        }
