:root {
  --primary: #be0500;
  --secondary: #1e1e1e;
  --accent: #ff4b91;
  --bg: #e0eaff;
  --white: #ffffff;
  --grey-2: #f0f0f0;
  --h1: 48px;
  --h2: 36px;
  --h3: 30px;
  --h4: 20px;
  --h6: 18px;
  --p: 16px;
  --size70: 65px;
}

/** Adding Raleway Font **/
@font-face {
  font-family: "Rubik";
  font-style: normal;
  font-display: swap;
  src: url("fonts/Rubik/Rubik-Light.ttf") format("truetype");
  font-weight: 300;
}

@font-face {
  font-family: "Rubik";
  font-style: normal;
  font-display: swap;
  src: url("fonts/Rubik/Rubik-Regular.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "Rubik";
  font-style: normal;
  font-display: swap;
  src: url("fonts/Rubik/Rubik-Medium.ttf") format("truetype");
  font-weight: 500;
}

@font-face {
  font-family: "Rubik";
  font-style: normal;
  font-display: swap;
  src: url("fonts/Rubik/Rubik-Black.ttf") format("truetype");
  font-weight: 600;
}

@font-face {
  font-family: "Rubik";
  font-style: normal;
  font-display: swap;
  src: url("fonts/Rubik/Rubik-SemiBold.ttf") format("truetype");
  font-weight: 700;
}

@font-face {
  font-family: "Rubik";
  font-style: normal;
  font-display: swap;
  src: url("fonts/Rubik/Rubik-Bold.ttf") format("truetype");
  font-weight: bold;
}

body {
  font-family: "Rubik", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.banner-explore {
  background: url("../assets/Mask Group 25.png") no-repeat center center;
  background-size: 100% 100%; /* Maintain aspect ratio and fill */
  min-height: 800px;
  display: flex;
  padding-top: 150px;
  padding-bottom: 50px;
  align-items: center;
}
@media (max-width: 1350px) {
  .banner-explore {
    background-size: cover !important;
  }
}
.features-section {
  font-family: "Rubik", serif;
  background: #000;
  color: #fff;
  padding: 70px 0px 70px;
}

.section-heading {
  font-size: var(--h3);
  font-weight: 500;
  margin-bottom: 15px;
  opacity: 1;
}

.section-subtext {
  font-size: var(--h6);
  color: #cdd0d3;
  margin-bottom: 30px;
  line-height: 1.6;
}

.feature-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  gap: 20px;
  margin-bottom: 30px;
}

.feature-card {
  background: #f5f5f5 0% 0% no-repeat padding-box;
  border: 1px solid #707070;
  border-radius: 20px;
  opacity: 1;
  flex: 1;
  text-align: center;
}
.card-content {
  display: flex;
  align-items: center;
  gap: 10px;
}
.card-content img {
  max-width: 35%;
  height: auto;
  margin-left: 15px;
}
.feature-card-2-3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.feature-card h4 {
  font-family: "Rubik", serif;
  color: var(--primary);
  font-size: 25px;
  font-weight: bold;
  line-height: 1.5;
}

.feature-card p {
  font-family: "Rubik", serif;
  font-size: 20px;
  color: #000;
  font-weight: bold;
}

.btn-visit {
  display: inline-block;
  background: #fff;
  color: #000;
  font-weight: bold;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s;
  font-size: 20px;
  letter-spacing: 1.25px;
  line-height: 40px;
}

.btn-visit:hover {
  background: #e6e6e6;
}

.amenities-section {
  padding: 70px 0;
  background-color: #fff;
}

.amenities-heading {
  color: var(--primary);
  font-size: var(--size70);
  font-weight: 700;
  margin-bottom: 10px;
}

.amenities-subheading {
  color: #434343;
  margin-bottom: 30px;
  font-size: var(--h2);
}

.amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px 40px;
}

.amenity-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.amenity-item img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-top: 5px;
}

.amenity-item h4 {
  line-height: 1.5;
  color: #222;
  margin: 0;
  font-weight: 400;
  font-size: var(--h4);
}

.amenity-item h4 span {
  color: #b30000;
  font-weight: bold;
}

/* Main Section Styling */
.red-background {
  background-color: var(--primary);
  padding-top: 30px;
  padding-bottom: 0;
}

/* Titles */
.location-floor-title {
  color: #900400;
  font-weight: bold;
  font-size: 70px;
  text-transform: uppercase;
  opacity: 1;
}
.location-floor-subtitle {
  font-weight: bold;
  line-height: 1.4;
  color: white;
}
.description {
  font-size: 22px;
  line-height: 1.6;
  color: white;
}

