/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

/* ==============================
   REINA NEUE MAIN FAMILY
   ============================== */

/* Light - 300 */
@font-face {
  font-family: "ReinaNeue";
  src: url("fonts/reinaneue/ReinaNeue-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}

/* Light Italic */
@font-face {
  font-family: "ReinaNeue";
  src: url("fonts/reinaneue/ReinaNeue-LightItalic.otf") format("opentype");
  font-weight: 300;
  font-style: italic;
}

/* News (Regular) - 400 */
@font-face {
  font-family: "ReinaNeue";
  src: url("fonts/reinaneue/ReinaNeue-News.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

/* News Italic */
@font-face {
  font-family: "ReinaNeue";
  src: url("fonts/reinaneue/ReinaNeue-NewsItalic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
}

/* Roman - 500 */
@font-face {
  font-family: "ReinaNeue";
  src: url("fonts/reinaneue/ReinaNeue-Roman.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}

/* Italic (500) */
@font-face {
  font-family: "ReinaNeue";
  src: url("fonts/reinaneue/ReinaNeue-Italic.otf") format("opentype");
  font-weight: 500;
  font-style: italic;
}

/* Bold - 700 */
@font-face {
  font-family: "ReinaNeue";
  src: url("fonts/reinaneue/ReinaNeue-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

/* Bold Italic */
@font-face {
  font-family: "ReinaNeue";
  src: url("fonts/reinaneue/ReinaNeue-BoldItalic.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
}

/* Black - 900 */
@font-face {
  font-family: "ReinaNeue";
  src: url("fonts/reinaneue/ReinaNeue-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
}

/* Apply font and basic resets */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: "Poppins", sans-serif;

  font-size: 16px;
  line-height: 1.5;
  color: #000000;
  background-color: #fffbe6;
  scroll-behavior: smooth;
  /* overflow-x: hidden;  */
}

/* Links */
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

a:hover {
  color: #b85b00;
}

/* Custom spacing utility */
.section {
  padding: 60px 0;
}

/* Headings */
h1,
h2,
h3,
h4,
h5 {
  font-weight: 600;
  font-family: "ReinaNeue", sans-serif;
}

/* ::selection {
  background: #ffffff;   
  color: #000;           
} */

::selection {
  background: #b85b00;
  color: white;
}

.gap-12 {
  gap: 12px;
}
/* Buttons */

.spaceT48 {
  margin-top: 48px;
}

.spaceT28 {
  margin-top: 28px;
}

.spaceT24 {
  margin-top: 20px;
}

.spaceT32 {
  margin-top: 26px;
  margin-bottom: 24px;
}

.spaceT100 {
  padding-top: 120px;
}

@media (max-width: 1400px) {
  .spaceT48 {
    margin-top: 32px;
  }
}
@media (max-width: 991px) {
  .spaceT48 {
    margin-top: 48px;
  }
  .spaceT32 {
    margin-top: 12px;
  }
  .spaceT100 {
    padding-top: 70px;
  }
  .spaceT24 {
    margin-top: 16px;
  }
}
@media (max-width: 767px) {
  .spaceT-4 {
    margin-top: 3px !important;
  }
}

@media (max-width: 990px) {
.spaceT-M32{
  margin-top: 32px;
}
}

.bold-600{
  font-weight: 600;
}
.bold-700{
  font-weight: 700 !important;
}
.bold-800{
  font-weight: 800;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
/* navbar start */

/* to give space around navbar  */

/* .navbar-custom .navbar-cont {

  padding: 10px 150px;

}
@media (max-width: 767px) {
  .navbar-custom .navbar-cont {
    padding: 10px 10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .navbar-custom .navbar-cont {
    padding: 10px 10px;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .navbar-custom .navbar-cont {
    padding: 10px 20px;
  }
}
@media (min-width: 1200px) and (max-width: 1500px) {
  .navbar-custom .navbar-cont {
    padding: 10px 20px;

  }
} */

/* end  */

.navbar-brand {
  margin-left: 20px;
}

/* NAVBAR STYLES */
@media (max-width: 767px) {
  .navbar-brand {
    height: 64px;
    width: 64px;
    margin-left: 5px;
  }
}

.navbar-custom .nav-link {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #ffffff !important;
  font-weight: 500;
  line-height: 100%;
}

.navbar-custom {
  background: #b85b00;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: none;
}

.navbar-toggler {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.navbar-cont {
  position: relative;
  border-bottom: none; /* remove default border */
}

.navbar-cont::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 17px; /* cut left */
  right: 17px; /* cut right */
  height: 1px;
  background-color: #ff9a29;
}

/* ============================
   NAV LINK HOVER + ACTIVE STYLE
   ============================ */

/* Smooth animation */
.navbar-custom .nav-link {
  position: relative;
  transition: color 0.3s ease;
}

/* Hover text color */
.navbar-custom .nav-link:hover {
  color: #ffd6ae !important; /* slightly lighter shade */
  text-shadow: 0 0 1px #fff;
}

/* Active link text color */
.navbar-custom .nav-link.active {
  color: #ffd6ae !important;
  text-shadow: 0 0 1px #fff;
}
@media (min-width: 991px) {
  /* Animated underline (initially hidden) */
  .navbar-custom .nav-link::before {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: #ffd6ae;
    transition: width 0.3s ease;
  }

  .navbar-custom .nav-link:hover::before {
    clip-path: inset(0 15px 0 8px);
    width: 100%;
  }

  .navbar-custom .nav-link.active::before {
    clip-path: inset(0 15px 0 8px);
    width: 100%;
  }
}

@media (min-width: 991px) {
  .navbar-custom .container {
    padding-right: 10px !important;
    padding-left: 10px !important;
  }
  /* Add "|" only after normal nav links */
  .navbar-nav .nav-item:not(:last-child) .nav-link::after {
    content: "|";
    color: #ffffff;
    margin-left: 12px;
    font-weight: 300;
  }

  .navbar-nav .nav-item:nth-last-child(2) .nav-link::after {
    content: "";
  }

  /* Style the nav links (optional) */
  .navbar-nav .nav-link {
    position: relative;
  }

  /* Remove | for the last nav item */
  .navbar-custom .nav-item:last-child .nav-link::after {
    content: "";
  }

  /* Remove | after FAQ'S */
  .navbar-nav .nav-item:nth-child(6) .nav-link::after {
    content: "" !important;
  }
}

.btn-bookEnq {
  padding: 10px 14px;
  background-color: #ffffff;
  color: #b85b00;
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  border: 2px solid #ffffff !important;
  margin-right: 12px;
  margin-left: 24px;
  font-family: "Poppins", sans-serif;
}

.btn-bookEnq:hover {
  background-color: #99520d;
  color: #ffffff;
}

@media (max-width: 1333px) and (min-width: 991px) {
  .navbar-custom .nav-link {
    font-size: 14px;
  }
  .lang-text {
    font-size: 14px !important;
  }
  .lang-sub-text {
    font-size: 14px !important;
  }
}
@media (max-width: 1180px) and (min-width: 991px) {
  .btn-bookEnq {
    padding: 10px 8px;
    font-size: 14px;
    /* margin-right: 2px; */
    margin-left: 2px;
  }
  /* .navbar-custom .nav-link {
  font-size: 14px;
} */
}
@media (max-width: 776px) {
  .navbar-custom .nav-link {
    font-size: 14px;
  }
  .btn-bookEnq {
    margin-bottom: 12px;
    font-size: 16px;
  }
}
@media (max-width: 1007px) and (min-width: 991px) {
  .navbar-custom .nav-link {
    font-size: 12px;
  }
}
/* BANNER STYLES */
.banner-wrapper {
  position: relative;
  background-image: linear-gradient(to bottom, #b85b00 40%, transparent 40%),
    url("images/banner-bg-vector.webp");
  background-size: 100% 100%, contain;
  background-repeat: no-repeat;
  background-position: top, bottom;
  /* padding: 4px 0 157px; */
  padding: 4px 0 157px;
  overflow: hidden;
}

/* Move all responsive max-widths here */
/* @media (max-width: 1399.98px) {
  .banner-wrapper::before {
    max-width: 1140px;
  }
}
@media (max-width: 1199.98px) {
  .banner-wrapper::before {
    max-width: 960px;
  }
}
@media (max-width: 991.98px) {
  .banner-wrapper::before {
    max-width: 720px;
  }
} */

@media (max-width: 1119px) {
.banner-wrapper {
  padding: 4px 0 57px;
}
}
@media (max-width: 767.98px) {
  /* .banner-wrapper::before {
    max-width: 540px;
  } */

  .banner-wrapper::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 20px);
    /* max-width: 1320px; */
    max-width: 540px;
    height: calc(40% - 19px); /* only orange zone */
    clip-path: polygon(
      5px 0,
      /* top-left: tiny 1px gap */ calc(100% - 5px) 0,
      /* top-right: tiny 1px gap */ 100% 5px,
      /* tiny diagonal top-right */ 100% calc(100% - 15px),
      /* right side down → stops 15px before bottom */ calc(100% - 15px) 100%,
      /* bottom-right: full 15px open corner */ 15px 100%,
      /* bottom-left: full 15px open corner */ 0 calc(100% - 15px),
      /* up the left side */ 0 5px /* tiny diagonal top-left */
    );
    /* border-top: 1px solid #ff9a29; */
    border-left: 1px solid #ff9a29;
    border-right: 1px solid #ff9a29;
    pointer-events: none;
    z-index: 10;
  }
}
@media (max-width: 575.98px) {
  .banner-wrapper::before {
    width: calc(100% - 20px);
    max-width: none;
  }
}
/* Keep your carousel wrapper just for inner spacing */
.carousel-border-wrapper {
  padding: 15px 5px;
  background: transparent;
  position: relative;
  z-index: 2;
}

.carousel-inner {
  border: 4px solid #ff9a29;
}
.carousel-inner img {
  height: 100%;
  object-fit: cover;
}

.carousel-container {
  max-width: 100%;
  margin: auto;
}

@media (max-width: 767px) {
  .banner-wrapper {
    background-image: linear-gradient(to bottom, #b85b00 45%, transparent 45%),
      url("images/banner-bg-vector.webp");
    background-size: 100% 100%, contain;
    padding: 6px 0 25px;
  }

  .carousel-border-wrapper {
    padding: 4px 8px;
    background: transparent;
    position: relative;
    z-index: 2;
  }
}

/* Remove any border from carousel itself */
#bannerCarousel,
.carousel-item img {
  border: none !important;
  outline: none;
}

/* Banner indicators – perfectly round and centered below carousel */
.banner-wrapper .carousel-indicators {
  bottom: 20px;
}

.banner-wrapper .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.49);
  border-radius: 50%;
  opacity: 0.5;
  border: none;
  margin: 0 3px;
  transition: all 0.3s ease;
}

.banner-wrapper .carousel-indicators .active {
  opacity: 1;
  background-color: #ffffff;
  transform: scale(1.2);
}

/* ───── Hamburger Icon (3 lines) ───── */

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-toggler {
  border: none;
  background-color: transparent !important;
  width: 50px;
  height: 41px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px 1px #fffbe6;
}

/* Carousel caption wrapper */
.carousel-caption-custom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
  width: 90%;
  max-width: 1100px;
  padding: 20px;
}

@media (max-width: 576px) {
  .banner-wrapper .carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
  }
  .carousel-caption-custom {
    padding: 15px 8px !important;
  }
}

/* Heading */
.carousel-caption-custom h1 {
  font-size: clamp(1.5rem, 5vw, 85px);
  font-weight: 400;
  color: #f6f6f6;
  letter-spacing: 1px;
  margin-bottom: 12px;
  font-family: "ReinaNeue" !important;
}

/* Paragraph */
.carousel-caption-custom p {
  font-size: clamp(1rem, 2.5vw, 45px);
  color: #f6f6f6;
  opacity: 0.95;
  margin-bottom: 30px;
  font-family: "ReinaNeue" !important;
}

/* Buttons */
.btn-banner-section {
  column-gap: 32px;
  flex-wrap: wrap;
}
.carousel-caption-custom .btn-banner {
  font-family: "Poppins", sans-serif;
  font-size: clamp(10px, 1.2vw, 20px);
  font-weight: 400;
  color: #f6f6f6;
  letter-spacing: 0.5px;
  border-radius: 60px;
  border: 2px solid transparent;
  box-shadow: 0px 0px 5.5px 0px #00000040;
  transition: all 0.35s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  text-align: center;
  margin-top: 3vw;
}

/* Explore Packages Button */
.btn-explore-pkg {
  background-color: #b85b00;
  border: 2px solid #b85b00;
  padding: 8px 8px 8px 20px;
}

/* Hover state */
.btn-explore-pkg:hover,
.btn-explore-pkg:active,
.btn-view-trailer.active {
  background-color: transparent;
  border: 2px solid #b85b00;
}

/* View Trailer Button */
.btn-view-trailer {
  background-color: #ff9a29;
  border: 2px solid #ff9a29;
  color: #ffffff;
  padding: 12px 46px;
  transition: all 0.35s ease;
}

.btn-view-trailer:hover,
.btn-view-trailer:active,
.btn-view-trailer.active {
  background-color: transparent !important;
  border-color: #ff9a29 !important;
}
/* Button icons */
.btn-explore-pkg img {
  height: clamp(20px, 3vw, 42px);
  width: clamp(20px, 3vw, 42px);
}
.btn-view-trailer img {
  height: clamp(16px, 2.2vw, 32px);
  width: clamp(16px, 2.2vw, 32px);
}

@media (max-width: 768px) {
  .btn-banner-section {
    column-gap: 12px;
  }

  .btn-explore-pkg {
    padding: 8px 8px 8px 12px;
  }
  .btn-view-trailer {
    padding: 8px 24px;
  }

  #bannerCarousel .carousel-item {
    height: 250px;
  }
  .banner-wrapper .carousel-indicators {
    bottom: 8px;
  }

  /* .banner-wrapper .carousel-indicators {
 display: none;
} */
  /* .carousel-control-prev,
  .carousel-control-next {
    display: flex; /* show arrows on mobile */
  /* font-size: 16px;
  } */
  .carousel-caption-custom h1 {
    margin-bottom: 8px;
  }
  .carousel-caption-custom p {
    margin-bottom: 14px;
  }
  .carousel-caption-custom .btn {
    margin-top: 15px;
  }
}

@media (max-width: 368px) {
  .carousel-caption-custom .btn {
    font-size: 10px;
    gap: 4px;
  }
  .carousel-caption-custom p {
    margin-bottom: 10px;
  }

  .btn-explore-pkg {
    padding: 4px 4px 4px 6px;
  }
  .btn-view-trailer {
    padding: 4px 10px;
  }
}

/* floating icons  */
/* Floating Social Icons – Bottom Right */
.floating-social {
  position: fixed;
  bottom: 150px;
  right: 19px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 999;
  animation: floatIn 0.9s ease-out forwards;
}

.float-item {
  width: 41px;
  height: 41px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
  opacity: 0.98;
}

.float-item:hover {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
  opacity: 1;
}

/* Pulse only on WhatsApp (most important CTA) */
/* .whatsapp {
  animation: pulse 2.5s infinite;
} */

.call {
  animation: floatIn 0.9s ease-out forwards, subtleBounce 4s infinite 1s;
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.12);
  }
}

@keyframes subtleBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@media (max-width: 776px) {
  .floating-social {
    bottom: 90px;
    right: 16px;
    gap: 10px;
  }
  .float-item img {
    width: 34px;
    height: 34px;
  }
}

.section-title {
  color: #b85b00;
  font-size: clamp(32px, 2.2vw, 50px);
  font-family: "ReinaNeue";
  font-weight: 800;
  padding-bottom: 35px;
}

/* package  */
#package-section {
  background-image: url("images/packages/Kanasu-the-resort-packages-bg.webp");
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: scroll;
  min-height: 360px;
  padding: 80px 0;
}


.package-card {
  border: 3px solid #ffffff;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 4px 19.6px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: linear-gradient(#fff 20%, #b85b00 80%);
  height: 100%;
  position: relative;
}


/* remove white border for active card */
.package-card.activePackage {
  border-color: #000000;
}

/* active overlay + black border */
.package-card.activePackage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
  pointer-events: none;
  /* border-radius: 26px; */
}







.package-card img {
  width: 100%;
  /* height: 245px; */
  object-fit: contain;
}

.package-content {
  padding: 12px 20px 20px 20px;
  background-color: #b85b00;
}
.package-content .package-title {
  color: #ffffff;
  font-size: clamp(12px, 2vw, 26px);
  font-family: "poppins", sans-serif;
  font-weight: 700;
  margin-bottom: 12px;
}
.package-btn-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.package-btn-section button {
  padding: 12px 16px;
  border: 3px solid #b85b00;
  border-radius: clamp(8px, 1vw, 12px);
  font-size: clamp(10px, 1vw, 18px);
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  background-color: #ffffff;
  color: #b85b00;
}
.package-btn-section button:hover {
  background-color: #cc8a3f;
  color: #fff;
  /* transform: translateY(-2px); */
  box-shadow: 0 6px 18px rgba(184, 91, 0, 0.3);
}

.package-btn-section button:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn-package-details {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  text-decoration: none;
  font-size: 18px;
  color: #ffffff;
  font-weight: 600;
}

.btn-package-details img {
  display: inline-block;
  height: auto;
}
.btn-package-details:hover {
  text-decoration: underline !important;
  text-shadow: 0 0 1px #fff;
  color: #ffffff;
}
@media (max-width: 767px) {
  #package-section {
    padding: 80px 0;
  }
  .package-card {
    border-radius: 10px;
  }
  .package-content {
    padding: 7px 5px;
  }
  .package-content .package-title {
    margin-bottom: 7px;
  }
  .btn-package-details {
    font-size: 12px;
  }
  .btn-package-details img {
    height: 18px;
    height: 18px;
  }
  .package-btn-section button {
    padding: 8px 8px;
    font-size: 10px;
  }
}

@media (max-width: 359px) {
  .package-btn-section button {
    padding: 7px 5px;
    font-size: 8px;
  }
  .package-btn-section {
    gap: 3px;
  }
  .btn-package-details {
    font-size: 8px;
  }
  .btn-package-details img {
    height: 10px;
    height: 10px;
  }
  .package-content {
    padding: 7px 8px;
  }
}

/* gallery section  */
#gallery-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.tz-gallery {
  position: relative;
}

