    body {
      font-family: 'Poppins', sans-serif;
    }
    .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 1px;
  background: #000;
  transition: width 0.3s ease;
}

/* Hover effect */
.nav-link:hover {
  color: #000;
}

/* Animate underline on hover */
.nav-link:hover::after {
  width: 100%;
}

/* Keep underline visible for the active link */
.nav-link.active::after {
  width: 100%;
}
.navbar {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  z-index: 1000; /* Keeps it above content */
}

    /* Hero Section */
    .hero {
      background-color: #3b2f27;
      color: white;
      text-align: center;
      padding-top: 190px;
    }
    .hero h1 {
      font-size: 4.5rem;
      font-weight: 500;
    }
    .hero p {
      font-size: 1.2rem;
      margin-top: 10px;
      font-weight: 300;
    }
    .hero .btn-outline-light {
      margin-top: 25px;
      border-radius: 25px;
      padding: 15px 30px;
    }
    .feature-card1 {
    background: #524136; /* slightly darker than section */
    overflow: hidden;
    height: 100%; /* makes all equal height */
    display: flex;
    flex-direction: column;
  }

  .feature-card1 img {
    width: 100%;
    height: 260px; /* control image height */
    object-fit: cover; /* crop nicely */
  }

  .feature-text {
    padding: 20px;
    font-size: 1rem;
    line-height: 1.5;
    flex-grow: 1; /* makes text align bottom evenly */
    font-weight: 300;
  }

  /* Optional Hover Effect */
  .feature-card1 img {
    transition: transform 0.4s ease;
  }
  .feature-card1:hover img {
    transform: scale(1.05);
  }
  
   .about-section {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 50px;
      max-width: 1200px;
      margin: auto;
    }

    .about-text {
      flex: 1;
      padding-right: 40px;
    }

    .about-text h2 {
      font-size: 36px;
      font-weight: bold;
      margin-bottom: 20px;
    }

    .about-text p {
      font-size: 18px;
      color: #555;
      margin-bottom: 30px;
      line-height: 1.6;
    }

    .about-text button {
      padding: 12px 30px;
      border: 2px solid #000;
      border-radius: 30px;
      font-size: 16px;
      background: transparent;
      cursor: pointer;
    }

    .about-image {
      flex: 1;
      position: relative;
    }

    .about-image img {
      width: 100%;
      border-radius: 20px;
    }

    .image-label {
      position: absolute;
      top: 20px;
      left: 20px;
      background: rgba(0, 0, 0, 0.7);
      color: #fff;
      padding: 5px 12px;
      border-radius: 5px;
      font-size: 14px;
    }

    .testimonial {
      position: absolute;
      bottom: 20px;
      left: 20px;
      background: #f5e9dc;
      padding: 20px;
      border-radius: 10px;
      font-size: 18px;
      max-width: 80%;
    }

    .testimonial p {
      margin: 0;
      font-size: 20px;
      font-weight: 500;
    }

    .testimonial span {
      display: block;
      margin-top: 10px;
      font-size: 16px;
      color: #444;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .about-section {
        flex-direction: column;
        text-align: center;
      }
      .about-text {
        padding-right: 0;
        margin-bottom: 30px;
      }
      .about-image {
        width: 100%;
      }
      .testimonial {
        position: static;
        margin-top: 15px;
      }
    }
    .services-section {
        background-color: #3b2f27;
      display: flex;
      justify-content: center;
      gap: 20px;
      padding: 50px;
      margin: auto;
    }

    .service-card {
      background: #fff;
      border-radius: 12px;
      border-bottom-left-radius: 0px;
      border-bottom-right-radius: 0px;
      overflow: hidden;
      flex: 1;
      display: flex;
      flex-direction: column;
      box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
        max-width: 400px;
    }

    

    .service-card img {
      width: 100%;
      height: 250px;
      object-fit: cover;
    }

    .service-card-content {
      padding: 50px;
    }

    .service-card-content h3 {
      font-size: 20px;
      margin-bottom: 10px;
      color: #000;
    }

    .service-card-content p {
      font-size: 16px;
      color: #555;
      line-height: 1.5;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .services-section {
        flex-direction: column;
        align-items: center;
      }
      .service-card {
        width: 90%;
      }
    }

    .gallery-section {
  text-align: center;
  padding: 80px 20px;
}

.gallery-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.gallery-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 50px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-auto-rows: 250px;
  gap: 20px;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px; /* bottom corners only */
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  transform: translateY(50px);
  opacity: 0;
  transition: transform 0.3s ease;
}

.gallery-img:hover {
  transform: scale(1.03);
}

