@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
}

:root {
  --SectionPadding: 70px 0;
  --HeadingFont: "Cinzel";
  --BodyFont: "Raleway";
  --BrandGreen: #0E281F;
  --AmberGold: #FFBD69;
  --AmberGoldLight: #FFE3AB;
}

::-moz-selection {
  text-shadow: none;
}

::selection {
  text-shadow: none;
}

@font-face {
  font-family: "Cinzel";
  src: url(./assets/fonts/Cinzel/Cinzel-VariableFont_wght.ttf);
}
@font-face {
  font-family: "Raleway";
  src: url(./assets/fonts/Raleway/Raleway-VariableFont_wght.ttf);
}
html,
body {
  height: 100%;
  scroll-behavior: auto !important;
}

/* LENIS REQUIRED */
html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

body {
  font-family: var(--BodyFont);
  background-color: #0E281F;
  background-image: url(./assets/images/Noise2.png);
  background-repeat: repeat;
  transition: background-color 0.3s ease-in-out;
  zoom: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--HeadingFont);
}

section {
  padding: var(--SectionPadding);
  overflow: hidden;
}

.WebBtn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 36px;
  border: 4px solid transparent;
  font-size: 18px;
  letter-spacing: 1px;
  background-color: inherit;
  border-radius: 100px;
  font-weight: 600;
  color: var(--AmberGold);
  box-shadow: 0 0 0 2px var(--AmberGold);
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  width: -moz-fit-content;
  width: fit-content;
}
.WebBtn svg {
  position: absolute;
  width: 24px;
  fill: var(--AmberGold);
  z-index: 9;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.WebBtn .Arr1 {
  right: 16px;
}
.WebBtn .Arr2 {
  left: -25%;
}
.WebBtn .Circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-color: var(--AmberGold);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.WebBtn .Text {
  position: relative;
  z-index: 1;
  transform: translateX(-12px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.WebBtn:hover {
  box-shadow: 0 0 0 12px transparent;
  color: var(--BrandGreen);
  border-radius: 12px;
}
.WebBtn:hover .Arr1 {
  right: -25%;
}
.WebBtn:hover .Arr2 {
  left: 16px;
}
.WebBtn:hover .Text {
  transform: translateX(12px);
}
.WebBtn:hover svg {
  fill: #212121;
}
.WebBtn:hover .Circle {
  width: 220px;
  height: 220px;
  opacity: 1;
}
.WebBtn:active {
  scale: 0.95;
  box-shadow: 0 0 0 4px var(--AmberGold);
}

.SectionTitle .Title {
  font-size: 5rem;
  color: #0E281F;
}
.SectionTitle .SubTitle {
  font-weight: 600;
  color: var(--AmberGold);
}
.SectionTitle p {
  font-size: 21px;
  font-family: var(--BodyFont);
  color: rgb(83, 83, 83);
  width: 95%;
  margin: 0 auto 14px;
}

#BhavaniHeader {
  position: fixed;
  z-index: 9999;
  width: 100%;
  top: 0;
}
#BhavaniHeader .MainHeader {
  padding: 25px 0 40px;
  position: fixed;
  width: 100%;
  z-index: 10000;
  top: 0;
}
#BhavaniHeader .MainHeader.DarkHeader {
  background-color: var(--BrandGreen);
  background-image: url("./assets/images/Noise2.png");
  padding: 10px 0 10px;
}
#BhavaniHeader .MainHeader.DarkHeader .HeaderCenter .LogoImg {
  width: 180px !important;
}
#BhavaniHeader .MainHeader .HeaderInner {
  display: flex;
  align-items: center;
  /* 3 COLUMN SYSTEM */
}
#BhavaniHeader .MainHeader .HeaderInner .HeaderLeft,
#BhavaniHeader .MainHeader .HeaderInner .HeaderCenter,
#BhavaniHeader .MainHeader .HeaderInner .HeaderRight {
  flex: 1;
  display: flex;
  align-items: center;
}
#BhavaniHeader .MainHeader .HeaderInner {
  /* LEFT */
}
#BhavaniHeader .MainHeader .HeaderInner .HeaderLeft {
  gap: 25px;
  justify-content: flex-start;
  font-size: 24px;
}
#BhavaniHeader .MainHeader .HeaderInner {
  /* CENTER (LOGO PERFECT CENTER) */
}
#BhavaniHeader .MainHeader .HeaderInner .HeaderCenter {
  justify-content: center;
}
#BhavaniHeader .MainHeader .HeaderInner .HeaderCenter .LogoImg {
  width: 220px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
  transition: 500ms all ease;
}
#BhavaniHeader .MainHeader .HeaderInner {
  /* RIGHT */
}
#BhavaniHeader .MainHeader .HeaderInner .HeaderRight {
  justify-content: flex-end;
  gap: 20px;
  color: #FFBD69;
  font-size: 24px;
  font-family: var(--HeadingFont);
}
#BhavaniHeader .MainHeader .HeaderInner .HeaderRight .Phone {
  font-weight: 500;
}
#BhavaniHeader .MainHeader .HeaderInner .HeaderRight .Socials {
  display: flex;
  gap: 12px;
}
#BhavaniHeader .MainHeader .HeaderInner .HeaderRight .Socials a {
  width: 52px;
  height: 52px;
  background: #FFBD69;
  color: #0b2d1f;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
}
#BhavaniHeader .MainHeader .HeaderInner .HeaderRight .Socials a:hover {
  transform: scale(1.1);
  background: #FFBD69;
}
#BhavaniHeader .MainHeader {
  /* MENU TOGGLE */
}
#BhavaniHeader .MainHeader .MenuToggle {
  display: flex;
  align-items: center;
  gap: 32px;
  color: #FFBD69;
  cursor: pointer;
  font-size: 24px;
  letter-spacing: 1px;
}
#BhavaniHeader .MainHeader .MenuToggle .Hamburger {
  width: 20px;
  height: 2px;
  background: #FFBD69;
  position: relative;
}
#BhavaniHeader .MainHeader .MenuToggle .Hamburger::before, #BhavaniHeader .MainHeader .MenuToggle .Hamburger::after {
  content: "";
  position: absolute;
  width: 32px;
  height: 2px;
  background: #FFBD69;
  left: 0;
}
#BhavaniHeader .MainHeader .MenuToggle .Hamburger::before {
  top: -12px;
}
#BhavaniHeader .MainHeader .MenuToggle .Hamburger::after {
  top: 12px;
}
#BhavaniHeader .MainHeader {
  /* BUTTON */
}
#BhavaniHeader .MainHeader .ReserveBtn {
  background: #FFBD69;
  color: #0b2d1f;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  transition: 0.3s;
}
#BhavaniHeader .MainHeader .ReserveBtn:hover {
  background: #FFBD69;
}
#BhavaniHeader {
  /* =========================
     FULL SCREEN MENU
  ========================= */
}
#BhavaniHeader .FullMenu {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(4, 25, 20, 0.96);
  backdrop-filter: blur(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  overflow: hidden;
  /* 🔥 FIX CUT ISSUE */
}
#BhavaniHeader .FullMenu.active {
  opacity: 1;
  pointer-events: auto;
}
#BhavaniHeader {
  /* =========================
     HEADER (KEEP VISIBLE STYLE)
  ========================= */
}
#BhavaniHeader .MainHeader {
  position: relative;
  z-index: 10000;
}
#BhavaniHeader {
  /* =========================
     CONTENT LAYOUT
  ========================= */
}
#BhavaniHeader .MenuContent {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  align-items: center;
  height: 100%;
  padding: 80px 60px;
  position: relative;
}
#BhavaniHeader {
  /* =========================
     SIDE IMAGES
  ========================= */
}
#BhavaniHeader .MenuSide {
  position: relative;
  display: flex;
  justify-content: center;
}
#BhavaniHeader .MenuSide img {
  width: 260px;
  height: 360px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
  transform: scale(1);
  transition: all 1s ease;
  filter: brightness(0.85);
}
#BhavaniHeader .MenuSide p {
  position: absolute;
  bottom: -80px;
  text-align: center;
  color: #fff;
  font-size: 14px;
}
#BhavaniHeader .MenuSide p span {
  color: var(--AmberGold);
}
#BhavaniHeader .MenuSide:hover img {
  transform: scale(1.08);
  filter: brightness(1);
}
#BhavaniHeader {
  /* =========================
     CENTER MENU
  ========================= */
}
#BhavaniHeader .MenuCenter {
  text-align: center;
  position: relative;
  z-index: 2;
}
#BhavaniHeader {
  /* MAIN LINKS */
}
#BhavaniHeader .MenuLinks h1 {
  font-size: 72px;
  font-weight: 500;
  letter-spacing: 3px;
  color: #eaeaea;
  margin: 20px 0;
  cursor: pointer;
  transition: all 0.4s ease;
}
#BhavaniHeader {
  /* FADE OTHERS */
}
#BhavaniHeader .MenuLinks:hover h1 {
  opacity: 0.25;
}
#BhavaniHeader {
  /* ACTIVE HOVER */
}
#BhavaniHeader .MenuLinks h1:hover {
  opacity: 1;
  color: var(--AmberGold);
  transform: scale(1.05);
}
#BhavaniHeader {
  /* =========================
     FLOATING PREVIEW IMAGE
  ========================= */
}
#BhavaniHeader .MenuPreview {
  position: fixed;
  top: 140px;
  left: 0;
  width: 320px;
  height: 420px;
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
}
#BhavaniHeader .MenuPreview img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 18px;
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.4s ease;
}
#BhavaniHeader {
  /* =========================
     BOTTOM LINKS
  ========================= */
}
#BhavaniHeader .MenuBottomLinks {
  margin-top: 30px;
}
#BhavaniHeader .MenuBottomLinks span {
  margin: 0 12px;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--AmberGold);
  cursor: pointer;
  transition: 0.3s;
}
#BhavaniHeader .MenuBottomLinks span:hover {
  opacity: 0.7;
}
#BhavaniHeader {
  /* =========================
     SOCIAL ICONS
  ========================= */
}
#BhavaniHeader .MenuSocials {
  text-align: center;
  padding-bottom: 30px;
}
#BhavaniHeader .MenuSocials a {
  margin: 0 10px;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--AmberGold);
  color: #041914;
  transition: 0.3s;
}
#BhavaniHeader .MenuSocials a:hover {
  transform: scale(1.1);
}
#BhavaniHeader {
  /* =========================
     RESPONSIVE
  ========================= */
}
@media (max-width: 991px) {
  #BhavaniHeader .MenuContent {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  #BhavaniHeader .MenuSide {
    display: none;
    /* cleaner mobile */
  }
  #BhavaniHeader .MenuLinks h1 {
    font-size: 42px;
  }
}

