/* ========== Root Variables ========== */

h1, h2, h3, h4, h5, h6 {
  color: var(--bs-heading-color);
}


/* ========== Reset & Global ========== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

html, body {
  max-width: 100vw;
  overflow-x: hidden;
}
body {
 
  background-color: var(--color-bg);
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
    overflow-x: clip;

}

body {
  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-hover);
}


.gradient-button {
  background: var(--gradient-button);
  background-size: 300% 300%;
  /*color: var(--color-secondary); */
   color: var(--color-primary); 
  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;
}


@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);
  }
}

.gradient-button {
  animation: 
    gradientShift 1.2s ease-in-out infinite,
    pulseGlow 2s ease-in-out infinite;
}



/* ========== Navbar ========== */
/* ========== 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);
  margin: 0 2px;
  padding-bottom: 5px; 
  border-bottom: 3px solid transparent; 
  transition: border-color 0.3s ease; 
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active,
.nav-link.active {
  border-bottom: 3px solid var(--color-link-hover); 
}

.contact-icons i {
  color: var(--color-link-hover);
}

.contact-icons a {
  font-size: 1.7rem;
  margin-left: 1rem;
}

.contact-icons i:hover {
  color: var(--color-link);
}

.custom-logo {
  width: 100px;
}


/* ========== Responsive Navbar ========== */
@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: 4rem 0;*/
  background-color: var(--color-bg);
  color: var(--color-text);
}

.site-section:nth-of-type(even) {
  background-color: var(--color-bg-alt);
}

/* Responsive Padding */
@media (max-width: 768px) {
  .site-section {
    padding: 2rem 0;
  }
}

/* ========== Hero or Highlight ========== */
.hero {
  background: var(--gradient-main);
  color: white;
  padding: 5rem 2rem;
  text-align: center;
}

/* ========== Footer ========== */
.site-footer {
  background-color: var(--color-text);
  padding: 2rem 1rem;
  color: #ccc;
  font-size: 14px;
  line-height: 1.6;
}

.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;
  }
}

/* ========== Banner ========== */

.banner {
  position: relative;
  width: 100%;
  min-height: 95vh;
  background-color: var(--color-bg);
}

.desktop-slider {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.desktop-slider img {
  width: 100%;
  height: 95vh;
  object-fit: cover;
}


.mobile-slider {
  display: none;
  position: relative;
  z-index: 1;
}

.mobile-slider img {
  width: 100%;
  height: 50vh;
  object-fit: cover;
}


.text-container {
  position: relative;
  z-index: 2;
  /*background:#000;*/
  background:#ffffff;
  color:var(--color-text);
  /*color: white;*/
  padding: 1rem;
  max-width: 550px;
  margin: 3rem 1rem 5rem;
  border-radius: 8px;
  border: 1px solid var(--color-link-hover);
}


.banner-heading {
  font-size: 2rem;
  color: var(--color-primary);
  font-weight: bolder;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  /*color:white;*/
}

.banner-subheading {
  font-size: 1.3rem;
  color:var(--color-text);
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--color-link-hover);
  padding-bottom: 0.5rem;
}


.feature-list {
  list-style: none;
  padding-left: 0;
}

.feature-list li {
  margin-bottom: 0.5rem;
}

.feature-list li i {
  margin-right: 0.5rem;
  color: var(--color-link-hover);
}


.enquire-btn {
  margin-top: 1rem;
  padding: 0.6rem 1.4rem;
  /* background: var(--gradient-button, var(--color-primary)); */
  border: none;
  border-radius: 6px;
  color: white;
  font-weight: bold;
  cursor: pointer;
}


.content-section {
  padding: 2rem;
  background: var(--color-bg-alt);
}

@media (max-width: 576px) {

  .desktop-slider {
    display: none;
  }

 
  .mobile-slider {
    display: block;
  }

  .mobile-slider img {
    height: 50vh;
  }

  .feature-list li {
    font-size: small;
  }

  .banner-heading {
    font-size: 1.5rem;
   
  }

  .banner-subheading {
    font-size: 1.1rem;
  }

  .text-container {
    margin: 0;
    max-width: 100%;
    border-radius: 0;
    padding: 1.5rem;
    /*background: #303030;*/
    background: #ffffff;
    border: none;
  }

  .banner::after {
    content: "";
    display: block;
    height: 0;
    clear: both;
  }
}