/* Random height variations */
.gallery-img.tall {
  grid-row: span 2;
}

.gallery-img.wide {
  grid-column: span 2;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .gallery-grid {
    grid-auto-rows: 200px;
  }
}





/* Section */
.workspace-section {
  background-color: #7b6a5e; /* brown background */
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

/* Container */
.workspace-container {
  max-width: 600px;
  margin: 0 auto;
}

/* Title & Subtitle */
.workspace-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.workspace-subtitle {
  font-size: 1.1rem;
  color: #e9e9e9;
  margin-bottom: 40px;
}

/* Form */
.workspace-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.workspace-form label {
  font-size: 1rem;
  text-align: left;
  width: 100%;
  color: #f0f0f0;
}

.workspace-form input {
  width: 100%;
  max-width: 500px;
  padding: 15px 20px;
  border-radius: 10px;
  border: none;
  outline: none;
  font-size: 1rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  color: #333;
}

.workspace-btn {
  background-color: #3a2f28;
  color: #fff;
  border: none;
  padding: 15px 40px;
  font-size: 1rem;
  border-radius: 40px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.workspace-btn:hover {
  background-color: #2b221d;
}

/* Fade-up initial state */
.fade-up {
  opacity: 0;
  transform: translateY(50px);
}

/* Responsive */
@media (max-width: 600px) {
  .workspace-title {
    font-size: 2rem;
  }

  .workspace-btn {
    width: 100%;
    max-width: 500px;
  }
}




.footer-section {
  background-color: #7b6a5e;
  color: #fff;
  padding: 60px 30px 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  flex: 1 1 300px;
}

.footer-column h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-column p,
.footer-column a {
  font-size: 1rem;
  color: #e9e9e9;
  text-decoration: none;
  margin-bottom: 8px;
  display: block;
}

.footer-socials a {
  font-size: 1.4rem;
  color: #fff;
  margin-right: 15px;
  transition: opacity 0.3s ease;
}

.footer-socials a:hover {
  opacity: 0.7;
}

/* Form */
.footer-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 350px;
}

.footer-form label {
  font-size: 0.9rem;
  color: #f5f5f5;
}

.footer-form input {
  padding: 12px 15px;
  border: none;
  border-radius: 10px;
  outline: none;
  font-size: 1rem;
  color: #333;
}

.footer-form button {
  background-color: #3a2f28;
  color: #fff;
  border: none;
  padding: 12px 25px;
  font-size: 1rem;
  border-radius: 40px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.footer-form button:hover {
  background-color: #2b221d;
}

/* Bottom text */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 0.95rem;
  color: #f1f1f1;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-form {
    align-items: center;
  }

  .footer-form input {
    width: 100%;
  }

  .footer-bottom {
    margin-top: 30px;
  }
}






.about-section {
  background-color: #ffffff;
  color: #222;
  margin-top: 100px;
}

.text-dark-brown {
  color: #4c3b31;
}

.rounded112 {
  border-radius: 40px;
}

.about-section img {
  object-fit: cover;
  width: 100%;
  height: 450px;
}

/* Responsive */
@media (max-width: 768px) {
  .about-section h2 {
    text-align: center;
    font-size: 2rem;
  }

  .about-section p {
    text-align: center;
  }

  .about-section .row.text-center {
    justify-content: center;
  }
}







.hero-section .container {
  max-width: 1200px; /* keeps it neat, optional */
}

.hero-section .row {
  justify-content: center; /* centers the left+right columns together */
  align-items: center;
  text-align: left; /* keep text aligned left */
}


.stats-box {
  position: absolute;
  bottom: 30px;
  left: 20%;
  transform: translateX(-50%);
  width: 60%;
}

@media (max-width: 768px) {
  .stats-box {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 1rem;
  }
}
.img-fluid112
{
  width: 550px;
  height: 75vh;
}



/* ===== Section Styling ===== */
.spaces-section {
  background-color: #f4f7fb;
  border-radius: 25px 25px 0 0;
  font-family: "Poppins", sans-serif;
  padding-top: 80px;
  padding-bottom: 80px;
}

/* ===== Image Styling ===== */
.space-img {
  width: 100%;
  height: 75vh;
  object-fit: cover;
  border-radius: 20px;
}

/* ===== Text Styling ===== */
.spaces-section h2 {
  color: #222;
}

.spaces-section p {
  color: #555;
}

.spaces-section h5 {
  font-size: 1.2rem;
  color: #000;
}

.spaces-section .text-muted {
  color: #6c757d !important;
  font-size: 1rem;
}

/* ===== WhatsApp Floating Button ===== */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
  .space-img {
    height: auto;
  }

  .spaces-section {
    text-align: center;
  }

  .spaces-section .text-start {
    text-align: center !important;
  }
}







