 
    .hero-section {
      height: 100vh;
      position: relative;
      color: rgb(0, 0, 0);
      display: flex;
      align-items: center;
      justify-content: center;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }

    .hero-overlay {
      background-color: #000000;
      padding: 40px 20px;
      border-radius: 10px;
    }

    .hero-form {
      background: #ffffff;
      padding: 30px;
      border-radius: 10px;
      color: #000;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .btn-custom {
      background-color: #000000;
      color: white;
    }

    @media (max-width: 767px) {
      .hero-overlay {
        padding: 20px;
      }
    }



    /* FAQ Section Styling */
#faq h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.accordion-button {
  background-color: #f8f9fa;
  color: #001f3f;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.accordion-button:hover {
  background-color: #e2e6ea;
}

.accordion-button:not(.collapsed) {
  background-color: #001f3f;
  color: #fff;
}

.accordion-body {
  background-color: #fff;
  color: #333;
  border-top: 1px solid #dee2e6;
}


.amenity-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  border: 1px solid #e4e4e4;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.amenity-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.icon-style {
  font-size: 36px;
  color: #0d6efd;
  margin-bottom: 15px;
}

.amenity-card h5 {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #0d3c61;
}

.amenity-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 0;
}
 


    .modal-header {
      background: linear-gradient(90deg, #002D62, #00509E);
      color: #fff;
      border-bottom: none;
    }
    .modal-header h5 {
      font-size: 1.5rem;
      font-weight: 600;
      letter-spacing: 1px;
    }
    .modal-body {
      background-color: #f8f9fa;
    }
    .form-label {
      font-weight: 500;
    }
    .modal-content {
      border-radius: 15px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }
    .btn-custom {
      background-color: #00509E;
      color: #fff;
      font-weight: 500;
      border-radius: 30px;
    }
    .btn-custom:hover {
      background-color: #003f7f;
    }


    .enquire-side-btn {
  position: fixed;
  top: 50%;
  right: 0;
transform: translateY(80%) rotate(0deg);
  transform-origin: right;
  background-color: #4CAF50;
  color: white;
  padding: 4px 10px;
  border: none;
  border-radius: 0 0 8px 8px;
  font-weight: bold;
  letter-spacing: 1px;
  cursor: pointer;
  z-index: 1050;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 14px;
}
.enquire-side-btn:hover {
  background-color: #388E3C;
}


 .blurred-img {
    filter: blur(4px);
    transition: filter 0.3s ease;
    cursor: pointer;
  }

   