/* Tabs Styling */
.custom-tabs .nav-link {
  background-color: #ca0d08;
  color: white;
  padding: 30px 0px;
  border-radius: 0;
  font-weight: 500;
  border-right: 3px solid #be0500;
  font-size: 22px;
}

.custom-tabs .nav-link.active {
  background-color: black;
  color: white;
}

/* Tab content */
.blackBackground {
  padding: 70px 0px;
  background-color: black;
}
.express-interest-Btn {
  background: var(--primary);
  color: #fff;
  font-weight: bold;
  padding: 9px 15px;
  border-radius: 60px;
  width: auto;
  font-size: 18px;
  border: none;
}
#tabParagraph {
  color: white;
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 0px !important;
}
iframe {
  width: 746px !important;
  height: 499px !important;
}
#tabList li {
  margin-top: 20px;
  color: white;
  font-size: 20px;
}
.overlay-blur {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 5;
  pointer-events: none;
}
#tabBtn {
  z-index: 10;
}

#masterPlanSection {
  white-space: nowrap;
  position: relative;
  padding: 50px 0;
  z-index: 1;
  overflow: hidden;
}

/* White fade over everything */
#masterPlanSection::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.2); /* white transparent layer */
  z-index: 2;
  pointer-events: none;
}
#masterList {
  margin-left: 20px;
}
#masterList li {
  display: flex;
  align-items: start;
  margin-top: 20px;
  color: black;
  font-size: 20px;
}

#masterList li img {
  width: 18px;
  height: 18px;
  margin: 8px 16px 0px 8px;
}

.image-wrapper {
  position: relative;
  width: 800px;
  margin: 0 auto;
}

/* Dim everything inside image-wrapper using ::before layer */
.image-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.image-wrapper img {
  width: 100%;
  display: block;
  position: relative;
  z-index: 0;
}

.overlay-title-wrapper {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 20px 30px;
}

.overlay-title {
  font-size: var(--h3);
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}

.overlay-button {
  background-color: #ca0d08;
  color: white;
  border: none;
  padding: 8px 18px;
  font-weight: 500;
  border-radius: 20px;
  transition: background 0.3s ease;
}

.overlay-button:hover {
  background-color: rgba(202, 13, 8, 0.8);
  cursor: pointer;
}

.unit-hotspot {
  position: absolute;
  cursor: pointer;
}

/* Tooltip box styling */
.tooltip-box {
  position: absolute;
  color: #3f0000;
  padding: 6px 10px;
  border-radius: 5px;
  font-size: 19px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 2;
}
#unit1 .tooltip-box {
  transform: translateX(-62%) rotate(37deg);
  bottom: 174%;
  left: 40%;
}
#unit1 .tooltip-line {
  height: 181px;
  top: -101px;
  left: 40%;
  transform: rotate(18deg) !important;
}
#unit2 .tooltip-box {
  transform: translateX(-99%) rotate(123deg);
  bottom: 152%;
  left: 56%;
}
#unit2 .tooltip-line {
  height: 222px;
  top: -116px;
  left: 40%;
  transform: rotate(-37deg);
}

/* Connector line */
.tooltip-line {
  transform: rotate(-93deg);
  position: absolute;
  width: 2px;
  height: 224px;
  background-color: #000;
  top: 144px;
  left: 129%;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

/* Show on hover */
.unit3-wrapper:hover .tooltip-box,
.unit-hotspot:hover .tooltip-box,
.unit-hotspot:hover .tooltip-line,
.unit3-wrapper:hover .tooltip-line {
  opacity: 1;
}

/* Unit positions & shapes */
#unit1 {
  top: 21.5%;
  left: 22.5%;
  width: 367px;
  height: 181px;
  transform: rotate(322.5deg) translateX(95px) skew(5deg);
  clip-path: polygon(-17% -212%, 82% -24%, 100% 82%, 8% 93%);
}

#unit2 {
  top: 53.5%;
  left: 20.5%;
  width: 361px;
  height: 234px;
  transform: rotate(220.5deg) translateX(72px) translateY(-10px) skew(-12deg);
  clip-path: polygon(-18% -230%, 111% 18%, 100% 90%, 9% 96%);
}
#unit3 {
  position: absolute;
  top: 13.5%;
  left: 39.5%;
  width: 172px;
  height: 338px;
  transform: rotate(56deg) skewY(-20deg) skewX(10deg) translateX(-31px);
  clip-path: polygon(18% -51%, 121% -235%, 100% 126%, -3% 144%);
}

