
        :root {
            --primary-color: #2C4EBD;
            --primary-dark: #047857;
            --secondary-color: #0284c7;
            --secondary-dark: #0369a1;
            --accent-color: #ea580c;
            --accent-dark: #c2410c;
            --teal-color: #0d9488;
            --emerald-light: #d1fae5;
            --text-dark: #1f2937;
            --text-light: #6b7280;
            --white: #ffffff;
            --gray-50: #f9fafb;
            --gray-100: #f3f4f6;
            --gray-900: #111827;
            --gradient-primary: linear-gradient(135deg, #2C4EBD 0%, #0d9488 100%);
            --gradient-secondary: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
            --gradient-accent: linear-gradient(135deg, #ea580c 0%, #c2410c 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: #008EE2;
            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(--emerald-light);
        }

        .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(--emerald-light);
            transform: translateY(-2px);
        }

        /* Main Navigation */
        .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);
        }

        .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: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(5, 150, 105, 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;
        }

        .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%285, 150, 105, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        .navbar-nav .nav-link {
            font-weight: 500;
            /* color: var(--text-dark) !important; */
            margin: 0 0px;
            padding: 10px 16px !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: #C20000;
            transform: translateY(-2px);
        }

        .navbar-nav .nav-link.active {
            color: #0a9ead!important;
        }

        .btn-appointment {
            background: #C20000 !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(234, 88, 12, 0.3);
            white-space: nowrap;
            text-decoration: none;
        }

        .btn-appointment:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(234, 88, 12, 0.4);
            color: white !important;
        }

        /* Hero Carousel */
        .hero-carousel {
            position: relative;
            height: 70vh;
            overflow: hidden;
        }

        .hero-carousel .carousel-item {
            height: 70vh;
            position: relative;
        }

        .hero-carousel .carousel-item img {
            width: 100%;
            height: 100%;
            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: 50%;
            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: var(--emerald-light);
        }

        .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-accent);
            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(234, 88, 12, 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);
        }

        /* Quality Care Section */
        .section-padding {
            padding: 60px 0;
        }

        .quality-care-card {
            background: white;
            border-radius: 15px;
            /* padding: 30px; */
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
        }

        .quality-care-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
        }

        .quality-care-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 20px;
        }

        .quality-care-card h5 {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 15px;
        }

        .working-time-card {
            background: var(--gradient-secondary);
            color: white;
            border-radius: 15px;
            padding: 30px;
            height: 100%;
        }

        .working-time-card h5 {
            font-weight: 700;
            margin-bottom: 20px;
        }

        /* About Section */
        .about-section {
            padding: 20px 0;
        }

        .about-section img {
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .about-section .section-tag {
            color: var(--secondary-color);
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 10px;
        }

        .about-section h2 {
            color: var(--primary-color);
            font-weight: 800;
            font-size: 2.5rem;
            margin-bottom: 30px;
        }

        .director-signature {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color);
            font-family: cursive;
        }

        /* Departments Section */
        .departments-section {
            background: var(--gray-50);
            padding: 50px 0;
        }

        .departments-section h2 {
            color: var(--primary-color);
            font-weight: 800;
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .department-card {
            background: white;
            border-radius: 15px;
            /* padding: 30px 20px; */
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            border: 1px solid #e5e7eb;
            cursor: pointer;
            height: 160px;
            /* display: flex; */
            flex-direction: column;
            justify-content: center;
            overflow: hidden;
        }

        .department-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(5, 150, 105, 0.15);
            border-color: var(--primary-color);
        }

        .department-icon {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 15px;
            transition: all 0.4s ease;
            display: block;
        }

        .department-name {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-dark);
            transition: all 0.4s ease;
            display: block;
        }

        .department-card:hover .department-icon {
            transform: translateY(10px);
            color: var(--primary-color);
        }

        .department-card:hover .department-name {
            transform: translateY(-10px);
            color: var(--primary-color);
        }

        /* Services Section */
        .services-section {
            padding: 80px 0;
        }

        .service-container {
            max-width: 1000px;
            margin: 0 auto;
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            overflow: hidden;
        }

        .nav-tabs {
            border-bottom: none;
            background: var(--gray-100);
            padding: 0 20px;
        }

        .nav-tabs .nav-link {
            border: none;
            color: var(--text-light);
            font-weight: 600;
            padding: 15px 25px;
            position: relative;
            transition: all 0.3s ease;
        }

        .nav-tabs .nav-link.active {
            color: var(--primary-color);
            background: white;
            border-bottom: 3px solid var(--primary-color);
        }

        .nav-tabs .nav-link:hover:not(.active) {
            color: var(--primary-color);
            background: rgba(5, 150, 105, 0.05);
        }

        .tab-content {
            padding: 0;
        }

        .tab-pane {
            padding: 0px;
        }

        .service-content {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .service-image {
            flex: 1;
            min-width: 300px;
            border-radius: 10px;
            overflow: hidden;
        }

        .service-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }

        .service-details {
            flex: 1;
        }

        .service-description {
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .feature-list {
            margin-bottom: 30px;
        }

        .feature-item {
            display: flex;
            margin-bottom: 15px;
            align-items: flex-start;
        }

        .feature-icon {
            color: var(--primary-color);
            margin-right: 15px;
            font-size: 18px;
            font-weight: bold;
        }

        .feature-text {
            color: var(--text-dark);
        }

        .btn-view-more {
            background: var(--primary-color);
            color: white;
            padding: 12px 30px;
            border-radius: 8px;
            font-weight: 600;
            border: none;
            transition: all 0.3s ease;
        }

        .btn-view-more:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(5, 150, 105, 0.3);
        }

        /* CTA Section */
        .cta-section {
            background: var(--gradient-primary);
            color: white;
            padding: 60px 0;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        /* Footer */
        .footer {
            background: var(--gray-900);
            color: white;
            padding: 60px 0 30px;
        }

        .footer h5 {
            color: var(--primary-color);
            margin-bottom: 20px;
            font-weight: 700;
        }

        .footer a {
            color: #d1d5db;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer a:hover {
            color: var(--primary-color);
        }

        .footer .fab {
            color: var(--primary-color);
            transition: all 0.3s ease;
            font-size: 1.2rem;
        }

        .footer .fab:hover {
            color: white;
            transform: translateY(-2px);
        }

        /* Responsive Design */
        @media (max-width: 991.98px) {
            .navbar-nav {
                margin-top: 1rem;
            }

            .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;
            }

            .service-content {
                flex-direction: column;
            }

            .service-image {
                width: 100%;
                min-width: auto;
            }
        }

        @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;
            }

            .about-section h2 {
                font-size: 2rem;
            }

            .departments-section h2 {
                font-size: 2rem;
            }

            .cta-section h2 {
                font-size: 2rem;
            }
        }

        @media (max-width: 576px) {
            .hero-content h1 {
                font-size: 2rem;
            }

            .hero-content .subtitle {
                font-size: 1.2rem;
            }

            .hero-content .description {
                font-size: 1rem;
            }

            .hero-carousel {
                height: 50vh;
            }

            .hero-carousel .carousel-item {
                height: 50vh;
            }
        }

        /* 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;
        }
        /* Adjust navbar positioning for desktop */