/* HERO */
#Hero {
  padding: 200px 0 0;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#Hero .HeroTitle {
  text-align: center;
  position: relative;
  z-index: 2;
}
#Hero .HeroTitle h1 {
  font-size: 65px;
  color: var(--AmberGoldLight);
}
#Hero .WebBtn {
  margin: 0 auto 20px;
}
#Hero .HeroVideoWrapper {
  position: relative;
  width: 84vw;
  /* initial size */
  max-width: none;
  /* ❌ REMOVE 1280px LIMIT */
  height: 470px;
  border-radius: 20px;
  overflow: hidden;
  will-change: width, border-radius, height;
}
#Hero .HeroVideoWrapper video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  will-change: transform;
}

#AboutBhavani {
  position: relative;
  background-color: #0E281F;
  background-image: url(./assets/images/Noise2.png);
  background-repeat: repeat;
  transition: background-color 0.3s ease-in-out;
  zoom: 1;
  overflow: hidden;
  height: 100vh;
  padding: 0;
  perspective: 1000px;
}
#AboutBhavani .AboutImages .Img {
  overflow: hidden;
}
#AboutBhavani .AboutImages .Img img {
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.2s ease;
}
#AboutBhavani .AboutWrapper {
  position: relative;
  margin: 0 auto;
  text-align: center;
  height: 100%;
}
#AboutBhavani {
  /* CONTENT */
}
#AboutBhavani .AboutContent {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 40vw;
}
#AboutBhavani .AboutContent .SectionTitle .Title {
  color: #fff;
}
#AboutBhavani .AboutContent .SectionTitle p {
  color: #ffe3ab;
}
#AboutBhavani .AboutContent .AboutBtn {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid #c0392b;
  color: #c0392b;
  text-decoration: none;
  transition: 0.3s;
}
#AboutBhavani .AboutContent .AboutBtn:hover {
  background: #c0392b;
  color: #fff;
}
#AboutBhavani {
  /* FLOATING IMAGES */
}
#AboutBhavani .AboutImages .Img {
  position: absolute;
  overflow: hidden;
}
#AboutBhavani .AboutImages .Img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
#AboutBhavani .AboutImages {
  /* TOP LEFT */
}
#AboutBhavani .AboutImages .Img1 {
  height: 15vw;
  left: 15vw;
  top: -50px;
  width: 15vw;
}
#AboutBhavani .AboutImages {
  /* TOP RIGHT */
}
#AboutBhavani .AboutImages .Img2 {
  height: 30.417vw;
  left: 0;
  top: 25vw;
  width: 25vw;
}
#AboutBhavani .AboutImages {
  /* BOTTOM LEFT */
}
#AboutBhavani .AboutImages .Img3 {
  height: 25vw;
  right: 5vw;
  top: 5vw;
  width: 20vw;
}
#AboutBhavani .AboutImages {
  /* BOTTOM RIGHT */
}
#AboutBhavani .AboutImages .Img4 {
  height: 13.333vw;
  right: 0;
  top: 41.042vw;
  width: 20vw;
}
#AboutBhavani .WebBtn {
  margin: 24px auto 0;
}

#HospitalitySection {
  position: relative;
  background-color: #fff;
  padding: 80px 0;
  background-image: url(./assets/images/noise.png);
  overflow: hidden;
  perspective: 1000px;
}
#HospitalitySection .SectionTitle {
  text-align: center;
}
#HospitalitySection .SectionTitle p {
  width: 50%;
}
#HospitalitySection .HospitalityImageWrap {
  position: relative;
  display: block;
  text-align: center;
  padding: 40px 0 0px;
  overflow: hidden;
  border-radius: 20px;
}
#HospitalitySection .HospitalityImageWrap .HospitalityImage {
  width: 100%;
  max-width: 1280px;
  border-radius: 20px;
  transition: transform 0.5s ease;
}
#HospitalitySection .HospitalityImageWrap {
  /* Positions */
}