.tz-gallery .gallery-top-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
.tz-gallery .gallery-btn {
  background-color: rgba(184, 91, 0, 0.81);
  padding: 8px 8px 8px 20px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 60px;
  border: 1px solid #b85b00;
  font-size: clamp(16px, 1.2vw, 24px);
  font-weight: 500;
  line-height: 100%;
  color: #f6f6f6;
  display: flex;
  align-items: center;
  gap: 8px;
}
.gallery-btn img {
  height: 46px;
  width: 46px;
}

.tz-gallery .gallery-grid {
  display: flex;
  gap: 0;
  width: 100%;
}

.tz-gallery .gallery-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tz-gallery .gallery-item {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.tz-gallery .gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 767px) {
  #gallery-section {
    padding: 80px 0;
    background-color: #ffffff;
  }

  .ii1:active {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    z-index: 2;
  }
}

@media (max-width: 751px) {
  .tz-gallery .gallery-btn {
    padding: 8px 8px 8px 16px;
  }
  .gallery-btn img {
    height: 25px;
    width: 25px;
  }
  .tz-gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    gap: 0;
  }
  .tz-gallery .gallery-column {
    display: contents;
  }
}
@media (max-width: 361px) {
  .tz-gallery .gallery-btn {
    font-size: 14px;
    padding: 8px 8px 6px 13px;
  }
}

