/* General Body Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

/* General Header Styles */
header {
    background: linear-gradient(135deg, #1e3d59, #3f5e73);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

/* Logo */
.logo h1 {
    color: #fff;
    font-size: 1.8rem;
    margin: 0;
    font-weight: bold;
}

.logo p {
    color: #ddd;
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
}

/* Navbar */
nav {
    display: flex;
    align-items: center;
    flex: 1;
    text-align: right;
}

.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.nav-links li {
    margin-left: 1.5rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    background-color: #ffcc00;
    color: #1e3d59;
}

.nav-links .cta {
    background-color: #ffcc00;
    color: #1e3d59;
    border-radius: 20px;
    font-size: 0.9rem;
    padding: 0.5rem 1.5rem;
}

.nav-links .cta:hover {
    background-color: #fff;
    color: #3f5e73;
}

/* Contact Info */
.contact-info {
    font-size: 1rem;
    color: #fff;
    text-align: right;
}

.contact-info a {
    color: #ffcc00;
    text-decoration: none;
    font-weight: bold;
    margin-left: 0.5rem;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }

    nav {
        display: none;
        position: absolute;
        top: 60px;
        right: 10px;
        background-color: #1e3d59;
        width: 100%;
        max-width: 300px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        border-radius: 10px;
        flex-direction: column;
        z-index: 1000;
    }

    nav.active {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
    }

    .nav-links li {
        margin: 0.5rem 0;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 0.75rem 1rem;
        width: 100%;
        text-align: left;
    }

    .nav-links .cta {
        text-align: center;
        width: 100%;
        border-radius: 5px;
    }

    /* Ensure the phone number appears in mobile view */
    .contact-info {
        display: block;
        text-align: center;
        margin-top: 1rem;
    }
}


/* Card Section */
.card-section {
    padding: 3rem 2rem;
    background-color: #f9f9f9;
    text-align: center;
    position: relative;
}

.card-section h2 {
    color: #1e3d59;
    margin-bottom: 2rem;
    font-size: 2rem;
    text-transform: uppercase;
    font-weight: bold;
    border-left: 5px solid #3f5e73;
    padding-left: 10px;
}

/* Slider */
.slider {
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden; /* Prevent overflow */
}

.card-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 1rem;
    padding: 1rem 0;
}

.card-container .card {
    min-width: 300px;
    flex: 0 0 auto;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-container .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Card Header */
.card-header {
    font-size: 3rem;
    color: #3f5e73;
    padding: 1.5rem;
    border-bottom: 2px solid #f1f1f1;
    text-align: center;
}

/* Card Body */
.card-body {
    padding: 1.5rem;
    text-align: center;
}

.card-body h3 {
    margin-top: 0;
    font-size: 1.5rem;
    color: #1e3d59;
    font-weight: bold;
    margin-bottom: 1rem;
}

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

/* Slider Buttons */
.slider-btn {
    background-color: #3f5e73;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 1.5rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 10; /* Ensure buttons appear above the cards */
}

.slider-btn:hover {
    background-color: #ffcc00;
    color: #1e3d59;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

/* Responsive Card Section */
@media (max-width: 768px) {
    .card-container .card {
        min-width: 100%;
    }

    .slider-btn {
        display: none; /* Hide arrows for touch-based scrolling */
    }
}

/* Contact Section */
.contact-section {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #3f5e73, #1e3d59);
    color: #fff;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    border-left: 5px solid #ffcc00;
    padding-left: 10px;
}

.contact-section p {
    margin: 0.5rem 0;
    font-size: 1.2rem;
    line-height: 1.5;
}

.contact-section p strong {
    color: #ffcc00;
    font-weight: bold;
}

.contact-section a {
    color: #ffcc00;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.contact-section a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Responsive Design for Contact Section */
@media (max-width: 768px) {
    .contact-section {
        padding: 2rem 1rem;
    }

    .contact-section h2 {
        font-size: 2rem;
    }

    .contact-section p {
        font-size: 1rem;
    }
}

/* About Section */
.about-section {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f9f9f9, #e8ecef);
    color: #333;
    text-align: left;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.about-section h2 {
    font-size: 2.5rem;
    color: #1e3d59;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border-left: 5px solid #3f5e73;
    padding-left: 10px;
}

.about-section h3 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #3f5e73;
    border-left: 4px solid #ffcc00;
    padding-left: 8px;
}

.about-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 1rem 0;
    color: #555;
}

.about-section p.intro {
    font-size: 1.4rem;
    color: #1e3d59;
    font-weight: bold;
}

.about-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
    list-style: disc;
}

.about-section ul.bullets {
    list-style: circle;
}

.about-section ul li {
    margin: 0.5rem 0;
    font-size: 1.2rem;
}

.about-section blockquote {
    font-size: 1.1rem;
    margin: 1.5rem 0;
    padding: 1rem;
    background-color: #f1f1f1;
    border-left: 5px solid #3f5e73;
    border-radius: 5px;
    color: #3f5e73;
    font-style: italic;
}

.about-section blockquote strong {
    display: block;
    margin-top: 0.5rem;
    font-size: 1rem;
    color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-section {
        padding: 2rem 1rem;
    }

    .about-section h2 {
        font-size: 2rem;
    }

    .about-section h3 {
        font-size: 1.5rem;
    }

    .about-section p, .about-section ul li {
        font-size: 1rem;
    }

    .about-section blockquote {
        font-size: 1rem;
    }
}
/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1e3d59, #3f5e73);
    color: #fff;
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.hero-section .container {
    max-width: 900px;
    margin: 0 auto;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-transform: uppercase;
    line-height: 1.2;
    color: #ffcc00;
}

.hero-section p {
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #f1f1f1;
}

.hero-section .btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #ffcc00;
    color: #1e3d59;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.hero-section .btn-primary:hover {
    background-color: #fff;
    color: #3f5e73;
    transform: translateY(-2px);
}

