* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@font-face {
  font-family: "Trajan_Pro_Bold";
  src: url("../fonts/Trajan_Pro_Bold.ttf") format("truetype");
}

@font-face {
  font-family: "varsity_regular";
  src: url("../fonts/varsity_regular.ttf") format("truetype");
}

:root,
html {
  font-family: Roboto, "Times New Roman", Times, serif;
  scroll-padding-top: 70px;
  line-height: 1.15;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}
:root {
  --colorPrimary: #8f257a;
  --colorSecondary: #da3778;
  --colorBlack: #000000;
  --colorWhite: #ffffff;
  --colorWhiteOverlay: rgba(212, 210, 212, 1);
  --colorBackgroundBlack: #000000bd;
  --colorHalfBlack: #333333;
  --colorBackgroundBlack: #343a40bd;
  --colorBackgroundOverlay: #00000070;
}

/* Navbar Starts */
header {
  height: 80px;
}

/* Navbar */
.navbar-nav {
  justify-content: flex-end;
  width: 100%;
}

.navbar-nav .nav-link {
  color: var(--colorBlack);
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  margin-right: 10px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  background-color: var(--colorPrimary);
  height: 100%;
  color: var(--colorWhite);
}

.nav-link:hover {
  background-color: var(--colorPrimary);
  color: var(--colorWhite);
}

.nav-icon {
  margin-right: 5px;
}
@media only screen and (min-width: 1000px) {
  .navbar-nav .nav-link {
    font-size: 1.01vw !important;
    letter-spacing: 0.02vw;
  }
}
@media screen and (max-width: 600px) {
  .navbar-brand img {
    height: 45px;
  }
  .offcanvas-body .nav-link i {
    margin-left: 5px;
  }
  .offcanvas-body .nav-link {
    margin-top: 10px;
  }
}

/* Navbar Ends */

main {
  margin-top: 80px;
}

/* Slider */
.carousel {
  overflow: hidden !important;
  max-height: calc(100vh - 80px);
}

.carousel-indicators .active {
  background-color: var(--colorSecondary) !important;
}

/* @media screen and (max-width: 600px) {
  .carousel-item .banner1 {
    content: url("../img/banners/mobile_banner1.jpg");
  }
  .carousel-item .banner2 {
    content: url("../img/banners/mobile_banner2.jpg");
  }
} */

.carousel-control-prev,
.carousel-control-next {
  background-color: var(--colorPrimary);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  margin: 20px;
  /* display: none; */
}

.carousel-indicators button {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50%;
}
.carousel-indicators .active {
  background-color: var(--colorSecondary) !important;
}

/* InfoBox */
.info-box {
  padding-bottom: 20px;
  color: var(--colorBlack);
}
.info-status {
  font-size: 1.1em;
  text-shadow: 0 1px 2px var(--colorHalfBlack);
  background-color: var(--colorPrimary);
  display: block;
  text-transform: uppercase;
  padding: 10px;
  width: 100%;
}

.info-title {
  font-size: 1.9em;
  font-weight: 600;
  padding: 1.2vw 0.8vw 0.3vw;
}

.info-location {
  font-size: 1em !important;
}

/* Color Card */
.card-d {
  width: 95%;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
}

.info-box span.heading2 {
  font-weight: 400;
  width: 10em !important;
  display: inline-block;
}
.info-box span.heading1,
.info-box span.heading2 {
  text-align: left;
  vertical-align: top;
  font-size: 1.2em;
}
.info-box span.heading1 {
  font-weight: 700;
  width: 10em !important;
  display: inline-block;
}

@media screen and (max-width: 600px) {
  .info-box span.heading1,
  .info-box span.heading2 {
    font-size: 1em;
    width: 8em !important;
  }
}

/* Offer Box */
.of-box {
  font-size: 15px;
  width: 95%;
  margin-left: auto !important;
  margin-right: auto !important;
  font-weight: 700;
  text-align: center;

  padding: 8px;
}