/* ===== Testimonial Section ===== */
.testimonial-section {
  font-family: "Poppins", sans-serif;
  overflow: hidden;
  height: 75vh !important; 
}
.testimonial-box {
  font-family: "Poppins", sans-serif;
  overflow: hidden;
  height: 75vh !important; 
}

.testimonial-img {
  width: 100%;
  height: 75vh;
  object-fit: cover;

}

/* ===== Right Box ===== */
.bg-dark-brown {
  background-color: #3b2f27; /* same deep brown as screenshot */
}

.stars {
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 3px;
}

.testimonial-user {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

/* ===== WhatsApp Floating Button ===== */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  .testimonial-img {
    height: 40vh;
    border-radius: 20px 20px 0 0;
  }
  .bg-dark-brown {
    padding: 3rem 1.5rem;
  }
}
.testimonial-box
{
  width: 80%;
}




/* ===== Our Location Section ===== */
.location-section {
  background-color: #f7f8f9; /* soft grey like in screenshot */
  font-family: "Poppins", sans-serif;
}

.location-section h2 {
  font-size: 2.5rem;
  color: #1e1e1e;
}

.location-section p.lead {
  font-size: 1.1rem;
  color: #555;
}

.location-details h5 {
  color: #000;
}

.map-container {
  max-width: 700px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* ===== WhatsApp Floating Button ===== */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  .location-section h2 {
    font-size: 2rem;
  }
  .map-container iframe {
    height: 300px;
  }
}



.cabin-plans {
  padding: 80px 5%;
  display: flex;
  justify-content: center;
  margin-top: 120px;
}

.plan-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1200px;
  width: 100%;
}

.plan-card {
  position: relative;
  overflow: hidden;
}


.plan-img img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.4s ease;
}



.plan-info {
  padding: 25px 0px 40px;
  text-align: start;
}

.plan-info h2 {
  font-size: 1.5rem;
  color: #0f172a;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.plan-info .capacity {
  color: #475569;
  font-size: 1rem;
  margin-bottom: 10px;
}

.plan-info .price {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 25px;
}

.plan-info .price span {
  color: #64748b;
  font-weight: 400;
  font-size: 0.95rem;
}

.book-btn {
  background: linear-gradient(135deg, #4f46e5, #3b82f6);
  color: #fff;
  text-decoration: none;
  padding: 12px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(59,130,246,0.3);
}

.book-btn:hover {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  box-shadow: 0 6px 15px rgba(59,130,246,0.4);
  transform: translateY(-2px);
}

/* ✨ Responsive Design */
@media (max-width: 768px) {
  .plan-card {
    border-radius: 18px;
  }
  .plan-info h2 {
    font-size: 1.3rem;
  }
  .book-btn {
    padding: 10px 28px;
    font-size: 0.95rem;
  }
}












.room-section {
  padding: 90px 6%;

}

.room-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
  gap: 60px;
  justify-content: center;
}

.room-card {
  position: relative;
  background: #fff;
  border-radius: 26px;
  overflow: hidden;
}



.room-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-bottom: 1px solid #f1f1f1;
  border-radius: 22px;
  transition: transform 0.6s ease;
}


.room-content {
  padding: 30px 30px 50px;
  position: relative;
  background: #fff;
}

.room-content h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.price {
  font-size: 1.2rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 12px;
}

.price span {
  font-size: 1rem;
  font-weight: 400;
  color: #555;
}

.details {
  font-size: 1rem;
  font-style: italic;
  color: #555;
  margin-bottom: 15px;
}

.arrow-link {
  position: absolute;
  bottom: 25px;
  right: 35px;
  font-size: 1.8rem;
  color: #111;
  text-decoration: none;
  transition: all 0.3s ease;
}

.arrow-link span {
  display: inline-block;
  transition: transform 0.3s ease;
}



.room-card:hover::before {
  opacity: 1;
}

/* ✨ Responsive */
@media (max-width: 768px) {
  .room-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .room-card {
    border-radius: 18px;
  }
  .room-content h2 {
    font-size: 1.4rem;
  }
}

.project-header {
  text-align: center;
  padding: 100px 20px 60px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.project-header h2 {
  font-size: 3rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  position: relative;
  display: inline-block;
  animation: fadeUp 0.8s ease-in-out forwards;
}


.project-header p {
  font-size: 1.1rem;
  font-weight: 400;
  color: #555;
  max-width: 600px;
  margin: 25px auto 0;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s 0.3s ease-in-out forwards;
}

/* Smooth reveal animations */
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes lineGrow {
  0% { width: 0; opacity: 0; }
  100% { width: 80px; opacity: 1; }
}

/* Optional background gradient effect */
.project-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 10%, rgba(59,130,246,0.05), transparent 70%);
  z-index: -1;
}

