
:root {
    --primary: #0b4768;
    --secondary: #18a199;
    --light: #f4f9fb;
    --dark: #222;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.7;
    color: var(--dark);
    background: #fff;
}

/* Utility */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.section {
    padding: 70px 0;
}

h1, h2, h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

h2 span {
    color: var(--secondary);
}

p {
    margin-bottom: 15px;
}


/* Hub Locations – City Background Style */
.hub-locations-bg {
    position: relative;
    padding: 90px 0;
    text-align: center;
    background: 
        linear-gradient(rgba(11,71,104,0.75), rgba(11,71,104,0.75)),
        url('https://images.unsplash.com/photo-1505761671935-60b3a7427bad') 
        center/cover no-repeat;
}

/* Title */
.hub-title {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 35px;
    font-weight: 600;
}

.hub-title span {
    color: #18a199;
}

/* Locations */
.hub-location-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 18px;
}

/* Location Pills */
.hub-item {
    background: rgba(255,255,255,0.95);
    color: #0b4768;
    padding: 14px 30px;
    border-radius: 40px;
    font-size: 1.05rem;
    font-weight: 500;
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.hub-item:hover {
    background: #18a199;
    color: #ffffff;
    transform: translateY(-5px);
}

/* Dots */
.hub-dot {
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
}

/* Mobile */
@media (max-width: 768px) {
    .hub-dot {
        display: none;
    }

    .hub-title {
        font-size: 2rem;
    }
}


/* Facilities */
.facilities {
    background: var(--light);
}

.facility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.facility-card {
    background: #fff;
    padding: 25px;
    border-left: 1px solid var(--secondary);
    border-right: 1px solid var(--secondary);
    border-top: 1px solid var(--secondary);
    border-bottom: 1px solid var(--secondary);
    box-shadow: 0 10px 25px rgba(0,0,0,.05);
}

/* Inset Background Section */
.inset {
    background: linear-gradient(rgba(24,161,153,.9), rgba(24,161,153,.9)),
    url('/images/pattern.jpg') center/cover no-repeat;
    color: #fff;
}

.inset h2 {
    color: #fff;
}

.inset ul li {
    margin-bottom: 10px;
}

/* Training Section with Image */
.training-with-image {
    background:
        linear-gradient(rgba(24,161,153,0.9), rgba(24,161,153,0.9)),
        url('https://images.unsplash.com/photo-1581091870627-3e9b8c9a5e59')
        center/cover no-repeat;
    color: #ffffff;
}

.training-split {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.training-content {
    flex: 1;
    min-width: 280px;
}

.training-content h2 {
    color: #ffffff;
    margin-bottom: 20px;
}

.training-content span {
    color: #0b4768;
}

.training-content ul li {
    margin-bottom: 10px;
    font-size: 1rem;
}

.training-image {
    flex: 1;
    min-width: 280px;
}

.training-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

/* Responsive */
@media (max-width: 768px) {
    .training-split {
        flex-direction: column;
    }
}


/* Who Can Use the Hub – Modern Style */
.who-use-hub {
    background: #f4f9fb;
}

.who-use-wrap {
    display: flex;
    gap: 50px;
    align-items: stretch;
    flex-wrap: wrap;
}

/* Image */
.who-image {
    flex: 1;
    min-width: 280px;
}

.who-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* Content Panel */
.who-content {
    flex: 1.2;
    min-width: 300px;
    background: #ffffff;
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

.who-content h2 {
    color: #0b4768;
    margin-bottom: 30px;
}

.who-content h2 span {
    color: #18a199;
}

/* List */
.who-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.who-item {
    display: flex;
    gap: 20px;
}

.who-item span {
    font-size: 1.4rem;
    font-weight: 700;
    color: #18a199;
    min-width: 40px;
}

.who-item h4 {
    margin-bottom: 5px;
    color: #0b4768;
}

.who-item p {
    font-size: 0.95rem;
    color: #555;
}

/* Responsive */
@media (max-width: 768px) {
    .who-use-wrap {
        flex-direction: column;
    }

    .who-content {
        padding: 30px;
    }
}



/* Split Sections */
.split {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.split img {
    width: 100%;
    border-radius: 12px;
}

.split .content,
.split .image {
    flex: 1;
    min-width: 280px;
}



/* Flexible Booking Options – Modern Style */
.booking-modern {
    background: linear-gradient(135deg, #ffffff, #f4f9fb);
    text-align: center;
}

.booking-title {
    font-size: 1.8rem;
    color: #0b4768;
    margin-bottom: 10px;
}

.booking-title span {
    color: #18a199;
}

.booking-subtitle {
    max-width: 720px;
    margin: 0 auto 50px;
    color: #555;
    font-size: 1rem;
}

/* Flow */
.booking-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.booking-step {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 20px;
    width: 240px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    position: relative;
}

.booking-step h4 {
    color: #0b4768;
    margin: 15px 0 10px;
}

.booking-step p {
    font-size: 0.95rem;
    color: #666;
}

/* Step Circle */
.step-circle {
    width: 55px;
    height: 55px;
    background: #18a199;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.4rem;
    margin: 0 auto;
}




/* Connecting Line */
.booking-line {
    width: 60px;
    height: 3px;
    background: #18a199;
}

/* Responsive */
@media (max-width: 992px) {
    .booking-line {
        display: none;
    }

    .booking-flow {
        gap: 30px;
    }
}


/* Section Background */
.benefits-hospitals-bg {
    background:
        linear-gradient(rgba(11,71,104,0.7), rgba(11,71,104,0.7)),
        url('https://images.unsplash.com/photo-1576765607922-45d27a0d6c80') 
        center/cover no-repeat;
    padding: 80px 0;
    color: #ffffff;
    text-align: center;
}

/* Section Title */
.benefits-title {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 50px;
}

.benefits-title span {
    color: #18a199;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    justify-items: center;
}

/* Individual Card */
.benefit-card {
    background: rgba(255, 255, 255, 0.95);
    color: #0b4768;
    padding: 25px 20px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.benefit-card i {
    font-size: 2rem;
    color: #18a199;
    margin-bottom: 15px;
}

.benefit-card h4 {
    margin-bottom: 10px;
    color: #0b4768;
}

.benefit-card p {
    font-size: 0.95rem;
    color: #555;
}

/* Responsive */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}





/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.1rem;
    }
}