.unit-hotspot:hover {
  background: rgba(202, 13, 8, 0.7);
}

.unit-hotspot:hover::after {
  opacity: 1;
}

.unit3-wrapper {
  position: absolute;
  top: 9.5%;
  left: 54.5%;
  width: 172px;
  height: 355px;
}

/* Tooltip now separate from clipped element */
.unit3-wrapper .tooltip-box {
  position: absolute;
  left: 224%;
  bottom: 8%;
  transform: translateX(-28%) rotate(9deg);
  color: #3f0000;
  padding: 8px 10px;
  border-radius: 5px;
  font-size: 19px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 99;
}

#enquirySection h1 {
  color: #3f0000 !important;
}

/* === Carousel Card Style === */
.carousel-card {
  position: relative;
  background: white;
  border-radius: 20px;
  padding: 60px 20px;
  height: 400px;
  width: 100%;
  overflow: hidden;
  text-align: center;
}

/* Background image inside card */
.carousel-card .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.25;
  z-index: 1;
}

/* Heading overlay */
.card-img-overlay h3 {
  font-size: 35px;
  text-align: center;
  position: relative;
  z-index: 2;
  margin-bottom: 15px;
}

/* === Owl Carousel Base === */
.owl-carousel {
  position: relative;
  padding: 0 80px;
}

/* Carousel items spacing */
.owl-carousel .carousel-card {
  margin: 0 -2px;
  transform: scale(0.95);
}

/* === Navigation Arrows === */
.owl-nav {
  position: absolute;
  top: 50%;
  left: 5%;
  right: 5%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 10;
}

/* Arrow buttons */
.owl-nav .arrow {
  background: red;
  color: white;
  padding: 5px 16px;
  border-radius: 25px;
  font-size: 22px;
  cursor: pointer;
  pointer-events: all;
  outline: none;
  box-shadow: none;
  border: none;
  transition: none;
}

.owl-nav .arrow:hover,
.owl-nav .arrow:focus {
  background: red;
  color: white;
  transform: none;
}
/* Move arrows outside */
.owl-nav .left {
  margin-left: -60px;
}

.owl-nav .right {
  margin-right: -60px;
}
.express-interest-Btns {
  background: var(--primary);
  color: #fff;
  font-weight: bold;
  padding: 9px 15px;
  border-radius: 60px;
  width: auto;
  font-size: 18px;
  border: none;
  position: relative;
  z-index: 2;
}
/*brochure styling*/
.brochure-section {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 30px;
}

.brochure-title {
  color: #3f0000;
  font-weight: bold;
  font-size: 47px;
  text-transform: uppercase;
  opacity: 1;
}

.download-btn {
  background-color: #be0500;
  color: white;
  padding: 9px 24px;
  border-radius: 62px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  width: 214px;
  text-align: center;
  font-size: 20px;
}

.brochure-image {
  max-width: 100%;
  height: auto;
  transform: translateX(-90px) scale(1.3) translateY(31px);
}
/*enquiry form styling*/
.schedule-section {
  background-color: var(--primary);
  padding: 50px 0;
}
.schedule-section h1 {
  font-size: var(--h1);
}
.form-control::placeholder {
  color: #000000;
  font-weight: 500;
}
.form-control {
  width: 95% !important;
  height: 30%;
  font-size: 18px;
}
.form-check-labels {
  color: black;
  padding-left: 5px;
  padding-top: 5px;
  font-weight: 500;
}
.submit-btn {
  width: 200px;
  background-color: white;
  color: black;
  font-weight: bold;
  border: none;
  padding: 8px 20px;
  border-radius: 60px;
  font-size: 20px;
}
.form-check-con {
  padding: 0.375rem 0.75rem;
}
.form-check .form-check-inputs {
  margin-top: 9px;
  float: left;
  margin-left: 0em;
  border: 1px solid #707070;
  width: 18px;
  height: 18px;
}
#disclaimerSection {
  padding: 70px 0;
}
#disclaimerSection h2 p {
  color: #707070;
}

#disclaimerSection p {
  font-size: 20px;
}
#disclaimerSection h2 {
  font-size: var(--h2);
}
/* foooter */
.footer-section {
  background-color: #000; /* or #111 for softer black */
  font-family: "Segoe UI", sans-serif;
}

.footer-section img {
  display: inline-block;
}

.footer-section a:hover {
  text-decoration: none;
}

.footer-section hr {
  columns: white !important;
  opacity: 1 !important;
}
.footer-font {
  font-size: 19px;
  font-weight: normal;
  color: var(--grey-2);
}

