
        :root {
            --primary-color: #1e40af;
            --secondary-color: #0ea5e9;
            --accent-color: #06b6d4;
            --dark-blue: #1e3a8a;
            --light-blue: #dbeafe;
            --text-dark: #1f2937;
            --text-light: #6b7280;
            --white: #ffffff;
            --gradient-primary: linear-gradient(135deg, #0073A2 0%, #00B8C4 100%);
            --gradient-secondary: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
        }

        /* Top Info Bar */
        .top-info-bar {
            background: var(--gradient-primary);
            color: white;
            padding: 8px 0;
            font-size: 0.875rem;
        }

        .top-info-bar .info-item {
            display: flex;
            align-items: center;
            margin-right: 2rem;
        }

        .top-info-bar .info-item i {
            margin-right: 8px;
            color: var(--light-blue);
        }

        .top-info-bar .social-links a {
            color: white;
            margin-left: 12px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .top-info-bar .social-links a:hover {
            color: var(--light-blue);
            transform: translateY(-2px);
        }

        /* Main Navigation - Corrected */
        .main-navbar {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
/*            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);*/
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .main-navbar.scrolled {
            padding: 0.5rem 0;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
        }

        /* Corrected Navbar Brand */
        .navbar-brand {
            display: flex;
            align-items: center;
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
            text-decoration: none;
            padding: 0;
			
        }
 .navbar-brand img{
	 width: 75%;
}



        .navbar-brand:hover {
            color: var(--primary-color) !important;
        }

        .hospital-icon {
            background: var(--gradient-primary);
            color: white;
            width: 45px;
            height: 45px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .navbar-brand:hover .hospital-icon {
            transform: scale(1.05) rotate(5deg);
            box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
        }

        .brand-text {
            display: flex;
            flex-direction: column;
            line-height: 1.1;
        }

        .brand-name {
            font-size: 1.5rem;
            font-weight: 700;
        }

        .brand-tagline {
            font-size: 0.65rem;
            color: var(--text-light);
            font-weight: 400;
            margin-top: -2px;
        }

        /* Corrected Navbar Toggle */
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
            font-size: 1.2rem;
		
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2830, 64, 175, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        /* Corrected Navigation Links */
        .navbar-nav {
            align-items: center;
        }

        .navbar-nav .nav-link {
            font-weight: 500;
            color: var(--text-dark) !important;
            margin: 0 0px;
            padding: 10px 10px !important;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
            white-space: nowrap;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary-color) !important;
            background: var(--light-blue);
            transform: translateY(-2px);
        }

        .navbar-nav .nav-link.active {
            color: var(--primary-color) !important;
            /* background: var(--light-blue); */
        }

        /* Corrected Appointment Button */
        .btn-appointment {
            /* background: var(--gradient-primary) !important; */
            color: white !important;
            border: none;
            padding: 10px 20px !important;
            border-radius: 25px;
            font-weight: 600;
            margin-left: 15px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
            white-space: nowrap;
            text-decoration: none;
        }

        .btn-appointment:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(193, 201, 204, 0.4);
            color: white !important;
        }

        /* Hero Carousel Styles */
        .hero-carousel {
            position: relative;
            height: 70vh;
            overflow: hidden;
        }

        .hero-carousel .carousel-item {
            height: 100vh;
            position: relative;
        }

        .hero-carousel .carousel-item img {
            width: 100%;
            height: auto;
            object-fit: cover;
            object-position: center;
        }

        .hero-carousel .carousel-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 1;
        }

        .hero-content {
            position: absolute;
            top: 33%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            z-index: 2;
            max-width: 800px;
            padding: 0 20px;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .hero-content .subtitle {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #e0f2fe;
        }

        .hero-content .description {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-custom {
            background: var(--gradient-primary);
            color: white;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            display: inline-block;
        }

        .btn-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(30, 64, 175, 0.4);
            color: white;
        }

        .btn-outline-custom {
            background: transparent;
            color: white;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: 2px solid white;
            display: inline-block;
        }

        .btn-outline-custom:hover {
            background: white;
            color: var(--primary-color);
            transform: translateY(-3px);
        }

        /* Carousel Controls */
        .carousel-control-prev,
        .carousel-control-next {
            width: 5%;
            opacity: 0.8;
        }

        .carousel-control-prev:hover,
        .carousel-control-next:hover {
            opacity: 1;
        }

        .carousel-indicators {
            bottom: 30px;
        }

        .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            margin: 0 8px;
        }

        /* Quick Contact Section */
        .section-padding {
            padding: 60px 0;
        }

        .quick-contact {
            background: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            margin-top: -100px;
            position: relative;
            z-index: 10;
        }

        .contact-item {
            display: flex;
            align-items: center;
            padding: 20px;
            text-align: left;
        }

        .contact-icon {
            background: var(--gradient-primary);
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            font-size: 1.5rem;
        }

        .contact-item h6 {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 5px;
        }

        .contact-item p {
            color: var(--text-light);
            margin: 0;
        }

        /* Section Titles */
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .section-title p {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Feature Cards */
        .feature-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            height: 100%;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(30, 64, 175, 0.2);
        }

        .feature-icon {
            background: var(--gradient-primary);
            color: white;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
        }

        /* CTA Section */
        .cta-section {
            background: var(--gradient-primary);
            color: white;
            padding: 30px 0;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        /* Footer */
        .footer {
            background: var(--text-dark);
            color: white;
            padding: 50px 0 20px;
        }

        .footer h5 {
            color: var(--secondary-color);
            margin-bottom: 20px;
            font-weight: 600;
        }

        .footer a {
            color: #cbd5e1;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer a:hover {
            color: var(--secondary-color);
        }

        .footer .fab {
            color: var(--secondary-color);
            transition: all 0.3s ease;
        }

        .footer .fab:hover {
            color: white;
            transform: translateY(-2px);
        }

        /* Responsive Design - Corrected */
        @media (max-width: 991.98px) {
            .navbar-nav {
                margin-top: 1rem;
                text-align: center;
            }
            
            .navbar-nav .nav-link {
                margin: 5px 0;
                padding: 12px 20px !important;
            }

            .btn-appointment {
                margin-left: 0;
                margin-top: 15px;
                width: auto;
                display: inline-block;
            }
            
            .brand-name {
                font-size: 1.3rem;
            }
            
            .brand-tagline {
                font-size: 0.6rem;
            }
        }

        @media (max-width: 768px) {
            .top-info-bar {
                display: none;
            }
            
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .hero-buttons {
                justify-content: center;
            }
            
            .btn-custom,
            .btn-outline-custom {
                padding: 12px 24px;
                font-size: 1rem;
            }

            .hospital-icon {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
            
            .brand-name {
                font-size: 1.2rem;
            }
			.
        }

        @media (max-width: 576px) {
            .top-info-bar .d-flex {
                flex-direction: column;
                align-items: flex-start !important;
            }
            
            .top-info-bar .info-item {
                margin-right: 0;
                margin-bottom: 5px;
            }
            
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .hero-content .subtitle {
                font-size: 1.2rem;
            }
            
            .hero-content .description {
                font-size: 1rem;
            }
        }

        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-fade-in-up {
            animation: fadeInUp 0.8s ease-out forwards;
        }
        @media (max-width: 767px) {
  .hero-carousel {
    height: 25vh;
  }
}

    /* department page */

    /* Departments Page Specific Styles */

.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 100px 0 60px;
    /* margin-top: 80px; */
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: white;
}

.departments-section {
    background: #f8f9fa;
}

.department-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.department-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.department-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 2rem;
}

.department-content h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.department-content p {
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.department-services {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.department-services li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
    color: #495057;
    position: relative;
    padding-left: 1.5rem;
}

.department-services li:before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent-color);
    position: absolute;
    left: 0;
    top: 0.5rem;
}