.offer-text {
  display: block;
  font-size: 0.9em !important;
  color: var(--colorWhite);
  border: 2px dashed var(--colorWhite);
  padding: 10px 5px;
}

/* Tagline & Price */
.info-tag-line {
  display: block;
  padding: 0.1vw 0.8vw;
  font-size: 1.1em;
  text-transform: capitalize;
  line-height: 0.9em;
  text-align: center;
  margin-top: 10px;
}
.info-price {
  display: block;
  text-align: center;
  padding: 0.1vw 0.8vw 0.3vw;
  font-size: 2em;
  font-weight: 900;
  font-style: italic;
  font-family: "Times New Roman", Times, serif;
  line-height: 28px;
}
.offer-bg-animation {
  color: var(--colorWhite);
  display: block;
  background: linear-gradient(
    -45deg,
    var(--colorPrimary),
    var(--colorSecondary),
    var(--colorPrimary),
    var(--colorSecondary)
  );
  background-size: 400% 400%;
  -webkit-animation: 3s infinite Gradient;
  -moz-animation: 3s infinite Gradient;
  animation: 3s infinite Gradient;
}

/*  */
/* For Desktop */
/* InfoBox */
@media only screen and (min-width: 990px) {
  .info-box {
    color: var(--colorWhite);
    width: 30vw;
    text-align: center;
    position: absolute;
    top: 0;
    left: 2em;
    z-index: 9;
    margin-top: 7em;
    padding-bottom: 1.5vw;
    display: inline-block;
    background-color: var(--colorBackgroundOverlay);
    border-radius: 0 50px;
    border: 3px solid var(--colorBorderWhite); /*gradient Border animation */
    /* padding-top: 1.5vw; */
  }

  .info-status {
    border-radius: 0 50px 0 0;
  }

  .info-box .info-title {
    font-size: 1.5em;
    padding: 5px 3px 5px;
    color: var(--colorWhite);
  }
  .info-location {
    font-size: 0.9em;
    padding: 0;
    margin: 0;
  }
}

.info-box hr {
  margin: 0.5rem 0;
}

/* Overview */

.overview_img_wrapper {
  border-radius: 20px;
  width: 100%;
  height: 250px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  margin-bottom: 20px;
}
.overview_img_wrapper .overview_img {
  width: 100%;
  height: 100%;
  transition: 0.3s;
}