@media (min-width: 992px) {
    .main-navbar .container {
        padding-left: 1rem;
        padding-right: 1rem;
        max-width: 97%; /* Slightly wider container */
    }
    
    /* Optional: if you want the nav links closer to the logo */
    .navbar-collapse {
        margin-left: -0.5rem;
    }
}


/* About Us Page Styles */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('images/bbg.jpg') center/cover no-repeat;
    color: #fff;
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
}

.page-header h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.breadcrumb {
    background: transparent;
    justify-content: center;
    padding: 0;
    margin-bottom: 0;
}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.breadcrumb-item a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

/* About Section Styles */
.about-content-section {
    background-color: #fff;
    position: relative;
    z-index: 1;
}

.section-header {
    margin-bottom: 1rem;
}

.section-header .subtitle {
    display: inline-block;
    color: #2a81d0;
    background: #e8f4fd;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.section-header .lead {
    font-size: 1.25rem;
    color: #555;
    font-weight: 400;
}

/* About Image Container */
.about-image-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 30px;
    color: white;
}

.overlay-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.overlay-content p {
    margin-bottom: 0;
    opacity: 0.9;
}

/* Feature Items */
.about-features {
/*    margin-top: 2rem;*/
}

.feature-item {
    display: flex;
    align-items: flex-start;
/*
    margin-bottom: 1.5rem;
*/
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #f0f7ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    color: #2a81d0;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(42, 129, 208, 0.1);
}

