/* ========== Root Variables ========== */

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--bs-heading-color);
}

/* ========== Global ========== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Lato", sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  /* font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; */
}

a {
  text-decoration: none;
}

a:hover {
  color: var(--color-link);
}

/* ============base button styles========== */


.gradient-button {
  background: var(--gradient-button);
  background-size: 300% 300%;
  color: var(--color-secondary);
  border: none;
  padding: 0.75em 1.5em;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  /* box-shadow: 0 0 12px rgba(85, 107, 47, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease; */
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

/* Gradient animation keyframes */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
    transform: scale(1) translateY(0px);
  }
  50% {
    background-position: 100% 50%;
    transform: scale(1.05) translateY(-2px);
  }
  100% {
    background-position: 0% 50%;
    transform: scale(1) translateY(0px);
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 0 10px rgba(85, 107, 47, 0.4);
  }
  50% {
    box-shadow: 0 0 20px rgba(85, 107, 47, 0.6);
  }
}

/* 3. Wiggle */

@keyframes wiggle {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(3deg); }
  75% { transform: rotate(-3deg); }
}

.flicker {
  animation-name: flicker;
  animation-duration: 1s;
}
@keyframes flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    opacity: 1;
  }
  20%, 24%, 55% {
    opacity: 0.4;
  }
}
/* 7. Wave */
.wave {
  animation-name: wave;
}
@keyframes wave {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(10deg); }
  75% { transform: rotate(-10deg); }
}

/* 20. Vibrate */
.vibrate {
  animation-name: vibrate;
  animation-duration: 0.2s;
  animation-timing-function: linear;
}
@keyframes vibrate {
  0%, 100% { transform: translate(0); }
  25% { transform: translate(-2px, 2px); }
  50% { transform: translate(2px, -2px); }
  75% { transform: translate(-1px, 1px); }
}

.gradient-button {
  animation:
   gradientShift 1.2s ease-in-out infinite,
    wiggle 1.2s ease-in-out infinite;
}


/* ============= base button styles ======== */
/* ========== Navbar ========== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1030;
  padding: 10px 20px;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  box-sizing: border-box;
 
}

.navbar-nav .nav-link {
  font-size: 1.3rem;
  font-weight: 400;
  /* color: var(--color-text); */
  color: var(--color-text);
  margin: 0 2px;
  padding-bottom: 5px;
  border-bottom: 3px solid transparent;
  transition: border-color 0.3s ease;
 
  /* text-shadow: 2px 2px 5px red; */
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active,
.nav-link.active {
  border-bottom: 3px solid var(--color-link);
  color: var(--color-link);
}

.contact-icons i {
  color: var(--color-link);
  color: #222;
  transition: all 0.3s ease;
  background: linear-gradient(90deg, #059295, #e52e71);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-icons a {
  font-size: 1.7rem;
  margin-left: 1rem;
}

.custom-logo {
  width: 100px;
}


@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(15deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.contact-icons .fa-phone {
  animation: rotate 1s infinite ease-in-out;
}

.contact-icons .fa-whatsapp {
  animation: bounce 1s infinite ease-in-out;
}


@media (max-width: 576px) {
  .custom-logo {
    width: 80px;
  }
  .navbar-nav .nav-link {
    font-size: 0.8rem;
    margin: 2px 0px;
    padding: 2px 1rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 10px 1px;
  }
  .navbar-nav .nav-link {
    font-size: 0.8rem;
  }
  .contact-icons a {
    font-size: 1.5rem;
    margin-left: 0.8rem;
  }
  .custom-logo {
    width: 90px;
  }
}

@media (max-width: 1024px) {
  .custom-logo {
    width: 90px;
  }
  .navbar-nav .nav-link {
    font-size: 1.1rem;
  }
}

/* ========== Sections ========== */
.site-section {
  /* padding: 2rem 0; */
  background-color: var(--color-bg);
  color: var(--color-text);
  overflow:hidden;
}

.site-section:nth-of-type(odd) {
  /*background-color: var(--color-bg-alt);*/
}

/* Responsive Padding */
@media (max-width: 768px) {
  .site-section {
    padding: 2rem 0;
  }
}

/* ================ banner ============ */
.desktop-slider {
  display: none;
}
.mobile-slider {
  display: block;
}
.banner-img {
  height: 90vh;
  object-fit: cover;
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
  opacity: 1;
  overflow-x: hidden;
}

.carousel-indicators [data-bs-target] {
  /* width: 10px;
  height: 10px; */
  border-radius: 50%;
  margin: 0 4px;
}

.custom-carousel-icon {
  color: #fff;
  background-color: #000;
  padding: 5px 10px;
  /* border-radius: 50%; */
  transition: background-color 0.3s ease;
}
@media (min-width: 768px) {
  .desktop-slider {
    display: block;
  }
  .mobile-slider {
    display: none;
  }
  .custom-carousel-icon {
    padding: 4px 8px;
  }
}

@media (max-width: 576px) {
  .custom-carousel-icon {
    padding: 3px 6px;
  }
}



.advantages-heading {
  font-size: 2rem;
  font-weight: bold;
  /* color: var(--color-primary); */
  color: var(--bs-heading-color);
  text-align: center;
  position: relative;
  display: inline-block;
  padding-bottom: 0.65rem;
}

.advantages-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-color: var(--color-text);
}

@media (max-width: 768px) {
  .advantages-heading {
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--color-text);
    font-size: 1.5rem;
  }
}