/* footer  */
#footer-section {
  background-color: #b85b00;
  padding: 68px 68px 0px 68px;
}
.footer-content-section {
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 48px;
}

.footer-content-section .contact-title {
  color: #ffffff;
  font-size: clamp(16px, 1.8vw, 20px);
  font-family: "poppins", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-content-section .contact-info {
  color: #ffffff;
  font-size: clamp(14px, 1.1vw, 16px);
  font-family: "poppins", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 3px;
}
.footer-contact-details {
  display: flex;
  flex-direction: column;
}
.footer-follow-us {
  text-align: center;
}
.footer-follow-us .footer-followUs-icons {
  display: flex;
  align-items: center;
  column-gap: 12px;
  justify-content: center;
}
.footer-follow-us img {
  width: 43px;
  height: 43px;
  cursor: pointer;
  transition: transform 0.2s ease;
  border-radius: 50%;
}

.footer-followUs-icons a img:hover,
.footer-follow-us a img:hover {
  box-shadow: 0px 4px 12px rgba(255, 224, 184, 0.7);
}

.footer-contact-details a:hover {
  text-decoration: underline;
  color: #ffe0b8;
}
.copy-right-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 18px;
  row-gap: 12px;
  padding: 12px 0 36px 0;
  text-align: center;
  color: #f0f0f0;
  font-size: clamp(12px, 1.1vw, 14px);
  line-height: 16px;
  font-weight: 500;
  font-family: "poppins", sans-serif;
  border-top: 1px solid #ff9a29;
}
.copy-right-link {
  text-decoration: underline;
  transition: color 0.2s ease;
}
.copy-right-link:hover {
  color: #ffe0b8;
}
@media only screen and (min-width: 767px) and (max-width: 991px) {
  .footer-follow-us {
    text-align: start;
  }
  .footer-follow-us .footer-followUs-icons {
    justify-content: start;
  }
  #footer-section {
    padding: 60px 30px 0 30px;
  }
  .footer-content-section {
    display: grid;
    grid-template-columns: repeat(2, minmax(15rem, 1fr));
    align-items: start;
    gap: 32px;
  }
}

@media (max-width: 767px) {
    .footer-content-section {
   padding-bottom: 28px;
  }
  #footer-section {
    padding: 36px 20px 0 20px;
  }
  .copy-right-section {
    flex-direction: column;
    row-gap: 4px;
  }
  .footer-follow-us img {
    width: 28px;
    height: 28px;
  }
}