/* ✨ Responsive */
@media (max-width: 768px) {
  .project-header h2 {
    font-size: 2.2rem;
  }
  .project-header p {
    font-size: 1rem;
  }
}


.project-gallery {
  padding: 80px 6%;
  background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
  overflow: hidden;
  position: relative;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
}

.gallery-item {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(30px);
  opacity: 0;
  animation: riseUp 0.9s ease-out forwards;
}

/* Slight staggered animation */
.gallery-item:nth-child(2) { animation-delay: 0.15s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.45s; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
  filter: brightness(0.95);
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* Glow effect on hover */
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(59,130,246,0.2), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* Entry animation */
@keyframes riseUp {
  0% { opacity: 0; transform: translateY(40px) scale(0.98); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* Responsive padding & spacing */
@media (max-width: 768px) {
  .project-gallery {
    padding: 60px 4%;
  }
  .gallery-grid {
    gap: 1.5rem;
  }
}







/* Section with fixed background image */
.contact-section {
  position: relative;
  background: url('asset/img/03.jpeg') center/cover no-repeat fixed;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  overflow: hidden;
  margin-top: 100px;
}

/* Overlay with glass-like form */
.contact-overlay {
  background: rgb(255, 255, 255);
  backdrop-filter: blur(12px);
  border-radius: 25px;
  padding: 50px;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  animation: fadeSlideUp 1.2s ease-out forwards;
  transform: translateY(30px);
  opacity: 0;
}

.contact-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 0.5rem;
  color: #1c1c1c;
}

.contact-subtitle {
  text-align: center;
  color: #555;
  margin-bottom: 2.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-form label {
  font-weight: 500;
  color: #2d2d2d;
}

.contact-form input,
.contact-form textarea {
  border: 1.5px solid #ccc;
  border-radius: 12px;
  padding: 0.9rem 1rem;
  font-size: 1rem;
  outline: none;
  transition: 0.3s ease;
  background: rgba(255, 255, 255, 0.9);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #333;
  background: #fff;
}

.contact-form button {
  align-self: center;
  padding: 0.9rem 2.5rem;
  background: #332d29;
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  transform: scale(1.05);
  background: #000;
}

/* Fade & Slide Animation */
@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .contact-overlay {
    padding: 30px 25px;
  }
  .contact-title {
    font-size: 2rem;
  }
}


.location-section {
  padding: 100px 8%;
  background: #fdfdfd;
  position: relative;
  overflow: hidden;
}

.location-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 80px;
  animation: fadeInUp 1.2s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

.location-text h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

.location-text p {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.location-info h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 0.3rem;
}

.location-info p {
  color: #666;
  font-size: 1rem;
  margin: 0;
}

.location-map iframe {
  border-radius: 20px;
  filter: grayscale(10%) brightness(98%);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}



/* Fade Up Animation */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .location-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .location-text h2 {
    font-size: 2.3rem;
  }
}










.info-section {
  background: #0d1b2a; /* elegant dark navy tone */
  color: #ffffff;
  padding: 120px 8%;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 100px;
}

.info-container {
  display: flex;
  flex-direction: column;
  gap: 150px;
  align-items: center;
  justify-content: center;
}

.info-box h1 {
  font-size: 3.5rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.info-box p {
  font-size: 1.1rem;
  color: #cfd8e3;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Fade-Up Animation */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease forwards;
}

.fade-up:nth-child(2) {
  animation-delay: 0.3s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Rounded subtle edges for premium look */
.info-section::before,
.info-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 25px;
  background: #0d1b2a;
  border-radius: 0 0 50% 50%;
}

/* Responsive */
@media (max-width: 768px) {
  .info-box h2 {
    font-size: 2.2rem;
  }
  .info-container {
    gap: 100px;
  }
}






.feature-section {
  background: #0d1b2a; /* same elegant dark tone */
  padding: 100px 8%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  width: 100%;
  max-width: 1200px;
}

.feature-card {
  background: #ffffff;
  border-radius: 1.8rem;
  border-bottom-left-radius: 0px;
      border-bottom-right-radius: 0px;
  overflow: hidden;
  transition: all 0.5s ease;
  box-shadow: 0 0 0 rgba(0,0,0,0);
  position: relative;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.feature-img img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.6s ease;
  border-top-left-radius: 1.8rem;
  border-top-right-radius: 1.8rem;
}

.feature-card:hover .feature-img img {
  transform: scale(1.05);
}

.feature-content {
  padding: 55px;
  text-align: left;
  color: #111;
}

.feature-content h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: #000;
  font-weight: 600;
  transition: color 0.3s ease;
}

.feature-card:hover .feature-content h3 {
  color: #0d6efd;
}

.feature-content p {
  color: #555;
  line-height: 1.6;
  font-size: 1rem;
}

/* Fade-up animation */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease forwards;
}






