/* HERO-MODERN.CSS - CLEAN VERSION */
/* FIXED: No duplicate sections, better visibility */

/* ======================== */
/* HERO SECTION - CLEAN */
/* ======================== */

#hero {
    position: relative;
    height: 85vh; /* Fixed height instead of min-height */
    max-height: 800px;
    overflow: hidden;
    background: #000;
}

/* Hero Background Container */
#hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Hero Slider Container */
#hero .hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Individual Slides */
#hero .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 2;
}

#hero .hero-slide.active {
    opacity: 1;
    z-index: 3;
}

/* Overlay - MUCH LIGHTER for image visibility */
#hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 68, 204, 0.3); /* Light blue, mostly transparent */
    z-index: 4;
}

/* Hero Content */
#hero .hero-content {
    position: relative;
    z-index: 10;
    color: white;
    padding: 60px 0;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Hero Title */
#hero .hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

#hero .hero-title .highlight {
    color: #ffd166;
    position: relative;
}

/* Hero Subtitle */
#hero .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* Hero Stats */
#hero .hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

#hero .stat-item {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

#hero .stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd166;
    margin-bottom: 5px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

#hero .stat-item p {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero CTA Buttons */
#hero .hero-cta-buttons {
    margin-top: 40px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

#hero .hero-cta-buttons .btn {
    padding: 12px 25px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

#hero .hero-cta-buttons .btn-primary {
    background: #0044cc;
    border: 2px solid #0044cc;
    box-shadow: 0 4px 15px rgba(0, 68, 204, 0.4);
}

#hero .hero-cta-buttons .btn-primary:hover {
    background: #003399;
    border-color: #003399;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 68, 204, 0.6);
}

#hero .hero-cta-buttons .btn-outline-light {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid white;
    color: white;
}

#hero .hero-cta-buttons .btn-outline-light:hover {
    background: white;
    color: #0044cc;
    transform: translateY(-3px);
}

/* Quick Links Card */
.quick-links-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 25px;
}

.quick-links-card h4 {
    color: #0044cc;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.quick-links-card .btn {
    padding: 12px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 10px;
    text-align: center;
}

.quick-links-card .btn:last-child {
    margin-bottom: 0;
}

.quick-links-card .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
}

.scroll-down {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    animation: bounce 2s infinite;
    transition: all 0.3s ease;
}

.scroll-down:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* ======================== */
/* FEATURES SECTION */
/* ======================== */

.features-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
}

.features-section .section-title {
    color: #0044cc;
    font-weight: 700;
    margin-bottom: 15px;
}

.features-section .section-subtitle {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Feature Cards */
.features-section .feature-card {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
    border-top: 4px solid #0044cc;
}

.features-section .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.features-section .feature-card .feature-icon {
    margin-bottom: 20px;
}

.features-section .feature-card h4 {
    color: #0044cc;
    font-weight: 600;
    margin-bottom: 15px;
}

.features-section .feature-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Emergency Banner */
.emergency-banner {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    padding: 15px 0;
}

.emergency-banner h5 {
    font-weight: 600;
    margin: 0;
}

.emergency-banner .btn-light {
    background: rgba(255, 255, 255, 0.9);
    color: #dc3545;
    font-weight: 600;
    border: none;
    padding: 8px 20px;
    border-radius: 50px;
}

.emergency-banner .btn-light:hover {
    background: white;
    transform: scale(1.05);
}

/* ======================== */
/* RESPONSIVE DESIGN */
/* ======================== */

@media (max-width: 992px) {
    #hero .hero-title {
        font-size: 2.8rem;
    }
    
    #hero .hero-stats {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    #hero {
        height: auto;
        min-height: 70vh;
    }
    
    #hero .hero-title {
        font-size: 2.2rem;
    }
    
    #hero .hero-subtitle {
        font-size: 1rem;
    }
    
    #hero .hero-stats {
        gap: 15px;
    }
    
    #hero .stat-item h3 {
        font-size: 2rem;
    }
    
    #hero .stat-item {
        min-width: 100px;
    }
    
    #hero .hero-cta-buttons {
        flex-direction: column;
    }
    
    #hero .hero-cta-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .quick-links-card {
        margin-top: 30px;
    }
}

