.location-advantage {
  background: #f9f9f9;
  padding: 40px 0;
}

.section-title {
  font-size: 28px;
  font-weight: 600;
  color: #2c3e50;
}

.location-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.location-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 16px;
  color: #333;
  font-weight: 500;
}

.location-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #28a745;
  font-weight: bold;
  font-size: 18px;
}
.amenities-section {
  padding: 60px 20px;
  background: linear-gradient(to right, #f4f8fb, #eaf0f7);
}

.section-title {
  font-size: 18px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 40px;
}

.amenity-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 25px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.amenity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}

.amenity-card img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.amenity-card:hover img {
  transform: scale(1.1);
}

.amenity-card p {
  font-size: 18px;
  color: #333;
  font-weight: 500;
}

/* Entrance animation */
@keyframes fadeInUp {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive text sizes */
@media (max-width: 767px) {
  .section-title {
    font-size: 2rem;
  }

  .amenity-card p {
    font-size: 0.95rem;
  }
}

.img-responsive {
  transition: transform 0.5s ease;
  will-change: transform;
}

.img-responsive:hover {
  transform: scale(1.1); /* zoom in */
}
.btn-wrapper .btn {
  background-color: #244a69;
  color: #fff;
  padding: 10px 22px;
  font-size: 16px;
  border-radius: 30px;
  text-transform: uppercase;
  transition: background 0.3s ease;
}

.btn-wrapper .btn:hover {
  background-color: #244a69;
}
 
h2{
  color: #244a69 !important;
}
.location-img img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.gallery-slider-4col {
  padding: 40px 0;
  background-color: #ffffff;
}

.section-title {
  font-size: 28px;
  font-weight: bold;
  color: #222;
}

.slider-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.slider-track {
  display: flex;
  transition: transform 1s ease-in-out;
}

.slide-set {
  display: flex;
  justify-content: space-between;
  min-width: 100%;
  gap: 15px;
  padding: 10px;
  box-sizing: border-box;
}

.slide-set img {
  width: 24%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
/* General Section Styling */
.price-section {
  padding: 60px 0;
  background: linear-gradient(to right, #f7f8fc, #e6ecf5);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 40px;
}

/* Price Card Styling */
.price-card {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 30px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Text Styling Inside Card */
.card-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.card-size {
  font-size: 20px;
  color: #555;
  margin: 6px 0;
}

.card-price {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin-bottom: 15px;
}

/* Button Styling */
.enquire-btn {
  background-color: #244a69;
  border: none;
  border-radius: 30px;
  padding: 10px 25px;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
}

.enquire-btn:hover {
  background-color: #244a69;
  transform: scale(1.05);
}

/* Responsive tweaks */
@media (max-width: 767px) {
  .card-title {
    font-size: 1.2rem;
  }

  .card-size, .card-price {
    font-size: 0.95rem;
  }

  .section-title {
    font-size: 2rem;
  }
}


/* Responsive Tweaks */
@media (max-width: 992px) {
  .slide-set img {
    width: 48%;
  }
}

@media (max-width: 576px) {
  .slide-set {
    flex-wrap: wrap;
  }
  .slide-set img {
    width: 100%;
    margin-bottom: 10px;
  }
}
.copyright p{
    color: #fff  !important;
}
.copyright a{
    color: #fff  !important;
  font-weight: 600;
}