/* about  */
#about-section {
  background-image: url("images/about-sec-bg1.webp");
  background-color: rgba(255, 255, 255, 0.6);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-attachment: scroll;
  min-height: 360px;
  padding: 100px 0;
}

.section-title-about {
  color: #b85b00;
  font-size: clamp(22px, 2vw, 40px);
  font-family: "ReinaNeue";
  font-weight: 800;
  margin-bottom: 26px;
  margin-top: clamp(35px, 3.4vw, 75px);
}
.about-healing-para p {
  text-align: center;
  margin-bottom: 12px;
}

.section-title-boards {
  color: #b85b00;
  font-size: clamp(22px, 1.7vw, 36px);
  font-family: "ReinaNeue";
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 45px;
}

.about-boards-section {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
.about-boards-section {
  display: grid;
  grid-template-columns: repeat(2,minmax(10rem,1fr));
  gap: 22px;
  justify-content: center;
}


}

@media only screen and (min-width: 768px) and (max-width: 1199px) {
.package-btn-section button {
font-size: 14px !important;
}

}

.about-board-card {
  position: relative;
  background-color: #ffffff;
  border-radius: 23px;
  /* box-shadow: 0 4px 19.6px 4px rgba(0, 0, 0, 0.1); */
  overflow: hidden;
  text-align: center;

  flex: 1 1 calc(25% - 32px);
}
.about-board-card:hover {
  cursor: pointer;
}
/* Image styling */
.about-board-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* The blurred overlay box */
.about-board-info {
  /* height: 130px;  */
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 9px 13px;
  background: rgba(0, 0, 0, 0.27);
  backdrop-filter: blur(5.8px);
  -webkit-backdrop-filter: blur(5.8px);
  color: #fff;
}

/* Name */
.about-board-name {
  color: #fff;
  font-size: clamp(10px, 1.8vw, 16px);
  font-family: "poppins", sans-serif;
  font-weight: 600;
  margin: 0;
}

/* Designation */
.about-board-designation {
  color: #eee;
  font-size: clamp(8px, 1.4vw, 12px);
  font-family: "raleway", sans-serif;
  font-weight: 500;
  margin-top: 6px;
  padding-bottom: 12px;
}

/* Tablet */
/* @media (max-width: 992px) {
  .about-board-card {
    flex: 1 1 calc(50% - 32px);
  }
} */

/* Mobile */
/* @media (max-width: 767px) {
  .about-board-card {
    flex: 1 1 100%;
  }
} */
/* Tablet */
@media (max-width: 992px) {
  .about-board-card {
    flex: 1 1 calc(50% - 32px);
  }
}

/* Mobile */
@media (max-width: 767px) {
  #about-section {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }
  .founders-text {
    font-size: 12px;
  }
  .about-healing-para p {
    font-size: 12px;
  }
  .about-board-designation {
    padding-bottom: 0px;
  }
  .about-board-info {
    padding: 4px 7px;
  }
  .about-board-card {
    flex: 1 1 calc(50% - 32px);
    border-radius: 8.6px;
  }
}

/* hover card  */
.about-board-hover-card {
  background-color: #ffffff;
  border-radius: 23px;
  padding: 40px;
}
.about-board-hover-details-section {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 18px;
}

.about-board-hover-image img {
  border-radius: 22px;
}
.about-board-hover-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.about-board-hover-info {
  text-align: center;
  background-color: #ff9a29;
  color: #ffffff;
  padding: 9px 13px;
}
.about-board-name-hover {
  font-size: 20px;
  font-family: "poppins", sans-serif;
  font-weight: 600;
  margin-bottom: 4px;
}
.about-board-designation-hover {
  font-size: 16px;
  font-family: "raleway", sans-serif;
  font-weight: 600;
  margin: 0;
}
.about-board-hover-info-para {
  text-align: justify;
  font-family: "raleway", sans-serif;
  font-weight: 500;
}
.about-board-bio-hover {
  margin-top: 18px;
}
.about-board-bio-hover p {
  font-size: 16px;
  font-family: "raleway", sans-serif;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 8px;
  text-align: justify;
}

@media (max-width: 767px) {
  .about-board-hover-card {
    background-color: #ffffff;
    border-radius: 23px;
    padding: 20px;
  }
  .about-board-hover-details-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
  }
  .about-board-hover-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
  }
  .about-board-name-hover {
    font-size: 14px;
  }
  .about-board-designation-hover {
    font-size: 12px;
  }
  .about-board-hover-info-para {
    font-size: 12px;
    font-weight: 500;
  }
  .about-board-bio-hover p {
    font-size: 12px;
  }
}

.about-board-hover-card {
  display: none;
}

.about-boards-section.hide {
  display: none;
}

/* ///////////////////////////// */

/* Board Modal Overlay - Namespaced */
.board-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}

.board-modal-overlay.active {
  display: flex;
  opacity: 1;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* Board Modal Content - Namespaced */
.board-modal-content {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  max-width: 1100px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;

  transition: transform 0.3s ease;
  scroll-behavior: smooth;
}

.board-modal-header {
  position: absolute;
  top: 8px;
  right: 20px;
  z-index: 50;
  width: 100%;
  display: flex;
  justify-content: flex-end;

  background: transparent;
}

@media (max-width: 767px) {
  .board-modal-content {
    padding: 10px 20px;
  }

  .board-modal-header {
    position: sticky;
    top: 0;
  }
}

.board-modal-close {
  width: 40px;
  height: 40px;
  border: none;
  background: #eeeeee;
  color: #292d32;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Thin Scrollbar */
.board-modal-content::-webkit-scrollbar {
  width: 4px;
}

.board-modal-content::-webkit-scrollbar-track {
  background: transparent;
}

.board-modal-content::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 10px;
}

.board-modal-content::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.45);
}

/* Firefox scrollbar */
.board-modal-content {
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.25) transparent;
}

.bg-img-space {
  background-image: url("images/banner-bg-vector.webp");
  padding-bottom: 73px;
}
.bg-grey-space {
  background-color: #f6efe6;
  padding-bottom: 55px;
}
.bg-grey-space-large {
  background-color: #f6efe6;
  padding-bottom: 150px;
}
@media (max-width: 767px) {
  .bg-img-space {
    padding-bottom: 28px;
  }
  .bg-grey-space {
    padding-bottom: 28px;
  }
    .bg-grey-space-large {
    padding-bottom: 58px;
  }
}

/* testimonials  */
#testimonials-section {
  padding: 68px 0;
  padding-bottom: 80px;
  background-color: #ffffff;
}

/* attractions  */
#attraction-section {
  padding: 31px 0;
  background-color: #ffffff;
}
.collage-container {
  position: relative;
  /* max-width: 1400px; */
  /* margin: 0 auto; */
  min-height: 800px;
}

.collage-item {
  position: absolute;
  /* box-shadow: 0 8px 25px rgba(0,0,0,0.15); */
  /* border-radius: 12px; */
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* border: 6px solid #fff; */
}

/* .collage-item:hover {
      transform: translateY(-10px) scale(1.02);
      box-shadow: 0 20px 40px rgba(0,0,0,0.25);
      z-index: 100;
    } */

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Explore More Button - exactly like your image */
.explore-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* background-color: #B85B00; */
  background-color: rgba(184, 91, 0, 0.81);
  color: #f6f6f6;
  padding: 8px 8px 8px 20px;
  border-radius: 60px;
  font-weight: 500;
  text-decoration: none;
  /* box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25); */
  /* 360-degree shadow */
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.25);
  z-index: 800;
  transition: all 0.3s;
  border: none;
  font-size: clamp(16px, 1.2vw, 24px);
  line-height: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
}

