* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", "sans-serif";
}

/*.....Common-section-heading.....*/
.section-heading {
  margin: 40px 0px;
  font-size: 42px;
  text-align: center;
}

/*.....divider.....*/
.divider {
  width: 100%;
  height: 1px;
  background-color: #ccc;
  margin: 40px 0px;
}

/*...../divider.....*/

/* .....header css..... */
header {
  background-color: #b8e8ff;
  border-bottom: 1px solid #000;
}

.header-logo img {
  width: 60px;
}

.header ul.navbar-nav-scroll li a {
  color: #000;
  font-weight: 500;
}

.header .mini-drop {
  top: 60px;
}

.header-contact a {
  color: #000;
  padding-left: 6px;
}

.header .icons-images-main {
  width: 10%;
  font-size: 20px;
}

.header .icons-images-main a {
  color: #000;
  padding-left: 16px;
}

.header a:hover {
  color: #00aeff !important;
  background-color: transparent;
}

p.text-dark.pt-3.logo-heading {
  font-size: 25px;
  font-weight: 600;
}

.header .nav-link.active {
  color: #00aeff !important;
}

/* .....hero-section..... */

.hero {
  height: 100vh;
  position: relative;
}

.hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  align-content: center;
  background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
  background-color: #b8e8ff3d;
  width: 50%;
  margin: auto;
  padding: 50px;
  border-radius: 12px;
}

.hero-content h1 {
  padding: 0px 35px;
  font-weight: bold;
  text-align: center;
  color: #fff;
}

.hero-content h1 span {
  color: #00aeff;
}

.hero-content p {
  text-align: center;
  font-size: 20px;
  color: #fff;
}

/* .....Common css of Key location and Nearby Attraction section..... */

.location-card {
  height: 250px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 12px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.location-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.location-card:hover img {
  transform: scale(1.1);
}

.location-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.5s ease;
  padding: 20px;
  text-align: center;
}

.location-card:hover .location-card-overlay {
  opacity: 1;
}

.location-card-content {
  transform: translateY(-100px);
  opacity: 0;
  transition: all 0.5s ease;
}

.location-card:hover .location-card-content {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.1s;
}

/* .....Offering-section-css (offering section is a part of Tiger trail page)..... */

.offering-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.16);
  background: #fff;
  transition: all 0.5s ease;
}

.offering-card:hover {
  transform: translateY(-5px);
}

.offering-card-img {
  position: relative;
  width: 100%;
  height: 250px;
}

.offering-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offering-card-img span {
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  padding: 12px;
  background: #00aeff;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  clip-path: polygon(0 0, 100% 0, 75% 100%, 0 100%);
}

/*.....connectivity-section.....*/

.connectivity {
  position: relative;
  min-height: 50vh;
  background-image: url("../img/connectivity-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}

.connectivity::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #00000099;
}

.connectivity-content {
  position: relative;
  z-index: 2;
  padding: 3rem 0;
  text-align: center;
}

.connectivity-title {
  font-size: 42px;
  font-weight: 500;
  margin: 20px 0;
}

.connectivity-desc {
  font-size: 18px;
  font-weight: 400;
}

/* invest-section */

.invest-card-container {
  margin-top: 60px;
}

.invest-card {
  height: 100%;
  position: relative;
  background-color: #b8e8ff; /* light green */
  border-radius: 12px;
  padding: 60px 20px 30px;
  text-align: center;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  transition: all 0.3s ease;
  border: 0;
}

.invest-card:hover {
  transform: translateY(-5px);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.invest-card-icon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #27baff; /* orange */
  color: #fff;
  align-content: center;
  font-size: 30px;
  font-weight: bold;
}

.invest-card h5 {
  margin-top: 10px;
  font-weight: 600;
  font-size: 1.1rem;
}

/* ....Common css of our-site-section and Layout-map section..... */

.location-view .owl-carousel {
  padding: 0 40px;
  position: relative;
}

.location-view .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translate(0%, -50%);
  display: flex;
  justify-content: space-between;
}

.location-view .owl-nav button:hover {
  background-color: transparent !important;
}

.location-view .owl-nav button span {
  font-size: 30px;
  color: #00aeffd8;
}

.location-view .owl-nav button span:hover {
  color: #00aeff;
}

.location-view .owl-carousel .item {
  width: 100%;
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
}

.location-view .owl-carousel .item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-view .owl-dots {
  display: none;
}

/*.....Fullscreen popup css or layout map section css which is different from the common css of our-site-section and Layout-map section .....*/