.highlights_container {
  background-color: var(--colorPrimary);
  color: var(--colorWhite);
  margin-top: 20px;
  padding: 50px;
  text-transform: uppercase;
}
.highlights_container .row div {
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

@media screen and (min-width: 1000px) {
  .highlights_container .row div:nth-of-type(odd) {
    border-right: 1px solid white;
    border-bottom: 1px solid white;
  }
  .highlights_container .row div:nth-of-type(even) {
    /* border-left: 1px solid white; */
    border-bottom: 1px solid white;
  }
}

@media screen and (max-width: 600px) {
  .highlights_container .row div {
    border: 1px solid white;
    padding-top: 15px;
  }
}

/* Gallery */
.gal-img {
  /* width: 19em !important; */
  height: 200px;
}
.gal-img img {
  width: 100% !important;
  height: 100%;
  border-radius: 25px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
}

/* Configuration */
.config-block .row {
  justify-content: center;
}

.config-inner {
  text-align: center;
  font-weight: normal;
  min-height: 150px;
  padding: 10px;
  margin-top: 20px;
  -webkit-box-shadow: 0px 0px 7px 0px var(--colorWhiteOverlay);
  -moz-box-shadow: 0px 0px 7px 0px var(--colorWhiteOverlay);
  box-shadow: 0px 0px 7px 0px var(--colorWhiteOverlay);
  border-radius: 30px 0px 30px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.config-price {
  background: var(--colorPrimary);
  width: 75%;
  margin: 15px auto;
  padding: 8px;
  text-transform: uppercase;
  border-radius: 15px 0px;
  font-size: 18px;
}

.config-price a {
  text-decoration: none;
  color: var(--colorWhite);
}

/* amenities */

.amenities-card {
  width: 100%;
  height: 15vw;
  min-height: 250px;
  background-color: rgba(0, 0, 0);
  position: relative;
  overflow: hidden;
  border-radius: 0.4rem;
  box-shadow:
    -0.5rem -0.5rem 2rem rgba(0, 0, 0, 0.2),
    0.5rem 0.5rem 2rem rgba(0, 0, 0, 0.2);
  margin-bottom: 25px;
}

.amenities-card:hover .title {
  transform: translateY(100%);
}

.amenities-card:hover .photo {
  opacity: 1;
}

.amenities-card .title {
  background-color: rgba(32, 37, 41, 0.5);
  backdrop-filter: blur(0.5rem);
  width: 100%;
  text-align: center;
  /* height: 35%; */
  position: absolute;
  bottom: 0%;
  padding: 1rem;
  border-top: 0.1rem solid #4c555c;
  box-shadow: 0rem -0.1rem 0.5rem rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  transition: 0.5s ease-in;
}

.amenities-card .photo {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  opacity: 0.8;
  transition: 0.5s ease-in-out;
  /* aspect-ratio: 3/2; */
}

.amenities-card .img1 {
  background-image: url(../img/amenities/SwimmingPool.jpg);
}

.amenities-card .img2 {
  background-image: url(../img/amenities/Gymnasium.jpg);
}

.amenities-card .img3 {
  background-image: url(../img/amenities/SeniorCitizenArea.jpg);
}

.amenities-card .img4 {
  background-image: url(../img/amenities/Clubhouse.jpg);
}

.amenities-card .img5 {
  background-image: url(../img/amenities/yoga.jpg);
}

.amenities-card .img6 {
  background-image: url(../img/amenities/StarGazingDeck.jpg);
}

.amenities-card .img7 {
  background-image: url(../img/amenities/LandscapedGardens.jpg);
}

.amenities-card .img8 {
  background-image: url(../img/amenities/Amphitheatre.jpg);
}

.amenities-card h4 {
  font-family: "Trajan_Pro_Bold";
  font-weight: 500;
  font-size: 1.5em;
  color: #f3f5f8;
  text-transform: uppercase;
}

/* Location Section */

.location-section {
  background-color: var(--light-color);
}
/* .location-section {
  padding: 100px 0;
  background-color: #f9f9f9;
  position: relative;
  background: linear-gradient(to right, #fafafa, #f5f5f5);
} */

.location-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: url("/api/placeholder/800/1600") center/cover no-repeat;
  opacity: 0.05;
  z-index: 0;
}

.location-container {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 500px;
  z-index: 1;
}

.location-map {
  flex: 1;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  background: white;
  height: 100%;
  border: 3px solid var(--colorPrimary);
}

@media screen and (max-width: 600px) {
  .location-map {
    height: 400px;
  }
}

.map-container {
  position: relative;
  height: 100%;
  background: linear-gradient(135deg, #f8f8f8, #ffffff);
  border-radius: 20px;
  overflow: hidden;
}

.map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.location-center-point {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background-color: var(--colorPrimary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  box-shadow: 0 0 0 8px rgba(195, 150, 77, 0.3);
  z-index: 10;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(195, 150, 77, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(195, 150, 77, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(195, 150, 77, 0);
  }
}

.location-points {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}

.location-point {
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: all 0.3s ease-out;
}

.location-point:hover {
  z-index: 10;
}

.location-point-icon {
  width: 24px;
  height: 24px;
  background-color: var(--colorBlack);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.8rem;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  position: relative;
}

.location-point.active .location-point-icon,
.location-point:hover .location-point-icon {
  background-color: var(--colorPrimary);
  transform: scale(1.3);
  box-shadow: 0 5px 15px rgba(195, 150, 77, 0.4);
}

.location-point-label {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--colorBlack);
  color: white;
  padding: 3px 10px;
  border-radius: 10px;
  font-size: 0.7rem;
  white-space: nowrap;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

.location-point:hover .location-point-label {
  opacity: 1;
  top: -35px;
}

.radius-circle {
  z-index: 2;
}

.location-details {
  flex: 1;
  padding-left: 60px;
}

.nav-pills {
  display: flex;
  border-bottom: 2px solid rgba(30, 51, 88, 0.1);
  margin-bottom: 35px;
}

.nav-pills {
  padding: 15px 25px;
  font-size: 1.1rem;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  margin-right: 10px;
}
.nav-pills .nav-link {
  color: var(--colorBlack);
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link,
.nav-link:hover {
  background-color: transparent;
  color: var(--colorSecondary);
  font-weight: 600;
}

.nav-pills .nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--colorPrimary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.connectivity-tab.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.connectivity-content {
  display: none;
}

.connectivity-content.active {
  display: block;
}

.location-card {
  background: white;
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-left: 4px solid transparent;
  position: relative;
  overflow: hidden;
}

.location-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(195, 150, 77, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.location-card:hover {
  transform: translateX(15px);
  border-left-color: var(--colorPrimary);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.location-card:hover::before {
  opacity: 1;
}

.location-card.active {
  border-left-color: var(--colorPrimary);
  background: linear-gradient(to right, rgba(195, 150, 77, 0.05), transparent);
}

.location-icon {
  width: 70px;
  height: 70px;
  border-radius: 15px;
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--colorBlack);
  font-size: 1.8rem;
  margin-right: 25px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.location-icon::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--colorPrimary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.location-card:hover .location-icon {
  color: var(--colorPrimary);
  background-color: #f0f0f0;
}

.location-card:hover .location-icon::after {
  transform: scaleX(1);
  transform-origin: left;

  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--colorSecondary);
  font-size: 1.5rem;
  margin-right: 20px;
  flex-shrink: 0;
}

.location-info {
  flex-grow: 1;
}

.location-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--colorPrimary);
  margin-bottom: 5px;
  text-align: left !important;
  text-transform: uppercase;
}

.location-distance {
  font-size: 0.9rem;
  color: #666;
  display: flex;
  align-items: center;
}

.location-distance i {
  margin-right: 5px;
  color: var(--colorPrimary);
}

.time-badge {
  background-color: var(--bg-color);
  border-radius: 30px;
  padding: 5px 15px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--colorBlack);
  margin-left: auto;
  display: flex;
  align-items: center;
}

.time-badge i {
  margin-right: 5px;
  color: var(--colorPrimary);
}

/* Responsive Styles */
@media (max-width: 991px) {
  .location-container {
    flex-direction: column;
  }

  .location-map,
  .location-details {
    width: 100%;
  }

  .location-details {
    padding-left: 0;
    padding-top: 40px;
  }
}

@media (max-width: 576px) {
  .nav-pills {
    padding: 12px 0px;
    font-size: 0.88rem;
  }
}

/* About */
#about_section {
  background-color: var(--colorSecondary);
  /* background: url("../img/extras/layer01.jpg") repeat #272727; */

  background-repeat: repeat;
  /* background-size: cover; */
  /* height: 970px; */
  background-attachment: fixed;
  padding: 0 !important;
}

.about_overlay {
  background-color: rgba(0, 0, 0, 0.6);
}

#about_section .sub-heading {
  color: var(--colorPrimary);
  font-size: 1.5em;
}

#about_section .sub-heading {
  letter-spacing: 3.5px;
}

.read_more {
  background-color: transparent;
  font-size: 14px;
  margin: 0;
  border-radius: 0;
  width: fit-content;
  padding: 5px 10px;
  color: var(--colorWhite);
}

.form-label {
  display: none;
}
.inputStyle {
  font-size: 1em;
  border-top: none;
  border-left: none;
  border-right: none;
}
.submit-btn,
.submit-btn:hover,
.submit-btn:focus-visible,
.submit-btn:active {
  background-color: var(--colorPrimary) !important;
  border: none !important;
  color: var(--colorWhite) !important;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
}

/* Footer */
.policy_links a {
  color: var(--colorSecondary) !important;
  text-decoration: none;
}

.custom-control-label {
  font-size: x-small !important;
}
