/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #333333; /* Dark Charcoal */
    background-color: #F9F9F9; /* Off-White */
}

/* Header Section */
.header {
    background-color: #7AD1CC; /* Soft Teal */
    padding: 1rem;
    color: #F4EDE4; /* Light Beige */
}

.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

/* Logo / Hospital Name */
.logo h1 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #F4EDE4; /* Light Beige */
}

/* Navigation Bar */
.navbar {
    display: flex;
}

.nav-list {
    list-style-type: none;
    display: flex;
    gap: 1.5rem;
}

.nav-list li a {
    color: #F4EDE4; /* Light Beige */
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-list li a:hover {
    color: #A6B89D; /* Muted Olive */
}

/* Call to Action Button */
.cta .cta-button {
    padding: 0.5rem 1.5rem;
    background-color: #A6B89D; /* Muted Olive */
    color: #F4EDE4; /* Light Beige */
    text-decoration: none;
    border-radius: 20px;
    transition: background-color 0.3s ease;
}

.cta .cta-button:hover {
    background-color: #F4EDE4; /* Light Beige */
    color: #333333; /* Dark Charcoal */
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Hide the navigation bar */
    .navbar {
        display: none;
    }
    
    /* Center the logo/hospital name */
    .container {
        justify-content: center;
    }
    
    /* Center the CTA button under the logo if needed */
    .cta {
        display: none;
    }
}

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #333333; /* Dark Charcoal */
    background-color: #F9F9F9; /* Off-White */
}

/* Hero Section */
.hero {
    background-color: #7AD1CC; /* Soft Teal */
    background-image: url('img/background.png'); /* Placeholder image URL */
    background-size: cover;
    background-position: center;
    color: #F4EDE4; /* Light Beige */
    text-align: center;
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80vh;
}

/* Hero Heading */
.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

/* Hero Subtext */
.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #F4EDE4; /* Light Beige */
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.hero-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.primary-btn {
    background-color: #A6B89D; /* Muted Olive */
    color: #F4EDE4; /* Light Beige */
}

.primary-btn:hover {
    background-color: #F4EDE4; /* Light Beige */
    color: #333333; /* Dark Charcoal */
}

.secondary-btn {
    background-color: transparent;
    color: #F4EDE4; /* Light Beige */
    border: 2px solid #F4EDE4; /* Light Beige */
}

.secondary-btn:hover {
    background-color: #F4EDE4; /* Light Beige */
    color: #333333; /* Dark Charcoal */
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .hero-content {
        padding: 1.5rem;
    }
}