/* Responsive Design for Hero Section */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.2rem;
    }

    .hero-section p {
        font-size: 1.2rem;
    }

    .hero-section .btn-primary {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
}

/* Appointment Section */
.appointment-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f9f9f9, #e8ecef);
    color: #333;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.appointment-section h2 {
    font-size: 2.5rem;
    color: #1e3d59;
    margin-bottom: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    border-left: 5px solid #3f5e73;
    padding-left: 10px;
}

#appointment-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    font-size: 1rem;
    font-weight: bold;
    color: #1e3d59;
    margin-bottom: 0.5rem;
}

input, textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    color: #333;
    outline: none;
    transition: border-color 0.3s ease;
}

input:focus, textarea:focus {
    border-color: #3f5e73;
}

textarea {
    resize: none;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #1e3d59;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
    background-color: #ffcc00;
    color: #1e3d59;
    transform: translateY(-2px);
}

/* Responsive Design for Appointment Section */
@media (max-width: 768px) {
    .appointment-section h2 {
        font-size: 2rem;
    }

    input, textarea {
        font-size: 0.9rem;
    }

    .btn-primary {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
}


/* Footer */
.footer {
    padding: 2rem;
    background-color: #1e3d59;
    color: #fff;
    text-align: center;
    border-top: 4px solid #3f5e73;
    font-size: 0.9rem;
}

.footer a {
    color: #ffcc00;
    text-decoration: none;
    font-weight: bold;
    margin: 0 0.5rem;
}

.footer a:hover {
    text-decoration: underline;
}

/* Modal */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    padding-top: 60px;
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 2rem;
    border: 1px solid #ccc;
    border-radius: 10px;
    width: 80%;
    max-width: 600px;
    text-align: left;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.modal-content h2 {
    margin-top: 0;
    color: #1e3d59;
    border-bottom: 2px solid #3f5e73;
    padding-bottom: 0.5rem;
}

.modal-content p {
    color: #333;
    line-height: 1.6;
}

.close {
    color: #333;
    float: right;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #ff0000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .modal-content {
        width: 90%;
    }
}

/* Terms of Use Section */
.terms-section {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
    color: #333;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.terms-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e3d59;
    border-left: 5px solid #3f5e73;
    padding-left: 10px;
}

.terms-section h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #3f5e73;
    border-left: 4px solid #ffcc00;
    padding-left: 8px;
}

.terms-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #555;
}

.terms-section ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.terms-section ul li {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.terms-section address {
    font-style: normal;
    line-height: 1.6;
    margin-top: 1rem;
}

.terms-section a {
    color: #3f5e73;
    text-decoration: none;
    font-weight: bold;
}

.terms-section a:hover {
    color: #ffcc00;
}
/* Privacy Policy Section */
.privacy-section {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
    color: #333;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.privacy-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e3d59;
    border-left: 5px solid #3f5e73;
    padding-left: 10px;
}

.privacy-section h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #3f5e73;
    border-left: 4px solid #ffcc00;
    padding-left: 8px;
}

.privacy-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #555;
}

.privacy-section ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.privacy-section ul li {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.privacy-section address {
    font-style: normal;
    line-height: 1.6;
    margin-top: 1rem;
}

.privacy-section a {
    color: #3f5e73;
    text-decoration: none;
    font-weight: bold;
}

.privacy-section a:hover {
    color: #ffcc00;
}

/* About Section */
.about-section {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
    text-align: left;
}

.about-section h2 {
    font-size: 2.5rem;
    color: #1e3d59;
    font-weight: bold;
    text-transform: uppercase;
    border-left: 5px solid #3f5e73;
    padding-left: 10px;
    margin-bottom: 2rem;
}

.about-section .intro-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.about-section .cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.about-section .card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    flex: 1;
    min-width: 300px;
}

.about-section .card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1e3d59;
    border-bottom: 2px solid #ffcc00;
    padding-bottom: 0.5rem;
}

.about-section .card p,
.about-section .card ul {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
}

.about-section .card ul {
    margin-left: 1.5rem;
    list-style: disc;
}

blockquote {
    font-style: italic;
    color: #3f5e73;
    margin: 1.5rem 0;
    padding-left: 1rem;
    border-left: 3px solid #ffcc00;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-section .cards {
        flex-direction: column;
    }
}

/* Our Team Section */
.team-section {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
    text-align: center;
}

.team-section h2 {
    font-size: 2.5rem;
    color: #1e3d59;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: bold;
    border-left: 5px solid #3f5e73;
    padding-left: 10px;
}

.team-section p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 3rem;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    max-width: 300px;
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.image-wrapper {
    width: 150px;
    height: 150px;
    margin-bottom: 1rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.details {
    text-align: center;
}

.details h3 {
    font-size: 1.5rem;
    color: #1e3d59;
    margin-bottom: 0.5rem;
}

.details p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.details strong {
    color: #3f5e73;
}

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

    .team-member {
        max-width: 100%;
    }
}