.department-services li:last-child {
    border-bottom: none;
}

.emergency-contact {
    background: linear-gradient(135deg, #dc3545, #c82333) !important;
}

.emergency-contact h4 {
    font-weight: 600;
}

.emergency-contact .btn-light {
    font-weight: 600;
    border-radius: 25px;
    padding: 0.75rem 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header {
        padding: 80px 0 40px;
        /* margin-top: 70px; */
    }
	

    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .department-card {
        margin-bottom: 2rem;
    }
    
    .emergency-contact .col-md-4 {
        text-align: center !important;
        margin-top: 1rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.department-card {
    animation: fadeInUp 0.6s ease forwards;
}

.department-card:nth-child(1) { animation-delay: 0.1s; }
.department-card:nth-child(2) { animation-delay: 0.2s; }
.department-card:nth-child(3) { animation-delay: 0.3s; }
.department-card:nth-child(4) { animation-delay: 0.4s; }
.department-card:nth-child(5) { animation-delay: 0.5s; }
.department-card:nth-child(6) { animation-delay: 0.6s; }


/* doctorspage */

/* Doctors Page Specific Styles */

.page-header {
    background: linear-gradient(135deg, #2c5aa0, #17a2b8);
    color: white;
    padding: 100px 0 60px;
    /* margin-top: 80px; */
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: white;
}

/* Lead Doctor Section */
.lead-doctor-section {
    background: white;
}

.lead-doctor-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.doctor-image-large {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 6rem;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(44, 90, 160, 0.3);
}

.doctor-info h2 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.qualification {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.specialty {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.experience-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.experience-badge i {
    margin-right: 0.5rem;
}

.doctor-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 2rem;
}

.specializations h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.spec-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.spec-tag {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.doctor-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Other Doctors Section */
.other-doctors-section {
    background: #f8f9fa;
}

.doctor-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid #e9ecef;
}

.doctor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.doctor-image {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    margin: 0 auto 1.5rem;
}

.doctor-details h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.doctor-details .qualification {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.doctor-details .specialty {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.experience {
    display: inline-flex;
    align-items: center;
    color: #28a745;
    font-weight: 500;
    margin-bottom: 1rem;
}

.experience i {
    margin-right: 0.5rem;
}

.specializations-mini {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.specializations-mini span {
    background: #e9ecef;
    color: #495057;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header {
        padding: 80px 0 40px;
        /* margin-top: 70px; */
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .lead-doctor-card {
        padding: 2rem 1rem;
    }
    
    .doctor-image-large {
        width: 200px;
        height: 200px;
        font-size: 4rem;
    }
    
    .doctor-info h2 {
        font-size: 2rem;
    }
    
    .doctor-actions {
        justify-content: center;
    }
    
    .doctor-actions .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .spec-tags {
        justify-content: center;
    }
}

/* Animation */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lead-doctor-card {
    animation: slideInUp 0.8s ease forwards;
}

.doctor-card {
    animation: slideInUp 0.6s ease forwards;
}

.doctor-card:nth-child(1) { animation-delay: 0.1s; }
.doctor-card:nth-child(2) { animation-delay: 0.2s; }
.doctor-card:nth-child(3) { animation-delay: 0.3s; }
.doctor-card:nth-child(4) { animation-delay: 0.4s; }
.doctor-card:nth-child(5) { animation-delay: 0.5s; }
.doctor-card:nth-child(6) { animation-delay: 0.6s; }

/* servicespage */

/* Services Page Specific Styles */

.page-header {
    /* background: linear-gradient(135deg, #28a745, #20c997); */
    color: white;
    padding: 100px 0 60px;
    /* margin-top: 80px; */
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: white;
}

/* Services Overview */
.services-overview {
    background: white;
}

.service-highlight {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    height: 100%;
}

.service-highlight .service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.service-highlight .service-content h3 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-highlight .service-content p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Medical Services */
.medical-services {
    background: #f8f9fa;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-icon-card {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.service-card h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-card p {
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
    text-align: left;
}

.service-features li {
    padding: 0.5rem 0;
    color: #495057;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li:before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #28a745;
    position: absolute;
    left: 0;
    top: 0.5rem;
}

.service-availability {
    display: inline-flex;
    align-items: center;
    background: #e8f5e8;
    color: #28a745;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.9rem;
}

.service-availability i {
    margin-right: 0.5rem;
}

/* Specialized Services */
.specialized-services {
    background: white;
}

.specialized-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    height: 100%;
    transition: all 0.3s ease;
}

.specialized-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.specialized-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto;
}

.specialized-card h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.specialized-card p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Service Features */
.service-features {
    background: #f8f9fa;
}

.feature-item {
    text-align: center;
    padding: 2rem 1rem;
}

.feature-item .feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffc107, #fd7e14);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.feature-item h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-item p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header {
        padding: 80px 0 40px;
        /* margin-top: 70px; */
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .service-highlight {
        flex-direction: column;
        text-align: center;
    }
    
    .service-highlight .service-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .specialized-card .row {
        text-align: center;
    }
    
    .specialized-icon {
        margin-bottom: 1rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.service-highlight,
.specialized-card,
.feature-item {
    animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }


/* Aboutuspage */

/* About Page Specific Styles */

.page-header {
    /* background: linear-gradient(135deg, #6f42c1, #e83e8c); */
    color: white;
    padding: 50px 0 50px;
    /* margin-top: 80px; */
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: white;
}

/* About Introduction */
.about-intro {
    background: white;
}

.about-content h2 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.about-content .lead {
    font-size: 1.25rem;
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.about-image {
    text-align: center;
}

.image-placeholder {
    width: 400px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 6rem;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(44, 90, 160, 0.3);
}

/* Mission Vision Values */
.mission-vision {
    background: #f8f9fa;
}

.mvv-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem 2rem;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.mvv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6f42c1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.mvv-card h3 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.mvv-card p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}


/* Leadership */
.leadership {
    background: #f8f9fa;
}

.leader-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.leader-image {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(44, 90, 160, 0.3);
}

.leader-card h3 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.position {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.qualification {
    color: #6c757d;
    font-style: italic;
    margin-bottom: .15rem;
}

.leader-card p {
    color: #495057;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Facilities */
.facilities {
    background: white;
}

.facility-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.facility-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.facility-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #17a2b8, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.facility-card h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.facility-card p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Accreditations */
.accreditations {
    background: #f8f9fa;
}

.accreditation-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.accreditation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.accreditation-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffc107, #fd7e14);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.accreditation-card h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.accreditation-card p {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header {
        padding: 80px 0 40px;
        /* margin-top: 70px; */
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .image-placeholder {
        width: 300px;
        height: 200px;
        font-size: 4rem;
    }
    
    .leader-card {
        padding: 2rem 1rem;
    }
    
    .leader-image {
        width: 150px;
        height: 150px;
        font-size: 3rem;
    }
    
    .leader-card h3 {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mvv-card,
.stat-card,
.facility-card,
.accreditation-card {
    animation: fadeInUp 0.6s ease forwards;
}

.mvv-card:nth-child(1) { animation-delay: 0.1s; }
.mvv-card:nth-child(2) { animation-delay: 0.2s; }
.mvv-card:nth-child(3) { animation-delay: 0.3s; }

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }

.leader-card {
    animation: fadeInUp 0.8s ease forwards;
}

/* Gallery page */
  .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            margin-bottom: 30px;
        }
        .gallery-item:hover {
            transform: translateY(-5px);
        }
        .gallery-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        .gallery-item:hover img {
            transform: scale(1.05);
        }
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(0,123,255,0.8), rgba(40,167,69,0.8));
            opacity: 0;
            transition: opacity 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        .gallery-overlay i {
            color: white;
            font-size: 2rem;
        }
        .gallery-title {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.7));
            color: white;
            padding: 20px 15px 15px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        .gallery-item:hover .gallery-title {
            transform: translateY(0);
        }
        .filter-buttons {
            margin-bottom: 40px;
        }
        .filter-btn {
            background: transparent;
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
            padding: 5px 10px;
            margin: 1px;
            border-radius: 10px;
            transition: all 0.3s ease;
        }
        .filter-btn:hover,
        .filter-btn.active {
            background: var(--primary-color);
            color: white;
        }
/* appointment page */


.form-control, .form-select {
            border: 2px solid #e9ecef;
            border-radius: 8px;
            padding: 12px 15px;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        .form-control:focus, .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.25);
        }
        .form-label {
            font-weight: 600;
            color: #333;
            margin-bottom: 8px;
        }
        .appointment-info {
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            color: white;
            border-radius: 15px;
            padding: 30px;
        }
        .emergency-notice {
            background: #dc3545;
            color: white;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 30px;
            text-align: center;
        }
        .step-indicator {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
        }
        .step {
            display: flex;
            align-items: center;
            margin: 0 15px;
        }
        .step-number {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #e9ecef;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            margin-right: 10px;
        }
        .step.active .step-number {
            background: var(--primary-color);
            color: white;
        }
        .step.completed .step-number {
            background: var(--accent-color);
            color: white;
        }

        .imaged{
            width: 100%;
            height: auto;
        }

          /* Section Styles */
        .section-title {
            text-align: center;
            margin-bottom: 20px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 3px;
            background-color: var(--primary-color);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-title p {
            color: var(--secondary-color);
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Facilities Section */
        .facility-card {
            background: white;
            border-radius: 12px;
            padding: 30px;
            height: 100%;
            box-shadow: 0 5px 25px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            border: 1px solid rgba(0,0,0,0.05);
            position: relative;
            overflow: hidden;
        }
        
        .facility-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
        }
        
        .facility-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        
        .facility-icon {
            font-size: 2.8rem;
            /* color: var(--primary-color); */
            margin-bottom: 1.5rem;
            transition: all 0.3s;
        }
        
        .facility-card:hover .facility-icon {
            transform: scale(1.1);
            /* color: var(--accent-color); */
        }
        
        .facility-list {
            list-style-type: none;
            padding-left: 0;
        }
        
        .facility-list li {
            position: relative;
            padding-left: 30px;
            margin-bottom: 12px;
            line-height: 1.6;
        }
        
        .facility-list li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: var(--accent-color);
            position: absolute;
            left: 0;
            top: 2px;
        }
        
        .facility-card h4 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            padding-bottom: 10px;
            position: relative;
            display: inline-block;
        }
        
        .facility-card h4::after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            bottom: 0;
            left: 0;
        }
        
        /* Button Styles */
        .btn-custom {
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(13, 110, 253, 0.4);
            color: white;
        }
        
        /* Additional Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .service-item {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: all 0.3s;
            border-left: 4px solid var(--primary-color);
        }
        
        .service-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border-left: 4px solid var(--accent-color);
        }
        
        .service-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .service-item h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--dark-color);
        }
        
        .service-item p {
            color: var(--secondary-color);
        }
        
            
        .author-info h5 {
            margin-bottom: 0;
            font-size: 1.1rem;
        }
        
        .author-info p {
            color: var(--secondary-color);
            font-size: 0.9rem;
            margin-bottom: 0;
        }
        
       
        
        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .page-header h1 {
                font-size: 2.5rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .page-header {
                padding: 80px 0 40px;
            }
            
            .page-header h1 {
                font-size: 2rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .facility-card {
                padding: 20px;
            }
        }

        /* Facilities Page Specific Styles */
.facility-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    transition: transform 0.3s ease;
    text-align: left; /* Ensure all text is left-aligned */
}

.facility-card:hover {
    transform: translateY(-5px);
}

.facility-icon {
    font-size: 2.5rem;
    /* color: #0d6efd; */
    margin-bottom: 20px;
    text-align: left; /* Icon container left-aligned */
}

.facility-card h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
    text-align: left; /* Heading left-aligned */
}

.facility-list {
    list-style-type: none;
    padding-left: 0;
    text-align: left; /* List left-aligned */
}

.facility-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    line-height: 1.6;
    text-align: left; /* List items left-aligned */
}

.facility-list li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #0d6efd;
    position: absolute;
    left: 0;
    top: 2px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: left; /* Grid items left-aligned */
}

.service-item {
    background: white;
    border-radius: 10px;
    padding: 30px;
    /* box-shadow: 0 5px 15px rgba(0,0,0,0.05); */
    transition: transform 0.3s ease;
    text-align: left; /* Service items left-aligned */
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2rem;
    color: #0d6efd;
    margin-bottom: 15px;
    text-align: left; /* Service icons left-aligned */
}

.service-item h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
    text-align: left; /* Service headings left-aligned */
}

.service-item p {
    margin-bottom: 15px;
    color: #7f8c8d;
    text-align: left; /* Service paragraphs left-aligned */
}

