/* Header Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-top: 100px;
}

.hospital-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}



/* Main Navigation */
.main-navigation {
    background-color: white;
    padding: 15px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.main-navigation .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Hospital Brand */
.hospital-brand {
    display: flex;
    align-items: center;
    gap: 20px;
    min-width: 320px;
}

.logo-placeholder {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.hospital-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.main-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a3a6b;
    line-height: 1.2;
    margin: 0;
    letter-spacing: 0.5px;
}

.sub-title {
    font-size: 16px;
    font-weight: 600;
    color: #861212;
    margin: 0;
    letter-spacing: 0.3px;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-items {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #666;
    border-radius: 4px;
}

.nav-link.active {
    color: #d10000;
    font-weight: 700;
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 8px;
    border-radius: 4px;
    transition: background 0.3s;
}

.nav-toggle:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: 0.3s;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Navigation Backdrop */
.nav-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

/* Responsive Design */
@media (max-width: 1100px) {
    .nav-items {
        gap: 25px;
    }

    .nav-link {
        font-size: 15px;
    }

    .main-title {
        font-size: 22px;
    }

    .sub-title {
        font-size: 15px;
    }
}

@media (max-width: 900px) {
    .nav-items {
        gap: 20px;
    }

    .main-title {
        font-size: 20px;
    }

    .sub-title {
        font-size: 14px;
    }

}

@media (max-width: 768px) {
    .nav-menu {
        position: relative;
        justify-content: flex-end;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-items {
        display: none;
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        width: 80vw;
        background-color: white;
        flex-direction: column;
        gap: 10px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        z-index: 1000;
        border-radius: 8px;
        padding: 10px 0;
    }

    .nav-items.show {
        display: flex;
    }

    .nav-link {
        padding: 30px 35px;
        border-bottom: 1px solid #eee;
        font-size: 22px;
        transition: background-color 0.3s;
    }

    .nav-link:hover {
        color: #d10000;
    }

    .nav-link:last-child {
        border-bottom: none;
    }



    .hospital-brand {
        min-width: auto;
        gap: 15px;
    }


}

@media (max-width: 480px) {
    .hospital-brand {
        gap: 10px;
    }

    .main-title {
        font-size: 18px;
    }

    .sub-title {
        font-size: 13px;
    }

    .container {
        padding: 0 15px;
    }
}


/* Hero Section */
.hero-section {
    background-color: #f8faff;
    padding: 80px 0;
    position: relative;
}

.hero-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.hero-subtitle {
    color: #d10000;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.hero-main-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a3a6b;
    line-height: 1.2;
    margin-bottom: 25px;
}

.highlight-24 {
    color: #d10000;
    display: inline-block;
    margin-right: 10px;
    font-size: 50px;
    font-weight: 800;
}

.hero-description {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
}

/* Action Buttons */
.hero-actions {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 35px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    min-width: 220px;
    text-align: center;
    border: none;
    cursor: pointer;
}

.action-btn i {
    font-size: 20px;
}

.emergency-btn {
    background-color: #d10000;
    color: white;
}

.emergency-btn:hover {
    background-color: #b30000;
    transform: translateY(-2px);
}

.appointment-btn {
    background-color: #1a3a6b;
    color: white;
}

.appointment-btn:hover {
    background-color: #15305a;
    transform: translateY(-2px);
}

/* Hero Image - Simple Placeholder */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    background-image: url('images/background .jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.image-placeholder {
    width: 100%;
    max-width: 500px;
    height: 400px;
    background-image: url('images/background .jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        gap: 40px;
    }
    
    .hero-main-title {
        font-size: 42px;
    }
    
    .highlight-24 {
        font-size: 44px;
    }
    
    .hero-description {
        font-size: 17px;
    }
    
    .image-placeholder {
        height: 350px;
    }
    
}

@media (max-width: 900px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .image-placeholder {
        max-width: 600px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-main-title {
        font-size: 36px;
    }
    
    .highlight-24 {
        font-size: 38px;
        display: block;
        margin-bottom: 10px;
    }
    
    .hero-description {
        font-size: 16px;
        padding: 0 10px;
    }
    
    .action-btn {
        padding: 16px 30px;
        min-width: 200px;
        font-size: 16px;
    }
    
}

@media (max-width: 480px) {
    .hero-section {
        padding: 40px 0;
    }
    
    .hero-main-title {
        font-size: 28px;
    }
    
    .highlight-24 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .action-btn {
        width: 100%;
        min-width: auto;
        padding: 15px 25px;
    }
    
    .image-placeholder {
        height: 250px;
    }
    
}

/* About Us Section */
.about-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.about-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    color: #1a3a6b;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #d10000;
    border-radius: 2px;
}

.section-subtitle {
    color: #555555;
    font-size: 20px;
    font-weight: 500;
    margin-top: 25px;
    line-height: 1.5;
}

/* About Text */
.about-text {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.about-paragraph {
    font-size: 18px;
    color: #555555;
    line-height: 1.8;
    margin-bottom: 25px;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid {
        gap: 25px;
    }
    
    .about-paragraph {
        font-size: 17px;
    }
}

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 600px;
    }
    
    .about-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 40px;
    }
    
    .about-text {
        margin-bottom: 40px;
    }
    
    .about-paragraph {
        font-size: 16px;
        line-height: 1.7;
    }
    
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .about-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 17px;
    }
    
}

