 body {
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }
        
        :root {
            --primary-color: #949f41;
            --secondary-color: #00608b;
            --light-green: #a8b356;
            --light-blue: #1a7ba8;
        }
         .text-justify{ text-align:justify; }
        .navbar {
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            padding: 1rem 0;
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: white !important;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color) !important;
            transform: translateY(-2px);
        }
        
        .btn-appointment {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-appointment:hover {
            background: var(--light-green);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(148, 159, 65, 0.4);
        }
        
        .hero-section {
            background: linear-gradient(100deg, var(--secondary-color), var(--primary-color));
            color: white;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
            margin-top: 5%;
        }
        
        /*.hero-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 1000 100" fill="white" opacity="0.1"><path d="M0,0v46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1047.71,8.15,1100,25V0H0Z"></path></svg>') repeat-x;
            background-size: 1000px 100px;
        }*/
        .hero-content {
           text-align: center;
           padding: 0px 15%;
        }
        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            animation: fadeInUp 1s ease;
        }
        
        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            animation: fadeInUp 1s ease 0.2s both;
        }

        .hero-section img{position: absolute;
            top: 10%;
            left: 60%;
            height: 90%;}
                
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .section-title {
            color: var(--secondary-color);
            font-weight: 700;
            margin-bottom: 3rem;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary-color);
            border-radius: 2px;
        }
        
        .about-section {
            padding: 80px 0;
            background: #f8f9fa;
        }
        
        .doctor-image {
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .doctor-image:hover {
            transform: translateY(-10px);
        }
        
        .services-section {
            padding: 80px 0;
        }
        
        .service-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: none;
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        .service-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: white;
            font-size: 2rem;
        }
        
         .testimonials-section {
            padding: 80px 0;
            background: white;
        }
        
        .testimonial-card {
            background: white;
            border-radius: 20px;
            padding: 3rem;
            text-align: center;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            border: 1px solid #f0f0f0;
            position: relative;
            margin: 2rem 0;
        }
        
        .testimonial-image {
            margin-bottom: 2rem;
        }
        
        .testimonial-image img {
            width: 120px;
            height: 120px;
            border: 4px solid var(--primary-color);
            box-shadow: 0 10px 30px rgba(148, 159, 65, 0.3);
        }
        
        .stars {
            color: #ffc107;
            font-size: 1.2rem;
        }
        
        .testimonial-text {
            font-size: 1.1rem;
            font-style: italic;
            color: #666;
            margin-bottom: 2rem;
            line-height: 1.8;
            position: relative;
        }
        
        .testimonial-text::before {
            content: '"';
            font-size: 4rem;
            color: var(--primary-color);
            position: absolute;
            top: -20px;
            left: -20px;
            font-family: serif;
            opacity: 0.3;
        }
        
        .testimonial-text::after {
            content: '"';
            font-size: 4rem;
            color: var(--primary-color);
            position: absolute;
            bottom: -40px;
            right: -20px;
            font-family: serif;
            opacity: 0.3;
        }
        
        .patient-name {
            color: var(--secondary-color);
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .patient-info {
            color: #888;
            font-size: 0.9rem;
        }
        
        .carousel-indicators {
            bottom: -50px;
        }
        
        .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: var(--primary-color);
            border: none;
            margin: 0 5px;
        }
        
        .carousel-indicators .active {
            background-color: var(--secondary-color);
        }
        
        .carousel-control-prev,
        .carousel-control-next {
            width: 50px;
            height: 50px;
            background: var(--primary-color);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0.8;
            transition: all 0.3s ease;
        }
        
        .carousel-control-prev:hover,
        .carousel-control-next:hover {
            opacity: 1;
            background: var(--secondary-color);
        }
        
        .carousel-control-prev {
            left: -25px;
        }
        
        .carousel-control-next {
            right: -25px;
        }
        
        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            width: 20px;
            height: 20px;
        }

        
        .gallery-section {
            padding: 80px 0;
            background: #f8f9fa;
        }
        
        .gallery-item {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            cursor: pointer;
            margin-bottom: 2rem;
        }
        
        .gallery-item:hover {
            transform: scale(1.05);
        }
        
        .gallery-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }
        
        .faq-section {
            padding: 80px 0;
            background: #f8f9fa;
        }
        
        .accordion-button {
            background: var(--secondary-color);
            color: white;
            font-weight: 600;
        }
        
        .accordion-button:not(.collapsed) {
            background: var(--primary-color);
            color: white;
        }
        
        .accordion-button:focus {
            box-shadow: 0 0 0 0.25rem rgba(148, 159, 65, 0.25);
        }
        
        .contact-section {
            padding: 80px 0;
            background: #f8f9fa;
        }
        
        .contact-info {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin-bottom: 2rem;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            margin-right: 1rem;
        }
        
        .map-container {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .footer {
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            color: white;
            padding: 3rem 0 1rem;
        }
        
        .modal-content {
            border-radius: 15px;
            border: none;
        }
        
        .modal-header {
            background: var(--secondary-color);
            color: white;
            border-radius: 15px 15px 0 0;
        }
        
        @media (max-width: 768px) {

            .navbar-nav { text-align: center; margin-top: 1rem;}
            .hero-section { margin-top: 10%; }
            .hero-section img { position: absolute; top: 60%; left: 55%; height: 40%; width: 50%;}
            .hero-content {text-align: center; padding: 0px !important}
            .hero-content h1 {font-size: 2.5rem;}
            .btn-appointment {margin-top: 1rem;}
            .carousel-control-prev, .carousel-control-next{ display:none }
        }