.explore-btn:hover {
   color: #f6f6f6;
      /* background: #e55a2b;
      transform: translate(-50%, -50%) scale(1.08); */
    }

.explore-btn img {
  height: 46px;
  width: 46px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .collage-container {
    min-height: 800px;
  }
}
@media (max-width: 767px) {
  .collage-container {
    margin: 0px 20px;
    min-height: 200px;
  }
  .explore-btn {
    padding: 8px 8px 8px 16px;
  }
  .explore-btn img {
    height: 26px;
    width: 26px;
  }
}
@media (max-width: 576px) {
  .collage-container {
    min-height: 380px;
  }
}

@media (max-width: 991px) {
  .hide-tab {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }
}

@media (max-width: 361px) {
  .explore-btn {
    font-size: 14px;
    padding: 8px 8px 6px 14px;
  }
}

/* Modal background */
.trailer-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

/* Modal box */
.trailer-content {
  position: relative;
  width: 90%;
  max-width: 800px;
  background: #000;
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
}

/* Close Button */
.trailer-close {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 28px;
  background: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  cursor: pointer;
}

.video-wrapper {
  width: 100%;
  height: 450px;
}

@media (max-width: 576px) {
  .video-wrapper {
    height: 250px;
  }
}

/* ///////////////////// */

.attr-kapu-beach {
  top: 40%;
  left: 43%;
}

.attr-tm-a-p {
  top: 52%;
  left: 5%;
}

.attr-maravanthe-beach {
  top: 8%;
  left: 50%;
}

@media (max-width: 767px) {
  .attr-krishna-matt {
    height: 152px;
    width: 138px;
  }
  .attr-ananth-temple {
    height: 57px;
    width: 108px;
  }
  /* .attr-heritageMuseum{
  height: 59px;
  width: 48px;
} */
  .attr-maravanthe-beach {
    height: 157px;
    width: 138px;
    top: 8%;
    left: 55%;
  }
  /* .attr-gommateshwara-statue{
height: 95px;
  width: 81px;
} */
  /* .attr-beach {
height: 28px;
  width: 50px;
} */
  .attr-koodlutheertha-falls {
    height: 147px;
    width: 118px;
  }
  .attr-tm-a-p {
    height: 162px;
    width: 138px;
    top: 57%;
    left: 5%;
  }
  /* .attr-anekere-park{
height: 36px;
  width: 61px;
} */
  .attr-kapu-beach {
    height: 166px;
    width: 126px;
    top: 55%;
    left: 53%;
  }
}
@media (max-width: 350px) {
  .collage-container {
    margin: 0px;
  }
}

/* Desktop Language Switch */
.language-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #ffc790;
  border-radius: 32px;
  padding: 4px;
  cursor: pointer;
  border: 1px solid #ffc790;
  transition: 0.3s ease;
  /* width: 88px; */
}

.language-switch:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.lang-flag {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}

.lang-text {
  font-size: 18px;
  font-weight: 500;
  color: #212121;
}

/* MOBILE LANGUAGE SWITCH */
.lng-mob {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #ffc790;
  padding: 4px;
  border-radius: 50px;
  border: 1px solid #ffc790;
}

/* Match image sizes for mobile */
.lng-mob img {
  width: 20px;
  height: 20px;
}

/* ///////////////////////////// */
/* Dropdown options for both desktop & mobile */
.lang-dropdown {
  position: absolute;
  top: 110%;
  left: 0;
  background: #e9e6e4;
  border-radius: 14px;
  border: 1px solid #e9e6e4;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: none;
  min-width: 88px;
  list-style: none;
  padding: 4px 0;
  margin: 0;
  z-index: 1000;
}

.language-switch.show .lang-dropdown,
.lang-switch-mobile.show .lang-dropdown {
  display: block;
}

.lang-selected {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 3px;
  cursor: pointer;
  transition: background 0.2s;
}

.lang-option .tick {
  margin-left: auto;
  color: green;
  font-size: 16px;
  display: none;
}

.lang-option.selected .tick {
  display: inline;
}
.lang-option .lang-sub-text {
  font-size: 18px;
  font-weight: 500;
  color: #212121;
}
.lang-option .lang-sub-text:hover {
  text-decoration: underline;
}

/* Hide mobile switch on desktop */
@media (min-width: 992px) {
  /* .lang-switch-mobile {
    display: none;
  } */
  .language-mobile {
    display: none;
  }
}
@media (max-width: 991px) {
  .lang-dropdown {
    position: absolute;
    top: 110%;
    left: 0;
    display: none;
    min-width: 70px;
  }

  .lang-text {
    font-size: 14px;
  }
  .lang-option .lang-sub-text {
    font-size: 14px;
  }
}

/* Hide Google Translate banner */
/* Hide Google Translate banner and toolbar */
.goog-te-banner-frame {
  display: none !important;
}

.goog-te-banner-frame.skiptranslate {
  display: none !important;
}

body {
  top: 0 !important;
  position: static !important;
}

.skiptranslate {
  display: none !important;
}

/* Hide the floating toolbar */
#goog-gt-tt,
.goog-te-balloon-frame {
  display: none !important;
}

.goog-text-highlight {
  background: none !important;
  box-shadow: none !important;
}

/* Additional overrides */
#google_translate_element,
.goog-te-gadget,
.goog-te-combo {
  display: none !important;
}

/* Force body to stay in place */
body > .skiptranslate {
  display: none !important;
}

iframe.skiptranslate {
  display: none !important;
}

body {
  top: 0 !important;
}

/* packages carousel start  */

/* Main big slider */
.mySwiper2 {
  height: 500px;
  width: 100%;
}

/* Thumbnail slider */
.mySwiper {
  height: 190px; /* fixed height for thumbnails + numbers */
  box-sizing: border-box;
  background-color: #B85B00;
  padding: 14px 10px 12px; /* space for numbers */
}

.swiper-slide {
  /* background-size: cover;
  background-position: center; */
  background-color: #b85b00;
  padding: 12px 16px;
  cursor: pointer;
  margin-right:0px ;
}

/* Big images */
.mySwiper2 .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Thumbnail images */
.mySwiper .swiper-slide {
  width: 25%;
  height: 100%;
  margin-right: 100px;
  /* opacity: 0.4; */
}

/* Wrapper to allow border without affecting size */
.thumb-wrapper {
  position: relative;
  border: 3px solid transparent;
  /* border-radius: 6px; */
  overflow: hidden;
  box-sizing: border-box; /* prevents image size change */
  width: 100%;
  height: 100%;
}

/* Highlight active thumbnail */
.mySwiper .swiper-slide-thumb-active .thumb-wrapper {
  border-color: #ffffff;
  opacity: 1;
}

/* White overlay ONLY when active */
.mySwiper .swiper-slide-thumb-active .thumb-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* Make thumbnail image fill container */
.mySwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Number under each thumbnail */
.thumb-number {
  position: absolute;
  bottom: -25px; /* pushes number below thumbnail */
  width: 100%;
  text-align: center;
  font-size: 16px;
  color: #fff;
}

/* .swiper-grid-main-sec {
  display: grid;
  grid-template-columns: repeat(2, minmax(10rem, 1fr));
  align-items: start;
  gap: 10px;
} */