@media (min-width: 577px) and (max-width: 768px) {
  .text-container {
    margin: 0.5rem 1rem;
    padding: 1rem;
  }

  .feature-list li {
    font-size: small;
  }

  .banner-heading {
    font-size: 1.3rem;
  }

  .banner-subheading {
    font-size: 1.1rem;
  }

  .enquire-btn {
    margin-top: 0.2rem;
    padding: 0.4rem 1rem;
  }
}


@media (min-width: 992px) and (max-width: 1024px) {
  .text-container {
    margin: 0.5rem 1rem;
    padding: 1.5rem;
    width: auto;
  }

  .banner-heading {
    font-size: 1.5rem;
  }

  .banner-subheading {
    font-size: 1.2rem;
  }

  .feature-list li {
    font-size: small;
  }

  .enquire-btn {
    padding: 0.5rem 0.7rem;
    margin-top: 0.2rem;
  }

  .content-section {
    padding: 1rem;
    background: var(--color-bg-alt);
  }
}


@media (min-width: 1100px) and (max-height: 650px) {
  .text-container {
    max-width: 90%;
    padding: 0.8rem;
    margin: 1rem;
    font-size: 0.85rem;
  }

  .banner-heading {
    font-size: 1.5rem;
  }

  .banner-subheading {
    font-size: 1rem;
  }

  .feature-list li {
    font-size: 0.9rem;
  }

  .enquire-btn {
    padding: 0.4rem 1rem;
  }
}



/* ========== About Section ========== */
#about-section {
  background-color: var(--color-bg-alt); 
  padding: 4rem 0;
  color: var(--color-text);
}

.about-info h2 {
  color: var(--color-text);
  line-height: 1;
  /*font-family: "Open Sans", sans-serif;*/
  font-size: 2rem;
}

.about-info p {
  /*font-family: "Open Sans", sans-serif;*/
  font-size: 1rem;
  color: var(--color-text);
}

.about-info i {
  color: var(--color-link-hover);
}

.about-info-button {
  padding: 0.75rem 1.5rem;
  /*background: var(--gradient-main);*/
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 1rem;
  font-weight: bold;
}

.about-info-button:hover {
  opacity: 0.9;
}

.object-fit-cover {
  object-fit: cover;
}

@media (max-width: 576px) {
  .about-info-button {
    display: block;
    margin: 1rem auto 0;
    padding: 0.55rem 1rem;
  }
}
/* ========== Advantages Section ========== */
#advantages-section {
  background-color: var(--color-bg);
  padding: 4rem 0;
  color:var(--bs-heading-color)
  /* color: var(--color-text); */
}

.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);
}

.advantages-list {
  padding-left: 0;
  align-items: center;
}

.advantages-item {
  transition: border-color 0.3s ease;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  font-size: 1.2rem;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  line-height: 1.2;
  margin-right: 2rem;
  margin-bottom: 0.5rem;
}

.advantages-item span {
  display: inline-block;
  line-height: 1.3;
  vertical-align: middle;
}

.advantages-icon-wrapper {
  width: 40px;
  height: 40px;
  border: 2px solid var(--color-link-hover);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-link-hover);
  transition: border-color 0.3s ease, transform 0.3s ease;
  margin: 0.3rem 1rem;
}

.advantages-icon {
  color: var(--color-link-hover);
  font-size: 18px;
}

/*.advantages-item:hover .advantages-icon-wrapper {*/
/*  border-color: var(--color-link-hover);*/
/*  transform: scale(1.1);*/
/*}*/

/*.advantages-item:hover {*/
/*  border-bottom: 2px solid var(--color-link-hover);*/
/*}*/

