body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgb(99, 108, 236);
    padding: 10px;
    text-align: center;
}

.navbar a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}

section {
    padding: 80px 20px;
}

#home {
    background-image: url("images/Intro.jpg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    padding: top :140px;
    min-height :100vh;
}

footer {
    text-align: center;
    padding: 20px;
    background: #138166ff;
}
#home::before{
    content: "";
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}
.btn{
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: gold;
    color: black;
    text-decoration: none;
    border-radius: 5px;
}
.about{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    max-width: 700px;
    margin: auto;
}
.about-text{
    flex: 1;
}
.about-image img{
    width: 80%;
    border-radius: 10px;
}
.services {
    max-width: 1000px;
    margin: auto;
    padding: 40px 20px;
}

.service-box {
    background: #f5f5f5;
    padding: 20px;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.services {
    max-width: 1100px;
    margin: auto;
    padding: 60px 20px;
}

.services h2 {
    text-align: center;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.service-box {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-box:hover{
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
#services {
    background: 
        linear-gradient(rgba(255,255,255,0.88), rgba(255,255,255,0.88)),
        url("images/treatment-\ bg.jpg.jpg") center/cover no-repeat;
    
    padding: 60px 20px;
}
.service-box img{
    width: 196px;
    margin-bottom: 80px;
}
#OTHER SERVICES{
    background-color: #101d31;
}
#testimonials {
    background: 
        linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
        url("images/testimonials-bg.jpg") center/cover no-repeat;
    
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.testimonial-box {
    max-width: 700px;
    margin: 20px auto;
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 8px;
}
.appointment-form {
    max-width: 400px;
    margin: auto;
    display: flex;
    flex-direction: column;
}

.appointment-form input,
.appointment-form textarea {
    padding: 10px;
    margin: 8px 0;
    font-size: 16px;
}

.appointment-form button {
    padding: 10px;
    background: #0b5ed7;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.appointment-form button:hover {
    background: #084298;
}
#contact {
    text-align: center;
    padding: 60px 20px;
    background: #f4f6f8;
}

.whatsapp-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 25px;
    background: #25D366;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    padding: 15px;
        border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
}
.Email-btn{
    display: inline-block;
     margin-top: 20px;
    padding: 15px 25px;
    background: #31dfd0;
    color: #f7f6f0;
        border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