#GallerySection {
  position: relative;
  background-color: #fff;
  padding: 60px 0;
  background-image: url(./assets/images/noise.png);
  overflow: hidden;
}
#GallerySection .SectionTitle {
  text-align: center;
}
#GallerySection .MainImageBox {
  width: 100%;
  height: 450px;
  overflow: hidden;
}
#GallerySection .MainImageBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.4s ease;
}
#GallerySection .ContentBox .SectionDesc {
  font-size: 16px;
  color: #8c7a5b;
  margin-bottom: 25px;
  width: 100%;
}
#GallerySection {
  /* Slider */
}
#GallerySection .ThumbSlider {
  position: relative;
}
#GallerySection .ThumbSlider .item {
  padding: 5px;
}
#GallerySection .ThumbSlider .thumb {
  width: 100%;
  height: 90px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  opacity: 0.6;
  transition: 0.3s;
}
#GallerySection .ThumbSlider .thumb:hover, #GallerySection .ThumbSlider .thumb.active {
  opacity: 1;
  transform: scale(1.05);
  border: 2px solid #2563eb;
}
#GallerySection .ThumbSlider {
  /* 🔥 ARROWS STYLE */
}
#GallerySection .ThumbSlider .owl-nav {
  position: absolute;
  top: 120PX;
  right: 0px;
  display: flex;
  gap: 10px;
}
#GallerySection .ThumbSlider .owl-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #0b2d1f !important;
  color: #fff !important;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
#GallerySection .ThumbSlider .owl-nav button:hover {
  background: #000 !important;
}
#GallerySection .ThumbSlider .owl-nav button:focus {
  outline: none;
}
#GallerySection .ThumbSlider {
  /* 🔥 OPTIONAL: CENTER SIDE ARROWS */
}
#GallerySection .ThumbSlider.arrow-center .owl-nav {
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  justify-content: space-between;
}
#GallerySection .ThumbSlider.arrow-center .owl-nav button {
  position: absolute;
}
#GallerySection .ThumbSlider.arrow-center .owl-nav button.owl-prev {
  left: -15px;
}
#GallerySection .ThumbSlider.arrow-center .owl-nav button.owl-next {
  right: -15px;
}

#GallerySection-1 {
  background-image: url(./assets/images/noise.png);
  background-color: #f8f6f2;
  /* TITLE */
}
#GallerySection-1 .SectionTitle {
  margin-bottom: 40px;
}
#GallerySection-1 .SectionTitle .Title {
  font-size: 64px;
  font-weight: 500;
  letter-spacing: 2px;
  color: #0f2e2a;
}
#GallerySection-1 {
  /* LEFT CONTENT */
}
#GallerySection-1 .ContentBox {
  padding-right: 50px;
}
#GallerySection-1 .ContentBox .LuxuryTag {
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--AmberGold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
}
#GallerySection-1 .ContentBox .RoomsTitle {
  font-size: 40px;
  margin-bottom: 20px;
  color: #1a1a1a;
  position: relative;
}
#GallerySection-1 .ContentBox .RoomsTitle::after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--AmberGold);
  position: absolute;
  left: 0;
  bottom: -8px;
}
#GallerySection-1 .ContentBox .SectionDesc {
  font-size: 21px;
  color: #6b6b6b;
  margin-bottom: 15px;
}
#GallerySection-1 {
  /* THUMBNAILS */
}
#GallerySection-1 .ThumbSlider-1 {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  margin-bottom: 40px;
}
#GallerySection-1 .ThumbSlider-1 .thumb {
  width: 70px;
  height: 70px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}
#GallerySection-1 .ThumbSlider-1 .thumb:hover {
  opacity: 1;
  transform: scale(1.08);
}
#GallerySection-1 .ThumbSlider-1 .thumb.active {
  opacity: 1;
  border-color: #c8a96a;
}
#GallerySection-1 {
  /* MAIN IMAGE */
}
#GallerySection-1 .MainImageBox {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}
#GallerySection-1 .MainImageBox .ImageNav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  font-size: 22px;
  padding: 5px 5px;
  cursor: pointer;
  border-radius: 50%;
  transition: 0.3s;
  z-index: 10;
  aspect-ratio: 1/1;
  width: 42px !important;
  height: 42px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
#GallerySection-1 .MainImageBox .ImageNav button img {
  width: 100% !important;
  height: 100% !important;
}
#GallerySection-1 .MainImageBox .ImageNav button:hover {
  background: var(--BrandGreen);
  /* luxury gold */
}
#GallerySection-1 .MainImageBox .prevBtn {
  left: 10px;
}
#GallerySection-1 .MainImageBox .nextBtn {
  right: 10px;
}
#GallerySection-1 .MainImageBox img {
  width: 100%;
  height: 520px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.8s ease;
}
#GallerySection-1 .MainImageBox {
  /* subtle overlay */
}
#GallerySection-1 {
  /* SMOOTH FADE ANIMATION */
}
#GallerySection-1 .ContentBox,
#GallerySection-1 .MainImageBox {
  animation: fadeUp 1s ease forwards;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#GallerySection-1 {
  /* RESPONSIVE */
}
@media (max-width: 991px) {
  #GallerySection-1 .ContentBox {
    padding-right: 0;
    margin-bottom: 40px;
  }
  #GallerySection-1 .MainImageBox img {
    height: 400px;
  }
  #GallerySection-1 .SectionTitle .Title {
    font-size: 42px;
  }
}

#GallerySection-2 {
  background-image: url(./assets/images/noise.png);
  background-color: #f8f6f2;
  position: relative;
  /* TITLE */
}
#GallerySection-2 .SectionTitle {
  margin-bottom: 42px;
}
#GallerySection-2 .SectionTitle .Title {
  letter-spacing: 2px;
  color: #0f2e2a;
}
#GallerySection-2 {
  /* CONTENT (RIGHT SIDE) */
}
#GallerySection-2 .ContentBox {
  padding-left: 40px;
}
#GallerySection-2 .ContentBox .LuxuryTag {
  font-size: 15px;
  letter-spacing: 3px;
  color: var(--AmberGold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
#GallerySection-2 .ContentBox .RoomsTitle {
  font-size: 40px;
  margin-bottom: 20px;
  color: #1a1a1a;
  position: relative;
}
#GallerySection-2 .ContentBox .RoomsTitle::after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--AmberGold);
  position: absolute;
  left: 0;
  bottom: -8px;
}
#GallerySection-2 .ContentBox .SectionDesc {
  font-size: 21px;
  color: #6b6b6b;
  margin-bottom: 15px;
}
#GallerySection-2 {
  /* THUMBNAILS */
}
#GallerySection-2 .ThumbSlider-2 {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  margin-bottom: 40px;
}
#GallerySection-2 .ThumbSlider-2 .thumb {
  width: 70px;
  height: 70px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}