/* ------> About Us Section <------ */
.about-us {
    background-color: #F9F9F9; /* Off-White */
    color: #333333; /* Dark Charcoal */
    padding: 4rem 2rem;
    text-align: center;
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* About Us Heading */
.about-us h2 {
    font-size: 2.5rem;
    color: #7AD1CC; /* Soft Teal */
    margin-bottom: 1rem;
}

/* About Us Description */
.about-description {
    font-size: 1.125rem;
    color: #333333; /* Dark Charcoal */
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Key Points Section */
.key-points {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.point {
    background-color: #F4EDE4; /* Light Beige */
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.point:hover {
    transform: translateY(-5px);
}

/* Key Point Images */
.point img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1rem;
}

/* Key Point Titles */
.point h3 {
    font-size: 1.25rem;
    color: #7AD1CC; /* Soft Teal */
    margin-bottom: 0.5rem;
}

/* Key Point Descriptions */
.point p {
    color: #333333; /* Dark Charcoal */
    font-size: 0.8;
    line-height: 1.2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-us h2 {
        font-size: 2rem;
    }

    .about-description {
        font-size: 1rem;
    }
}

/* Services Section */
.services {
    background-color: #F9F9F9; /* Off-White */
    color: #333333; /* Dark Charcoal */
    padding: 4rem 2rem;
    text-align: center;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Services Heading */
.services h2 {
    font-size: 2.5rem;
    color: #7AD1CC; /* Soft Teal */
    margin-bottom: 1rem;
}

/* Services Description */
.services-description {
    font-size: 1.125rem;
    color: #333333; /* Dark Charcoal */
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Services Grid */
.services-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Individual Service Card */
.service {
    background-color: #F4EDE4; /* Light Beige */
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service:hover {
    transform: translateY(-5px);
}

/* Service Image */
.service img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1rem;
}

/* Service Title */
.service h3 {
    font-size: 1.25rem;
    color: #7AD1CC; /* Soft Teal */
    margin-bottom: 0.5rem;
}

/* Service Description */
.service p {
    color: #333333; /* Dark Charcoal */
    font-size: 0.8;
    line-height: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services h2 {
        font-size: 2rem;
    }

    .services-description {
        font-size: 1rem;
    }
}

/* Reviews Section */
.reviews {
    background-color: #7AD1CC; /* Soft Teal */
    color: #F4EDE4; /* Light Beige */
    padding: 4rem 2rem;
    text-align: center;
}

.reviews-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Reviews Heading */
.reviews h2 {
    font-size: 2.5rem;
    color: #F4EDE4; /* Light Beige */
    margin-bottom: 1rem;
}

/* Reviews Description */
.reviews-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Individual Review Card */
.review {
    background-color: #A6B89D; /* Muted Olive */
    border-radius: 10px;
    padding: 2rem;
    text-align: left;
    color: #333333; /* Dark Charcoal */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.review:hover {
    transform: translateY(-5px);
}

/* Review Text */
.review-text {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

/* Review Author */
.review-author {
    font-size: 1rem;
    font-weight: bold;
    color: #333333; /* Dark Charcoal */
}

/* Review Button */
.review-button {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    color: #FFFFFF; /* White */
    background-color: #333333; /* Dark Charcoal */
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.review-button:hover {
    background-color: #555555; /* Slightly lighter charcoal for hover effect */
}

/* Responsive Design */
@media (max-width: 768px) {
    .reviews h2 {
        font-size: 2rem;
    }

    .reviews-description {
        font-size: 1rem;
    }
}

/* Contact Section */
.contact {
    background-color: #7AD1CC; /* Soft Teal */
    color: #F4EDE4; /* Light Beige */
    padding: 4rem 2rem;
    text-align: center;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Heading */
.contact h2 {
    font-size: 2.5rem;
    color: #F4EDE4; /* Light Beige */
    margin-bottom: 1rem;
}

/* Contact Description */
.contact-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Contact Details */
.contact-details {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: #333333; /* Dark Charcoal */
    line-height: 1.8;
}

.location-buttons {
    margin-top: 2rem;
}

.location-buttons p{
    color: #333333;
}

.location-btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    color: #333333; /* Light Beige */
    background-color: #7AD1CC; /* Soft Teal */
    text-decoration: none;
    margin: 0.5rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.location-btn:hover {
    background-color: #5cae9a; /* Darker Teal */
}

/* Contact Button */
.contact-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    color: #FFFFFF; /* White */
    background-color: #333333; /* Dark Charcoal */
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.contact-button:hover {
    background-color: #555555; /* Slightly lighter charcoal for hover effect */
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact h2 {
        font-size: 2rem;
    }

    .contact-description {
        font-size: 1rem;
    }
    
    .contact-details {
        font-size: 0.9rem;
    }

    .location-btn {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
}

/* Footer Section */
.footer {
    background-color: #333333; /* Dark Charcoal */
    color: #F4EDE4; /* Light Beige */
    padding: 1.5rem 1rem;
    text-align: center;
}

.footer h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: #F4EDE4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer h3 {
        font-size: 1.25rem;
    }

    .footer-bottom p {
        font-size: 0.75rem;
    }
}

html {
    scroll-behavior: smooth;
}