body{
    background-color: black;
    color: blanchedalmond;
}

  .carousel-img {
  height: 100vh;        /* 👈 adjust this value */
  object-fit: cover;
  width: 100%;
  /* prevents distortion */
}

.whatsapp-float {
  position:fixed;
  margin-bottom:140px ;
  width: 55px;
  height: 55px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index:1000 ;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
  color: #fff;
  text-decoration: none;
}
.modal-backdrop.show {
      background-color: rgba(0, 0, 0, 0.6);
    }

    .modal-dialog {
      max-width: 600px;
      margin: 2rem auto;
    }

    .modal-content {
      border-radius: 1rem;
      box-shadow: 0 5px 20px rgba(0,0,0,0.3);
      border: none;
      overflow: hidden;
    }

    .modal-header {
      background: linear-gradient(90deg, green, #10f2aa);
      color: white;
      border-bottom: none;
    }

    .modal-title {
      font-weight: 600;
    }

    .btn-close {
      filter: brightness(0.8);
    }

    .btn-close:hover {
      filter: brightness(1.2);
    }

    .modal-body {
      font-size: 16px;
      color: #495057;
      padding: 1.5rem;
    }

    .modal-footer {
      border-top: 1px solid #dee2e6;
    }

    .modal-footer .btn-primary {
      background-color: green;
      border: none;
    }

    .modal-footer .btn-primary:hover {
      background-color:#5c636a;
    }

    .modal-footer .btn-secondary {
      background-color: #6c757d;
      border: none;
    }

    .modal-footer .btn-secondary:hover {
      background-color: #5c636a;
    }
/* FOR OTHERS*/
 .carousel-item img {
      height: 450px;
      object-fit: cover;
    }

    /* Make captions readable on all screens */
    .carousel-caption {
      background: rgba(0, 0, 0, 0.55);
      padding: 1rem;
      border-radius: 10px;
    }

    /* Smaller text on mobile */
    @media (max-width: 767px) {
      .carousel-caption h5 {
        font-size: 1rem;
      }

      .carousel-caption p {
        font-size: 0.85rem;
      }
    }
