/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Header and Navigation */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #1f7c96; /* Blue theme color */
    color: white;
    width: 100%;
}

header .logo img {
    height: 100px;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
}

.nav-links li {
    margin-right: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.cta {
    padding: 10px 20px;
    background-color: #F9A602; /* Button color */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}


/* Hero Section */
.hero-section {
    position: relative;
    height: 80vh;
    color: white;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5); /* Optional: Semi-transparent black background */
    border-radius: 10px; /* Optional: Rounded corners */
}

.hero-content h1 {
    font-size: 4em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Text shadow for better readability */
}

.hero-content p {
    font-size: 1.5em;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7); /* Text shadow for better readability */
}

#background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    transform: translate(-50%, -50%);
    filter: blur(10px); /* Increase the blur slightly for better text contrast */
    -webkit-filter: blur(10px);
}

.btn-primary {
    padding: 15px 30px;
    background-color: #F9A602;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #D87F00;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add a slight shadow on hover */
}


/* We Help With Section */
.help-section {
    padding: 50px 20px;
    text-align: center;
}

.help-section h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #333;
}

.help-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.help-item {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 30%;
    margin-bottom: 20px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.help-item img {
    width: 150px;
    margin-bottom: 10px;
}

.help-item h3 {
    margin-bottom: 15px;
    font-size: 1.5em;
}

.help-item p {
    font-size: 1em;
    color: #666;
}

.help-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* About Page */
.about-section {
    padding: 50px 20px;
    background-color: #fff;
    text-align: center;
}

.about-section h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #333;
}

.bio-container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.bio-photo {
    flex: 1.5; 
    text-align: center;
}

.bio-photo img {
    max-width: 80%; 
    border-radius: 10px;
}

.bio-info {
    flex: 2;
    padding: 0 20px;
}

.bio-info h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.bio-info h2 span {
    font-size: 0.6em;
    color: #666;
}

.bio-info h3 {
    font-size: 1.5em;
    margin-bottom: 20px;
}

.bio-info p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
}

.btn-secondary {
    padding: 10px 20px;
    background-color: #6A1B9A;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

/* Services Grid with Padding */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    gap: 20px; /* Spacing between the boxes */
    padding: 20px;
    max-width: 1200px; /* Limit the width of the grid */
    margin: 0 auto; /* Center the grid on the page */
}

.service-item {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item img {
    width: 80px;
    margin-bottom: 20px;
}

.service-item h3 {
    margin-bottom: 15px;
    font-size: 1.5em;
}

.service-item p {
    font-size: 1em;
    color: #666;
}

.service-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr 1fr; /* 2 columns for tablets */
        padding: 10px; /* Reduce padding on smaller screens */
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr; /* 1 column for mobile */
        padding: 5px; /* Further reduce padding on mobile */
    }
}


/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fff;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 10px;
    position: relative;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Modal Container */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 100; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

/* Modal Content Box */
.modal-content {
    background-color: white;
    margin: 10% auto; /* Center it */
    padding: 30px;
    border: 1px solid #888;
    width: 80%; /* Increase width */
    max-width: 600px; /* Ensure it doesn't get too wide */
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
    overflow: visible; /* Make sure the content is not cut off */
}

/* Ensure the content is not cut off */
.modal-description {
    max-height: 400px; /* Adjust to desired height */
    overflow-y: auto; /* Enable scrolling for large content */
    line-height: 1.6;
}

/* Close Button */
.modal-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.modal-close:hover,
.modal-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}


/* Pricing Page Section */
.pricing-section {
    margin: 0 auto; /* Center the section */
    max-width: 1100px; /* Limit the width for better readability */
    padding: 40px 20px; /* Add padding around the content */
}

.pricing-section h2 {
    font-size: 2.5rem; /* Adjust the heading size */
    text-align: center; /* Center-align the heading */
    color: #1f7c96; /* Match with the theme */
    margin-bottom: 30px;
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap; /* Allow cards to wrap on smaller screens */
    gap: 20px; /* Add space between cards */
    justify-content: center; /* Center-align the cards */
}

.pricing-card {
    flex: 1 1 calc(33.333% - 20px); /* Three cards per row with spacing */
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for better design */
    text-align: center;
}

.pricing-card h3 {
    font-size: 1.5rem;
    color: #3e4a61;
    margin-bottom: 15px;
}

.pricing-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

.pricing-card a.btn-primary {
    display: inline-block;
    padding: 10px 20px;
    background-color: #1f7c96;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 15px;
}

.pricing-card a.btn-primary:hover {
    background-color: #155d6d;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-card {
        flex: 1 1 calc(100% - 20px); /* One card per row on smaller screens */
    }
}



