body {
    background-color: #3e3e3e;
    color: white;
  }

/* Whatsapp logo */
 /* for desktop */
 .whatsapp_float {
  position: fixed;
  width: 45px;
  height: 45px;
  bottom: 90px;
  right: 25px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}

.whatsapp-icon {
  margin-top: 16px;
}

/* for mobile */
@media screen and (max-width: 767px) {
  .whatsapp-icon {
      margin-top: 10px;
  }

  .whatsapp_float {
      width: 40px;
      height: 40px;
      bottom: 20px;
      right: 10px;
      font-size: 22px;
  }
}

/* Scroll to Top Button */
.go-to-top {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 999;
  background-color: #f5c96a;
  color: #3e3e3e;
  border: none;
  border-radius: 50%;
  padding: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: none;
  transition: background-color 0.3s, transform 0.2s;
  /* animation: bounce 1.2s ease-in-out infinite; */
  }
  
  .go-to-top:hover {
      background-color: #f5c96acc;
      transform: scale(1.1);
  }
  
  .go-to-top:active {
      transform: scale(0.95);
  }
  
  .go-to-top svg.icon {
      width: 24px;
      height: 24px;
  }
  .bg-dark-overlay {
    background-color: rgba(62, 62, 62, 0.8);
  }
  .highlight {
    color: #f5c96a;
  }
  .card-custom {
    
    background-color: #3e3e3e;
    border: none;
    border-radius: 1rem;
  }
  .form-control {
    background-color: #3e3e3e;
    color: white;
    border: 1px solid #555;
  }
  .form-control:focus {
    border-color: #f5c96a;
    box-shadow: 0 0 0 0.2rem rgba(245, 201, 106, 0.25);
    outline: none;
    transition: box-shadow 0.3s ease;

  }
  .btn-highlight {
    background-color: #f5c96a;
    /* color: #3e3e3e; */
    transition: background-color 0.3s ease;
  }
  .btn-highlight:hover, .btn-highlight:disabled {
    background-color: #f5c96a;
    color: #2e2e2e; 
    border: none;
  }
  iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 1rem;
  }
  .bg-custom-secondary:hover {
    transform: translateY(-10px);
  }
  .text-golden {
  color: #f5c96a;
  }
  .bg-custom-secondary {
    transition: transform 0.3s ease;
    background-color: #3e3e3e;
  }