/* Contact Form */
#contactForm {
  display: flex;
  flex-direction: column;
  gap: 1vw;
}

/* Input Fields */
#name, #number, #message {
  padding: 10px;
  border: 1px solid #0ec06a;
  border-radius: 4px;
  font-size: 16px;
  width: 100%; /* Ensure inputs take full width */
}
#captchaInput{
  margin-top: -1.5px;
  padding: 5px 10px;
  border: 1px solid #0ec06a;
  border-radius: 4px;
  font-size: 10px;
  width: 20%; /* Ensure inputs take full width */
}

#captchaInput::-webkit-inner-spin-button,
#captchaInput::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

#captchaInput {
    -moz-appearance: textfield; /* For Firefox */
}


#captcha-flex{
  display: flex;
  justify-content:left;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}

/* Form Labels */
.labelform {
  display: flex;
  justify-content: flex-start;
  margin-left: 0.5vw;
  font-size: 16px;
  color: #333;
}

/* Footer Logo Styling (if needed) */
#footerlogo {
  background-color: white;
  padding: 5px;
  border-radius: 5px;
  margin-bottom: 5px;
}

/* Button Styling */
.buttonRounded {
  border-radius: 5px;
}

/* Modal Styling */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 9999; /* Make sure it's above all content */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Transparent black background */
  padding-top: 100px;
  box-sizing: border-box;
}

/* Modal Content */
.modal-content {
  background-color: #fff;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 500px;
  text-align: left; /* Align content to the left */
  border-radius: 8px;
}

/* Close Button (x) */
.close {
  color: #aaa;
  font-size: 30px;
  font-weight: bold;
  position: absolute;
  top: 10px;
  right: 25px;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* Form Styling */
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Textarea Styling */
textarea {
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #0ec06a;
  border-radius: 4px;
  font-size: 16px;
  resize: vertical; /* Allow vertical resizing */
}

/* Input Fields */
input {
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #0ec06a;
  border-radius: 4px;
  font-size: 16px;
}

/* Button Styling */
button {
  padding: 12px 20px;
  background-color: #0ec06a;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #45a049;
}

/* Hover effect for Contact Us link or button */
.hover-contactUS:hover {
  color: #0ec06a;
}



 /* ApointmentButton Home Page */
 #appoint_ment_2{
    cursor: pointer;
 }

 /* WhatsApp Button  */

 /* General Body Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
    background-color: #f4f4f4;
  }
  
  /* WhatsApp Button Styling */
  .whatsapp-button {
    position: fixed;
    bottom: 85px; /* Distance from bottom */
    right: 20px; /* Distance from right */
    z-index: 1000; /* Stay above other elements */
  }
  
  #whatsapp-btn {
    background-color: #25D366; /* WhatsApp green */
    border: none;
    border-radius: 50%; /* Circular shape */
    width: 65px;
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
  }
  
  #whatsapp-btn img {
    width: 45px;
    height: 45px;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.2)); /* Subtle icon shadow */
  }
  
  /* Hover Effects */
  #whatsapp-btn:hover {
    background-color: #1EBE57; /* Slightly darker green on hover */
    transform: scale(1.1); /* Slight zoom effect */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  }
  
  /* Add a subtle bounce animation when hovered */
  #whatsapp-btn:hover img {
    animation: bounce 0.5s ease-in-out;
  }
  
  /* Keyframes for bounce effect */
  @keyframes bounce {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-5px);
    }
  }
  

  @media (max-width: 1000px){
      
  #bgCenter-contact {
    background-position: center;
}


.slide_img {
  position: relative; /* Ensures the overlay aligns correctly */
}

.dark-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Adjust opacity as needed */
  z-index: 1; /* Ensures it sits above the background but below the content */
}

.slide__content {
  position: relative;
  z-index: 2; /* Keeps content above the overlay */
}
  }



/* line break */

/* flash messages  */

#flashMessage {
  z-index: 1000;
  /* Ensure it appears above other elements */
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
  /* Smooth fade-in and fade-out */
}

@keyframes fadein {
  from {
      opacity: 0;
  }

  to {
      opacity: 1;
  }
}

@keyframes fadeout {
  from {
      opacity: 1;
  }

  to {
      opacity: 0;
  }
}


/* Services pages image */

/* Make the image responsive */
.ttm-box-desc-text #servic-image-re {
max-width: 100%;
height: auto;
display: block;
margin: 0 left; /* Center the image horizontally */
border-radius: 4px;
}

/* Optional: Add spacing around the image */
.ttm-box-desc-text #servic-img-re {
margin-top: 20px;
margin-bottom: 20px;
}



.site-navigation{
  margin-right: 20px;
}

/* #contact-GetTo{
  display: flexbox;
  flex-wrap: wrap;
} */

.featured-content .featured-title a :nth-child(2){
  color: rgb(98, 97, 97);
}