/* FAQ Section */
.faq-section {
    padding: 50px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-section h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #1f7c96; /* Blue color theme */
    text-align: center;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 15px 20px;
    background-color: #063744; /* Blue color theme */
    color: white;
    text-align: left;
    border: none;
    cursor: pointer;
    font-size: 1.2em;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background-color: white;
    padding: 0 20px;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
    padding: 20px 0;
    margin: 0;
    font-size: 1em;
    color: #333;
}


/* Contact Section */
.contact-section {
    padding: 50px 20px;
    text-align: center;
    background-color: #f4f4f4;
}

.contact-header {
    margin-bottom: 40px;
}

.contact-header h1 {
    font-size: 2.5em;
    color: #1f7c96;
}

.contact-header p {
    font-size: 1.2em;
    color: #666666;
}

.locations {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.location {
    width: 48%;
    text-align: left;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.location h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: #333;
}

.location p {
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #666;
}

/* Contact Info Section */
.contact-info-section {
    position: relative;
    text-align: center;
    color: white;
    background-color: #1f7c96;
}

.contact-info-background {
    position: relative;
    background-image: url('/photos/contact.jpg');
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-info-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay for better text readability */
}

.contact-info-content {
    position: relative;
    z-index: 2;
    color: white;
}

.contact-info-content h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.contact-info-content p {
    font-size: 1.2em;
    margin: 5px 0;
}

/* Direct Billing Section */
.direct-billing-section {
    padding: 50px 20px;
    background-color: #f4f4f4; /* Light grey background */
    text-align: center;
}

.billing-container {
    max-width: 800px;
    margin: 0 auto;
}

.direct-billing-section h2 {
    font-size: 2em;
    color: #333;
    font-weight: bold;
}

.direct-billing-section hr {
    width: 50px;
    border: 1px solid #ccc;
    margin: 20px auto;
}

.direct-billing-section p {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 20px;
}

.billing-link {
    font-size: 1.1em;
    color: #D87F00; /* Match this color with the theme of your website */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.billing-link:hover {
    color: #F9A602; /* Slightly lighter shade on hover */
}

/* Qualifying Insurers Section */
.insurers-section {
    padding: 50px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.insurers-container {
    max-width: 800px;
    margin: 0 auto;
}

.insurers-section h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
}

.insurers-section p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #666;
}

.insurers-list {
    list-style-type: none;
    padding: 0;
    columns: 2; /* Displays the list in two columns */
    column-gap: 40px; /* Gap between the columns */
}

.insurers-list li {
    font-size: 1.2em;
    color: #1f7c96;
    padding: 5px 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .insurers-list {
        columns: 1; /* Changes to one column on smaller screens */
    }
}

/* Services Overview Section */
.services-overview-section {
    padding: 50px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.services-overview-container {
    max-width: 1000px;
    margin: 0 auto;
}

.services-overview-section h2 {
    font-size: 2.5em;
    color: #000000;
}

.services-overview-section hr {
    width: 50px;
    border: 1px solid #ccc;
    margin: 20px auto;
}

.services-overview-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.services-overview-item {
    background-color: #000000;
    color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgb(0, 0, 0);
    width: 48%;
    padding: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.services-overview-item h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: white;
}

.services-list {
    list-style: none;
    padding: 0;
}

.services-list li {
    font-size: 1.1em;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.service-icon {
    font-size: 1.2em;
    margin-right: 10px;
    color: #F9A602; /* Match this color with the theme of your website */
}

.services-link {
    display: block;
    margin-top: 20px;
    color: #F9A602; /* Match this color with the theme of your website */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.services-link:hover {
    color: #D87F00; /* Slightly darker shade on hover */
}

.services-overview-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .services-overview-grid {
        flex-direction: column;
        align-items: center;
    }

    .services-overview-item {
        width: 100%;
    }
}

/* Reviews Section */
.reviews-section {
    padding: 50px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.reviews-section h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 10px;
}

.reviews-section p {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 40px;
}

.reviews-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.review-item {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 45%;
    margin-bottom: 20px;
    padding: 20px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-item p {
    font-size: 1.1em;
    color: #333;
}

.review-item .review-author {
    font-weight: bold;
    color: #333;
    margin-top: 15px;
}

.review-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

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

    .review-item {
        width: 100%;
    }
}

/* Back to Top Button */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #1f7c96; /* Button background color */
    border: none;
    color: rgb(255, 252, 252);
    padding: 20px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000;
    transition: background-color 0.3s;

}
.arrow-up {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid white;
    display: inline-block;
    margin: auto;
}

#back-to-top:hover {
    background-color: #14596e; /* Darker background on hover */
}

#back-to-top i {
    font-size: 16px; /* Adjust the icon size */
}