.feature-text h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.feature-text p {
    color: #666;
    margin-bottom: 0;
}

/* Story Card */
.story-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.story-image {
    /* height: 100%; */
    min-height: 250px;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content {
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.story-content p {
    color: #555;
    margin-bottom: 1rem;
}

/* Specialties Section */
.specialties-section {
    padding: 5rem 0;
    position: relative;
}

.specialty-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.specialty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #2a81d0;
}

.specialty-icon {
    width: 70px;
    height: 70px;
    background: #f0f7ff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #2a81d0;
    font-size: 1.75rem;
}

.specialty-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.specialty-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.read-more {
    color: #2a81d0;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.read-more i {
    margin-left: 5px;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #1a5a9a;
}

.read-more:hover i {
    transform: translateX(3px);
}

/* Facility Highlights */
.facility-highlights {
    /* padding-top: 3rem;
    border-top: 1px solid #eee; */
}

.facility-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.facility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.facility-image {
    height: 200px;
    overflow: hidden;
}

.facility-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.facility-card:hover .facility-image img {
    transform: scale(1.05);
}

.facility-content {
    padding: 25px;
}

.facility-content h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.facility-content p {
    color: #666;
    margin-bottom: 1.5rem;
}

.facility-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.facility-features li {
    margin-bottom: 0.5rem;
    color: #555;
}

.facility-features i {
    color: #2a81d0;
    margin-right: 8px;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .story-content {
        padding: 20px;
    }
    
    .specialty-card {
        padding: 20px;
    }
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .feature-item {
        flex-direction: column;
    }
    
    .feature-icon {
        margin-bottom: 15px;
        margin-right: 0;
    }
    
    .story-card {
        flex-direction: column;
    }
    
    .story-image {
        height: 200px;
    }
}

@media (max-width: 575.98px) {
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .specialty-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}
.icon-box {
    width: 70px;
    height: 70px;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.icon-box i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.mission-vision-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--heading-color);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(13, 110, 253, 0.9), rgba(13, 110, 253, 0.9)), 
                url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?w=1200&fit=crop') center/cover no-repeat;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-custom {
    background: #fff;
    color: var(--primary-color);
    border: 2px solid #fff;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-custom:hover {
    background: transparent;
    /* color: #fff; */
}