.map #zoomModal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.map .zoom-img {
  cursor: zoom-in;
}

.map #zoomedImg {
  max-width: 90%;
  max-height: 90%;
  transition: transform 0.3s ease;
}

.map .closeZoom {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  cursor: pointer;
}

/* .....Leopard-trail-villa-section..... */

.villa-amenities {
  background-color: #b8e8ff;
  padding: 20px;
  border-radius: 10px;
}

.villa-detail h6 {
  font-size: 20px;
  font-weight: 600;
  color: #00aeff;
}

.amenities-card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.amenities-card {
  width: 30%;
  height: 156.7px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: none;
  flex-grow: 1;
}

.amenities-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.amenities-card:hover img {
  transform: scale(1.1);
}

.amenities-card .image-caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 8px 0;
  text-align: center;
  background: #000000c4;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.amenities-card:hover .image-caption {
  opacity: 1;
}

.villa-amenities-list {
  display: flex;
  justify-content: start;
  column-gap: 16px;
}

.villa-amenities-list ul {
  padding-left: 16px;
}

/*....amenities-card css of Tiger-trail page.....*/

#tiger-amenities-card {
  width: 47%;
  height: 154px;
}

/* .....Project-highlight-section..... */

.highlight-card-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 15px;
  align-content: end;
  transform: translateY(-100%);
  transition: all 0.5s ease-out;
  border-radius: 12px;
}

.highlight-card:hover .highlight-card-overlay {
  transform: translateY(0);
}

.highlight-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.highlight-card-1 {
  background: url("../img/upcomingEvents-waterSports.jpg");
}

.highlight-card-2 {
  background: url("../img/upcomingEvents-gym.jpg");
}

.highlight-card-3 {
  background: url("../img/upcomingEvents-independentPlots.png");
}

.highlight-card-4 {
  background: url("../img/upcomingEvents-natureWalks.jpg");
}

.highlight-card-5 {
  background: url("../img/upcomingEvents-sunRises.jpg");
}

.highlight-card-6 {
  background: url("../img/upcomingEvents-clunHouse.jpg");
}

.highlight-card-7 {
  background: url("../img/upcomingEvents-banquet.jpg");
}

.highlight-card-8 {
  background: url("../img/upcomingEvents-restaurant.jpg");
}

.highlight-card-9 {
  background: url("../img/upcomingEvents-snowfall.jpg");
}

.highlight-card-10 {
  background: url("../img/upcomingEvents-runnningTrack.png");
}

.highlight-card-11 {
  background: url("../img/upcomingEvents-lowAQI.png");
}

.highlight-card-12 {
  background: url("../img/upcomingEvents-roads.png");
}

.highlight-card {
  height: 180px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.highlight-card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* .....Weather-section..... */

/*.....weather-details.....*/

.weather-detail {
  padding: 20px 0px;
  width: 90%;
}
.weather-detail h3 {
  font-size: 40px;
  margin-bottom: 40px;
}
.weather-detail p {
  font-size: 18px;
}
.weather-detail p span {
  color: #00aeff;
  font-weight: 600;
}

/*.....Weather-cards.....*/

.weather-card-1 {
  background: url("../img/weather-rainy.png");
}

.weather-card-2 {
  background: url("../img/weather-summer.png");
}

.weather-card-3 {
  background: url("../img/weather-winter.jpg");
}

.weather-card {
  height: 400px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.weather-card:hover {
  transform: translateY(-5px);
}

.weather-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  align-content: end;
  text-align: center;
}

.weather-card-overlay p {
  color: #fff;
  font-size: 20px;
  margin-bottom: 5px;
}

/* .....price-list and site-map section..... */

.price-wrapper {
  width: 60%;
  background: white;
  padding: 20px;
  border-radius: 0px 10px 10px 0px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.price-wrapper .location {
  text-align: end;
}

.price-wrapper .location i {
  font-size: 25px;
  color: #00aeff;
}

.title-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.title-section .location {
  width: 40%;
  text-align: center;
  border-radius: 10px;
  background: #b8e8ff;
  padding: 10px;
}

.title-section h2 {
  font-weight: bold;
  color: #00aeff;
}

.title-separator {
  border-bottom: 2px solid #0a3b5f;
  width: 100%;
  margin: 10px 0;
}

.service-title {
  font-size: 20px;
  font-weight: 500;
  color: #000;
  margin-top: 25px;
}

.service-list div {
  display: flex;
  flex-direction: row;
  justify-content: space-between;

  margin-bottom: 7px;
}

.service-list p {
  margin-bottom: 5px;
  font-size: 15px;
  line-height: 1;
  color: #00aeff;
  width: 42%;
}

.service-list h6 {
  margin: 0;
  line-height: 1;
  font-size: 15px;
  width: 58%;
}

.right-panel {
  width: 40%;
  background: #00aeff;
  color: #fff;
  padding: 25px;
  border-radius: 12px 0px 0px 12px;
}

.right-panel img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
  height: 160px;
  object-fit: cover;
}

.basic-sales {
  background: #fff;
  color: #000;
  text-align: center;
  padding: 30px 10px;
  border-radius: 8px;
  margin: 20px 0;
  font-weight: bold;
}

.basic-sales span {
  color: #00aeff;
}

.site-plan-container h3 {
  font-size: 30px;
  margin-bottom: 20px;
}

.info small {
  font-size: 13px;
  display: block;
  margin-bottom: 5px;
}

/*.....swiper.....*/
.site-map-swiper .mySwiper2 {
  width: 100% !important;
}

.site-map-swiper .mySwiper2 .swiper-slide {
  height: 240px;
  border-radius: 12px;
  overflow: hidden;
}

.site-map-swiper .mySwiper2 .swiper-slide img {
  width: 100% !important;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  cursor: zoom-in;
}

/* .site-map-swiper .mySwiper2 img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
} */

.site-map-swiper .mySwiper img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  border-radius: 12px;
  opacity: 0.6;
}

