body {
  margin: 0;
  font-family: "Poppins", sans-serif;
}



/* Hero Background */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: url("../assest/room1.png") center/cover
    no-repeat;
  display: flex;
  align-items: center;
}

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 26, 63, 0.65);
}

/* Content */
.hero-content {
  position: relative;
  max-width: 720px;
  color: #fff;
}

/* Badge */
.hero-badge {
  display: inline-block;
  background: #ff7b8b;
  color: #111;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 22px;
}

/* Heading */
.hero-title {
  font-family: "Playfair Display", serif;
  font-size: 72px;
  line-height: 1.05;
  margin-bottom: 24px;
}

/* Colored Words */
.text-peace {
  color: #ff7b8b;
}

.text-brand {
  color: #23d6c6;
}

/* Description */
.hero-desc {
  max-width: 560px;
  font-size: 16px;
  opacity: 0.95;
  margin-bottom: 36px;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-primary-custom {
  background: #23d6c6;
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  border: none;
}

.btn-primary-custom:hover {
  background: #1bbcad;
  color: #fff;
}

.btn-outline-custom {
  border: 2px solid #fff;
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
}

.btn-outline-custom:hover {
  background: #fff;
  color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 46px;
  }

  .hero-desc {
    font-size: 15px;
  }
}

.why-section {
  padding: 90px 0;
  background: #ffffff;
}

/* Title */
.why-title {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  font-weight: 700;
  color: #1b1a44;
}

.why-underline {
  width: 100px;
  height: 6px;
  background: #0a9c88;
  border-radius: 10px;
  margin: 14px auto 0;
}

/* Card */
.why-card {
  background: #f9fbfc;
  padding: 40px 28px;
  border-radius: 22px;
  height: 100%;
  transition: all 0.4s ease;
}

.why-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* Icon Box */
.icon-box {
  width: 58px;
  height: 58px;
  background: #ffffff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 26px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

/* Icon Colors */
.icon-green {
  color: #0a9c88;
}

.icon-pink {
  color: #ff6f8f;
}

.icon-blue {
  color: #4b5cff;
}

/* Text */
.why-card h4 {
  font-size: 22px;
  font-weight: 600;
  color: #0f145b;
  margin-bottom: 14px;
}

.why-card p {
  font-size: 15px;
  color: #5f6388;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .why-title {
    font-size: 32px;
  }
}

.retreat-section {
  background: linear-gradient(180deg, #1b1a44, #23225a);
  padding: 100px 0;
  color: #ffffff;
}

/* Image */
.retreat-image {
  border: 3px solid #ff7b8b;
  border-radius: 26px;
  overflow: hidden;
  max-width: 550px;
}

.retreat-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Title */
.retreat-title {
  font-family: "Playfair Display", serif;
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 22px;
}

/* Description */
.retreat-desc {
  font-size: 16px;
  color: #d6d7f2;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 28px;
}

/* List */
.retreat-list {
  list-style: none;
  padding: 0;
  margin-bottom: 36px;
}

.retreat-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 16px;
  font-size: 16px;
  color: #ffffff;
}

.retreat-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #23d6c6;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}

/* Link */
.retreat-link {
  color: #ff7b8b;
  font-weight: 600;
  background: rgb(67, 65, 65);
  text-decoration: none;
  border: 1px solid black;
  border-radius: 20px;
  font-size: 16px;
  padding: 10px;
}

.retreat-link span {
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.retreat-link:hover span {
  transform: translateX(6px);
}

/* Responsive */
@media (max-width: 768px) {
  .retreat-title {
    font-size: 32px;
  }

  .retreat-image {
    margin: 0 auto;
  }
}

.testimonial-section {
  padding: 100px 0;
  background: #fbf8f9;
}

/* Title */
.testimonial-title {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  font-weight: 700;
  color: #1b1a44;
}

.testimonial-underline {
  width: 90px;
  height: 6px;
  background: #0a9c88;
  border-radius: 10px;
  margin: 14px auto 0;
}

/* Card */
.testimonial-card {
  background: #ffffff;
  padding: 38px 30px;
  border-radius: 22px;
  height: 100%;
  transition: all 0.4s ease;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  border-top: 5px solid #23d6c6;
}

.testimonial-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.12);
}

/* Stars */
.stars {
  color: #ff6f8f;
  font-size: 18px;
  margin-bottom: 18px;
}

/* Text */
.testimonial-text {
  font-size: 15.5px;
  line-height: 1.7;
  color: #3f4375;
  margin-bottom: 26px;
}

/* Name */
.testimonial-card h5 {
  font-size: 18px;
  font-weight: 600;
  color: #0f145b;
  margin-bottom: 4px;
}

/* Role */
.testimonial-card span {
  font-size: 13px;
  color: #6a6f9c;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-title {
    font-size: 32px;
  }
}


.location-section {
  background: #14143a;
  border-radius: 40px;
  overflow: hidden;
  margin: 100px ;
}

/* Left Panel */
.location-info {
  padding: 80px 70px;
  background: linear-gradient(160deg, #18184b, #10102f);
}

/* Title */
.location-title {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 700;
  color: #ff8fab; /* Rose gold */
  margin-bottom: 50px;
}

/* Info Blocks */
.info-block {
  display: flex;
  gap: 18px;
  margin-bottom: 40px;
}

.info-block small {
  font-size: 12px;
  letter-spacing: 1.2px;
  color: #4deeea; /* Teal accent */
  font-weight: 600;
}

.info-block p,
.info-block h5 {
  color: #e6e7ff;
  margin: 6px 0 0;
}

.info-block h5 {
  font-size: 24px;
  font-weight: 600;
}

.info-block h5 span {
  font-size: 14px;
  color: #9aa0ff;
}

/* Icon Box */
.icon-box {
  width: 52px;
  height: 52px;
  background: rgba(255, 143, 171, 0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff8fab;
  font-size: 22px;
  flex-shrink: 0;
}

/* Sub Info */
.sub-info {
  font-size: 14px;
  color: #c7c9ff;
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

/* Email */
.email {
  color: #8df3e4;
}

/* Map */
.map-box iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: none;
  filter: grayscale(100%) contrast(1.1);
}

/* Responsive */
@media (max-width: 992px) {
  .location-info {
    padding: 60px 30px;
  }

  .location-title {
    font-size: 34px;
  }
}