.btn-outline-custom {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-outline-custom:hover {
    background: #fff;
    color: var(--primary-color);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .page-header {
        padding: 80px 0 50px;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .about-content-section,
    .mission-vision-section {
        padding: 60px 0;
    }
}

@media (max-width: 767.98px) {
    .page-header {
        padding: 60px 0 40px;
    }
    
    .feature-box {
        flex-direction: column;
    }
    
    .feature-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .specialties-box {
        padding: 30px 20px;
    }
    
    .mission-vision-section .card-body {
        padding: 30px;
    }
}

@media (max-width: 575.98px) {
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .about-content-section h2 {
        font-size: 1.6rem;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
    }
    
    .btn-custom,
    .btn-outline-custom {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .btn-custom.me-3,
    .btn-outline-custom.me-3 {
        margin-right: 0 !important;
    }
}
* Departments Section */
.departments-section {
    padding: 80px 0;
    background-color: white;
}

.departments-section h2 {
    font-weight: 800;
    margin-bottom: 20px;
}

.departments-section .lead {
    color: var(--secondary-color);
    max-width: 700px;
    margin: 0 auto 40px;
}

.department-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 100%;
    margin-bottom: 30px;
}

.department-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.department-img {
    overflow: hidden;
    height: 250px;
}

.department-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.department-card:hover .department-img img {
    transform: scale(1.1);
}

.department-content {
    padding: 25px 20px 0;
}

.department-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.department-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.department-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.department-features i {
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 3px;
}
/* Doctors Section */
.doctors-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.doctor-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 100%;
    margin-bottom: 30px;
}

.doctor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.doctor-img {
    /* height: 300px; */
    overflow: hidden;
}

.doctor-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.doctor-card:hover .doctor-img img {
    transform: scale(1.1);
}

.doctor-info {
    padding: 25px;
    text-align: center;
}

.doctor-info h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 700;
}

.speciality {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 15px;
    display: block;
}

.doctor-bio {
    margin-bottom: 20px;
    font-size: 14px;
}

.doctor-social a {
    color: var(--secondary-color);
    margin: 0 10px;
    font-size: 18px;
}

.doctor-social a:hover {
    color: var(--primary-color);
}
/* Services Page Specific Styles */
.service-banner-section {
    padding: 80px 0;
    position: relative;
}

.service-banner-section.bg-dark {
    background-color: var(--dark-color);
}

.service-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/s7.webp') center/cover no-repeat;
    border-radius: 10px;
    padding: 60px;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: center;
}

.service-banner.bg-dark {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?w=1200&fit=crop') center/cover no-repeat;
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.banner-content h2 {
    font-weight: 800;
    margin-bottom: 20px;
}

.banner-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.services-grid-section {
    background-color: #f8f9fa;
}

.service-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--primary-color);
    font-size: 32px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background-color: var(--primary-color);
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-card p {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.service-features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 25px;
}

.service-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.service-features i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 14px;
}

.features-section {
    background-color: white;
}

.feature-box {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
    text-align: center;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--primary-color);
    font-size: 28px;
    transition: var(--transition);
}

.feature-box:hover .feature-icon {
    background-color: var(--primary-color);
    color: white;
}

.feature-box h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.feature-box p {
    color: var(--secondary-color);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .service-banner {
        padding: 40px;
        min-height: 250px;
    }
    
    .banner-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 767.98px) {
    .service-banner {
        padding: 30px;
        text-align: center;
    }
    
    .banner-content {
        max-width: 100%;
    }
    
    .banner-content .btn {
        display: block;
        margin: 0 auto 10px;
        width: fit-content;
    }
}

