/* General Styling */
.section-title {
    font-size: 2.2rem;
    text-align: center;
    color: #222;
    font-weight: bold;
    margin-bottom: 15px;
}

.section-description {
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    max-width: 800px;
    margin: auto;
    line-height: 1.6;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/images/body.jpeg');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 140px 20px;
    color: white;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
}

.hero p {
    font-size: 1.4rem;
    margin-top: 10px;
}

/* About Section */
.about {
    background: #f8f9fa;
    padding: 80px 20px;
    text-align: center;
}

.about-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    max-width: 1100px;
    margin: auto;
}

.about-item {
    display: flex;
    align-items: center;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 900px;
    width: 100%;
}

.about-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.about-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    height: 250px;
    border-radius: 12px;
}

.about-text {
    flex: 2;
    padding: 20px;
    text-align: left;
}

.about-text h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 15px;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

/* Alternating Layout */
.reverse {
    flex-direction: row-reverse;
}

/* Appointment Booking */
.appointment {
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.contact-buttons {
    margin-top: 20px;
}

.contact-buttons a {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    margin: 5px;
    transition: 0.3s ease;
}


/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 100px 20px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .about-item {
        flex-direction: column;
        text-align: center;
    }

    .reverse {
        flex-direction: column;
    }

    .about-text {
        text-align: center;
    }
}


.whatsapp-btn{
    border: #d63447 solid 2px;
    color: #d63447;
}

.call-btn{
    background-color: #d63447;
    color: #f8f9fa;
}