#GallerySection-2 .ThumbSlider-2 .thumb:hover {
  opacity: 1;
  transform: scale(1.08);
}
#GallerySection-2 .ThumbSlider-2 .thumb.active {
  opacity: 1;
  border-color: #c8a96a;
}
#GallerySection-2 {
  /* MAIN IMAGE (LEFT SIDE) */
}
#GallerySection-2 .MainImageBox {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  /* Slight variation from section 1 */
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.18);
}
#GallerySection-2 .MainImageBox .ImageNav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  font-size: 22px;
  padding: 5px 5px;
  cursor: pointer;
  border-radius: 50%;
  transition: 0.3s;
  z-index: 10;
  aspect-ratio: 1/1;
  width: 42px !important;
  height: 42px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
#GallerySection-2 .MainImageBox .ImageNav button img {
  width: 100% !important;
  height: 100% !important;
}
#GallerySection-2 .MainImageBox .ImageNav button:hover {
  /* luxury gold */
}
#GallerySection-2 .MainImageBox .prevBtn {
  left: 10px;
}
#GallerySection-2 .MainImageBox .nextBtn {
  right: 10px;
}
#GallerySection-2 .MainImageBox img {
  width: 100%;
  height: 520px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.8s ease;
}
#GallerySection-2 .MainImageBox:hover img {
  transform: scale(1.05);
}
#GallerySection-2 {
  /* ANIMATION */
}
#GallerySection-2 .ContentBox,
#GallerySection-2 .MainImageBox {
  animation: fadeUp 1s ease forwards;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 991px) {
  #GallerySection-2 .SectionTitle .Title {
    font-size: 42px;
  }
  #GallerySection-2 .ContentBox {
    padding-left: 0;
    margin-top: 40px;
  }
  #GallerySection-2 .MainImageBox img {
    height: 400px;
  }
}
#RoomsSection {
  height: 300vh;
  overflow: visible;
  background-color: #f9f7f2;
  background-image: url("./assets/images/noise.png");
  background-attachment: fixed;
}
#RoomsSection .SectionTitle {
  text-align: center;
}
#RoomsSection .SectionTitle p {
  max-width: 1200px;
  margin: auto;
}
#RoomsSection .RoomsImageItem img {
  will-change: transform;
  backface-visibility: hidden;
  box-shadow: 0 10px 30px rgba(255, 189, 105, 0.25);
}
#RoomsSection .RoomsThumbnail img {
  will-change: transform;
}
#RoomsSection .RoomsSticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  gap: 120px;
  padding: 80px 0px 0px;
  align-items: center;
}
#RoomsSection {
  /* LEFT SIDE */
}
#RoomsSection .RoomsContentWrapper {
  width: 38%;
  position: relative;
  padding-left: 35px;
  padding-top: 20px;
  padding-bottom: 40px;
  /* PROGRESS BAR WRAPPER */
}
#RoomsSection .RoomsContentWrapper .RoomsProgressBar {
  position: absolute;
  left: -20px;
  top: 10px;
  height: 92%;
}
#RoomsSection .RoomsContentWrapper {
  /* TRACK */
}
#RoomsSection .RoomsContentWrapper .RoomsProgressBar .Track {
  position: relative;
  width: 2px;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  overflow: hidden;
}
#RoomsSection .RoomsContentWrapper {
  /* FILL (smooth growing) */
}
#RoomsSection .RoomsContentWrapper .RoomsProgressBar .Fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: #000;
  transition: height 0.6s ease;
}
#RoomsSection .RoomsContentWrapper {
  /* STEP DIVIDERS */
}
#RoomsSection .RoomsContentWrapper .RoomsProgressBar .Step {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 2px;
  background: rgba(0, 0, 0, 0.25);
}
#RoomsSection .RoomsContentWrapper {
  /* 🔥 place 3 equal segments */
}
#RoomsSection .RoomsContentWrapper .RoomsProgressBar .Step:nth-child(2) {
  top: 33.33%;
}
#RoomsSection .RoomsContentWrapper .RoomsProgressBar .Step:nth-child(3) {
  top: 66.66%;
}
#RoomsSection .RoomsContentWrapper .RoomsProgressBar .Step:nth-child(4) {
  top: 100%;
}
#RoomsSection .RoomsContent {
  inset: 0;
  left: 36px;
}
#RoomsSection .RoomsTop {
  display: flex;
  align-items: baseline;
}
#RoomsSection .RoomsNumber {
  font-size: 40px;
  letter-spacing: 1px;
  font-family: var(--HeadingFont);
  font-weight: 500;
}
#RoomsSection .RoomsTitle {
  font-size: 40px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1.2;
  font-weight: 500;
}
#RoomsSection .RoomsDescription {
  font-size: 19px;
  font-family: var(--BodyFont);
  color: rgb(83, 83, 83);
  font-weight: 500;
  margin-bottom: 24px;
}
#RoomsSection .WebBtn {
  margin-bottom: 32px;
  font-size: 16px;
  padding: 8px 30px;
  color: var(--BrandGreen);
  box-shadow: 0 0 0 2px var(--BrandGreen);
}
#RoomsSection .WebBtn svg {
  fill: var(--BrandGreen);
}
#RoomsSection .WebBtn .Circle {
  background-color: var(--BrandGreen);
}
#RoomsSection .WebBtn:hover {
  box-shadow: transparent 0px 0px 0px 12px;
  color: var(--AmberGold);
}
#RoomsSection .WebBtn:hover svg {
  fill: var(--AmberGold);
}
#RoomsSection .WebBtn:active {
  scale: 0.95;
  box-shadow: 0 0 0 4px var(--BrandGreen);
}
#RoomsSection {
  /* THUMBNAIL */
}
#RoomsSection .RoomsThumbnail {
  margin-bottom: 30px;
  overflow: hidden;
}
#RoomsSection .RoomsThumbnail img {
  width: 370px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2px;
}
#RoomsSection .RoomsFeatures {
  list-style: none !important;
  padding: 0;
}
#RoomsSection .RoomsFeatures li {
  font-size: 21px;
  margin-bottom: 14px;
  color: #2b2b2b;
  font-weight: 500;
  letter-spacing: 0.3px;
  position: relative;
  padding-left: 32px;
}
#RoomsSection .RoomsFeatures li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
}
#RoomsSection {
  /* 1 → Guests */
}
#RoomsSection .RoomsFeatures li:nth-child(1)::before {
  background-image: url("https://framerusercontent.com/images/eRq3X2s7KEj4HROv72KpoEPg4MM.svg?width=24&height=24");
}
#RoomsSection {
  /* 2 → Bed */
}
#RoomsSection .RoomsFeatures li:nth-child(2)::before {
  background-image: url("https://framerusercontent.com/images/ijpHtN9ktq52st4VX1u0RizukEA.png?width=48&height=48");
}
#RoomsSection {
  /* 3 → View / Location */
}
#RoomsSection .RoomsFeatures li:nth-child(3)::before {
  background-image: url("https://framerusercontent.com/images/eRq3X2s7KEj4HROv72KpoEPg4MM.svg?width=24&height=24");
}
#RoomsSection {
  /* RIGHT IMAGE */
}
#RoomsSection .RoomsImages {
  width: 62%;
  position: relative;
  height: 100%;
  max-height: 700px;
}
#RoomsSection .RoomsImageItem {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  /* 🔥 hide all by default */
  pointer-events: none;
  overflow: hidden;
  transition: opacity 0.6s ease;
}
#RoomsSection .RoomsImageItem.Active {
  z-index: 2;
  opacity: 1;
  /* 🔥 only active visible */
  pointer-events: auto;
}
#RoomsSection {
  /* IMAGE */
}
#RoomsSection .RoomsImageItem img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
  transform: scale(1.06);
  transition: transform 1.2s ease;
}
#RoomsSection {
  /* ACTIVE IMAGE ZOOM */
}
#RoomsSection .RoomsImageItem.Active img {
  transform: scale(1.02);
}