/*================ about section==========  */

#about-section {
  overflow-x: hidden;
}

.luxury-heading {
  /* color: #AA692F !important; */
  color: var(--color-primary);
  font-size: 26px;
}

.luxury-text {
  /* color: "#4E4E4E" !important; */
  color: black;
  font-size: 16px;
  margin-top: 1rem;
  letter-spacing: 1%;
}

.luxury-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  margin-bottom: 10px;
  align-items: center;
  justify-content: center;
  margin: auto;
  background-color: var(--color-primary);
}

.luxury-icon i {
  font-size: 2rem;
  color: #fff;
}

.luxury-icon-text {
  font-size: 14px;
  text-align: center !important;
  letter-spacing: 1px;
  /* color: #A9692F; */
  color: var(--color-text);
  margin-top: 10px;
  font-weight: 600;
}

.form-container {
  background-color: #f5e9dc;
  max-width: 444px;
  margin: 0 auto;
  padding: 30px;
  border-radius: 20px 20px 0px 0px;
  text-align: center;
  position: relative;
}

.about-form-heading{
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 0.3rem;
  word-wrap: break-word;
}
.about-form-subheading{
  font-size: 1rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #666;
}

@media (max-width: 576px) {
  .luxury-icon {
    width: 60px;
    height: 60px;
    font-size: medium;
  }
}

/* ================= Price ================ */

/* Section Wrapper */
#price-section {
  background-color: var(--color-bg-alt);
}

.price-table {
  text-align: center;
}

.price-table h3.heading1.hike {
  text-align: center;
}
.type-section {
  border-bottom: 1px dashed #fff;
}

.para-price p {
  text-align: center;
  margin-bottom: 20px;
}

.price-section-info {
  background: var(--color-primary);
   /* background: #ffc9a9; */
  color: var(--color-white);
  text-align: center;
  padding: 20px 10px;
  box-shadow: 0 0 5px #000;
  position: relative;
  /* border-radius: 8px; */
  /* border-top-right-radius: 5px;
  border-bottom-left-radius: 5px; */
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.price-section-info::before {
  content: "";
  width: 50px;
  height: 50px;
  position: absolute;
  /* top: -10px;
  right: -10px; */
  top: -10px;
  left: -10px;
  z-index: -1;
  background: var(--color-secondary);
  background: #ffc9a9;
  transform: rotate(90deg);
}

.price-section-info .decorative-corner-bottom-left {
  width: 50px;
  height: 50px;
  position: absolute;
  bottom: -10px;
  right: -10px;
  z-index: -1;
  background: var(--color-secondary);
  background: #ffc9a9;
  transform: rotate(90deg);
  display: block;
  content: "";
}

.price-section-info p {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-white);
}

.price-section-info h4 {
  margin: 5px 0 15px;
  font-size: 20px;
  font-weight: 600;
  color: var(--color-white);
  
}
.price-span {
  font-size: 15px;
  font-weight: 100;
}

.btn-button {
  margin: 20px 0 20px;
}

.price-btn-button .btn {
  /* background-color: #fff; */
  /* color: var(--color-primary); */
  /* color: #fff; */
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  border: none;
  margin-top: 0.5rem;
  border:3px solid white;
  color: var(--color-white);;
}

.price-section-info:hover {
  /* transform: scale(1.03); */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}