.services-intro {
  background: #0b1a2b;
  color: #fff;
  text-align: center;
  padding: 120px 20px 90px;
  position: relative;
  overflow: hidden;
}

/* Subtle radial glow behind heading */
.services-intro::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  filter: blur(40px);
  opacity: 0.6;
  z-index: 0;
}

/* Main heading */
.services-heading {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
  display: inline-block;

}



.services-intro:hover .services-heading::after {
  width: 60%;
}

/* Subtext */
.services-subtext {
  font-size: 1.1rem;
  color: #d0d6e0;
  margin-top: 25px;
  line-height: 1.6;
  z-index: 1;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1.2s ease 0.3s forwards;
}

/* Animations */
@keyframes textGlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .services-heading {
    font-size: 2.4rem;
  }
  .services-subtext {
    font-size: 1rem;
    padding: 0 10px;
  }
}




/* Section Wrapper */
.amenities-section {
  background: #ffffff;
  color: #000000;
  text-align: center;
  padding: 100px 7%;
  overflow: hidden;
}

/* Header Styling */
.amenities-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.amenities-header p {
  color: #000000;
  font-size: 1.1rem;
  margin-bottom: 50px;
  font-weight: 400;
}

/* Grid Layout */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-items: center;
}

/* Individual Image Box */
.amenity-item {
  width: 100%; /* increased from 80% for tighter alignment */
  aspect-ratio: 1/1;
  border-radius: 20px;
  row-gap: 0;
  gap: 0;
  overflow: hidden;
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1),
              box-shadow 0.5s ease, filter 0.5s ease;
  position: relative;
}

/* Image Styling */
.amenity-item img {
  width: 90%;
  height: 90%;
  border-radius: 20px;
  object-fit: cover;
  filter: brightness(0.95);
  transition: all 0.6s ease;
}

/* Hover Interaction */




/* Scroll Animation */
.amenity-item {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
}

.amenity-item:nth-child(1) { animation-delay: 0.2s; }
.amenity-item:nth-child(2) { animation-delay: 0.4s; }
.amenity-item:nth-child(3) { animation-delay: 0.6s; }
.amenity-item:nth-child(4) { animation-delay: 0.8s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .amenities-section {
    padding: 80px 5%;
  }
  .amenities-grid {
    gap: 15px;
  }
  .amenity-item {
    width: 95%;
  }
}

@media (max-width: 768px) {
  .amenities-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .amenity-item {
    aspect-ratio: 16/10;
  }
}




/* FAQ Section Wrapper */
.faq-section {
  padding: 60px 8%;
  background: #fff;
  color: #111;
  text-align: left;
}

/* Title */
.faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: 1px;
}

/* Grid Layout */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px 50px; /* reduced spacing */
}

/* FAQ Item */
.faq-item {
  background: #fff;
  border-radius: 10px;
  transition: all 0.4s ease;
  padding: 10px 0;
}

.faq-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.faq-item p {
  color: #444;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

/* Hover Animation */
.faq-item:hover {
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 1024px) {
  .faq-section {
    padding: 50px 6%;
  }
  .faq-grid {
    gap: 20px 40px;
  }
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .faq-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}




/* Section Wrapper */
.contact-section {
  background: #ffffff;
  padding: 80px 10%;
  display: flex;
  justify-content: center;
}

/* Container Layout */
.contact-container {
  display: grid;
  width: 500px;
  background: #d0d7df;
  border-radius: 25px;
  overflow: hidden;

  max-width: 1100px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Form Side */
.contact-form {
  padding: 50px 60px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  font-size: 1rem;
  color: #333;
  font-weight: 500;
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1rem;
  margin-bottom: 20px;
  transition: border 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #0078ff;
}

/* Button */
.contact-form button {
  background: #0078ff;
  color: #fff;
  font-size: 1rem;
  padding: 14px 20px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 120px;
}

.contact-form button:hover {
  background: #005fd1;
}

/* Image Side */
.contact-image img {
  width: 360px;
  height: 400px;
  border-radius: 0 22px 22px 0;
  object-fit: cover;

}

/* Responsive Design */
@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-image {
    order: -1;
  }

  .contact-form {
    padding: 40px 30px;
  }
}