.swiper-grid-main-sec-left-box {
  padding: 20px;
  background-color: #5a2d00;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}

@media (max-width: 768px) {
  .swiper-slide {

  padding: 0px;
  cursor: pointer;
  margin-right:0px ;
}
  .mySwiper2 {
    height: 400px;
    width: 100%;
  }

  /* .swiper-grid-main-sec {
    display: grid;
    grid-template-columns: repeat(1, minmax(10rem, 1fr));
    align-items: center;
    gap: 10px;
  } */

  .mySwiper2 .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .mySwiper {
    height: 100px; /* fixed height for thumbnails + numbers */
    box-sizing: border-box;
    padding: 10px 8px 10px; /* space for numbers */
  }
}

.thumb-number-top {
  position: absolute;
  top: 5px;
  left: 5px;
  z-index: 10;

  height: 35px;
  width: 35px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #ffffff;
   font-family: "poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #B85B00;
  border-radius: 50%;
}
.swiper-leftBox-no {
  background-color: #fff;
  border-radius: 50%;
  height: 56px;
  width: 56px;
  font-size: 28px;
  font-weight: 700;
  color: #B85B00;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* sightseeing page  */
#sightseeing-section {
  background-color: #fbf9f5;
  padding: 54px 0px 130px 0px;
}
.sigtseeing-Gal-heading {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sigtseeing-Gal-heading h2 {
  color: #b85b00;
  font-size: 24px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}
.sigtseeing-Gal-heading p {
  color: #000000;
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  font-family: "Poppins", sans-serif;
}

.sightseeing-places-item .sightseeing-item-img-wrapper {
  position: relative;
  width: 100%;
}

.sightseeing-places-item .sightseening-img {
  width: 100%;
  height: auto;
  /* border-radius: 8px; */
}
.sightseeing-item-img-text {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 10px 12px;
  background: rgba(0, 0, 0, 0.39);
  backdrop-filter: blur(4.5px); /* blur effect */
  -webkit-backdrop-filter: blur(4.5px); /* for Safari */
  color: #fff;
  text-align: center;
}

.sightseeing-item-img-text h6 {
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}
.sightseeing-item-img-text p {
  font-size: 14px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  margin-bottom: 0px;
}
@media (max-width: 768px) {
  .thumb-number-top {
  height: 25px;
  width: 25px;
  font-size: 14px;
}
  .sigtseeing-Gal-heading h2 {
    font-size: 18px;
  }
  .sigtseeing-Gal-heading p {
    font-size: 14px;
    line-height: 20px;
  }
  .sightseeing-item-img-text h6 {
    font-size: 14px;
    margin-bottom: 4px;
  }
  .sightseeing-item-img-text p {
    font-size: 12px;
  }
}

.sightseeing-places-item:hover .sightseening-img,
.sightseeing-places-item:focus .sightseening-img {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.sightseeing-item-img-wrapper .sightseening-img {
  transition: transform 0.6s ease;
}

.sightseeing-item-img-wrapper {
  position: relative;
  overflow: hidden;
}

/* gallery  */
.alime-projects-menu {
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}
.alime-projects-menu .portfolio-menu .btn {
  position: relative;
  z-index: 1;
  padding: 0;
  border: 0;
  background-color: transparent;
  font-size: 20px;
  font-weight: 500;
  border-radius: 0;
  margin: 0 25px;
  -webkit-transition-duration: 500ms;
  -o-transition-duration: 500ms;
  transition-duration: 500ms;
  color: #4B4B4B;
  font-family: "Poppins", sans-serif;
}
@media only screen and (max-width: 767px) {
  .alime-projects-menu .portfolio-menu .btn {
    font-size: 14px;
    margin: 0 5px;
  }
}
.alime-projects-menu .portfolio-menu .btn.active{
  color: black;
  font-weight: 600;
}
.alime-projects-menu .portfolio-menu .btn::after {
  -webkit-transition-duration: 500ms;
  -o-transition-duration: 500ms;
  transition-duration: 500ms;
  position: absolute;
  width: 0%;
  height: 3px;
  background-color: #b85c38;
  content: "";
  bottom: -5px;
  left: 0;
  right: 0;
  z-index: 1;
}
.alime-projects-menu .portfolio-menu .btn.active::after {
  width: 100%;
}

.alime-portfolio-area {
  position: relative;
  z-index: 1;
}
.alime-portfolio-area .container-fluid {
  padding-right: 10%;
  padding-left: 10%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .alime-portfolio-area .container-fluid {
    padding-right: 5%;
    padding-left: 5%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .alime-portfolio-area .container-fluid {
    padding-right: 5%;
    padding-left: 5%;
  }
}
@media only screen and (max-width: 767px) {
  .alime-portfolio-area .container-fluid {
    padding-right: 5%;
    padding-left: 5%;
  }
}
.single-portfolio-content {
  position: relative;
  z-index: 1;
  -webkit-transition-duration: 500ms;
  -o-transition-duration: 500ms;
  transition-duration: 500ms;
  overflow: hidden;
}
.single-portfolio-content img {
  width: 100%;
  -webkit-transition-duration: 500ms;
  -o-transition-duration: 500ms;
  transition-duration: 500ms;
}
.single-portfolio-content .hover-content {
  -webkit-transition-duration: 500ms;
  -o-transition-duration: 500ms;
  transition-duration: 500ms;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  z-index: 10;
}
.single-portfolio-content .hover-content a {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: 0;
  margin-left: -26px;
  z-index: 100;
  display: inline-block;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #b85c38;
  text-align: center;
  line-height: 52px;
  font-size: 30px;
  color: #ffffff;
}
.single-portfolio-content .hover-content a:hover,
.single-portfolio-content .hover-content a:focus {
  background-color: #000000;
}
.single-portfolio-content:hover img,
.single-portfolio-content:focus img {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}
.single-portfolio-content:hover .hover-content,
.single-portfolio-content:focus .hover-content {
  opacity: 1;
  visibility: visible;
}
.single-portfolio-content:hover .hover-content a,
.single-portfolio-content:focus .hover-content a {
  margin-top: -26px;
}


.alime-portfolio .single_gallery_item {
  margin-bottom: 20px;
  padding-left: 10px;
  padding-right: 10px;
}

/* hide lightbox caption  */
.lg-sub-html {
  display: none !important;
}
/* contact page  */
.contact-address-section {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 82px;
}
.contact-address-section{
  margin-top: 72px;
}
@media(max-width:990px){
  .contact-address-section {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 42px;
}
.contact-address-section{
  margin-top: 38px;
}
}
.address-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.address-item {
  display: flex;
    flex-direction: column;
    gap: 4px;
}
.address-item h5{
  font-size: clamp(14px, 0.8vw, 16px);
  color: #5D5D5D;
  font-weight: 400;
 font-family: "Poppins", sans-serif;
 margin-bottom: 0;
 text-transform: uppercase;
}
.address-item p{
   font-size: clamp(16px, 1vw, 18px);
  color: #000000;
  font-weight: 400;
 font-family: "Poppins", sans-serif;
 margin-bottom: 0;
}
.address-item span{
  color: #8B8B8B;
    font-weight: 400;
      font-size: clamp(16px, 1vw, 18px);
}

/* input  */
.outlined-input {
  position: relative;
  margin-top: 20px;
}

.outlined-input input,
.outlined-input textarea{
  width: 100%;
  padding: 10px;
  border: 1px solid #B85B00;
 
  font-size: 16px;
  outline: none;
  background: transparent;
  transition: 0.2s ease;
}

.outlined-input input:focus {
  border-color: #B85B00; 
}
.form-control:focus {
  border-color: #B85B00;
    box-shadow: 0 0 0 0.25rem rgba(184, 91, 0, 0.25);
}

.outlined-input label {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  background: #fbf9f5;
  padding: 0 6px;
  color: #000000;
  font-size: 14px;
  pointer-events: none;
  transition: 0.2s ease;
}

/* When focused or filled */
.outlined-input input:focus + label,
.outlined-input input:not(:placeholder-shown) + label,
.outlined-input input:valid + label {
  top: -2px;
  font-size: 13px;
  color: #000000;
}

/* Remove Chrome autofill yellow bg */
.outlined-input input:-webkit-autofill {
  transition: background-color 9999s ease-in-out 0s;
}

.form-control{
  border-radius: initial;
}
select.form-control {
border: 1px solid #B85B00;
background-color: transparent;
padding: 10px;
}



/* Custom arrow */
.select-wrapper {
  position: relative;
  width: 100%;
}

select.subjectDrpdown {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent url('images/icons/arrow-down.svg') no-repeat;
  background-position: right 15px center;
  background-size: 18px; /* adjust based on your image */
  padding-right: 40px; /* space for arrow */
}


.button-contactForm {
  background-color: #B85B00;
  padding: 12px 16px;
  font-weight: 600;
   font-size: clamp(16px, 1.2vw, 20px);
  font-family: 'poppins';
  border: none;
  color: #FBF9F5;
   border:2px solid transparent
}
.button-contactForm:hover {
  border:2px solid #B85B00;
  background-color: transparent;
    color: #B85B00;
}

.contact-map{
  margin-top: 68px;
}
.contact-map iframe{
  width:100%;
  height: 450px;
}
@media(max-width:770px){
  .contact-map iframe{
  width:100%;
  height: 350px;
}
}

/* faq page  */
/* .faq-container {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 24px 20px;
  background-color: #FFEAD6;
  color: #000000;
  font-size: 18px;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  font-size: 18px;
  text-align: left;
  padding: 10px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
  display: inline-block;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  font-size: 16px;
  line-height: 1.6;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px; 
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg); 
} */

/* CLOSED STATE (default) */
.faq-item {
  margin-bottom: 34px;
  /* padding: 24px 20px; */
}

/* Question (closed) */
.faq-question {
  background: #FFEAD6;        /* light grey */
  padding: 24px 20px;
  border-radius: 8px;
  width: 100%;
  border: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
     font-family: "Poppins", sans-serif;
      text-align: left;   /* ⭐ FIX */

}

/* Answer (closed) */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #FFF6EC;        /* slightly lighter */
  border-radius: 0 0 6px 6px;
  padding: 0 15px;
  transition: all 0.35s ease;
  font-size: 16px;
  font-weight: 400;
   font-family: "Poppins", sans-serif;
}

/* Arrow animation */
.faq-arrow {
  transition: transform 0.3s ease;
}

.faq-arrow-icon {
  width:18px;
  height: 18px;

}

/* OPEN STATE */
.faq-item.active .faq-question {
  background: #FFF6EC;        /* light blue when opened */
  padding: 24px 20px 8px 20px;
}

.faq-item.active .faq-answer {
  background: #FFF6EC;        /* answer background when opened */
  max-height: 200px;
  padding: 12px 20px 12px 30px;
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);  /* arrow up */
}
@media(max-width:770px){
  .faq-item {
  margin-bottom: 24px;
}

  .faq-question {
  padding: 18px 16px;
  font-size: 16px;
}
.faq-answer {  
  padding: 0 15px;
  font-size: 14px;
  font-weight: 400;

}

}

/* package  */
#accommodation-section {
  padding: 49px 0px;
    background-color: #FFFFFF;
}

.acc-heading p{
   font-size: clamp(16px, 1vw, 22px);
  font-weight: 400;
  font-family: 'Poppins','sans-serif';

}
.accomodationCarousel .carousel-control-prev,
.accomodationCarousel .carousel-control-next {
  background-color: #DBDBDB;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  opacity: 1;

  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
}

.accomodationCarousel .carousel-control-prev-icon,
.accomodationCarousel .carousel-control-next-icon {
  /* background-size: 60%; */
  font-weight: 600;
  filter: invert(1) brightness(0);
}

.accomodation-details-sec h3{
color: #B85B00;
 font-size: clamp(22px, 1.3vw, 24px);
font-weight: 700;
font-family: 'Poppins','sans-serif';
}

.accomodation-details-sec p{
 font-size: clamp(14px, 1vw, 18px);
line-height: 22px;
font-weight: 400;
color: #414141;
font-family: "raleway", sans-serif;
}
.accomodation-price {
  margin-top: 20px;
  background-color: #FFE9D3;
  padding: 6px 6px 6px 16px;
  display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 12px;
   flex-wrap: wrap;
}
.accomodation-price span{
  font-weight: 600;
  color: #000000;
  /* font-size: 20px; */
  font-size: clamp(16px, 1vw, 20px);
   font-family: "Inter", sans-serif;
}

.book-now-btn {
  background-color: #B85B00;
  padding: 8px 16px;
  font-size: 16px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  border: none;
  color: #FFFFFF;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

/* Hover */
.book-now-btn:hover {
  background-color: #9f4e00; /* darker */
   color: #FFFFFF;
}

/* Active (click) */
.book-now-btn:active {
  background-color: #864200; /* even darker */
   color: #FFFFFF;
}

/* Optional focus for accessibility */
.book-now-btn:focus-visible {
  outline: 2px solid #B85B00;
  outline-offset: 2px;
}

.accomodation-max-occ {
  color: #000000;
  font-family: "raleway", sans-serif;
  font-weight: 400;
  font-size: 15px;
  font-style: italic;
  padding-left: 14px;
  margin-top: 6px;
}
.accomodation-facilities {
  text-align: center;
  /* display: flex;
  flex-direction: column;
  gap: 6px; */
  /* align-items: center; */
  width: 100%;
  max-width: 550px;
    margin: 0 auto;
    margin-top: 16px;
}
.accomodation-facilities h3{
  color: #B85B00;
 font-family: "ReinaNeue", sans-serif;
 font-weight: 700;
 font-size: 22px;
}
 .accomodation-fac-item-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
}
.accomodation-fac-item {
  display: flex;
  flex-direction: column;
 gap: 4px;
 align-items: center;

}
.accomodation-fac-item img {
  height: 43px;
  width: 43px;
}
.accomodation-fac-item .acc-fac-item-text {
  color: #B85B00;
  font-family: "raleway", sans-serif;
  font-weight: 500;
  font-size: 10px;
  text-align: center;
   padding: 0px 12px;
}
@media(max-width:767px){
   .accomodation-fac-item-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 12px;
}
}


