
   .review-container {
     max-width: 800px;
     margin: 20% auto;
   }

   #name {
     font-size: 20px;

   }

   h1 {
     text-align: center;
     color: #333;
     font-size: 40px;
   }

   form {
     background: #fff;
     padding: 20px;
     border-radius: 10px;
     box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
     margin-bottom: 30px;
   }

   input,
   textarea,
   button {
     width: 100%;
     margin: 10px 0;
     padding: 12px;
     font-size: 1rem;
     border-radius: 6px;
     border: 1px solid #ccc;
   }

   textarea {
     resize: none;
     height: 100px;
     font-size: 20px;
   }

   button {
     background: #ff4444;
     color: #fff;
     border: none;
     cursor: pointer;
     font-weight: bold;
     font-size: 20px;
   }

   button:hover {
     background: #e03333;
   }

   .reviews {
     display: grid;
     gap: 20px;
   }

   .review-card {
     background: #fff;
     padding: 15px 20px;
     border-radius: 10px;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
   }

   .review-card h3 {
     margin: 0 0 10px;
     color: #ff4444;
   }

   .review-card p {
     margin: 0;
     color: #555;
   }

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;   /* distance from bottom */
  right: 20px;    /* distance from right */
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}

.whatsapp-float:hover {
  background-color: #1ebe5d;
}