//* ======================== */
/* MODERN ANNOUNCEMENT BAR - UPDATED */
/* ======================== */

.modern-announcement {
    background: #0044cc !important; /* Blue to complement yellow */
    color: white;
    padding: 12px 0;
    position: relative;
    overflow: hidden;
    z-index: 100;
    border-bottom: 3px solid #003399;
    box-shadow: 0 3px 10px rgba(0, 68, 204, 0.2);
}

.announcement-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.announcement-badge {
    background: #ffd166 !important; /* Golden yellow badge */
    color: #0044cc !important; /* Blue text */
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    margin-right: 15px;
    animation: pulse 2s infinite;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.announcement-content {
    flex: 1;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.announcement-text {
    white-space: nowrap;
    padding-right: 50px;
    font-weight: 500;
    font-size: 1rem;
}

.announcement-link {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    margin-left: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.announcement-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.announcement-close {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.announcement-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

/* Alternative color schemes - uncomment one */

/* Purple theme */
/*
.modern-announcement {
    background: linear-gradient(135deg, #6f42c1 0%, #8a63d2 100%);
    border-bottom: 3px solid #59359a;
}
.announcement-badge {
    background: #ffd166;
    color: #6f42c1;
}
*/

/* Orange theme */
/*
.modern-announcement {
    background: linear-gradient(135deg, #fd7e14 0%, #ff9e42 100%);
    border-bottom: 3px solid #e96b00;
}
.announcement-badge {
    background: #fff;
    color: #fd7e14;
}
*/

/* Teal theme */
/*
.modern-announcement {
    background: linear-gradient(135deg, #20c997 0%, #3dd9a8 100%);
    border-bottom: 3px solid #1aaa7f;
}
.announcement-badge {
    background: #fff;
    color: #20c997;
}
*/
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

/* Moving text animation */
.announcement-text.moving {
    animation: scrollText 20s linear infinite;
}

@keyframes scrollText {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .modern-announcement {
        padding: 10px 0;
    }
    
    .announcement-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .announcement-badge {
        margin-right: 10px;
        font-size: 0.7rem;
    }
    
    .announcement-content {
        width: 100%;
    }
    
    .announcement-text {
        font-size: 0.9rem;
        padding-right: 20px;
    }
    
    .announcement-link {
        margin-left: 10px;
        font-size: 0.8rem;
        padding: 5px 12px;
    }
    
    .announcement-close {
        position: absolute;
        top: 10px;
        right: 10px;
    }
}



/* ======================== */
/* HEADER COLOR UPDATE - GOLDEN YELLOW */
/* ======================== */

/* Update header background to golden yellow */
header {
    background-color: #ffd166 !important; /* Golden yellow */
    color: #333; /* Dark text for contrast */
}

/* Update hospital name color */
.hospital-name {
    color: #333 !important; /* Dark color for readability */
}

/* Update contact info text color */
.contact-item {
    color: #333 !important;
}

.contact-item img {
    filter: brightness(0.3); /* Darken icons for contrast */
}

/* Update social icons for better visibility */
.social-icons img {
    filter: brightness(0.3);
    transition: filter 0.3s ease;
}

.social-icons img:hover {
    filter: brightness(0.1);
}

/* Update navigation menu to complement */
nav {
    background-color: #333 !important; /* Dark navigation to contrast */
}

nav ul li a {
    color: white !important; /* White text on dark nav */
}

nav ul li a:hover {
    background-color: #ffd166 !important; /* Golden yellow on hover */
    color: #333 !important;
}

/* Dropdown menu */
.dropdown-menu {
    background-color: #444 !important;
}

.dropdown-menu li a {
    background-color: #444 !important;
    color: white !important;
}

.dropdown-menu li a:hover {
    background-color: #ffd166 !important;
    color: #333 !important;
}

/* ======================== */
/* ANIMATED STATISTICS */
/* ======================== */

#hero .stat-item h3 {
    transition: all 0.3s ease;
    min-height: 60px; /* Prevent layout shift during animation */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Add animation for counting */
@keyframes countUp {
    0% {
        transform: translateY(10px);
        opacity: 0.5;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

#hero .stat-item h3.counting {
    animation: countUp 0.5s ease;
}

/* Pulse effect when complete */
@keyframes pulseComplete {
    0%, 100% {
        text-shadow: 0 0 0 rgba(255, 209, 102, 0);
    }
    50% {
        text-shadow: 0 0 10px rgba(255, 209, 102, 0.5);
    }
}

#hero .stat-item h3.complete {
    animation: pulseComplete 1s ease;
}

/* ======================== */
/* MODERN SERVICES SECTION */
/* ======================== */

.services {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #0044cc;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.services h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #0044cc;
    border-radius: 2px;
}

/* Modern Services Grid */
.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-modern-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    height: 100%;
}

.service-modern-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-modern-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-modern-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-modern-card:hover .service-modern-image img {
    transform: scale(1.1);
}

.service-modern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 68, 204, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-modern-card:hover .service-modern-overlay {
    opacity: 1;
}

.service-modern-overlay .btn {
    background: white;
    color: #0044cc;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-modern-overlay .btn:hover {
    background: #0044cc;
    color: white;
    transform: translateY(-3px);
}

.service-modern-content {
    padding: 25px;
}

.service-modern-content h3 {
    color: #0044cc;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-modern-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-modern-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #888;
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: 15px;
}

.service-modern-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Services Navigation */
.services-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.services-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 2px solid #0044cc;
    color: #0044cc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.services-nav-btn:hover {
    background: #0044cc;
    color: white;
    transform: scale(1.1);
}

.services-nav-dots {
    display: flex;
    gap: 10px;
    align-items: center;
}

.services-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.services-dot.active {
    background: #0044cc;
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-grid-modern {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .services {
        padding: 60px 0;
    }
    
    .services h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .services-grid-modern {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-modern-card {
        max-width: 400px;
        margin: 0 auto;
    }
}
/* ======================== */
/* MODERN NEWS & EVENTS SECTION */
/* ======================== */

#news-events {
    padding: 80px 0;
    background: white;
    position: relative;
}

#news-events h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #0044cc;
    margin-bottom: 15px;
    position: relative;
}

#news-events h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #0044cc;
    border-radius: 2px;
}

/* News Grid - Modern Layout */
.news-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.news-modern-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    border: 1px solid #f0f0f0;
}