.accomodation-row{
  align-items: center;
}

.swiper-sec-top{
  align-items: start;
}

.accomodation-fac-item {
  position: relative;
}
.accomodation-fac-item::after {
  content: "";
  position: absolute;
  top: 10%;
  right: 0;
  height: 85%;
  width: 1px;
  background-color: #FFB165;
}
@media (min-width: 1200px) {
  .accomodation-fac-item:nth-child(4n)::after {
    display: none;
  }
}
@media (min-width: 991px) and (max-width: 1200px) {
  .accomodation-fac-item:nth-child(3n)::after {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 990px) {
  .accomodation-fac-item:nth-child(4n)::after {
    display: none;
  }
}

@media (min-width: 340px) and (max-width: 768px) {
  /* .accomodation-fac-item::after {
    display: none;
  } */
    .accomodation-fac-item:nth-child(4n)::after {
    display: none;
  }
}

@media (max-width: 360px) {
  /* .accomodation-fac-item::after {
    display: none;
  } */
      .accomodation-fac-item-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 4px;
}
    .accomodation-fac-item:nth-child(2n)::after {
    display: none;
  }
}

.accomodation-keyNotes-section {
background-color: #F6F6F6;
padding: 8px 16px;
margin-top: 64px;
}

.accomodation-keyNotes-section h5{
  color: #B85B00;
 font-family: "poppins", sans-serif;
 font-weight: 600;
 font-size: clamp(18px, 1.1vw, 22px);
 margin-bottom: 12px;
}
.accomodation-keyNotes-section ol li{
  color: #414141;
  font-family: "poppins", sans-serif;
   font-weight: 400;
  font-size: clamp(14px, 1vw, 18px);
}