.site-map-swiper .mySwiper .swiper-slide-thumb-active img {
  opacity: 1;
  border: 2px solid #000;
}

.site-map-swiper .swiper-button-next,
.site-map-swiper .swiper-button-prev {
  color: #ffffff !important;
  width: 40px;
}

.site-map-swiper .swiper-button-prev:after,
.site-map-swiper .swiper-button-next:after {
  font-size: 28px !important;
  font-weight: 600;
}

.site-dialog {
  max-width: 72% !important;
}

.site-note h6 {
  font-size: 30px;
  margin: 20px 0px;
}

.site-note ul {
  padding: 0px 16px;
}

.headOffice-address {
  margin: 15px 0px;
  background-color: #b8e8ff;
  padding: 20px;
  border-radius: 10px;
}
.headOffice-address h5 {
  margin: 0px;
  text-align: center;
}

/* .....footer..... */
footer {
  background-color: #000;
  padding: 40px;
  margin-top: 40px;
}

.footer-logo-container,
.footer-links,
.footer-contact {
  color: #fff;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-images {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 60%;
}

.footer-links h6 {
  font-size: 25px;
  margin-bottom: 20px;
}
.footer-contact h6 {
  font-size: 25px;
  margin-bottom: 20px;
}
.footer-links ul li {
  margin-bottom: 5px;
}
.footer-links ul li a {
  color: #fff;
  text-decoration: none;
}
.footer-image-container img {
  border-radius: 10px;
  width: 30%;
  height: 40%;
  margin: 0px 5px 8px 0px;
  object-fit: fill;
}
.copy-right {
  background: #fff;
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  font-size: 18px;
  width: 100%;
  margin: 20px auto 0px;
}
.footer-logo a img {
  width: 50px;
  margin-right: 12px;
}
.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

/* ===============================
   COMMON RESPONSIVE STYLES
================================ */

/* ===============================
   TABLET (≤1200px)
================================ */
@media (max-width: 1200px) {
  /*.....Hero-section.....*/
  .hero {
    height: 70vh !important;
    max-height: 440px;
  }

  .hero-content {
    width: 80%;
  }

  /*.....Connectivity-section.....*/
  .connectivity {
    min-height: 30vh;
  }
}

/* ===============================
   TABLET (≤992px)
================================ */

@media (max-width: 992px) {
  .section-heading {
    margin: 30px 0;
    font-size: 36px;
  }

  .hero {
    height: 100vh !important;
    max-height: 400px;
  }

  .hero-content {
    align-content: center;
    height: 80%;
    width: 80%;
    padding: 12px;
    border-radius: 12px;
  }

  .amenities-card,
  #tiger-amenities-card {
    width: 31%;
  }

  .highlight-card {
    height: 200px;
  }

  .weather-card {
    height: 300px;
  }

  .price-wrapper {
    padding: 20px;
    border-radius: 12px;
  }

  .site-map-swiper .mySwiper2 .swiper-slide {
    height: 300px;
  }
}