#AmenitiesPremium {
  padding: var(--SectionPadding);
  background-color: #f9f7f2;
  background-image: url("./assets/images/noise.png");
}
#AmenitiesPremium .SectionTitle {
  margin-bottom: 42px;
}
#AmenitiesPremium {
  /* Title */
}
#AmenitiesPremium .AmenitiesPremium h2 {
  font-family: var(--HeadingFont);
  color: var(--BrandGreen);
  font-size: 42px;
  margin-bottom: 60px;
}
#AmenitiesPremium {
  /* Layout */
}
#AmenitiesPremium .AmenitiesList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 60px;
}
#AmenitiesPremium {
  /* Item */
}
#AmenitiesPremium .AmenityItem {
  display: flex;
  gap: 18px;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  padding: 40px;
  border-radius: 24px;
}
#AmenitiesPremium {
  /* Icon */
}
#AmenitiesPremium .AmenityIcon {
  width: 70px;
  height: 70px;
  background: var(--AmberGoldLight);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 600ms all ease;
}
#AmenitiesPremium .AmenityIcon img {
  width: 42px;
  opacity: 0.8;
}
#AmenitiesPremium {
  /* Content */
}
#AmenitiesPremium .AmenityContent h3 {
  font-size: 40px;
  margin-bottom: 20px;
  color: #1a1a1a;
  position: relative;
}
#AmenitiesPremium .AmenityContent p {
  font-size: 21px;
  color: #6b6b6b;
  margin-bottom: 15px;
}
#AmenitiesPremium {
  /* Meta */
}
#AmenitiesPremium .Meta {
  display: flex;
  gap: 15px;
  font-size: 21px;
  color: #777;
}
#AmenitiesPremium .Meta span {
  border-radius: 30px;
  padding: 5px 20px;
  font-weight: 500;
  background-color: rgb(248, 248, 248);
}
#AmenitiesPremium .Meta span:first-child {
  color: var(--AmberGold);
}
#AmenitiesPremium {
  /* Subtle Hover */
}
#AmenitiesPremium .AmenityItem:hover .AmenityIcon {
  background: var(--AmberGold);
}
#AmenitiesPremium .AmenityItem:hover .AmenityIcon img {
  filter: brightness(0);
}
#AmenitiesPremium {
  /* Responsive */
}
@media (max-width: 768px) {
  #AmenitiesPremium .AmenitiesList {
    grid-template-columns: 1fr;
  }
}

#LuxuryGallery {
  position: relative;
  height: 100vh;
  overflow: hidden;
  color: #fff;
}
#LuxuryGallery .bg-video {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
  z-index: 1;
}
#LuxuryGallery .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
  top: 0;
}
#LuxuryGallery .container {
  position: relative;
  z-index: 3;
  padding-top: 150px;
}
#LuxuryGallery .SectionTitle {
  max-width: 600px;
  margin-bottom: 80px;
}
#LuxuryGallery .SectionTitle .Title {
  color: #fff;
  font-size: 4.2rem;
}
#LuxuryGallery .SectionTitle p {
  color: #ddd;
  line-height: 1.6;
  margin-bottom: 20px;
  width: 100%;
}
#LuxuryGallery .GallerySlider {
  margin: 0;
}
#LuxuryGallery .GallerySlider .ImageNav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  font-size: 22px;
  padding: 5px 5px;
  cursor: pointer;
  border-radius: 50%;
  transition: 0.3s;
  z-index: 10;
  aspect-ratio: 1/1;
  width: 42px !important;
  height: 42px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
#LuxuryGallery .GallerySlider .ImageNav button img {
  width: 100% !important;
  height: 100% !important;
}
#LuxuryGallery .GallerySlider .ImageNav button:hover {
  background: var(--BrandGreen);
  /* luxury gold */
}
#LuxuryGallery .GallerySlider .prevBtn {
  left: 10px;
}
#LuxuryGallery .GallerySlider .nextBtn {
  right: 10px;
}
#LuxuryGallery .GallerySlider .swiper-slide {
  height: 240px;
  border-radius: 14px;
  overflow: hidden;
}
#LuxuryGallery .GallerySlider .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.6s ease;
}
#LuxuryGallery .GallerySlider .swiper-slide:hover img {
  transform: scale(1.15) rotate(1deg);
}

#BhavaniFooter {
  padding: 120px 0 0;
  color: #d6c3a3;
  position: relative;
  /* DARK OVERLAY (MATCH HERO) */
}
#BhavaniFooter .container {
  position: relative;
  z-index: 2;
}
#BhavaniFooter .FooterWrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}
#BhavaniFooter {
  /* LEFT SIDE */
}
#BhavaniFooter .FooterLeft {
  position: relative;
  background: url("./assets/images/FooterBg.png") no-repeat;
  background-size: cover;
  border-radius: 20px;
  height: 100%;
}
#BhavaniFooter .FooterLeft .SocialsMedia {
  margin-top: 32px;
}
#BhavaniFooter .FooterLeft .FooterLogo {
  width: 160px;
}
#BhavaniFooter .FooterLeft .FooterLogo img {
  width: 160px;
  height: 160px;
  -o-object-fit: contain;
     object-fit: contain;
}
#BhavaniFooter .FooterLeft .FooterOverlay {
  inset: 0;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.87), transparent);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  height: 100%;
}
#BhavaniFooter .FooterLeft p {
  color: var(--AmberGoldLight);
  margin-bottom: 25px;
  font-size: 18px;
  font-weight: 200;
}
#BhavaniFooter .FooterLeft .ContactItem {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  gap: 14px;
  max-width: 450px;
}
#BhavaniFooter .FooterLeft .ContactItem i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(214, 195, 163, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
}
#BhavaniFooter .FooterLeft .ContactItem:hover i {
  background: #d6c3a3;
  color: #0b1a14;
  box-shadow: 0 10px 20px rgba(214, 195, 163, 0.2);
}
#BhavaniFooter .FooterLeft .ContactItem p {
  margin: 0;
  font-weight: 200;
}
#BhavaniFooter .FooterLeft .MapBtn {
  margin-top: 25px;
  display: inline-block;
  padding: 12px 22px;
  border: 1px solid rgba(214, 195, 163, 0.5);
  color: #d6c3a3;
  text-decoration: none;
  transition: 0.3s;
}
#BhavaniFooter .FooterLeft .MapBtn:hover {
  background: #d6c3a3;
  color: #0b1a14;
}
#BhavaniFooter .FooterLeft::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(circle at 30% 40%, rgba(214, 195, 163, 0.15), transparent 60%);
  pointer-events: none;
}
#BhavaniFooter {
  /* RIGHT SIDE (GLASS FORM) */
}
#BhavaniFooter .FooterRight {
  padding: 50px;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 40, 30, 0.6), rgba(0, 0, 0, 0.4));
  backdrop-filter: blur(20px);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(214, 195, 163, 0.15);
}
#BhavaniFooter .FooterRight h3 {
  font-size: 42px;
  margin-bottom: 30px;
  color: #f5e6c8;
  text-align: center;
}
#BhavaniFooter .FooterRight .SocialTitle h3 {
  font-size: 27px;
  text-align: left;
  margin-bottom: 0;
  margin-top: 20px;
}
#BhavaniFooter .FooterRight form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
#BhavaniFooter .FooterRight form .FormRow {
  display: flex;
  gap: 12px;
}
#BhavaniFooter .FooterRight form .FormRow input,
#BhavaniFooter .FooterRight form .FormRow select {
  flex: 1;
  padding: 14px;
  background: transparent;
  border: 1px solid rgba(214, 195, 163, 0.2);
  color: #fff;
}
wid #BhavaniFooter .FooterRight form .FormRow input:focus,
wid #BhavaniFooter .FooterRight form .FormRow select:focus {
  border-color: #d6c3a3;
}
#BhavaniFooter .FooterRight form [type=button]:not(:disabled),
#BhavaniFooter .FooterRight form [type=reset]:not(:disabled),
#BhavaniFooter .FooterRight form [type=submit]:not(:disabled),
#BhavaniFooter .FooterRight form button:not(:disabled) {
  padding: 14px;
  border: 1px solid #d6c3a3;
  background: transparent;
  color: #d6c3a3;
  transition: 0.3s;
}
#BhavaniFooter .FooterRight form [type=button]:not(:disabled):hover,
#BhavaniFooter .FooterRight form [type=reset]:not(:disabled):hover,
#BhavaniFooter .FooterRight form [type=submit]:not(:disabled):hover,
#BhavaniFooter .FooterRight form button:not(:disabled):hover {
  background: #d6c3a3;
  color: #0b1a14;
}
#BhavaniFooter .FooterRight .FooterSocial {
  margin-top: 10px;
  gap: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