@media (max-width: 575.98px) {
    .service-banner {
        padding: 20px;
        min-height: 200px;
    }
    
    .banner-content h2 {
        font-size: 1.5rem;
    }
    
    .banner-content p {
        font-size: 1rem;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}
/* Infrastructure Page Specific Styles */
.facilities-overview {
    background-color: white;
}

.facility-image img {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.facility-features .feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.feature-icon {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.gallery-section {
    background-color: #f8f9fa;
}

.gallery-nav {
    border-bottom: 1px solid #dee2e6;
}

.gallery-nav .nav-link {
    border: none;
    color: var(--secondary-color);
    font-weight: 600;
    padding: 10px 20px;
    position: relative;
    margin-bottom: -1px;
}

.gallery-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.gallery-nav .nav-link:hover,
.gallery-nav .nav-link.active {
    color: var(--primary-color);
    background: transparent;
}

.gallery-nav .nav-link.active::after,
.gallery-nav .nav-link:hover::after {
    width: 100%;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.gallery-expand {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: var(--transition);
}

.gallery-item:hover .gallery-expand {
    opacity: 1;
    transform: scale(1);
}

.gallery-expand:hover {
    background-color: var(--accent-color);
}

.key-facilities {
    background-color: white;
}

.facility-card {
    background: white;
    border-radius: 10px;
    /* padding: 30px; */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
    text-align: center;
}

.facility-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.facility-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--primary-color);
    font-size: 28px;
    transition: var(--transition);
}

.facility-card:hover .facility-icon {
    background-color: var(--primary-color);
    color: white;
}

.facility-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.facility-card ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.facility-card ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.facility-card ul li::before {
    /* content: ''; */
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .facility-image {
        margin-bottom: 30px;
    }
    
    .facility-features .feature-item {
        margin-bottom: 15px;
    }
    
    .gallery-item img {
        height: 200px;
    }
}

@media (max-width: 767.98px) {
    .gallery-nav {
        flex-wrap: wrap;
    }
    
    .gallery-nav .nav-link {
        padding: 8px 15px;
        font-size: 14px;
    }
    
    .facility-card {
        padding: 20px;
    }
    
    .facility-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 15px;
    }
}

@media (max-width: 575.98px) {
    .gallery-item img {
        height: 150px;
    }
    
    .gallery-overlay {
        padding: 10px;
    }
    
    .gallery-overlay h5 {
        font-size: 0.9rem;
    }
    
    .gallery-expand {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
}
/* Enhanced styles for the facilities section */
.facilities-overview h2 {
    position: relative;
    padding-bottom: 15px;
    font-size: 2.2rem;
}

.facilities-overview h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.facility-features .feature-item {
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.facility-features .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    background: rgba(13, 110, 253, 0.03);
}

.facility-image {
    position: relative;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transform-style: preserve-3d;
}

.facility-image::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: -10px;
    bottom: -10px;
    background: var(--primary-color);
    opacity: 0.1;
    border-radius: 8px;
    z-index: -1;
    transform: translateZ(-20px);
}

/* Counter animation */
.counter {
    font-weight: 700;
    color: var(--primary-color);
    display: inline-block;
}

@media (min-width: 992px) {
    .facilities-overview h2 {
        font-size: 2.5rem;
    }
    
    .facility-image {
        /* margin-right: 30px; */
    }
}
/* Facility Features Layout */
.facility-features .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 65px;
    height: 100%;
}

.feature-icon {
    font-size: 2.5rem; /* Larger icon size */
    color: var(--primary-color);
    margin-bottom: 15px; /* Space between icon and heading */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background-color: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.facility-features .feature-item h5 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    transition: color 0.3s ease;
}

/* Hover Effects */
.facility-features .feature-item:hover .feature-icon {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-5px);
}