@media (max-width: 480px) {
    .section-title {
        font-size: 26px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .about-paragraph {
        font-size: 15px;
    }
    
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.features-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* Feature Box */
.feature-box {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Feature Icon */
.feature-icon-box {
    flex-shrink: 0;
}

.feature-icon-circle {
    width: 70px;
    height: 70px;
    background-color: pink;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon-circle i {
    font-size: 30px;
    color: rgb(231, 231, 231);;
}

/* Feature Text */
.feature-text {
    flex: 1;
}

.feature-heading {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
    line-height: 1.3;
}

.feature-desc {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1100px) {
    .features-grid {
        gap: 30px;
    }
    
    .feature-box {
        padding: 25px;
        gap: 20px;
    }
    
    .feature-icon-circle {
        width: 65px;
        height: 65px;
    }
    
    .feature-icon-circle i {
        font-size: 28px;
    }
}

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .features-section {
        padding: 60px 0;
    }
    
    .feature-heading {
        font-size: 21px;
    }
    
    .feature-desc {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .feature-box {
        padding: 20px;
        gap: 18px;
    }
    
    .feature-icon-circle {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon-circle i {
        font-size: 26px;
    }
    
    .feature-heading {
        font-size: 20px;
    }
}

@media (max-width: 600px) {
    .features-section .container {
        padding: 0 15px;
    }
    
    .feature-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 25px 20px;
    }
    
    .feature-icon-circle {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }
    
    .feature-icon-circle i {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .features-section {
        padding: 50px 0;
    }
    
    .feature-box {
        padding: 20px 15px;
    }
    
    .feature-heading {
        font-size: 19px;
    }
    
    .feature-desc {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .feature-icon-circle {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon-circle i {
        font-size: 24px;
    }
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: #f8faff;
    position: relative;
}

.services-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Services Header */
.services-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 70px;
}

.services-title {
    font-size: 42px;
    font-weight: 800;
    color: #1a3a6b;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.services-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #d10000, #ff6b6b);
    border-radius: 2px;
}

.services-subtitle {
    font-size: 20px;
    color: #555;
    font-weight: 500;
    margin-bottom: 25px;
    line-height: 1.5;
}

.services-intro {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Service Card */
.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(26, 58, 107, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(26, 58, 107, 0.15);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #d10000, #ff6b6b);
}

/* Service Number */
.service-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 60px;
    font-weight: 500;
    color: rgba(26, 58, 107, 0.05);
    line-height: 1;
    z-index: 1;
}

/* Service Icon */
.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background-color: pink;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.service-icon i {
    font-size: 34px;
    color: rgb(220, 30, 30);
}

/* Service Content */
.service-name {
    font-size: 22px;
    font-weight: 700;
    color: #1a3a6b;
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Service Card Color Variations - All pink background and red icons */

/* Responsive Design */
@media (max-width: 1100px) {
    .services-grid {
        gap: 30px;
    }
    
    .service-card {
        padding: 35px 25px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .service-icon i {
        font-size: 30px;
    }
    
    .service-name {
        font-size: 20px;
    }
    
    .service-description {
        font-size: 15px;
    }
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-section {
        padding: 80px 0;
    }
    
    .services-title {
        font-size: 38px;
    }
    
    .services-subtitle {
        font-size: 19px;
    }
    
    .services-intro {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .services-header {
        margin-bottom: 50px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-number {
        font-size: 50px;
        top: 15px;
        right: 15px;
    }
    
    .service-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 18px;
    }
    
    .service-icon i {
        font-size: 28px;
    }
    
    .service-name {
        font-size: 19px;
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .services-section {
        padding: 60px 0;
    }
    
    .services-title {
        font-size: 34px;
    }
    
    .services-subtitle {
        font-size: 18px;
    }
    
    .services-intro {
        font-size: 16px;
        padding: 0 10px;
    }
    
    .service-card {
        padding: 35px 25px;
    }
}

@media (max-width: 480px) {
    .services-title {
        font-size: 30px;
    }
    
    .services-subtitle {
        font-size: 17px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-number {
        font-size: 45px;
    }
    
    .service-name {
        font-size: 18px;
    }
    
    .service-description {
        font-size: 14px;
    }
}

/* Main Section Spacing */
.facilities-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px 50px 20px; /* Reduced bottom padding to minimize spacing with team section */
    font-family: Arial, sans-serif;
    color: #333;
}

/* Header Styling */
.facilities-header {
    text-align: center;
    margin-bottom: 80px; /* Space below the main title */
}

.facilities-header h1 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.facilities-header p {
    color: #d32f2f;
    font-style: italic;
    font-size: 20px;
}

.red-line {
    width: 80px;
    height: 4px;
    background-color: #d32f2f;
    margin: 20px auto 0;
}

/* Row Styling */
.facility-item {
    display: flex;
    align-items: center;
    gap: 60px; /* Large gap between image and text */
    margin-bottom: 100px; /* Space between rows */
}

/* Alternating Flip */
.facility-item.reverse {
    flex-direction: row-reverse;
}

/* Image Styling */
.facility-image {
    flex: 1;
}

.facility-image img {
    width: 100%;
    height: 360px; /* Reduced by 10% for smaller size */
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Content Styling */
.facility-content {
    flex: 1;
}

.facility-content h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #1a1a1a;
    position: relative;
}

.facility-content p {
    font-size: 18px;
    line-height: 1.8; /* Increased line height for better readability */
    color: #555;
}

/* Mobile Responsive Adjustments */
@media (max-width: 992px) {
    .facility-item, .facility-item.reverse {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        margin-bottom: 70px;
    }
    
    .facility-image img {
        height: auto;
    }
}

/* General Setup */
.team-section {
    padding: 80px 20px; /* Reduced top padding to minimize spacing with facilities section */
    background-color: #f8faff;
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #333;

}

.team-container {
    max-width: 1050px; /* Keeps content centered with clean gutters */
    margin: 0 auto;
}

/* Main Heading Styles */
.team-main-header {
    text-align: center;
    margin-bottom: 70px;
}

.team-main-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.team-subtitle {
    font-size: 1.2rem;
    color: #d32f2f; /* Medical Red from video */
    font-style: italic;
    margin-bottom: 20px;
}

.team-red-line {
    width: 70px;
    height: 4px;
    background-color: #d32f2f;
    margin: 20px auto 30px;
}

.team-intro-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
    max-width: 900px;
    margin: 0 auto;
}

/* Grid for the Two Team Cards */
.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px; /* Wide gap for airy feel */
    margin-bottom: 100px;
}

.team-card {
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.team-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
}

.team-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: #fff;
}

.team-card-overlay h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.team-card-overlay p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.5;
}

/* Footer Section */
.join-team-footer {
    text-align: center;
    margin-top: 60px;
}

.join-team-footer h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.join-team-footer p {
    font-size: 1.15rem;
    color: #444;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Responsive Logic */
@media (max-width: 850px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    .team-main-header h1 {
        font-size: 36px;
    }
}

.footer {
  background: linear-gradient(180deg, #0b1626, #0f1d33);
  color: #cfd6e3;
  padding: 65px 20px 0;
  font-family: "Segoe UI", sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
}

/* Headings */
.footer-col h3 {
  color: #ffffff;
  font-size: 21px;
  margin-bottom: 14px;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 17px;
  margin-bottom: 18px;
}

/* Description */
.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #b9c3d6;
  margin-bottom: 18px;
}

/* Image */
.hospital-image {
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
  max-width: 270px;
}

.hospital-image img {
  width: 100%;
  display: block;
  opacity: 0.95;
}

/* Social Icons */
.social-links {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}

.social-links a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #cfd6e3;
  font-size: 16px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #4da3ff;
  color: #ffffff;
}

/* Links */
.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  text-decoration: none;
  color: #b9c3d6;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #4da3ff;
}

/* Contact Items */
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  color: #b9c3d6;
}

.contact-item i {
  color: #4da3ff;
  font-size: 15px;
  min-width: 18px;
}

/* Bottom */
.footer-bottom {
  text-align: center;
  padding: 20px 10px;
  margin-top: 45px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  color: #aab4c7;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .contact-item {
    justify-content: center;
  }

  .hospital-image {
    margin: 18px auto;
  }
}