/* carousel  */




.hr-lineMobile {
  display: none;
}

@media (max-width: 990px) {
  .hr-lineMobile {
    display: block;
    width: 100%;
    height: 1px;
    background-color: #FFB165; /* yellow */
    margin: 16px 0;
    margin-top: 32px;
  }
}

#packages-carousel-section{
  background-color: #FBF9F5;
  padding: 28px 0px 40px 0px;
}

.swiper-leftBox-head {
display: flex;
align-items: center;
gap: 14px;
flex-wrap: wrap;
background-color: rgba(0, 0, 0, 0.51);
width: 100%;
text-align: center;
justify-content: center;
padding: 12px 13px;
}
.swiper-leftBox-head span {
  /* font-size: 26px; */
   font-size: clamp(14px, 1.2vw, 26px);
  font-weight: 600;
    font-family: "poppins", sans-serif;
    color: #fff;
}

.size18 {
  font-size: 18px;
}
.swiper-leftBox-content {
  color: #FFFFFF;
  padding-top: 8px;
  max-height: 350px; /* Adjust this value based on your needs */
  overflow-y: auto;
  padding-right: 10px; /* Optional: adds space for scrollbar */
  text-align: left; 
     font-size: 20px;
  font-weight: 500;
   font-family: "poppins", sans-serif;
   margin-top: 18px;

}

.swiper-leftBox-content p{
 font-size: 18px;
font-weight: 500;
}
.swiper-leftBox-content ul{
  margin-bottom: 0px;
}
/* Optional: Custom scrollbar styling */
.swiper-leftBox-content::-webkit-scrollbar {
  width: 4px;
}

.swiper-leftBox-content::-webkit-scrollbar-track {
  background: #F6EFE6;
  border-radius: 4px;
}

.swiper-leftBox-content::-webkit-scrollbar-thumb {
  background: #B85B00;
  border-radius: 4px;
}

.swiper-leftBox-content::-webkit-scrollbar-thumb:hover {
  background: #B85B00;
}


.swiper-button-next, 
.swiper-button-prev{
  background-color: rgba(219, 219, 219, 0.45);
  height: 50px;
  width: 50px;
  border-radius: 50%;
  color: #000;
  font-weight: 700;
}

  .swiper-button-next:after {
    font-size: 24px !important;
  }
    .swiper-button-prev:after {
    font-size: 24px !important;
  }

@media(max-width:990px){
  .size18 {
  font-size: 16px;
}

  .swiper-leftBox-content {
     font-size: 18px
}

.swiper-leftBox-content p{
 font-size:16px;
}
 .mySwiper .swiper-slide{
  padding: 0px;
 }
 .swiper-leftBox-no {
  height: 38px;
  width: 38px;
  font-size: 18px;
  font-weight: 700;
}
.swiper-button-next,
.swiper-button-prev {
  background-color: rgba(219, 219, 219, 0.40);
  height: 50px;
  width: 50px;
  border-radius: 50%;
  color: #000;
  font-weight: 700;
}

  .swiper-button-next:after {
    font-size: 24px !important;
  }
    .swiper-button-prev:after {
    font-size: 24px !important;
  }
}
/* Make all slides equal height */
.mySwiper2 .swiper-slide {
  height: auto;
}

.swiper-sec-top {
  margin: 0;
  min-height: 500px; /* Set a consistent minimum height */
  display: flex;
  flex-wrap: wrap;
}

.swiper-sec-top > div {
  padding: 0;
  display: flex;
  flex-direction: column;
}

/* Make left box and image equal height */
.swiper-grid-main-sec-left-box {
  padding: 20px;
  background-color: #5a2d00;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  height: 100%;
  min-height: 500px; /* Match the row min-height */
}

.swiper-sec-top img {
  width: 100%;
  height: 100%;
  min-height: 500px; /* Match the row min-height */
  object-fit: cover;
}

/* Mobile adjustments */
@media (max-width: 991px) {
  /* .thumb-wrapper {

  width: 100%;
  height: 130px;
} */
  .swiper-sec-top {
    min-height: auto;
    flex-direction: column;
  }
  
  .swiper-sec-top .col-lg-6 {
    width: 100%;
    max-width: 100%;
  }
  
  .swiper-grid-main-sec-left-box {
    min-height: 300px;
    height: auto;
  }
  
  .swiper-sec-top img {
    min-height: 250px !important;
    height: auto;
  }
  
  .mySwiper2 {
    height: auto;
  }
  
  .swiper-leftBox-content {
    max-height: 200px;
  }
}

@media (max-width: 768px) {
    .size18 {
  font-size: 14px;
}

    .swiper-leftBox-content {
     font-size: 16px
}

.swiper-leftBox-content p{
 font-size:14px;
}
  .swiper-grid-main-sec-left-box {
    min-height: 330px;
    padding: 14px 0px;
  }
  
  .swiper-sec-top img {
    height: 300px ;
  }
  .swiper-leftBox-content{
    padding-left: 12px;
     padding-right: 12px;
  }

}

.acc-prices-btn {
  background-color: #B85B00;
  padding: 8px 8px 8px 20px;
  border-radius: 60px;
  border: 1px solid #b85b00;
  font-size: clamp(16px, 1.1vw, 20px);
  font-weight: 500;
  line-height: 100%;
  color: #f6f6f6;
  display: flex;
  align-items: center;
  gap: 8px;
   font-family: "poppins", sans-serif;
   cursor: pointer;
}
.acc-prices-btn:hover {
  color: #f6f6f6;

}
.acc-prices-btn span{
  background-color: #FFFFFF;
  height: 36px;
  width: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.swiper-backface-hidden .swiper-slide {
transform: initial;
}


#testimonials-section .swiper-slide {
background-color: #ffffff;
}
#testimonials-section .sk_branding {
  background-color: #fff !important;
}

/* whatsapp code  */
.wa-float-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
}

.chat-widget {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 320px;
    max-width: 95%;
    background: white;
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    z-index: 9999;
}

.chat-header {
    background: white;
    color: black;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-header .left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-header img {
    width: 28px;
    height: 28px;
}

.chat-header button {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

.chat-body {
    padding: 12px;
    height: 220px;
    background: #efeae2;
}

.message {
    background: white;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
    max-width: 80%;
}

.chat-footer {
    display: flex;
    padding: 10px;
    background: #f7f7f7;
}

.chat-footer input {
    flex: 1;
    padding: 10px;
    border-radius: 20px;
    border: none;
    outline: none;
}

.chat-footer button {
    margin-left: 8px;
    background: #25d366;
    border: none;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    cursor: pointer;
}

#userMessage {
	max-width: 80%;
}