

/* General Reset */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: rgb(24, 17, 7);
  }
  
  /* Header */
  .header {
    background: #503e49;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .nav a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
  }
  
  .nav a:hover {
    text-decoration: underline;
  }
  
  /* Hero Section */
  .hero {
    background: url('image/background.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 50px 20px;
  }
  
  .hero button {
    background: #00796b;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
  }
  
  .hero button:hover {
    background: #004d40;
  }
  
  
  /* Service Cards Styling */
.services {
  padding: 20px;
  text-align: center;
  background: #f9f9f9;
}

.service-card {
  border: 1px solid #ddd;
  padding: 20px;
  margin: 10px;
  display: inline-block;
  width: 30%;
  vertical-align: top;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  background: white;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card h3 {
  color: #004d40;
}

.service-card p {
  font-size: 0.9em;
  color: #555;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

  
  
  
/* Contact Section */
.contact {
  background: #004d40;
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.contact h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.contact p {
  font-size: 1.1em;
  margin-bottom: 30px;
}

.contact .form-group {
  margin: 10px 0;
}

.contact input, .contact textarea {
  width: 80%;
  max-width: 500px;
  padding: 12px;
  margin: 8px 0;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1em;
  background: #f1f1f1;
}

.contact input:focus, .contact textarea:focus {
  outline: none;
  border-color: #00796b;
}

.contact button {
  background: #00796b;
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 1.1em;
  cursor: pointer;
  border-radius: 5px;
  margin-top: 20px;
}

.contact button:hover {
  background: #004d40;
}

.contact .container {
  max-width: 900px;
  margin: 0 auto;
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
  .contact input, .contact textarea {
    width: 90%;
  }
}

/* WhatsApp Button Styling */
.whatsapp-button {
  position: fixed;
  bottom: 210px;
  right: 5px;
  width: 50px;
  height: 50px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.whatsapp-button img {
  width: 70%;
  height: 70%;
}
/* Contact Button Styling */
.contact-button {
  position: fixed;
  bottom: 140px; /* Adjust this to position it above WhatsApp */
  right: 5px;
  width: 50px;
  height: 50px;
  background-color: #00796b;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.contact-button img {
  width: 70%;
  height: 70%;
}
footer {
  background-color: #004d40;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
}

footer p {
  margin: 5px 0;
}