/* Footer Styles */
footer {
    background-color: #1f7c96;
    color: white;
    padding: 40px 0;
    text-align: left;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    padding: 20px;
}

.footer-column h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #fff;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
    font-size: 1em;
    color: #e0e0e0;
}

.footer-column ul li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #f0ad4e;
}

.footer-column ul li i {
    margin-right: 10px;
    color: #f0ad4e;
}

.footer-bottom {
    background-color: #143a49;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom .social-icons {
    margin-bottom: 10px;
}

.footer-bottom .social-icons a {
    color: white;
    margin: 0 10px;
    font-size: 1.5em;
    text-decoration: none;
}

.footer-bottom .social-icons a:hover {
    color: #f0ad4e;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9em;
}

/* Ensure mobile responsiveness */
@media (max-width: 768px) {
    body {
        margin: 0;
        padding: 0;
        overflow-x: hidden; /* Prevent horizontal scrolling */
    }
    .container {
        width: 100%;
        padding: 0 15px; /* Adjust padding for smaller screens */
    }
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    nav ul li {
        margin-bottom: 10px; /* Add spacing for stacked menu items */
    }
    .hero, .section {
        padding: 20px;
        text-align: center;
    }
    img {
        max-width: 100%;
        height: auto; /* Ensure images resize proportionally */
    }
}

/* Additional fixes for overflow issues */
body, html {
    max-width: 100%; /* Prevent body from extending beyond viewport */
    overflow-x: hidden; /* Force no horizontal scrolling */
}

header, nav, .navbar, .container {
    max-width: 100%;
    box-sizing: border-box; /* Include padding and border in element width */
}

/* Fix for navigation links overlapping */
nav ul {
    display: flex;
    justify-content: space-evenly; /* Spread menu items evenly */
    flex-wrap: wrap; /* Allow items to wrap in smaller screens */
    padding: 0;
    margin: 0;
    list-style: none;
}

.service-card {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    margin: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.service-card img {
    max-width: 50px;
    margin-bottom: 10px;
}

.btn {
    background-color: #1f7c96;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #155d6d;
}

.treatment-card {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 20px;
    background-color: #f9f9f9;
}

.treatment-card h3 {
    color: #1f7c96;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.treatment-card p {
    font-size: 1em;
    color: #333;
    line-height: 1.5;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    background-color: #1f7c96;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #155d6d;
}

/* Full-width Hero Section */
.hero-full-photo {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
}

.hero-full-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}

/* Doctor Info Section */
.doctor-section {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    align-items: flex-start; /* Align items to the top */
    justify-content: center; /* Center the content horizontally */
    gap: 20px; /* Add spacing between the image and text */
    padding: 40px 20px;
    background: #f9f9f9;
}