@media (max-width: 768px) {
  .advantages-heading {
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--color-text);
    font-size: 1.5rem;
  }

  .advantages-item span {
    font-size: 1rem;
  }

  .advantages-item {
    gap: 0rem;
  }

  .advantages-icon {
    font-size: 14px;
  }
}
/* ========== Price Section ========== */
#price-section {
  background-color: var(--color-bg-alt);
  
  color: var(--color-text);
}

.price-swiper .swiper-slide {
  width: auto;
}

.price-swiper .card {
  flex: 0 0 auto;
  background-color:#fff;
 
}

.price-card-wrapper {
  overflow: hidden;
}

.price-card-wrapper p {
  color: var(--color-text);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 0px; 
}


.slider-card-row-top{
    display: flex;
  justify-content: center;
  align-items: center;
  font-size: 19px;
  gap: 10px;
   overflow: hidden;
   color: var(--color-primary);
   box-sizing:border-box;
}
.slider-card-row-size {
  /*gap: 15px;*/
  overflow: hidden;
}

.slider-card-row,
.slider-card-row-size {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 19px;
  border-bottom: 2px dotted rgba(0, 0, 0, 0.1);
  /*padding: 5px 10px;*/
  overflow: hidden;
}

.slider-card-row i {
  color: var(--color-primary);
    font-size: 15px;
}

.slider-card-row-size i{
    color: var(--color-primary);
}

.price-breakup-btn {
  margin-top: 12px;
  font-size: medium;
  /*background: var(--gradient-main);*/
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: opacity 0.3s;
}

.price-breakup-btn:hover {
  opacity: 0.9;
}

.price-swiper-button-prev,
.price-swiper-button-next {
  font-size: 20px;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  /*color: white;*/
  /*border: 1px solid var(--color-bg);*/
  background-color: var(--color-text); 

  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
}

@media (max-width: 576px) {
  .price-card-wrapper p {
    font-size: 1.1rem;
    margin-bottom: 0px;
  }
}

@media (max-width: 1024px) {
  
}

.price-swiper.static-layout .swiper-wrapper {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 20px;
}

.price-swiper.static-layout .swiper-slide {
  flex: 0 0 auto;
  width: 18rem;
}

.price-swiper.static-layout .swiper-button-next,
.price-swiper.static-layout .swiper-button-prev {
  display: none;
}



/* ========== Master Plan Section ========== */
#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;
}

.master-plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.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);
}

.overlay-master-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: inherit;
}

.master-plan-card:hover .overlay-master-plan {
  opacity: 1;
}

.overlay-master-plan p {
  color: white;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 12px 24px;
  border: 2px solid var(--color-primary);  
  border-radius: 6px;
  background-color: rgba(0, 0, 0, 0.4);
}

.master-plan-name {
  font-size: 1.2rem;
  font-weight: 600;
   /*background: var(--gradient-main);*/
  background-color: var(--color-primary);
  color: white;
  margin: 0;
  padding: 5px 0;
  text-align: center;
}

@media (max-width: 576px) {
  .master-plan-container {
    padding: 0;
  }

  .image-wrapper-master-plan {
    height: 300px;
  }

  .overlay-master-plan p {
    font-size: 1rem;
    padding: 10px 20px;
  }

}

 
/* ========== Floor Plan Section ========== */
#floor-plan {
  background-color: var(--color-bg-alt); /* Alternating background */
  padding: 4rem 0;
  color: var(--color-text);
}

.floor-swiper .swiper-slide {
  width: auto;
}

.floor-swiper .card {
  flex: 0 0 auto;
}

.floor-card {
  overflow: hidden;
}

.floor-card img {
  width: 100%;
  object-fit: contain;
  background-color: var(--color-bg-alt);
}

.floor-card-row {
  display: flex;
  justify-content: left;
  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;
}

.book-now-btn {
  /*background: var(--gradient-main);*/
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.book-now-btn:hover {
  opacity: 0.9;
}

.floor-swiper-button-prev,
.floor-swiper-button-next {
  font-size: 20px;
  /*color: white;*/
  /*border: 1px solid var(--color-bg);*/
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  background-color: var(--color-text);
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
}

.floor-swiper.static-layout .swiper-wrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: nowrap;
}