@media (max-width: 1024px) {
  /* .price-table {
    padding: 0 20px;
  } */

  .price-section-info {
    padding: 20px 15px 10px;
    font-size: 90%;
  }

  .price-section-info h4 {
    font-size: 18px;
  }

  .price-section-info p {
    font-size: 13px;
  }

  .btn-button .btn {
    padding: 10px 18px;
    font-size: 14px;
  }
}


@media (max-width: 767px) {


  .price-section-info {
  
    padding: 10px 8px;
  }

  .price-section-info h4 {
    font-size: 16px;
  }

  .price-section-info p {
    font-size: 12px;
  }

  .price-span {
    font-size: 12px;
  }

  .btn-button .btn {
    font-size: 13px;
    padding: 6px 8px;
    
  }


}

/* ======================== Gallery======================= */


#main-carousel {
  max-width: 100%;
  max-height: 500px;
  margin: 0 auto;
  position: relative;  
  padding-bottom: 1rem; 
}

#main-carousel .splide__slide img {
  width: 100%;
  height: 100%;
  max-height: 500px;
  object-fit: cover;
  /*border-radius: 10px;*/
  display: block;
}


.thumbnails {
  display: flex;
  margin-top: 1.5rem; 
  padding: 0 !important;    
  margin-bottom: 0;
  justify-content: center;
  align-items: center;
  list-style: none;
  flex-wrap: wrap;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.thumbnail {
  width: 70px;
  height: 70px;
  overflow: hidden;
  margin: 0 0.2rem;
  cursor: pointer;
  opacity: 0.6;
  border-radius: 6px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}


.thumbnail.is-active {
  opacity: 1;
  border-color: #007bff;
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

@media (max-width: 768px) {
 .thumbnails {
  margin-top: 0.6rem; 
 }
}

@media (max-width: 576px) {

    .thumbnail {
  width: 50px;
  height: 50px;
  }
}



/* ======================== Custom Arrows ======================= */

.custom-arrows .splide__arrow {
  position: absolute;
  top: 50%;
  /* transform: translateY(-50%); */
  z-index: 2;
 background-color: black !important;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  width: 36px;
  height: 36px;
  font-size: 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* transition: background 0.3s ease; */
}


.custom-arrows .splide__arrow--prev {
  left: 10px;
}


.custom-arrows .splide__arrow--next {
  right: 10px;
}


@media (max-width: 768px) {
  .custom-arrows .splide__arrow {
    width: 28px;
    height: 28px;
    font-size: 0.85rem;
  }

  .custom-arrows .splide__arrow--prev {
    left: 5px;
  }

  .custom-arrows .splide__arrow--next {
    right: 5px;
  }
}

/* ===========================Amenities====================== */


.amenities-item {
  padding: 16px 8px;
  background: var(--color-primary);
  border-radius: 8px;
  color: var(--color-white);
  transition: transform 0.3s ease;
  cursor: pointer;
  position: relative;
  min-height: 115px; 
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.amenities-item i {
  color: var(--color-secondary);
  font-size: clamp(1.2rem, 2vw, 2rem); 
  margin-bottom: 10px;
}

.amenities-item p {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  margin-bottom: 0;
  font-weight: 600;
}

  .amenities-image {
     width: 100%;
     height:100%;
   object-fit:cover;
   border-radius: 8px;
    border:0px solid black;
  }


.amenities-item:hover {
  transform: translateY(-5px);
}

/* Hover border animation */
.amenities-item::before,
.amenities-item::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 0%;
  opacity: 0;
  border-radius: 8px;
  pointer-events: none;
}

.amenities-item::before {
  top: 0;
  left: 0;
  /* border-top: 3px solid #ffc006;
  border-left: 3px solid #ffc006; */
  border-top: 3px solid #ffc006;
  border-left: 3px solid #ffc006;
  transition: width 0.2s 0.5s ease-out, height 0.15s 0.35s linear,
    opacity 0s 0.7s;
}

.amenities-item::after {
  bottom: 0;
  right: 0;
  border-bottom: 3px solid #ffc006;
  border-right: 3px solid #ffc006;
  transition: width 0.2s 0.15s linear, height 0.15s ease-in, opacity 0s 0.35s;
}

.amenities-item:hover::before,
.amenities-item:hover::after {
  width: 100%;
  height: 100%;
  opacity: 1;
}

.amenities-item:hover::before {
  transition: width 0.2s ease-in, height 0.15s 0.2s linear, opacity 0s;
}

.amenities-item:hover::after {
  transition: width 0.2s 0.35s linear, height 0.15s 0.5s ease-out,
    opacity 0s 0.3s;
}


@media (max-width: 576px) {
.amenities-item {
  padding: 10px 5px;
}


  .amenities-item i {
    font-size: 1.5rem;
  }

  .amenities-item p {
    font-size: 12px;
  }

}
@media (max-width: 780px) {
  .amenities-item i {
    font-size: 1.9rem;
  }

  .amenities-item p {
    font-size: 15px;
  }
}

.image-overlay-container {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.image-overlay-container img {
  display: block;
  width: 100%;
  height: auto;
    filter: blur(0px);
}

.overlay-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.6); 
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-weight: bold;
}

.image-overlay-container:hover .overlay-button {
  opacity: 1; 
}
.image-overlay-container:hover img {
  filter: blur(3px);
  transition: filter 0.3s ease;
}
.image-overlay-container img {
  filter: none;
  transition: filter 0.3s ease;
}

@media (max-width:1024px){
    .amenities-image {
  width: 100%;
  height: 370px !important ;

}

}

/* ================Master-Plan============ */
#master-plan {
  background-color: var(--color-bg); /* Alternating background */
  /*padding: 4rem 0;*/
  color: var(--color-text);
}