#BhavaniFooter .FooterRight .FooterSocial a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(214, 195, 163, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  transition: 0.4s;
}
#BhavaniFooter .FooterRight .FooterSocial a:hover {
  background: #d6c3a3;
  color: #0b1a14;
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(214, 195, 163, 0.2);
}
#BhavaniFooter .FooterRight .BookingBtn {
  margin-top: 20px;
  display: block;
  padding: 16px;
  text-align: center;
  background: #d6c3a3;
  color: #0b1a14;
  font-weight: 600;
}
#BhavaniFooter .FooterRight .BookingBtn:hover {
  background: transparent;
  border: 1px solid #d6c3a3;
  color: #d6c3a3;
}
#BhavaniFooter {
  /* BOTTOM */
}
#BhavaniFooter .FooterBottom {
  text-align: center;
  padding: 30px;
  margin-top: 80px;
  border-top: 1px solid rgba(214, 195, 163, 0.1);
  color: #8c7a5b;
}
#BhavaniFooter {
  /* RESPONSIVE */
}
@media (max-width: 992px) {
  #BhavaniFooter .FooterWrapper {
    grid-template-columns: 1fr;
  }
}

#BhavaniBlogs {
  background-color: #fff;
  background-image: url("./assets/images/noise.png");
}
#BhavaniBlogs .WebBtn {
  margin: 32px auto 0;
}
#BhavaniBlogs {
  /* TITLE */
}
#BhavaniBlogs .SectionTitle {
  margin-bottom: 42px;
}
#BhavaniBlogs {
  /* LAYOUT */
}
#BhavaniBlogs .BlogWrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
}
#BhavaniBlogs {
  /* FEATURED BLOG */
}
#BhavaniBlogs .FeaturedBlog {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 500px;
  cursor: pointer;
}
#BhavaniBlogs .FeaturedBlog img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 1s ease;
}
#BhavaniBlogs .FeaturedBlog:hover img {
  transform: scale(1.08);
}
#BhavaniBlogs .FeaturedBlog .BlogContent {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 40px;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}
#BhavaniBlogs .FeaturedBlog .BlogTag {
  font-size: 12px;
  letter-spacing: 2px;
  color: #c8a96a;
  text-transform: uppercase;
}
#BhavaniBlogs .FeaturedBlog h2 {
  font-size: 32px;
  margin: 10px 0;
}
#BhavaniBlogs .FeaturedBlog p {
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 15px;
}
#BhavaniBlogs .FeaturedBlog .BlogLink {
  color: #c8a96a;
  text-decoration: none;
  font-size: 14px;
}
#BhavaniBlogs {
  /* SIDE BLOGS */
}
#BhavaniBlogs .SideBlogs {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#BhavaniBlogs .BlogItem {
  display: flex;
  gap: 15px;
  align-items: center;
  cursor: pointer;
}
#BhavaniBlogs .BlogItem img {
  width: 120px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  transition: 0.4s ease;
}
#BhavaniBlogs .BlogItem:hover img {
  transform: scale(1.05);
}
#BhavaniBlogs .BlogItem .BlogInfo span {
  font-size: 12px;
  color: var(--AmberGold);
  letter-spacing: 1px;
}
#BhavaniBlogs .BlogItem .BlogInfo h4 {
  font-size: 18px;
  margin-top: 5px;
  color: #1a1a1a;
  font-weight: 600;
}
#BhavaniBlogs .BlogItem .BlogInfo p {
  color: #6b6b6b;
}
#BhavaniBlogs {
  /* RESPONSIVE */
}
@media (max-width: 991px) {
  #BhavaniBlogs .BlogWrapper {
    grid-template-columns: 1fr;
  }
  #BhavaniBlogs .FeaturedBlog {
    height: 400px;
  }
}

#BhavaniAmenities {
  position: relative;
  background-color: #fff;
  background-image: url("./assets/images/noise.png");
  overflow: hidden;
  padding-bottom: 0;
}
#BhavaniAmenities .AmenitiesHeader {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 80px;
}
#BhavaniAmenities .AmenitiesHeader .Divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, #b08a5b, transparent);
}
#BhavaniAmenities .SectionTitle {
  text-align: center;
  margin-bottom: 42px;
}
#BhavaniAmenities .AmenitiesGrid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px 40px;
}
#BhavaniAmenities .AmenityItem {
  text-align: center;
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  width: calc(40% - 40px);
  max-width: 250px;
  text-align: center;
}
@media (max-width: 992px) {
  #BhavaniAmenities .AmenityItem {
    width: calc(33.33% - 40px);
  }
}
@media (max-width: 576px) {
  #BhavaniAmenities .AmenityItem {
    width: calc(50% - 20px);
  }
}
#BhavaniAmenities .AmenityItem .IconWrap {
  width: 65px;
  height: 65px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#BhavaniAmenities .AmenityItem .IconWrap img {
  width: 72px;
  height: 72px;
  transition: all 0.4s ease;
}
#BhavaniAmenities .AmenityItem p {
  font-size: 19px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #b08a5b;
}
#BhavaniAmenities .AmenityItem:hover .IconWrap img {
  stroke: #b08a5b;
  transform: scale(1.2);
}
#BhavaniAmenities .ReadModeBtn {
  width: 32%;
}

