/* CSS Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
        }

        /* Header Styles */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 2rem;
        }

        .logo {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .logo-main {
            font-size: 1.8rem;
            font-weight: bold;
            color: #2c5aa0;
            line-height: 1;
        }

        .logo-tagline {
            font-size: 0.8rem;
            color: #666;
            font-style: italic;
            margin-top: 2px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-menu a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-menu a:hover {
            color: #2c5aa0;
        }

        .mobile-menu {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Enhanced Slider Styles */
        .home-section {
            margin-top: 70px;
            position: relative;
        }

        .slider {
            height: 80vh;
            overflow: hidden;
            position: relative;
        }

        .slide {
            height: 80vh;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            background-repeat: no-repeat;
        }

        .slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.4);
        }

        .slide-content {
            text-align: center;
            color: white;
            z-index: 1;
            max-width: 800px;
            padding: 3rem 2rem 0; /* Added top padding */
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .slide-content h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            animation: fadeInUp 1s ease;
            text-align: center;
            line-height: 1.2;
        }

        .slide-content p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            animation: fadeInUp 1s ease 0.3s both;
            text-align: center;
            line-height: 1.6;
            max-width: 600px;
        }

        .cta-btn {
            display: inline-block;
            padding: 1rem 2rem;
            background: #2c5aa0;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            transition: all 0.3s ease;
            animation: fadeInUp 1s ease 0.6s both;
            text-align: center;
            font-weight: 600;
            font-size: 1rem;
        }

        .cta-btn:hover {
            background: #1e3f73;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        /* Custom Slider Navigation Arrows */
        .slick-prev,
        .slick-next {
            font-size: 0;
            line-height: 0;
            position: absolute;
            top: 50%;
            display: block;
            width: 50px;
            height: 50px;
            padding: 0;
            transform: translate(0, -50%);
            cursor: pointer;
            color: transparent;
            border: none;
            outline: none;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 50%;
            z-index: 100;
            transition: all 0.3s ease;
        }

        .slick-prev:hover,
        .slick-next:hover {
            background: rgba(255, 255, 255, 1);
            transform: translate(0, -50%) scale(1.1);
        }

        .slick-prev:before,
        .slick-next:before {
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            font-size: 20px;
            line-height: 1;
            opacity: 1;
            color: #2c5aa0;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .slick-prev {
            left: 30px;
        }

        .slick-prev:before {
            content: "\f104"; /* FontAwesome chevron-left */
        }

        .slick-next {
            right: 30px;
        }

        .slick-next:before {
            content: "\f105"; /* FontAwesome chevron-right */
        }

        /* Custom Slider Dots */
        .slick-dots {
            position: absolute;
            bottom: 30px;
            display: block;
            width: 100%;
            padding: 0;
            margin: 0;
            list-style: none;
            text-align: center;
            z-index: 100;
        }

        .slick-dots li {
            position: relative;
            display: inline-block;
            width: 15px;
            height: 15px;
            margin: 0 5px;
            padding: 0;
            cursor: pointer;
        }

        .slick-dots li button {
            font-size: 0;
            line-height: 0;
            display: block;
            width: 15px;
            height: 15px;
            padding: 0;
            cursor: pointer;
            color: transparent;
            border: 0;
            outline: none;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .slick-dots li.slick-active button,
        .slick-dots li button:hover {
            background: #2c5aa0;
            transform: scale(1.2);
        }

        /* Section Styles */
        .section {
            padding: 5rem 0;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #2c5aa0;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 3rem;
            font-style: italic;
        }

        /* About Section Specific Styles */
        .about-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 3rem;
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
        }

        .mission-vision-box {
            background: linear-gradient(135deg, #2c5aa0, #4a90e2);
            color: white;
            padding: 3rem;
            border-radius: 15px;
            margin: 3rem 0;
            text-align: center;
        }

        .mission-vision-box h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .mission-vision-box p {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 2rem;
        }

        .about-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .about-card {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .about-card:hover {
            transform: translateY(-5px);
        }

        .about-card h3 {
            color: #2c5aa0;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .about-card h3 i {
            font-size: 1.2rem;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .value-item {
            background: white;
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 4px solid #2c5aa0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .value-item:hover {
            transform: translateX(5px);
        }

        .value-item h4 {
            color: #2c5aa0;
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .value-item p {
            color: #666;
            font-size: 0.95rem;
        }

        /* Hospital Overview Box */
        .overview-box {
            background: #f8f9fa;
            padding: 2.5rem;
            border-radius: 15px;
            margin: 3rem 0;
            border: 2px solid #e9ecef;
        }

        .overview-box h3 {
            color: #2c5aa0;
            margin-bottom: 1rem;
            font-size: 1.4rem;
        }

        .overview-box p {
            font-size: 1.05rem;
            line-height: 1.7;
            color: #555;
        }

        /* Departments Section */
        .departments-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .department-card {
            text-align: center;
            padding: 2rem;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .department-card:hover {
            transform: translateY(-5px);
        }

        .department-card i {
            font-size: 3rem;
            color: #2c5aa0;
            margin-bottom: 1rem;
        }

        /* Doctors Section */
        .doctors-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .doctor-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .doctor-card:hover {
            transform: translateY(-5px);
        }

        .doctor-img {
            height: 250px;
            background: linear-gradient(135deg, #2c5aa0, #4a90e2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: white;
        }

        .doctor-info {
            padding: 1.5rem;
        }

        .doctor-info h3 {
            color: #2c5aa0;
            margin-bottom: 0.5rem;
        }

        .book-btn {
            background: #28a745;
            color: white;
            padding: 0.5rem 1rem;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .book-btn:hover {
            background: #1e7e34;
        }

        /* Contact Section */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: start;
        }

        .contact-info {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 10px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }

        .contact-item i {
            font-size: 1.2rem;
            color: #2c5aa0;
            margin-right: 1rem;
            width: 20px;
        }

        .appointment-form {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .form-group {
            margin-bottom: 1rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: bold;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }

        .submit-btn {
            background: #2c5aa0;
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.3s ease;
        }

        .submit-btn:hover {
            background: #1e3f73;
        }

        /* Footer */
        .footer {
            background: #333;
            color: white;
            padding: 3rem 0 1rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            margin-bottom: 1rem;
            color: #4a90e2;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.5rem;
        }

        .footer-section ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section ul li a:hover {
            color: white;
        }

        .footer-bottom {
            border-top: 1px solid #555;
            padding-top: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* Fixed Contact Icons */
        .fixed-contact {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
        }

        .contact-icon {
            display: block;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            text-decoration: none;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .contact-icon:hover {
            transform: scale(1.1);
        }

        .phone-icon {
            background: #007bff;
        }

        .whatsapp-icon {
            background: #25d366;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Enhanced Mobile Responsiveness */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: white;
                flex-direction: column;
                padding: 1rem;
                box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            }

            .nav-menu.active {
                display: flex;
            }

            .mobile-menu {
                display: block;
            }

            .slide-content h1 {
                font-size: 2.5rem;
                line-height: 1.1;
            }
            
            .slide-content p {
                font-size: 1.1rem;
                margin-bottom: 1.5rem;
            }
            
            .slide-content {
                padding: 2rem 1.5rem 0; /* Adjusted mobile top padding */
                max-width: 90%;
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }

            .values-grid {
                grid-template-columns: 1fr;
            }

            /* Mobile navigation arrows */
            .slick-prev,
            .slick-next {
                width: 40px;
                height: 40px;
            }

            .slick-prev {
                left: 15px;
            }

            .slick-next {
                right: 15px;
            }
        }

        @media (max-width: 480px) {
            .slide-content h1 {
                font-size: 2rem;
                margin-bottom: 0.8rem;
            }
            
            .slide-content p {
                font-size: 1rem;
                margin-bottom: 1.2rem;
            }
            
            .cta-btn {
                padding: 0.8rem 1.5rem;
                font-size: 0.95rem;
            }
            
            .slide-content {
                padding: 1.5rem 1rem 0; /* Further adjusted for small screens */
            }

            .section-title {
                font-size: 2rem;
            }

            .logo-main {
                font-size: 1.5rem;
            }

            .logo-tagline {
                font-size: 0.7rem;
            }
        }

        /* Updated Logo Styles with Image */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-image {
    height: 55px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-main {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c5aa0;
    line-height: 1;
}

.logo-tagline {
    font-size: 0.8rem;
    color: #666;
    font-style: italic;
    margin-top: 2px;
}

/* Mobile Responsive Logo */
@media (max-width: 768px) {
    .logo-image {
        height: 40px;
    }
    
    .logo-main {
        font-size: 1.5rem;
    }
    
    .logo-tagline {
        font-size: 0.7rem;
    }
    
    .logo {
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 35px;
    }
    
    .logo-main {
        font-size: 1.3rem;
    }
    
    .logo-tagline {
        font-size: 0.65rem;
    }
}