/* ===============================
   TABLET (≤768px)
================================ */

@media (max-width: 768px) {
  .section-heading {
    margin: 20px 0;
    font-size: 32px;
    text-align: center;
  }

  .hero {
    height: 80vh !important;
    max-height: 300px;
  }

  .hero-content {
    width: 100%;
    height: 100%;
    border-radius: 0;
  }

  .hero-content h1,
  .hero-content p {
    text-align: left;
    padding-inline: 0;
  }

  .hero-content p {
    font-size: 16px;
    margin: 0;
  }

  /* Cards height consistency */
  .offering-card-img,
  .location-card,
  .location-view .owl-carousel .item {
    height: 200px;
  }

  .invest-card-container {
    row-gap: 52px;
  }

  .villa-detail h6,
  .villa-amenities h5 {
    font-size: 18px;
  }

  .villa-detail p {
    text-align: left;
  }

  .amenities-card,
  #tiger-amenities-card {
    width: 47.7%;
    height: 200px;
  }

  .amenities-card .image-caption {
    font-size: 16px;
  }

  .highlight-card-title {
    font-size: 16px;
  }

  /* Connectivity */
  .connectivity {
    min-height: 30vh;
  }

  .connectivity-title {
    font-size: 32px;
    text-align: center;
  }

  .connectivity-desc {
    font-size: 16px;
    text-align: center;
  }

  /* Weather */
  .weather-card {
    height: 250px;
  }

  .weather-detail {
    padding: 0;
  }

  .weather-detail h3 {
    font-size: 32px;
    margin-bottom: 20px;
  }

  /* Price & site map */
  .right-panel,
  .price-wrapper {
    width: 100%;
  }

  .right-panel {
    border-radius: 12px;
  }

  .right-panel img {
    height: 200px;
  }

  .site-map-swiper .mySwiper2 .swiper-slide {
    height: 220px;
  }

  /* Footer */
  footer {
    padding: 32px 16px;
    margin-top: 0;
  }

  .footer {
    padding: 0;
  }

  .footer-links ul {
    margin-left: 20px;
  }

  .footer-logo h5,
  .footer-links h6,
  .footer-contact h6 {
    font-size: 24px;
  }

  .footer-links h6 {
    margin-bottom: 18px;
  }

  .footer-images {
    width: 80%;
  }

  .copy-right {
    font-size: 14px;
  }
}

/* ===============================
   MOBILE (≤576px)
================================ */

@media (max-width: 576px) {
  /*.....Section-heading.....*/
  .section-heading {
    font-size: 26px;
  }
  /*.....Hero-section.....*/

  .hero {
    max-height: 350px;
    height: 55vh !important;
    /* max-height: 340px; */
  }

  .hero-content h1 {
    font-size: 26px;
  }

  .hero-content p {
    font-size: 14px;
  }

  /*.....Key-location section.....*/

  .location-card-content h5 {
    font-size: 18px;
  }

  .location-card-content p {
    font-size: 14px;
  }

  /*.....Connectivity-section.....*/

  .connectivity-title {
    font-size: 26px;
    margin-bottom: 5px;
  }

  .connectivity-desc {
    font-size: 14px;
  }

  /*.....Invest-section.....*/

  .invest-card h5 {
    font-size: 18px;
  }

  .invest-card p {
    font-size: 14px;
  }

  /*.....Villa-section.....*/

  .villa-detail h6 {
    font-size: 16px;
  }

  .villa-detail p {
    font-size: 14px;
  }

  .amenities-card {
    height: 160px;
  }

  .villa-amenities-list ul {
    font-size: 14px;
  }

  /*.....Weather-section.....*/

  .weather-detail p {
    font-size: 14px;
  }

  .weather-card-overlay p {
    font-size: 18px;
  }

  /*.....Price-list and Site-map section.....*/

  .title-section:nth-child(1) h4,
  .title-section:nth-child(1) h2 {
    font-size: 18px;
  }

  .location p {
    font-size: 14px;
  }

  .service-title {
    font-size: 18px;
  }

  .service-list div h6,
  .service-list div p {
    font-size: 14px;
  }

  .basic-sales h3 {
    font-size: 18px;
  }

  .basic-sales span {
    font-size: 14px;
  }

  .site-plan-container h3 {
    font-size: 26px;
  }

  .highlight-card {
    height: 160px;
  }

  .weather-card {
    height: 200px;
  }
}
