html, body {
    overflow-x: hidden; /* Prevents side scrolling */
    width: 100%; /* Ensures full width */
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #f5f5f5;
}

nav {position: fixed;
    width: 100%;
    z-index: 1000; 
    background-color: #93fbb0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px ;
}

logo {
    height: 50px;
    width: auto;
}

 a {
    color: rgb(36, 31, 31);
    text-decoration: none;
    margin: 0 15px;
    font-size: 18px;
    transition: color 0.3s;
}

 a:hover {
    color: rgb(104, 207, 34);
}

.book-now, .location-button {
    background-color:#232724;
    padding: 8px 15px;
    border-radius: 5px;
    color: rgb(229, 248, 240);
    transition: background-color 0.3s, color 0.3s;
}

.book-now:hover {
    background-color: white;
    color: black;
}

header {
    text-align: center;
    padding-top: 80px;
}
.hero-image {
    position: relative;
    display: flex; 
    justify-content: center; 
    align-items: center;
    width: 100%; 
    max-width: 600px; 
    margin: 0 auto; 
    text-align: center; }



.location-button {
    position: absolute;
    top: 80%; 
    left: 50%; 
    transform: translate(-50%, -50%);
    border: solid 1px #1ec44d;
    padding: 30px;
    border-radius: 10px;
    cursor: pointer;
    
}



h1{font-family: "Bona Nova SC", serif;
    font-weight: 700;
    font-style: normal;}
    h2{font-family: "Smooch Sans", serif;
        font-optical-sizing: auto;
        font-weight: 500;
        font-style: normal;}

.hero {
    text-align: center;
    padding: 20px;
}

.hero-image {
    max-width: 500px;
    height: 300;
    border-radius: 5px;
}

.services, .why-choose-us, .contact {
    padding: 20px;
    background-color: white;
    margin: 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}



.services li {
    padding: 5px 0;
}
.services-images{ display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px;}



footer {
    background-color: black;
    color: white;
    text-align: center;
    padding: 10px;
}

form {
    width: 50%;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px gray;
}
input, textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid gray;
    border-radius: 5px;
}
.buttons {
    display: flex;
    justify-content: space-between;
}
button {
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    width: 48%;
}
.email-btn {
    background-color: green;
    color: white;
}
.whatsapp-btn {
    background-color: #25D366;
    color: white;
}
button:hover {
    opacity: 0.8;
}

