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

:root {
    --primary-color: #6200EE;
    --secondary-color: #03DAC6;
    --text-color: #333;
    --light-gray: #f5f5f5;
    --dark-gray: #666;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* General paragraph styles */
p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    color: var(--text-color);
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}

h1 {
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-weight: 400;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-weight: 500;
    font-size: 1.5rem;
}

/* Button Common Styles */
button, .login-btn, .schedule-btn, .submit-btn, .book-now-btn, .visit-btn, .subscribe-btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: white;
    position: relative;
}

.logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    margin: 0 1rem;
    font-weight: 500;
}

.nav-links a.active {
    color: var(--primary-color);
}

.login-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}

.mobile-login-btn {
    display: none;
}

.desktop-login-btn {
    display: block;
}

/* Mobile Menu Toggle Button */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
    padding: 0.5rem;
    z-index: 100;
}

.menu-toggle i {
    font-size: 1.8rem;
}

/* Page Header */
.page-header {
    background: var(--light-gray);
    padding: 4rem 5%;
    text-align: center;
}

.page-header h1 {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.page-header p {
    font-size: 1.25rem;
    color: var(--dark-gray);
    max-width: 800px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    padding: 4rem 5%;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.about-content h2 {
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.about-content p {
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

/* Mission Vision Section */
.mission-vision-section {
    padding: 4rem 5%;
    background-color: var(--light-gray);
}

.mission-vision-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-box, .vision-box, .values-box {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.mission-box:hover, .vision-box:hover, .values-box:hover {
    transform: translateY(-10px);
}

.mission-box i, .vision-box i, .values-box i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.mission-box h3, .vision-box h3, .values-box h3 {
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Team Section */
.team-section {
    padding: 4rem 5%;
    text-align: center;
}

.team-section h2 {
    margin-bottom: 1rem;
}

.team-section > p {
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--dark-gray);
}

.team-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.member-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.member-image i {
    font-size: 6rem;
    color: var(--primary-color);
}

.team-member h3 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.member-title {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 5%;
    background-color: var(--light-gray);
    text-align: center;
}

.testimonials-section h2 {
    margin-bottom: 3rem;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: left;
}

.testimonial-content {
    position: relative;
    margin-bottom: 1.5rem;
}

.testimonial-content i {
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
    top: -10px;
    left: -10px;
}

.testimonial-content p {
    position: relative;
    z-index: 1;
}

.testimonial-author h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-author p {
    color: var(--dark-gray);
    margin-bottom: 0;
}

/* Clients Section */
.clients-section {
    padding: 4rem 5%;
    text-align: center;
}

.clients-section h2 {
    margin-bottom: 1rem;
}

.clients-section > p {
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--dark-gray);
}

.client-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.client-logos img {
    height: 60px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* CTA Section */
.cta-section {
    padding: 4rem 5%;
    text-align: center;
    background: var(--primary-color);
    color: white;
}

.cta-section h2 {
    margin-bottom: 2rem;
    color: white;
}

.book-now-btn {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.book-now-btn:hover {

    color: var(--primary-color);
}

/* Footer Styles */
footer {
    background: #333;
    color: white;
    padding: 3rem 5%;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0.5rem 0;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.newsletter-form input {
    padding: 0.5rem;
    border: none;
    border-radius: 5px;
}

.subscribe-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
}

/* Modal Popup Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-form {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    position: relative;
    z-index: 1001;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .popup-form {
    transform: translateY(0);
}

.popup-form h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 600;
}

.close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-gray);
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.required {
    color: red;
    margin-left: 0.25rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.submit-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #5000d6;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-container,
    .mission-vision-container,
    .team-container,
    .testimonials-container,
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .values-box {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .about-container,
    .mission-vision-container,
    .team-container,
    .testimonials-container,
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .values-box {
        grid-column: span 1;
    }
    
    .client-logos {
        gap: 2rem;
    }
    
    .client-logos img {
        height: 50px;
    }
    
    /* Mobile Navigation Styles */
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: white;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 99;
        padding: 2rem 0;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        margin: 1rem 0;
        font-size: 1.2rem;
    }
    
    .mobile-login-btn {
        background: var(--primary-color);
        color: white;
        border: none;
        padding: 0.8rem 1.8rem;
        border-radius: 8px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        margin-top: 2rem;
        display: block;
    }
    
    .desktop-login-btn {
        display: none;
    }
}