.facility-features .feature-item:hover h5 {
    color: var(--primary-color);
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .facility-features .feature-item h5 {
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
}
/* Contact Page Specific Styles */
.contact-section {
    background-color: #f8f9fa;
}

.contact-info-card,
.contact-form-card {
    background: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.contact-method {
    display: flex;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-details h5 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-details p,
.contact-details a {
    color: var(--secondary-color);
    margin-bottom: 0;
    text-decoration: none;
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--primary-color);
}

.social-links .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(13, 110, 253, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition);
}

.social-links .social-icon:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Form Styles */
.form-label {
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.form-control,
.form-select {
    padding: 12px 15px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

textarea.form-control {
    min-height: 150px;
}

.form-check-label {
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Map Section */
.map-section {
    margin-top: 80px;
}

.map-container {
    width: 100%;
    height: 450px;
}

/* Emergency CTA */
.emergency-cta {
    padding: 30px 0;
}

.emergency-cta h3 {
    font-weight: 700;
}

.emergency-cta .btn-light {
    font-weight: 600;
    border-radius: 50px;
    padding: 10px 25px;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .contact-info-card,
    .contact-form-card {
        padding: 30px;
    }
    
    .contact-method {
        margin-bottom: 20px;
    }
}

@media (max-width: 767.98px) {
    .contact-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    
    .contact-info-card {
        margin-bottom: 30px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
        margin-right: 15px;
    }
    
    .map-container {
        height: 350px;
    }
    
    .emergency-cta .btn {
        margin-top: 15px;
    }
}

@media (max-width: 575.98px) {
    .contact-info-card,
    .contact-form-card {
        padding: 20px;
    }
    
    .map-container {
        height: 300px;
    }
    
    .emergency-cta h3 {
        font-size: 1.25rem;
    }
    
    .emergency-cta .btn {
        font-size: 0.9rem;
    }
}
/* Appointment Page Specific Styles */
.appointment-hero {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.1) 0%, rgba(255, 255, 255, 1) 100%);
}

.appointment-hero h1 {
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.appointment-hero .lead {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.hero-features {
    margin-top: 30px;
}

.hero-features .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.hero-features .feature-item i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

.hero-features .feature-item span {
    font-weight: 500;
}

.appointment-illustration {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.appointment-illustration img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.appointment-illustration:hover img {
    transform: scale(1.03);
}

/* Appointment Process */
.process-step {
    background: white;
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.process-step:hover .step-number {
    transform: scale(1.1);
}

.process-step h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.process-step p {
    color: var(--secondary-color);
}

/* Appointment Form */
.appointment-form-container {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-header {
    background: var(--primary-color);
    color: white;
    padding: 30px;
    text-align: center;
}

.form-header h2 {
    font-weight: 700;
    margin-bottom: 10px;
}

.form-header p {
    margin-bottom: 0;
    opacity: 0.9;
}

#appointmentForm {
    padding: 40px;
}

/* Why Choose Us */
.feature-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 28px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background-color: var(--primary-color);
    color: white;
}

.feature-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.feature-card p {
    color: var(--secondary-color);
}

/* Emergency CTA */
.emergency-cta {
    padding: 30px 0;
}

.emergency-cta h3 {
    font-weight: 700;
}

.emergency-cta .btn-light {
    font-weight: 600;
    border-radius: 50px;
    padding: 10px 25px;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .appointment-hero {
        padding: 80px 0;
    }
    
    .appointment-form-container {
        margin-top: 30px;
    }
    
    .form-header {
        padding: 20px;
    }
    
    #appointmentForm {
        padding: 30px;
    }
}

@media (max-width: 767.98px) {
    .appointment-hero {
        padding: 60px 0;
        text-align: center;
    }
    
    .appointment-hero .lead {
        font-size: 1.1rem;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .appointment-illustration {
        margin-top: 30px;
    }
    
    .process-step {
        margin-bottom: 20px;
    }
    
    .emergency-cta .btn {
        margin-top: 15px;
    }
}

@media (max-width: 575.98px) {
    .appointment-hero h1 {
        font-size: 2rem;
    }
    
    .form-header h2 {
        font-size: 1.5rem;
    }
    
    #appointmentForm {
        padding: 20px;
    }
    
    .emergency-cta h3 {
        font-size: 1.25rem;
    }
    
    .emergency-cta .btn {
        font-size: 0.9rem;
    }
}
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #059669;
    color: white;
    padding: 10px 12px;
    border-radius: 50%;
    font-size: 18px;
    display: none;
    z-index: 999;
    transition: all 0.3s ease;
}
.scroll-to-top:hover {
    background-color: #059669;
}

   .gallery-item {
            position: relative;
            display: inline-block;
            width: 300px;
        }

        .gallery-item img {
            width: 100%;
            display: block;
            border-radius: 6px;
        }

        .gallery-overlay {
            position: absolute;
            bottom: 10px;
            left: 10px;
            background: rgba(0, 0, 0, 0.6);
            color: white;
            padding: 6px 10px;
            border-radius: 4px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .gallery-overlay a {
            color: white;
            text-decoration: none;
            font-size: 18px;
        }

        .gallery-overlay a:hover {
            color: #ffd700;
        }

        .logo{
            width: 450px;
            height: auto;
        }