.master-plan-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.master-plan-card {
  background-color: var(--color-bg);
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 800px;
  width: 100%;
  margin: 0 auto 20px auto;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color:black;
  border:4px double var(--color-primary) ; 
}

.image-wrapper-master-plan {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.image-wrapper-master-plan img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(5px);
  transition: filter 0.3s ease-in-out;
  display: block;
}

.master-plan-card:hover .image-wrapper-master-plan img {
  filter: blur(0);
}

.master-plan-name {
  font-size: 1.2rem;
  font-weight: 600;  
  color:white;
  background: var(--color-primary);
  margin: 0;
  padding: 12px 0;
  text-align: center;
}

@media (max-width: 576px) {
  .master-plan-container {
    padding: 0;
  }

  .image-wrapper-master-plan {
    height: 300px;
  }

  #master-plan h2 {
    font-size: 1.5rem;
  }

  .flip-card-back p {
 font-size: 1rem; 
}
}


.flip-card {
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 400px;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}

.flip-card-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flip-card-back {
  background-color: rgba(0,0,0,0.85);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotateY(180deg);
  font-size: 1.4rem;
  font-weight: bold;
}

.flip-card-back p {
  border:2px solid var(--color-white);
  padding:10px;
  border-radius: 8px;
  cursor: pointer;
}



/* =================Floor-Plan=================== */
.image-wrapper-floor-plan {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  height: 280px; /*adjust to fit your design */
  
}

.blur-image {
  width: 100%;
  height: auto;
  filter: blur(3px);
  transition: filter 0.3s ease-in-out;
}

/* .overlay-area {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 123, 255, 0.85);
  color: #fff;
  padding: 10px 15px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  z-index: 2;
  transition: background-color 0.3s;
} */

.overlay-area:hover {
  background-color: var(--color-primary);
}

.floor-card {
  border: none;
  /* box-shadow: 0 2px 12px rgba(0,0,0,0.1); */
  box-shadow: rgba(0,0,0,0.1) 0px 8px 24px;
  border-radius: 10px;
  overflow: hidden;
}