.news-modern-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #0044cc;
}

/* News Image Container */
.news-modern-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.news-modern-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.news-modern-card:hover .news-modern-image img {
    transform: scale(1.1);
}

/* Date Badge */
.news-date-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #0044cc;
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    text-align: center;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 68, 204, 0.3);
}

.news-date-day {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    display: block;
}

.news-date-month {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Category Badge */
.news-category {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ffd166;
    color: #333;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

/* News Content */
.news-modern-content {
    padding: 25px;
}

.news-modern-content h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.news-modern-card:hover .news-modern-content h3 {
    color: #0044cc;
}

.news-modern-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* News Meta Info */
.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
    margin-top: 20px;
    font-size: 0.85rem;
    color: #888;
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0044cc;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.read-more-btn:hover {
    gap: 12px;
    border-bottom-color: #0044cc;
}

.read-more-btn i {
    transition: transform 0.3s ease;
}

.read-more-btn:hover i {
    transform: translateX(5px);
}

/* View All Button */
.news-view-all {
    text-align: center;
    margin-top: 50px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0044cc;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #0044cc;
}

.view-all-btn:hover {
    background: white;
    color: #0044cc;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 68, 204, 0.2);
}

/* Empty State */
.news-empty-state {
    text-align: center;
    padding: 60px 20px;
    grid-column: 1 / -1;
}

.news-empty-state i {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 20px;
}

.news-empty-state h4 {
    color: #666;
    margin-bottom: 10px;
}

.news-empty-state p {
    color: #888;
    max-width: 400px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 992px) {
    .news-grid-modern {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    #news-events {
        padding: 60px 0;
    }
    
    #news-events h2 {
        font-size: 2rem;
    }
    
    .news-grid-modern {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .news-modern-image {
        height: 200px;
    }
    
    .news-modern-content {
        padding: 20px;
    }
    
    .view-all-btn {
        padding: 10px 25px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .news-grid-modern {
        gap: 15px;
    }
    
    .news-modern-image {
        height: 180px;
    }
    
    .news-modern-content h3 {
        font-size: 1.2rem;
    }
}

/* Add to hero-modern.css - News card entrance animation */
@keyframes fadeInUpNews {
    from {
        opacity: 0;
        transform: translateY(30px);

/* ======================== */
/* MODERN GALLERY SECTION */
/* ======================== */

.gallery {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #0044cc;
    margin-bottom: 50px;
    position: relative;
}

.gallery h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #0044cc;
    border-radius: 2px;
}

/* Modern Gallery Grid */
.gallery-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-modern-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    aspect-ratio: 4/3;
    background: #000;
}

.gallery-modern-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.gallery-modern-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

.gallery-modern-item:hover img {
    transform: scale(1.1);
    opacity: 0.8;
}

/* Gallery Overlay */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 68, 204, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-modern-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-modern-item:hover .gallery-caption {
    transform: translateY(0);
}

/* Gallery Filters */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    border: 2px solid #ddd;
    color: #666;
    padding: 8px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #0044cc;
    color: white;
    border-color: #0044cc;
    transform: translateY(-2px);
}

/* Gallery Load More */
.gallery-load-more {
    text-align: center;
    margin-top: 50px;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0044cc;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background: #003399;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 68, 204, 0.3);
}

/* Modern Lightbox */
.modern-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-lightbox.active {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    color: white;
    text-align: center;
    margin-top: 20px;
    font-size: 1.2rem;
    padding: 0 20px;
}

/* Lightbox Controls */
.lightbox-controls {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 15px;
    z-index: 2;
}

.lightbox-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.lightbox-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lightbox-close {
    background: rgba(220, 53, 69, 0.8);
}

.lightbox-close:hover {
    background: rgba(220, 53, 69, 1);
}

/* Navigation Arrows */
.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
    z-index: 2;
}

.nav-arrow {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.nav-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Image Counter */
.image-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .gallery-grid-modern {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .gallery {
        padding: 60px 0;
    }
    
    .gallery h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .gallery-grid-modern {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .gallery-filters {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 6px 15px;
        font-size: 0.9rem;
    }
    
    .lightbox-img {
        max-height: 60vh;
    }
    
    .nav-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-modern-item {
        aspect-ratio: 1/1;
    }
    
    .lightbox-content {
        max-width: 95%;
    }
    
    .lightbox-controls {
        top: 10px;
        right: 10px;
    }
    
    .lightbox-btn {
        width: 35px;
        height: 35px;
    }
}
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.news-modern-card {
    animation: fadeInUpNews 0.6s ease forwards;
    opacity: 0;
}

/* Stagger the animations */
.news-modern-card:nth-child(1) { animation-delay: 0.1s; }
.news-modern-card:nth-child(2) { animation-delay: 0.2s; }
.news-modern-card:nth-child(3) { animation-delay: 0.3s; }
.news-modern-card:nth-child(4) { animation-delay: 0.4s; }
.news-modern-card:nth-child(5) { animation-delay: 0.5s; }

/* ======================== */
/* MODERN GALLERY SECTION */
/* ======================== */

.gallery {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #0044cc;
    margin-bottom: 50px;
    position: relative;
}

.gallery h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #0044cc;
    border-radius: 2px;
}

/* Modern Gallery Grid */
.gallery-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-modern-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    aspect-ratio: 4/3;
    background: #000;
}

.gallery-modern-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.gallery-modern-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

.gallery-modern-item:hover img {
    transform: scale(1.1);
    opacity: 0.8;
}

/* Gallery Overlay */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 68, 204, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-modern-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-modern-item:hover .gallery-caption {
    transform: translateY(0);
}

/* Gallery Filters */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    border: 2px solid #ddd;
    color: #666;
    padding: 8px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #0044cc;
    color: white;
    border-color: #0044cc;
    transform: translateY(-2px);
}