.floor-swiper.static-layout .swiper-slide {
  flex: 0 0 auto;
  width: 18rem;
}

.floor-swiper.static-layout .floor-swiper-button-prev,
.floor-swiper.static-layout .floor-swiper-button-next {
  display: none !important;
}

.image-wrapper-floor-plan {
  position: relative;
  overflow: hidden;
}

.image-wrapper-floor-plan img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  background-color: var(--color-bg-alt);
}

.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;
}

.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 var(--color-primary);
  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;
  
}

@media (max-width: 1024px) {
  /* Add responsive width or spacing if needed */
}


/* ========== Location Section ========== */
#location-section {
  background-color: var(--color-bg); /* Alternating background */
  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;
  }
}

.map-image {
  width: 100%;
  border: 4px double var(--color-link-hover);
  border-radius: 8px;
  cursor: pointer;
  background-color: var(--color-bg-alt);
}

.location-list {
  list-style: none;
  margin: 0;
  padding: 0 10px;
}

.location-list li {
  margin-bottom: 10px;
  font-size: 16px;
  color: var(--color-text);
}

.location-list i {
  font-size: 18px;
  color: var(--color-link-hover);
  margin-right: 0.5rem;
}

@media (max-width: 576px) {
  .location-list {
    padding: 0px 5px;
  }
}

.map-iframe {
  width: 100%;
  height: 100%;
  border: 4px double var(--color-link-hover);
  border-radius: 8px;
  cursor: pointer;
  min-height: 300px;
  background-color: var(--color-bg-alt);
}

.fullscreen-map iframe {
  /*width: 80%;*/
  /*height: 80%;*/
  /*border: none;*/
  /*box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);*/
  /*display: none;*/
  
  
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  /*display: none;*/
  z-index: 1001;


}

/* ========== Fullscreen Map Overlay ========== */
.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;
  }
}

/* ========== Amenities Section ========== */
#amenities-section {
  background-color: var(--color-bg-alt); 
  padding: 4rem 0;
  color: var(--color-text);
}

.timeline-swiper .swiper-slide {
  width: auto;
}

.timeline-swiper .card {
  flex: 0 0 auto;
}