.floor-card-row {
  font-size: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.book-now-btn {
 overflow: hidden;
  color: white;
   border: 3px solid var(--color-primary);
  padding: 0.6rem 1.2rem;
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.overlay-area {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color:var(--color-primary);
  color: #fff;
 padding: 0.6rem 1.2rem;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  z-index: 2;
  transition: opacity 0.3s ease;
  border:2px solid white ;
  opacity: 1; 
}

.image-wrapper-floor-plan:hover .overlay-area {
  opacity: 0;
  pointer-events: none;
}

.blurred-img {
  filter: blur(2px);
  transition: filter 0.3s ease;
}

.image-wrapper-floor-plan:hover .blurred-img {
  filter: blur(0);
}

.floor-card img {
  width: 100%;
  object-fit: contain;
  background-color: var(--color-bg-alt);
}

.floor-card-row {
  display: flex;
  align-items: center;
  font-weight: 500;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.5rem;
}

.floor-card-row i {
  color: var(--color-primary);
  margin-right: 0.5rem;
  font-size: 18px;
}

.floor-card-row span {
  font-weight: 600;
  font-size: 18px;
}

.image-wrapper-floor-plan {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.image-wrapper-floor-plan img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.overlay-floor-plan {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  border-radius: 10px;
  z-index: 3;
}

.image-wrapper-floor-plan:hover .overlay-floor-plan {
  opacity: 1;
}

.overlay-btn {
  background-color: rgba(0, 0, 0, 0.4);
  color: white;
  border: 2px solid white;
  padding: 0.6rem 1.2rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.overlay-btn:hover {
  background-color: black;
  color: white;
}





/* ========== Location ========== */
#location-section {
  background-color: var(--color-bg);
  padding: 4rem 0;
  color: var(--color-text);
}

.location-row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.location-img-div {
  height: 100%;
  width: 100%;
  display: flex;
}

.location-left,
.location-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .location-row {
    align-items: stretch;
  }

  .location-left,
  .location-right {
    height: auto;
  }

  .location-right {
    display: flex;
  }

  .map-image {
    height: 100%;
    object-fit: cover;
  }
  .location-list li {
    padding: 3px 0px;
  }
}

.map-image {
  width: 100%;
  border-radius: 8px;
  cursor: pointer;
  background-color: var(--color-bg-alt);
}

.location-list li {
  list-style: none;
  margin-bottom: 10px;
  font-size: 16px;
  color: var(--color-text);
  /*border-bottom: 3px solid var(--color-secondary);*/
  border-bottom: 3px solid transparent;
  transition: border-color 0.3s ease-in-out;
  box-sizing: border-box;
  padding: 8px 10px;
}

.location-list li:hover {
  border-color: var(--color-link);
}

.location-list i {
  font-size: 18px;
  color: var(--color-link);
  margin-right: 0.5rem;
  padding: 0;
}

@media (max-width: 576px) {
  .location-list {
    padding: 0px 5px;
  }
}

.map-iframe {
  width: 100%;
  height: 100%;
  border: 4px double var(--color-link);
  border-radius: 8px;
  cursor: pointer;
  min-height: 300px;
  background-color: var(--color-bg-alt);
}

.fullscreen-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: 1001;
}

/* ========== Fullscreen Map ========== */
.fullscreen-map {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.fullscreen-map img {
  max-width: 70%;
  max-height: 70%;
  object-fit: contain;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.close-btn {
  position: absolute;
  top: 5rem;
  right: 30px;
  color: white;
  font-size: 30px;
  cursor: pointer;
}

@media (max-width: 767px) {
  .location-row {
    flex-direction: column;
  }

  .location-left,
  .location-right {
    width: 100%;
  }

  .map-image {
    margin-top: 20px;
    min-height: 250px;
    height: auto;
  }
}



/* ========== Download========== */
#download-section {
 
  /* padding: 4rem 0; */
  color: var(--color-text);
}



.download-section-button {
  padding: 0.75rem 1.5rem;
  /* background: var(--gradient-main); */
  color: white;
  border: none;
   font-weight: 600;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}


.contact-info-inner {
  padding: 20px;
  max-width: 100%;
 
  /* background-color:var(--color-primary);
  color:var(--color-white) */
   background-color:#fff;
   border-radius: 10px;
 box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;

}

 .contact-info-inner p{
  padding:1rem;
  overflow: hidden;
 }

.contact-info-inner h3 {
  color:var(--color-primary)
}

@media (max-width: 576px) {
  .contact-info-inner p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}

/* ========== Footer ========== */
.site-footer {
  background-color: #333;
  padding: 2rem 1rem;
  color: var(--color-white);
  font-size: 14px;
  line-height: 1.6;
}
#footer-bottom {
    padding: 50px 0px 10px;
    background: #24262d;
    color: #fff;
    background: linear-gradient(45deg, black, #4b4b4b82), url(./assets/images/footer-bg1.webp);
    background-position: bottom;
    background-size: cover;
}


.site-footer a {
  color: #aaa;
}

.site-footer a:hover {
  color: white;
}

.footer-content {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.disclaimer {
  /*  color: #aaa; */
  font-size: 13px;
  margin-bottom: 1.5rem;
}

.footer-bottom {
  margin-top: 1rem;
}

.footer-bottom .border-top {
  border-top: 1px solid rgba(255, 255, 255, 0.1);

  margin-bottom: 1rem;
  height: 1px;
}

.footer-bottom p {
  margin: 0;
  font-size: 12px;
  color: #777;
}

@media (max-width: 576px) {
  .site-footer {
    padding: 1.5rem 1rem;
  }

  .disclaimer {
    font-size: 12px;
    text-align: justify;
  }
}

/* ========== Mobile Sticky Footer Tabs ========== */
.mobile-footer-tabs {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  justify-content: space-around;
  padding: 0.5rem 0;
  z-index: 9999;
  background-color: var(--color-primary);
}

.mobile-footer-tabs .tab {
  color: #fff;
  text-align: center;
  font-size: 14px;
  flex: 1;
  text-decoration: none;
  font-weight: bold;
}

.mobile-footer-tabs .tab i {
  font-size: 25px;
  display: block;
  margin-bottom: 4px;
  color: white;
}

.mobile-footer-tabs .tab:hover {
  cursor: pointer;
}

@media (max-width: 768px) {
  .mobile-footer-tabs {
    display: flex;
  }

  body {
    padding-bottom: 60px;
  }
}







/* ===== Enquiry Button ===== */
.enquiry-btn {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  background: transparent;
}

.enquiry-btn img {
  width: 50px;
  height: auto;
  cursor: pointer;
}

.toggle {
  position: fixed;
  top: 50%;
  right: 0;
  transform-origin: right center;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  z-index: 1000;
 
}

.toggle i {
  font-size: 16px;
}

@media (max-width: 768px) {
  .toggle {
    display: none;
  }
}



/* ===== Enquiry Form Styles ===== */

.form-modal-side-img {
  
  height: 100%;
  width: 100%;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.form-left-icon i {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 0.4rem;
}
.form-left-icon {
  background-color: rgb(241, 236, 236);
}

.form-heading {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 0.3rem;
  word-wrap: break-word;
}

.form-subheading {
  font-size: 1rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #666;
}

.text-danger {
  font-size: 10px;
  color: #dc3545;
}

.form-control,
.iti {
  font-size: 0.95rem;
  border-radius: 8px;
}

.form-control {
  padding: 12px;
}

.btn-submit {
  padding: 12px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  color: white;
  border: none;
  background-color: var(--color-primary);
 
}

.iti {
  position: relative;
  width: 100%;
}

.iti__country-list {
  z-index: 9999 !important; 
  position: absolute;
  background: white;
  max-height: 200px;
  overflow-y: auto;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

.consent-checkbox {
  margin-top: 15px;
  font-size: 12px;
  text-align: left;
  color: #555;
  display: flex;
  align-items: flex-start;
}

.consent-checkbox input[type="checkbox"] {
  margin-right: 8px;
  margin-top: 2px;
  accent-color: #28a7e9;
}

.consent-checkbox label {
  flex: 1;
  line-height: 1.4;
}

.form-padding {
  padding: 0rem 1rem 1rem 1rem;
}

@media (max-width: 768px) {

  .form-heading {
    font-size: 1.4rem;
  }

  .form-padding {
    padding: 0.8rem;
  }

  .form-control {
    padding: 9px;
  }

  .btn-submit {
    padding: 9px;
    font-weight: 600;
    border-radius: 5px;
  }
}

/* ===== Back to Top Button ===== */
#backToTopBtn {
  position: fixed;
  bottom: 40px;
  right: 30px;
  z-index: 999;
  display: none;
  background-color: var(--color-primary);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s ease, background-color 0.3s ease;
}


@media (max-width: 768px) {
  #backToTopBtn {
    bottom: 80px;
    padding: 8px 16px;
    font-size: 1.2rem;
  }
}

/* ===== Captcha Image ===== */
#modalCaptchaImage, #aboutCaptchaImage {
  font-family: "Courier New", Courier, monospace;
  font-weight: bold;
  font-size: 26px;
  letter-spacing: 5px;
  user-select: none;
  padding: 2px 20px;
  border-radius: 5px;
  display: inline-block;
  color: #333;
  /*filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.2));*/
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: none;
}


@media (max-width: 768px) {
#modalCaptchaImage, #aboutCaptchaImage {
    font-size: 23px;
    letter-spacing: 3px;
    padding: 1px 8px;
  }
}