/* Gallery Load More */
.gallery-load-more {
    text-align: center;
    margin-top: 50px;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0044cc;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background: #003399;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 68, 204, 0.3);
}

/* Modern Lightbox */
.modern-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-lightbox.active {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    color: white;
    text-align: center;
    margin-top: 20px;
    font-size: 1.2rem;
    padding: 0 20px;
}

/* Lightbox Controls */
.lightbox-controls {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 15px;
    z-index: 2;
}

.lightbox-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.lightbox-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lightbox-close {
    background: rgba(220, 53, 69, 0.8);
}

.lightbox-close:hover {
    background: rgba(220, 53, 69, 1);
}

/* Navigation Arrows */
.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
    z-index: 2;
}

.nav-arrow {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.nav-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Image Counter */
.image-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .gallery-grid-modern {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .gallery {
        padding: 60px 0;
    }
    
    .gallery h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .gallery-grid-modern {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .gallery-filters {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 6px 15px;
        font-size: 0.9rem;
    }
    
    .lightbox-img {
        max-height: 60vh;
    }
    
    .nav-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-modern-item {
        aspect-ratio: 1/1;
    }
    
    .lightbox-content {
        max-width: 95%;
    }
    
    .lightbox-controls {
        top: 10px;
        right: 10px;
    }
    
    .lightbox-btn {
        width: 35px;
        height: 35px;
    }
}

/* ======================== */
/* ENHANCED ABOUT US SECTION */
/* ======================== */

.about-us {
    padding: 80px 0;
    background: white;
}

.about-us h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #0044cc;
    margin-bottom: 50px;
    position: relative;
}

.about-us h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #0044cc;
    border-radius: 2px;
}

