/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #2c3e50;
    color: white;
}

.nav a {
    color: white;
    text-decoration: none;
    margin-left: 1rem;
    font-weight: 600;
}

.nav a:hover {
    color: #18bc9c;
}

.logo {
    width: 150px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-15px); }
    60% { transform: translateY(-10px); }
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

.fade-in {
    animation: fadeIn 1s ease-in-out forwards;
}

.bounce {
    animation: bounce 2s infinite;
}

.slide-in {
    animation: slideIn 1s ease-in-out forwards;
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background: linear-gradient(to right, #18bc9c, #2c3e50);
    color: white;
}

.hero-text {
    max-width: 50%;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    background-color: #e74c3c;
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
}

.cta-button:hover {
    background-color: #c0392b;
}

.hero-image img {
    width: 400px;
    border-radius: 10px;
}

/* Appointments Section */
.appointments {
    padding: 2rem;
    background-color: #ecf0f1;
    text-align: center;
}

.appointment-form {
    display: grid;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.appointment-form label {
    font-weight: 600;
}

.appointment-form input,
.appointment-form select {
    padding: 0.5rem;
    border-radius: 5px;
    border: 1px solid #bdc3c7;
    transition: border-color 0.3s ease;
}

.appointment-form input:focus,
.appointment-form select:focus {
    border-color: #18bc9c;
}

.error-message {
    color: #e74c3c;
    font-size: 0.9rem;
}

.submit-button {
    background-color: #18bc9c;
    color: white;
    padding: 0.8rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}

.submit-button:hover {
    background-color: #16a085;
}

/* Reviews Section */
.reviews {
    padding: 2rem;
    background-color: #34495e;
    color: white;
    text-align: center;
}

.review-card {
    background-color: #2c3e50;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 5px;
    animation: slideIn 1s ease-in-out forwards;
}

.rating {
    color: #f1c40f;
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

/* Contact Section */
.contact {
    padding: 2rem;
    background-color: #ecf0f1;
    text-align: center;
}

.contact-form {
    display: grid;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 1rem;
}

.social-icons a {
    color: white;
    margin: 0 0.5rem;
}

.social-icons a:hover {
    color: #18bc9c;
}

.scrool
{
    text-decoration: none;
    color: white;
}