.doctor-photo img {
    width: 1000px; /* Set a larger width for the image */
    height: auto; /* Maintain aspect ratio */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.doctor-details {
    flex: 1; /* Allow text content to take the remaining space */
    max-width: 800px; /* Limit the width of the text */
    text-align: justify; /* Justify text for cleaner alignment */
}

.doctor-details h2 {
    font-size: 2em;
    color: #1f7c96;
    margin-bottom: 10px;
}

.doctor-details p {
    font-size: 1.1em;
    line-height: 1.8; /* Improve readability */
    margin-bottom: 15px;
}

.btn-primary {
    display: inline-block;
    padding: 12px 24px;
    color: #fff;
    background: #1f7c96;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #155d6d;
}

/* Photo Gallery Styles */
.photo-gallery {
    margin: 20px 0;
    overflow: hidden;
    position: relative;
    background-color: #f9f9f9;
    padding: 10px 0;
}

.scroll-container {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    animation: scroll-left 15s linear infinite;
}

.scroll-container img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Photo Gallery Styles */
.photo-gallery {
    margin: 40px 0;
    overflow: hidden;
    position: relative;
    background-color: #f9f9f9;
    padding: 50px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.scroll-container {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
    animation: scroll-left 20s linear infinite;
}

.scroll-container img {
    width: 400px; /* Set the size of the square photos */
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}


/* WHY CHOOSE US Section */
.why-choose-us-section {
    padding: 60px 20px;
    background-color: #f9f9f9; /* Light background color */
    text-align: center;
}

.why-choose-us-section h2 {
    font-size: 2.5rem; /* Main heading size */
    color: #d23b6f; /* Pinkish-red color for the heading */
    margin-bottom: 20px;
    text-transform: uppercase; /* Uppercase text for the heading */
}

.why-choose-container {
    display: flex;
    flex-wrap: wrap; /* Enable wrapping for smaller screens */
    align-items: center; /* Align content vertically */
    justify-content: space-between; /* Ensure space between text and image */
    gap: 20px; /* Gap between text and image */
    margin: 0 auto; /* Center the container */
    max-width: 1100px; /* Add maximum width for the container */
}

.why-choose-text {
    flex: 1;
    max-width: 50%; /* Restrict text width to 50% */
    text-align: left; /* Left-align the text */
}

.why-choose-text h3 {
    font-size: 1.8rem; /* Subheading size */
    color: #3e4a61; /* Darker color for subheading */
    margin-bottom: 15px;
}

.why-choose-text p {
    font-size: 1.2rem; /* Paragraph font size */
    line-height: 1.6; /* Line height for better readability */
    color: #555; /* Gray color for paragraph text */
    margin-bottom: 15px;
}

.why-choose-text a.btn-primary {
    display: inline-block;
    padding: 10px 20px;
    background-color: #1f7c96; /* Button background color */
    color: #fff; /* Button text color */
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    margin-top: 10px;
}

.why-choose-text a.btn-primary:hover {
    background-color: #155d6d; /* Darker color on hover */
}

.why-choose-image {
    flex: 1;
    max-width: 40%; /* Adjust image width */
    display: flex;
    justify-content: center; /* Center the image */
    align-items: center;
}

.why-choose-image img {
    width: 150%;
    max-width: 600px; /* Limit the maximum size of the image */
    height: auto; /* Maintain aspect ratio */
    border-radius: 10px; /* Rounded corners for the image */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Add shadow for a clean effect */
}

/* Responsive Design */
@media (max-width: 768px) {
    .why-choose-container {
        flex-direction: column; /* Stack text and image vertically */
        margin: 0 10px; /* Add some margin on smaller screens */
    }
    .why-choose-text,
    .why-choose-image {
        max-width: 100%; /* Full width for smaller screens */
        text-align: center; /* Center-align text for mobile */
    }
    .why-choose-text a.btn-primary {
        margin-top: 20px;
    }
}

/* Pricing Section */
.pricing {
    background-color: #f9f9f9;
    padding: 60px 20px;
}

.pricing-container {
    max-width: 1100px; /* Restrict content width */
    margin: 0 auto; /* Center the content */
    text-align: center;
}

.pricing h2 {
    font-size: 2.5rem;
    color: #1f7c96;
    margin-bottom: 20px;
}

.pricing p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
}

.treatment-card {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.treatment-card h3 {
    font-size: 1.5rem;
    color: #3e4a61;
    margin-bottom: 15px;
}

.treatment-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.treatment-card .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #1f7c96;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
}

.treatment-card .btn:hover {
    background-color: #155d6d;
}

/* Responsive Design */
@media (max-width: 768px) {
    .treatment-card {
        margin-bottom: 30px;
    }
    .pricing h2 {
        font-size: 2rem;
    }
    .pricing p {
        font-size: 1rem;
    }
}

/* Header Navigation Styles */
/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #1f7c96;
    color: #fff;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li {
    text-transform: uppercase;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
}

/* Hamburger Menu Styles */
.menu-toggle {
    display: none; /* Hidden by default */
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle .bar {
    background-color: #fff;
    height: 3px;
    width: 25px;
    margin: 3px 0;
}

/* Dropdown Styles for Mobile View */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Initially hidden */
        flex-direction: column; /* Vertical layout for dropdown */
        background-color: #1f7c96;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%; /* Full width dropdown */
        text-align: center;
        padding: 10px 0;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex; /* Show dropdown when active */
    }

    .menu-toggle {
        display: flex; /* Show hamburger menu on small screens */
    }
}

.logo img {
    width: 100px; /* Adjust the size of the logo */
    height: auto; /* Maintain the aspect ratio */
    cursor: pointer; /* Show a pointer cursor to indicate it's clickable */
}

.logo a {
    text-decoration: none; /* Remove underline (default behavior) */
}

/* Contact Section Styles */
.contact-section {
    position: relative;
    color: #fff; /* White text for contrast */
    text-align: center;
    overflow: hidden;
}

/* Background Image */
.contact-background {
    position: relative;
    width: 100%;
    height: 100vh; /* Full-screen height */
    background: url('/photos/location.jpg') no-repeat center center/cover; /* Replace with your image path */
}

/* Gray Overlay */
.contact-background .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent gray overlay */
    z-index: 1;
}

/* Content Positioned Over Background */
.contact-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.contact-header h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffff;

}

.contact-header p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ffff;
}

.locations {
    margin-top: 40px;
}

.location h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #fff;
}

.location p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #ddd;
}

iframe {
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Add subtle shadow for iframe */
}

/* Responsive Styles */
@media (max-width: 768px) {
    .contact-header h1 {
        font-size: 2rem;
    }
    .contact-header p {
        font-size: 1rem;
    }
    iframe {
        width: 90%; /* Ensure iframe is responsive */
    }
}