/* About Timeline */
.about-timeline {
    max-width: 800px;
    margin: 50px auto;
    position: relative;
}

.about-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #0044cc;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    flex: 0 0 120px;
    text-align: center;
    background: #0044cc;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
}

.timeline-content {
    flex: 1;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin: 0 30px;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 20px;
    width: 20px;
    height: 20px;
    background: white;
    transform: rotate(45deg);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -10px;
    border-right: 1px solid #eee;
    border-top: 1px solid #eee;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -10px;
    border-left: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.timeline-content h4 {
    color: #0044cc;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 20px;
    width: 20px;
    height: 20px;
    background: white;
    border: 4px solid #0044cc;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

/* About Stats */
.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.about-stat-item {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.about-stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-stat-item i {
    font-size: 2.5rem;
    color: #0044cc;
    margin-bottom: 15px;
}

.about-stat-item h3 {
    font-size: 2.2rem;
    color: #0044cc;
    margin-bottom: 10px;
}

.about-stat-item p {
    color: #666;
    font-weight: 500;
}

/* ======================== */
/* ENHANCED MEDICAL DIRECTOR SECTION */
/* ======================== */

.medical-director {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.medical-director h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #0044cc;
    margin-bottom: 50px;
    position: relative;
}

.medical-director h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #0044cc;
    border-radius: 2px;
}

/* Enhanced Director Profile */
.director-profile-enhanced {
    display: flex;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.director-image-enhanced {
    flex: 0 0 300px;
    position: relative;
}

.director-image-enhanced img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    border: 5px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.director-badge {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #0044cc;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(0, 68, 204, 0.3);
}

.director-info-enhanced {
    flex: 1;
}

.director-info-enhanced h3 {
    font-size: 2rem;
    color: #0044cc;
    margin-bottom: 10px;
}

.director-designation {
    font-size: 1.2rem;
    color: #666;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #eee;
}

.director-bio {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Director Stats */
.director-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.director-stat-item {
    text-align: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.director-stat-item h4 {
    font-size: 1.8rem;
    color: #0044cc;
    margin-bottom: 5px;
}

.director-stat-item p {
    color: #666;
    font-size: 0.9rem;
}

/* ======================== */
/* ENHANCED PRINCIPAL OFFICERS */
/* ======================== */

.principal-officers {
    padding: 80px 0;
    background: white;
}

.principal-officers h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #0044cc;
    margin-bottom: 50px;
    position: relative;
}

.principal-officers h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #0044cc;
    border-radius: 2px;
}

/* Enhanced Officers Grid */
.officers-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.officer-card-enhanced {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

.officer-card-enhanced:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.officer-image-enhanced {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.officer-image-enhanced img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.officer-card-enhanced:hover .officer-image-enhanced img {
    transform: scale(1.1);
}

.officer-rank-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #0044cc;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.officer-info-enhanced {
    padding: 25px;
}

.officer-info-enhanced h3 {
    font-size: 1.4rem;
    color: #0044cc;
    margin-bottom: 10px;
}

.officer-designation {
    color: #666;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.officer-qualifications {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

/* Officer Social Links */
.officer-social {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.officer-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #f8f9fa;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.officer-social a:hover {
    background: #0044cc;
    color: white;
    transform: translateY(-3px);
}

/* Officer Modal */
.officer-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9998;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.officer-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.officer-modal {
    background: white;
    border-radius: 20px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 40px;
}

/* ======================== */
/* ENHANCED CONTACT SECTION */
/* ======================== */

.location {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.location h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #0044cc;
    margin-bottom: 50px;
    position: relative;
}

.location h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #0044cc;
    border-radius: 2px;
}

/* Contact Container */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Form */
.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-form-container h3 {
    color: #0044cc;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #0044cc;
    box-shadow: 0 0 0 3px rgba(0, 68, 204, 0.1);
    outline: none;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background: #0044cc;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #003399;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 68, 204, 0.2);
}

/* Contact Info */
.contact-info-container {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-info-container h3 {
    color: #0044cc;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: #0044cc;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info-content h4 {
    color: #333;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-info-content p {
    color: #666;
    line-height: 1.6;
}

/* Social Links */
.contact-social {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.contact-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #f8f9fa;
    color: #0044cc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-social a:hover {
    background: #0044cc;
    color: white;
    transform: translateY(-5px);
}

/* Enhanced Map */
.map-container-enhanced {
    grid-column: 1 / -1;
    margin-top: 50px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.map-container-enhanced iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Map Controls */
.map-controls {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.map-btn {
    background: white;
    border: 2px solid #0044cc;
    color: #0044cc;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.map-btn:hover {
    background: #0044cc;
    color: white;
    transform: translateY(-3px);
}

/* ======================== */
/* RESPONSIVE DESIGN */
/* ======================== */

@media (max-width: 992px) {
    /* About Timeline */
    .about-timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
    }
    
    .timeline-year {
        flex: 0 0 100px;
        margin-right: 20px;
    }
    
    .timeline-content {
        margin: 0 0 0 20px;
    }
    
    .timeline-content::before {
        left: -10px !important;
        right: auto !important;
        border-left: 1px solid #eee;
        border-bottom: 1px solid #eee;
        border-right: none;
        border-top: none;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    /* Director Profile */
    .director-profile-enhanced {
        flex-direction: column;
        text-align: center;
    }
    
    .director-image-enhanced {
        flex: 0 0 auto;
    }
    
    /* Contact Section */
    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Section Headers */
    .about-us h2,
    .medical-director h2,
    .principal-officers h2,
    .location h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    /* About Stats */
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* Officers Grid */
    .officers-grid-enhanced {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    /* Contact Form */
    .contact-form-container,
    .contact-info-container {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    /* About Stats */
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    /* Director Stats */
    .director-stats {
        grid-template-columns: 1fr;
    }
    
    /* Officers Grid */
    .officers-grid-enhanced {
        grid-template-columns: 1fr;
        max-width: 350px;
    }
    
    /* Timeline */
    .timeline-year {
        flex: 0 0 80px;
        padding: 8px 15px;
        font-size: 1rem;
    }
    
    .timeline-content {
        padding: 20px;
    }
}