#Blogs {
  overflow: visible;
}
#Blogs .ReadModeBtn {
  width: 30%;
}
#Blogs .ReadModeBtn .WebBtn {
  float: right;
}
#Blogs .BlogCard {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}
#Blogs .BlogCard .BlogContent {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 24px 24px;
  border-radius: 24px;
  display: flex;
  width: 95%;
  justify-content: space-between;
  align-items: center;
}
#Blogs .BlogCard .BlogContent .BlogTitle {
  margin-bottom: 14px;
}
#Blogs .BlogCard .BlogContent .BlogTitle h5 {
  font-weight: 700;
  font-style: Bold;
  font-size: 42px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--BrandGreen);
}
#Blogs .BlogCard .BlogContent .Date {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 325;
  font-size: 19px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: justify;
  color: #868686;
  line-height: 1.4;
}
#Blogs .SideBar {
  position: sticky;
  top: 100px;
}
#Blogs .SideBar .ContactForm {
  background: #FFFFFF;
  padding: 40px 40px;
  list-style: none;
  border-radius: 24px;
  margin-top: 32px;
  text-align: center;
}
#Blogs .SideBar .ContactForm .InputFeild {
  margin-bottom: 18px;
}
#Blogs .SideBar .ContactForm .InputFeild input {
  background: #FFF3E5;
  width: 100%;
  font-size: 16px;
  border-radius: 14px;
  padding: 18px 18px;
  outline: none;
  border: 1px solid #FFFFFF;
}
#Blogs .SideBar .ContactForm .InputFeild input::-moz-placeholder {
  color: #ADADAD;
}
#Blogs .SideBar .ContactForm .InputFeild input::placeholder {
  color: #ADADAD;
}
#Blogs .SideBar .ContactForm .InputFeild textarea {
  background: #FFF3E5;
  width: 100%;
  font-size: 16px;
  border-radius: 14px;
  padding: 18px 18px;
  outline: none;
  border: 1px solid #FFFFFF;
}
#Blogs .SideBar .ContactForm .InputFeild textarea::-moz-placeholder {
  color: #ADADAD;
}
#Blogs .SideBar .ContactForm .InputFeild textarea::placeholder {
  color: #ADADAD;
}
#Blogs .SideBar .ContactForm .FormBtn {
  padding: 0;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  background: var(--BrandGreen);
  border: none;
  min-width: 200px;
  box-shadow: none;
}
#Blogs .SideBar .ContactForm .FormBtn::before {
  background: #c59520;
}
#Blogs .SideBar .ContactForm .FormBtn input {
  padding: 14px;
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  color: #fff;
  text-transform: uppercase;
}
#Blogs .SideBar .ContactForm .ContactTitle h5 {
  text-align: center;
  color: var(--BrandGreen);
  margin-bottom: 32px;
  font-weight: 700;
  font-style: Bold;
  font-size: 52px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
}
#Blogs .SideBar .Top-Articles {
  background: #FFFFFF;
  padding: 40px 24px;
  list-style: none;
  border-radius: 24px;
  margin-bottom: 24px;
}
#Blogs .SideBar .Top-Articles ul {
  list-style: none;
}
#Blogs .SideBar .Top-Articles li {
  counter-increment: list;
  list-style-type: none;
  position: relative;
}
#Blogs .SideBar .Top-Articles {
  /* Outout the numbers using the counter() function, but use a custom color, and position the numbers how we want */
}
#Blogs .SideBar .Top-Articles ol li:before {
  content: counter(list);
  left: -42px;
  top: -10px;
  position: absolute;
  text-align: right;
  width: 26px;
  font-size: 32px;
}
#Blogs .SideBar .Top-Articles li {
  margin-bottom: 24px;
}
#Blogs .SideBar .Top-Articles li .article-title {
  margin-bottom: 5px;
  text-transform: capitalize;
  font-weight: 700;
  font-style: Bold;
  font-size: 18px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 1px;
  text-transform: capitalize;
}
#Blogs .SideBar .Top-Articles li .article-description {
  font-size: 14px;
  color: #444444;
  text-align: justify;
  line-height: 1.4;
  word-spacing: 2px;
  width: 95%;
}
#Blogs .SideBar .Top-Articles li .article-description span {
  font-size: 12px;
  text-transform: uppercase;
  color: #c59520;
  font-weight: 400;
  font-style: Bold;
  font-size: 14.39px;
  line-height: 17.09px;
  letter-spacing: 0%;
  text-align: justify;
}
#Blogs .SideBar .Top-Articles li .article-description .views h5 {
  font-size: 15px;
  padding: 5px 0;
  color: #ea5875;
}
#Blogs .SideBar .Top-Articles li .article-description .views h5 i {
  padding-right: 5px;
}
#Blogs .SideBar .Top-Articles li .date {
  font-size: 12px;
  color: #767676;
}
#Blogs .SideBar .Top-Articles .top-articles-title h4 {
  text-align: center;
  color: var(--BrandGreen);
  margin-bottom: 32px;
  font-weight: 700;
  font-style: Bold;
  font-size: 52px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
}
#Blogs .Pagination {
  border-top: 1.31px solid var(--AmberGoldLight);
  margin-top: 24px;
}
#Blogs .pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 32px auto;
  width: 50%;
}
#Blogs .pagination .page-arrow {
  position: relative;
  width: 40px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
#Blogs .pagination .page-arrow .material-symbols-outlined {
  font-size: 32px;
  color: #C59520;
}
#Blogs .pagination .page-arrow img {
  width: 40px;
}
#Blogs .pagination .page-arrow .img-hov {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 300ms ease;
}
#Blogs .pagination .page-arrow:hover .img-hov {
  opacity: 1;
}
#Blogs .pagination .page-item {
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
#Blogs .pagination .page-item .page-link {
  font-size: 26px;
  background-color: transparent;
  border: none;
  color: #667085;
  padding: 0;
}
#Blogs .pagination .page-item .page-link:focus {
  box-shadow: none;
}
#Blogs .pagination .page-item.active {
  border-radius: 7px;
  background: var(--BrandGreen);
}
#Blogs .pagination .page-item.active .page-link {
  color: var(--AmberGold);
}