.amenities-swiper-card {
  overflow: hidden;
  background-color: var(--color-bg); 
  
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.amenities-card-text{
  padding:5px;
  background-color: var(--color-primary);
}


.timeline-swiper .swiper-button-next,
.timeline-swiper .swiper-button-prev {
  font-size: 18px;
  /*color: white;*/
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  background-color: var(--color-text);
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
}

.swiper-button-prev i,
.swiper-button-next i {
  font-size: 25px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

@media (max-width: 576px) {
  .timeline-swiper {
       font-size: 16px;
  }
  }


.timeline-swiper.static-layout .swiper-wrapper {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: nowrap;
}

.timeline-swiper.static-layout .swiper-slide {
  flex: 0 0 auto;
  width: 18rem; /* Adjust as needed */
}

.timeline-swiper.static-layout .swiper-button-next,
.timeline-swiper.static-layout .swiper-button-prev {
  display: none !important;
}



/* ========== Gallery Section ========== */
#gallery-section {
  background-color: var(--color-bg); 
  padding: 4rem 0;
  color: var(--color-text);
}

.gallery-swiper .swiper-slide {
  width: auto;
}

.gallery-swiper .card {
  flex: 0 0 auto;
}

.gallery-swiper-card {
  overflow: hidden;
  background-color: var(--color-bg); 
  
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.gallery-card-text{
  padding:5px;
  background-color: var(--color-primary);
}


.gallery-swiper .swiper-button-next,
.gallery-swiper .swiper-button-prev {
  font-size: 18px;
  /*color: white;*/
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  background-color: var(--color-text);
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
}

.swiper-button-prev i,
.swiper-button-next i {
  font-size: 25px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

@media (max-width: 576px) {
  .gallery-swiper {
       font-size: 16px;
  }
  }


.gallery-swiper.static-layout .swiper-wrapper {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: nowrap;
}

.gallery-swiper.static-layout .swiper-slide {
  flex: 0 0 auto;
  width: 18rem; /* Adjust as needed */
}

.gallery-swiper.static-layout .swiper-button-next,
.gallery-swiper.static-layout .swiper-button-prev {
  display: none !important;
}

/* ========== Download Section ========== */
#download-section {
  background-color: var(--color-bg); /* Alternate with your layout */
  padding: 4rem 0;
  color: var(--color-text);
}

.download-row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.download-image,
.download-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.download-image {
  flex: 0 0 50%;
  padding: 0;
}

.download-image-inner {
  width: 100%;
  height: 100%;
  padding: 0 0.5rem;
}

.download-image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

/* Spacing for smaller screens */
@media (max-width: 768px) {
  .download-image-inner {
    padding: 0 1rem;
  }
  .download-image-inner img {
    border-radius: 6px;
    max-height: 300px;
  }
}

.download-info {
  flex: 0 0 50%;
  padding: 0;
}

.download-info-inner {
  padding: 3rem;
}

.download-info h3 {
  font-size: 0.8rem;
  color: var(--color-primary);
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  /*font-family: "Open Sans", sans-serif;*/
}

.download-info h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  /*font-family: "Open Sans", sans-serif;*/
}

.download-info p {
  font-size: 0.95rem;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  /*font-family: "Open Sans", sans-serif;*/
}

.download-section-button {
  padding: 0.75rem 1.5rem;
  /*background: var(--gradient-main);*/
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: background 0.3s ease;
}



/* Responsive adjustments */
@media (max-width: 768px) {
  .download-row {
    flex-direction: column;
  }
  .download-image,
  .download-info {
    width: 100%;
  }
  .download-image img {
    max-height: 300px;
    height: auto;
  }
  .download-info-inner {
    padding: 2rem 1.5rem;
  }
  .download-info h2 {
    font-size: 1.4rem;
  }
  .download-section-button {
    padding: 0.75rem 1rem;
  }
}

@media (max-width: 425px) {
  .download-info-inner {
    padding: 1.5rem 1rem;
  }
  .download-section-button {
    font-size: 0.75rem;
  }
}
/* ===== 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: rotate(270deg) translateY(-50%);*/
  transform-origin: right center;
  /*background-color: var(--color-primary);*/
  color: white;
  /*padding: 10px 15px;*/
  display: flex;
  align-items: center;
  gap: 8px;
  /*border-radius: 5px 5px 0 0;*/
  cursor: pointer;
  z-index: 1000;
  /*box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);*/
  /*transition: background-color 0.3s ease;*/
}

/*.toggle:hover {*/
/*  background-color: #0056b3;*/
/*}*/

.toggle i {
  font-size: 16px;
}

@media (max-width: 768px) {
  .toggle {
    display: none;
  }
}

/* ===== Enquiry Form Styles ===== */
/* ===== Enquiry Form Styles ===== */

.form-modal-side-img {
  /* background: url("./assets/images/form-building.jpg") center center / cover no-repeat; */
  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;
  transition: background-color 0.3s ease;
}

.iti {
  position: relative;
  width: 100%;
}

.iti__country-list {
  z-index: 9999 !important; /* dropdown is above modal */
  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) {
  /* Uncomment if you want to hide side image on mobile */
  /* .form-modal-side-img {
    display: none;
  } */

  .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; 
}

#backToTopBtn:hover {
  background-color:  var(--color-secondary);
}

@media (max-width: 768px) {
  #backToTopBtn {
    bottom: 80px;
    padding: 8px 16px;
    font-size: 1.2rem;
  }
}

/* ===== Captcha Image ===== */
#captchaImage {
  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;
}

/*#captchaImage input{*/
/* border:none; */
/*}*/

@media (max-width: 768px) {
  #captchaImage {
    font-size: 23px;
    letter-spacing: 3px;
    padding: 1px 8px;
  }
}

