

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
    }

    .navbar {
      background-color: #1c1c1c;
    }

    .navbar-brand {
      font-weight: bold;
      color: #fff !important;
    }

    .navbar-nav .nav-link {
      color: #fff !important;
      margin-left: 15px;
    }

   


    .section-heading {
      margin: 60px 0 30px;
      text-align: center;
      font-size: 2rem;
      color: #333;
    }

    .amenity-box img {
      width: 60px;
      height: 60px;
      margin-bottom: 10px;
    }

    .gallery-img {
      width: 100%;
      height: auto;
      border-radius: 8px;
      transition: transform 0.3s;
    }

    .gallery-img:hover {
      transform: scale(1.05);
    }

    .footer {
      background: #000;
      color: white;
      padding: 30px 0;
    }

    .form-control {
      border-radius: 8px;
    }

    .btn-primary {
      border-radius: 8px;
      padding: 10px 25px;
    }
 .gallery-img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      border-radius: 14px;
      transition: transform .25s ease, box-shadow .25s ease;
      cursor: pointer;
    }
    .gallery-item:hover .gallery-img {
      transform: translateY(-4px) scale(1.02);
      box-shadow: 0 10px 25px rgba(0,0,0,.15);
    }
    .modal-img {
      width: 100%;
      height: auto;
      border-radius: 12px;
    }
    .modal-header {
      border-bottom: none;
    }
    .btn-close {
      box-shadow: none !important;
    }

  .call-btn {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: #dc3545;   /* Red color */
  color: #fff;
  padding: 15px 18px;
  font-size: 22px;
  text-decoration: none;
  border-radius: 8px 0 0 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  z-index: 9999;
  transition: all 0.3s ease;
}
.call-btn:hover {
  background: #b02a37;  /* Darker red on hover */
}