/* Reset CSS */
/*

#1779b4
#9db3c6
#def5fb
#364054

*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Typography and Colors */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #364054;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 20px 0;
}

header {
    background: linear-gradient(rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.0)), url('images/cover-image.png') no-repeat center center/cover;
    color: #364054;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
}

header .container {
    margin-left: 5%;
    margin-right: auto;
    text-align: left;
    width: 33%;
    max-width: 33%;
}

header h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

header p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.cta-button {
    padding: 15px 40px;
    background-color: #364054;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #ff3b2e;
}

section {
    padding: 60px 0;
}

h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5em;
    color: #364054;
}


/* Vision section styling */
.vision-section {
    background-color: #def5fb;
    width: 100%;
}

.about-section {
    text-align: center;
    padding: 20px;
}

.about-section p {  
    font-size: 1.2em;
    margin-top: 20px;
    color: #555;
}

.contact-form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: auto;
    color:#364054;
}

.contact-form label {
    margin-bottom: 5px;
    font-weight: bold;
}

.contact-form input, 
.contact-form textarea {
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 1rem;
    background-color: #def5fb;;
}

.contact-form button {
    padding: 15px 40px;
    background-color: #364054;
    color: #fff;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #45a049;
}

.business-address {
    margin-top: 0px;
}

.business-address h3 {
    color: #364054;
    font-size: 3rem;
    margin-bottom: 10px;
}

.business-address p {
    color: #364054;
    font-size: 1.75em;
    text-decoration: none;
}

.contact-detail {
    display: flex;
    text-decoration: none;
    align-items: center;
    gap: 8px;
}

.contact-detail a {
    color: #364054;
    text-decoration: none;
}

.contact-detail a:hover {
    text-decoration: underline;
}

.info-icon {
    margin-top: 1rem;
    margin-bottom: 1rem;
    margin-right: 1rem;
    width: 3rem;
    height: 3rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }

    header p {
        font-size: 1em;
    }

    header .container {
        width: 90%;
        max-width: 90%;
    }

    .business-address {
        padding: 10px 0;
    }
}


/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }

    header p {
        font-size: 1em;
    }

    .business-address {
        padding: 15px;
    }
}


/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }

    header p {
        font-size: 1em;
    }
}

.seo-form {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}
.form-group input[type="text"],
.form-group textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}
.form-group textarea {
    min-height: 100px;
    resize: vertical;
}
.form-group .help-text {
    font-size: 0.875rem;
    color: #666;
    margin-top: 0.25rem;
}
.save-button {
    background-color: #4CAF50;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}
.save-button:hover {
    background-color: #45a049;
}


/* Navigation Bar */
.navbar {
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
    padding: 1rem 20px;
    /* position: sticky; */
    top: 0;
    z-index: 1000;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 5rem;
    padding: 0;
    margin: 0;
}

.nav-left,
.nav-right {
    display: flex;
    gap: 5rem;
}

.nav-left {
    margin-right: 5rem;
}

.nav-right {
    margin-left: 5rem;
}

.navbar a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 2rem;
}

.nav-logo {
    height: 9rem;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block !important;
        position: fixed !important;
        left: 20px !important;
        top: 20px !important;
        z-index: 1001 !important;
        background: #fff !important;
        border: 2px solid #333 !important;
        padding: 15px !important;
        border-radius: 8px !important;
        box-shadow: 0 4px 8px rgba(0,0,0,0.3) !important;
        cursor: pointer !important;
        font-weight: bold !important;
        width: 60px !important;
        height: 60px !important;
        visibility: visible !important;
        opacity: 1 !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 4px;
    }
    
    .nav-toggle::before,
    .nav-toggle::after,
    .nav-toggle {
        content: '';
    }
    
    .nav-toggle::before {
        content: '';
        display: block;
        width: 25px;
        height: 3px;
        background: #333;
        position: absolute;
        top: 18px;
    }
    
    .nav-toggle::after {
        content: '';
        display: block;
        width: 25px;
        height: 3px;
        background: #333;
        position: absolute;
        bottom: 18px;
    }
    
    .nav-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background: #333;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    .nav-toggle:hover {
        background: #f0f0f0 !important;
    }
    
    .navbar {
        display: none;
    }
    
    .navbar.open {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        padding: 80px 20px 20px 20px;
        background-color: #fff;
        width: 100%;
        height: 100vh;
        z-index: 1000;
    }
    
    .nav-logo {
        height: 6rem;
        margin: 1rem 0;
        display: none;
    }
    
    .nav-left,
    .nav-right {
        display: flex;
        flex-direction: column;
        width: 100%;
        text-align: center;
        gap: 0;
    }
    
    .navbar a {
        font-size: 1.5rem;
        padding: 1.5rem;
        display: block;
        border-bottom: 1px solid #eee;
        color: #333;
    }
}

/* Booking and contact layout */
.book-contact {
    display: flex;
    gap: 5rem;
    align-items: flex-start;
    flex-wrap: wrap;
    color: #364054 !important;
}

.booking-info {
    flex: 1 1 250px;
    color: #364054;
    margin-top: 4rem;
}

.booking-box {
    background: #def5fb;
    border: 1px solid #ccc;
    border-radius: 12px;
    color: #364054 !important;
    padding: 20px;
    text-align: center;
}

.choose-pill {
    display: inline-block;
    background-color: #def5fb;
    color: #364054;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: bold;
    margin: 20px 0;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.doctor-block {
    background: #def5fb;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.doctor-block a {
    text-decoration: none;
    color: #364054;
    padding: 10px;
    border-radius: 50px;
    border: 1px solid #ccc;
    background-color: #def5fb;
}

.doctor-block a:hover {
    background-color: #def5fb;
}

.booking-links {
    list-style: none;
    padding-left: 0;
}

.booking-links li {
    margin: 8px 0;
}

.booking-links a {
    color: #364054;
    text-decoration: none;
}

.booking-links a:hover {
    text-decoration: underline;
}

.contact-wrap {
    flex: 1 1 250px;
}

/* Services oval layout */
.services-ovals {
    display: flex;
    justify-content: center;
    gap: 250px;
    flex-wrap: wrap;
}

.service-oval {
    background: #f9f9f9;
    width: 260px;
    height: 650px;
    border-radius: 130px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-oval img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 160px 160px 0 0;
    border-bottom: 1px solid #ddd;
}

.service-oval:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.service-oval h3 {
    margin: 15px 0 10px;
}

.service-oval p {
    padding: 0 15px 20px;
    color: #555;
}

/* Google Reviews section */
.reviews-section {
    background-color: #f6f6f6;
}

.reviews {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 45px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.google-review {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 15px;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.review-content {
    flex: 1;
}

.review-name {
    font-weight: bold;
}

.review-stars {
    color: #FFC107;
    margin: 5px 0;
}

.review-content p {
    margin: 0;
}

@media (max-width: 768px) {
    .reviews {
        flex-direction: column;
        align-items: center;
    }
}

/* Footer */