#BlogsDetail {
  overflow: visible;
  padding-top: 100px;
}
#BlogsDetail .BlogBody section {
  padding: 0;
}
#BlogsDetail p {
  color: #868686;
  line-height: 1.4;
  font-size: 17px;
}
#BlogsDetail b {
  color: #000;
}
#BlogsDetail h1,
#BlogsDetail h2,
#BlogsDetail h4,
#BlogsDetail h5,
#BlogsDetail h6 {
  color: var(--BrandGreen);
  margin-top: 32px;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 1px;
}
#BlogsDetail h3 {
  margin-top: 32px;
  color: #C59520;
  font-weight: 700;
  letter-spacing: 1px;
}
#BlogsDetail a {
  color: #C59520;
}
#BlogsDetail a:hover {
  color: rgb(153.1266375546, 115.8165938865, 24.8733624454);
}
#BlogsDetail .BlogCard {
  background: #fff;
  padding: 24px 24px;
  border-radius: 24px;
  position: relative;
}
#BlogsDetail .BlogCard .BlogImage {
  width: 100%;
  height: 100%;
}
#BlogsDetail .BlogCard .BlogImage img {
  border-radius: 14px;
}
#BlogsDetail .BlogCard .BlogContent {
  margin-top: 24px;
  position: relative;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 95%;
  justify-content: space-between;
  align-items: center;
}
#BlogsDetail .BlogCard .BlogContent .BlogTitle {
  margin-bottom: 14px;
}
#BlogsDetail .BlogCard .BlogContent .BlogTitle h1 {
  font-weight: 700;
  font-style: Bold;
  font-size: 52px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--BrandGreen);
}
#BlogsDetail .BlogCard .BlogContent .Date {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 325;
  font-size: 19px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: justify;
  color: #868686;
  line-height: 1.4;
  margin-bottom: 24px;
}
#BlogsDetail .BlogCard .BlogContent .Date img {
  border-radius: 0;
}
#BlogsDetail .WebBtn::before {
  background: #192231;
}
#BlogsDetail .WebBtn:hover {
  color: #fff;
}
#BlogsDetail .SideBar {
  position: sticky;
  top: 100px;
}
#BlogsDetail .SideBar .ContactForm {
  background: #FFFFFF;
  padding: 40px 40px;
  list-style: none;
  border-radius: 24px;
  margin-top: 32px;
  text-align: center;
}
#BlogsDetail .SideBar .ContactForm .InputFeild {
  margin-bottom: 18px;
}
#BlogsDetail .SideBar .ContactForm .InputFeild input {
  background: #FFF3E5;
  width: 100%;
  font-size: 16px;
  border-radius: 14px;
  padding: 18px 18px;
  outline: none;
  border: 1px solid #FFFFFF;
}
#BlogsDetail .SideBar .ContactForm .InputFeild input::-moz-placeholder {
  color: #ADADAD;
}
#BlogsDetail .SideBar .ContactForm .InputFeild input::placeholder {
  color: #ADADAD;
}
#BlogsDetail .SideBar .ContactForm .InputFeild textarea {
  background: #FFF3E5;
  width: 100%;
  font-size: 16px;
  border-radius: 14px;
  padding: 18px 18px;
  outline: none;
  border: 1px solid #FFFFFF;
}
#BlogsDetail .SideBar .ContactForm .InputFeild textarea::-moz-placeholder {
  color: #ADADAD;
}
#BlogsDetail .SideBar .ContactForm .InputFeild textarea::placeholder {
  color: #ADADAD;
}
#BlogsDetail .SideBar .ContactForm .FormBtn {
  padding: 0;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  background: var(--BrandGreen);
}
#BlogsDetail .SideBar .ContactForm .FormBtn::before {
  background: #c59520;
}
#BlogsDetail .SideBar .ContactForm .FormBtn input {
  padding: 14px;
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  color: #fff;
  margin: 0 0 -4px;
}
#BlogsDetail .SideBar .ContactForm .ContactTitle h5 {
  text-align: center;
  color: var(--BrandGreen);
  margin-bottom: 32px;
  font-weight: 700;
  font-style: Bold;
  font-size: 52px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
}
#BlogsDetail .SideBar .Top-Articles {
  background: #FFFFFF;
  padding: 40px 24px;
  list-style: none;
  border-radius: 24px;
  margin-bottom: 24px;
}
#BlogsDetail .SideBar .Top-Articles ul {
  list-style: none;
}
#BlogsDetail .SideBar .Top-Articles li {
  counter-increment: list;
  list-style-type: none;
  position: relative;
}
#BlogsDetail .SideBar .Top-Articles {
  /* Outout the numbers using the counter() function, but use a custom color, and position the numbers how we want */
}
#BlogsDetail .SideBar .Top-Articles ol li:before {
  content: counter(list);
  left: -42px;
  top: -10px;
  position: absolute;
  text-align: right;
  width: 26px;
  font-size: 32px;
}
#BlogsDetail .SideBar .Top-Articles li {
  margin-bottom: 24px;
}
#BlogsDetail .SideBar .Top-Articles li .article-title {
  margin-bottom: 5px;
  text-transform: capitalize;
  font-weight: 700;
  font-style: Bold;
  font-size: 18px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 1px;
  text-transform: capitalize;
}
#BlogsDetail .SideBar .Top-Articles li .article-description {
  font-size: 14px;
  color: #444444;
  text-align: justify;
  line-height: 1.4;
  word-spacing: 2px;
  width: 95%;
}
#BlogsDetail .SideBar .Top-Articles li .article-description span {
  font-size: 12px;
  text-transform: uppercase;
  color: #c59520;
  font-weight: 400;
  font-style: Bold;
  font-size: 14.39px;
  line-height: 17.09px;
  letter-spacing: 0%;
  text-align: justify;
}
#BlogsDetail .SideBar .Top-Articles li .article-description .views h5 {
  font-size: 15px;
  padding: 5px 0;
  color: #ea5875;
}
#BlogsDetail .SideBar .Top-Articles li .article-description .views h5 i {
  padding-right: 5px;
}
#BlogsDetail .SideBar .Top-Articles li .date {
  font-size: 12px;
  color: #767676;
}
#BlogsDetail .SideBar .Top-Articles .top-articles-title h4 {
  text-align: center;
  color: var(--BrandGreen);
  margin-bottom: 32px;
  font-weight: 700;
  font-style: Bold;
  font-size: 52px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
}
#BlogsDetail .SideBar .OfferCard {
  border-radius: 24px;
  background: var(--BrandGreen);
  margin-top: 32px;
  text-align: center;
}
#BlogsDetail .SideBar .OfferCard .OfferContent {
  overflow: hidden;
  padding: 24px;
}
#BlogsDetail .SideBar .OfferCard .Quote {
  color: #C59520;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 1px;
  text-align: center;
  padding: 14px 0 24px;
}
#BlogsDetail .SideBar .OfferCard .Logo {
  width: 220px;
  margin: 14px auto 24px;
}
#BlogsDetail .SideBar .OfferCard .TextBold {
  margin-top: 24px;
  font-weight: 700;
  font-size: 48px;
  line-height: 100%;
  letter-spacing: 1px;
  color: #fff;
}
#BlogsDetail .SideBar .OfferCard .Validity {
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 1px;
  color: #C9C9C9;
  margin-top: 8px;
}
#BlogsDetail .Pagination {
  border-top: 1.31px solid #EAECF0;
  margin-top: 24px;
}
#BlogsDetail .pagination {
  justify-content: space-between;
  align-items: center;
  margin: 32px auto;
  width: 50%;
}
#BlogsDetail .pagination .page-arrow {
  position: relative;
  width: 40px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
}
#BlogsDetail .pagination .page-arrow .material-symbols-outlined {
  font-size: 32px;
  color: #C59520;
}
#BlogsDetail .pagination .page-arrow:hover .img-hov {
  opacity: 1;
}
#BlogsDetail .pagination .page-arrow img {
  width: 40px;
}
#BlogsDetail .pagination .page-arrow .img-hov {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 300ms all ease;
}
#BlogsDetail .pagination .page-item {
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
#BlogsDetail .pagination .page-item .page-link {
  font-size: 26px;
  border: none;
  background-color: transparent;
  padding: 0;
  color: #667085;
}
#BlogsDetail .pagination .page-item.active {
  border-radius: 7px;
  background: var(--BrandGreen);
}
#BlogsDetail .pagination .page-item.active .page-link {
  color: #fff;
}
#BlogsDetail .pagination .page-link:focus {
  box-shadow: none;
}/*# sourceMappingURL=style.css.map */