* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@font-face {
  font-family: "Bugatti Regular";
  src: url("font/BUGATTIText-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "Bugatti Bold";
  src: url("font/BUGATTIText-Bold.ttf") format("truetype");
}

body {
  font-family: "Bugatti Regular", sans-serif;
  color: #fff;
  background: #000;
}

body::-webkit-scrollbar {
  display: none;
}

header {
  background: #000;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  cursor: pointer;
}

.nav-desktop {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 70px;
}

.nav-desktop ul {
  list-style: none;
  display: flex;
  gap: 70px;
  align-items: center;
}

.nav-desktop ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.25rem;
  text-transform: uppercase;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-desktop ul li a:hover {
  color: #0d6efd;
}

.btn {
  border: 2px solid #fff;
  background: none;
  color: #fff;
  padding: 12px 32px;
  cursor: grab;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
}

.btn-mobile {
  width: 90%;
  padding: 0.75rem 0.375rem;
  border: 2px solid #fff;
  background: none;
  color: #fff;
  cursor: grab;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-mobile {
  display: none;
  position: absolute;
  top: 140px;
  left: 0;
  width: 100%;
  background: #000;
  text-align: center;
  padding: 20px 0;
  animation: slideUp 0.3s ease-out;
  z-index: 1000;
}

.nav-mobile.open {
  display: block;
}

.nav-mobile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 20px;
}

.nav-mobile ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .nav-desktop {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  .btn {
    padding: 10px 20px;
    font-size: 1rem;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

@media (max-width: 474px) {
  header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    padding: 15px 20px;
    z-index: 10001;
    box-shadow: none;
  }
}

/****************** hero section  *********************/

.hero {
  height: calc(100vh - 139.61px);
  width: 100%;
  background: url("images/Banner.webp") no-repeat center center/cover;
  display: flex;
  align-items: end;
  justify-content: start;
  padding: 4%;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: 300;
}

.hero-content h1 {
  font-size: 6.25rem;
  margin-bottom: 2rem;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.2;
}

.get-in-touch {
  display: inline-block;
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 0.75rem 5rem;
  text-decoration: none;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: grab;
  transition: background 0.3s ease;
}

@media (max-width: 1024px) {
  .hero-content h2 {
    font-size: 1.5rem;
  }
  .hero-content h1 {
    font-size: 5rem;
  }
  .hero-content .date-time {
    font-size: 0.9rem;
  }
  .get-in-touch {
    padding: 0.5rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .hero {
    align-items: center;
  }
  .hero-content h3 {
    font-size: 1rem;
  }
  .hero-content h1 {
    font-size: 3rem;
  }
  .hero-content .date-time {
    font-size: 0.8rem;
  }
  .get-in-touch {
    padding: 0.65rem 5rem;
  }
}

@media (max-width: 474px) {
  .hero {
    height: 100vh;
  }
  .get-in-touch {
    padding: 0.65rem 5rem;
  }
}

/* **************** contect section code ******************** */

.centered-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  overflow: hidden;
}

.centered-content {
  z-index: 2;
  color: #fff;
  text-align: center;
}

.centered-content p {
  font-size: 20px;
  max-width: 55%;
  margin: 0 auto;
  line-height: 1.5;
}

.centered-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40vw;
  height: 100vh;
  background: url("images/bg_middle.png") no-repeat right center;
  background-size: contain;
  z-index: 1;
  pointer-events: none;
  opacity: 0.7;
}

.centered-section::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100vw;
  height: 50vh;
  background: url("images/bg_bottom.png") no-repeat left bottom;
  background-size: contain;
  z-index: 1;
  pointer-events: none;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .centered-content p {
    font-size: 16px;
    max-width: 85%;
  }

  .centered-section {
    min-height: 50vh;
  }
}

/* ********************** intro section code **********************/

.intro-section {
  background: url("images/bg-image-2.png") no-repeat center center / contain;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 5vw;
  min-height: 80vh;
}

.intro-text {
  color: #fff;
  z-index: 2;
}

.intro-text h2 {
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.intro-text h1 {
  font-size: 6.25rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 24px;
}

.intro-underline {
  width: 80px;
  height: 3px;
  background: #fff;
  margin-bottom: 24px;
}

.intro-text p {
  font-size: 25px;
  line-height: 1.7;
  width: 60%;
}

@media (max-width: 900px) {
  .intro-section {
    text-align: left;
    padding: 40px 4vw;
    gap: 30px;
  }
  .intro-text {
    width: 100%;
  }
  .intro-text h1 {
    font-size: 3rem;
  }
  .intro-text h2 {
    font-size: 1.25rem;
  }
  .intro-text p {
    font-size: 1rem;
  }
}

@media (max-width: 470px) {
  .intro-text h1 {
    font-size: 2rem;
  }
  .intro-text p {
    font-size: 15px;
  }
}

/* ********************** enquire section code **********************/

.enquire-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
}

.enquire-btn {
  padding: 12px 80px;
  font-size: 1rem;
}

@media (max-width: 700px) {
  .enquire-btn {
    padding: 12px 50px;
  }
}

/* ========== Card Heading Section ========== */
.card-heading-section {
  padding: 60px 5vw 60px 5vw;
  text-align: center;
}

.card-heading-title {
  color: #fff;
  font-size: 6.25rem;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.card-heading-desc {
  color: #fff;
  font-size: 25px;
  max-width: 1000px;
  margin: 0 auto;
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .card-heading-title {
    font-size: 5rem;
  }
  .card-heading-desc {
    font-size: 17px;
  }
}

@media (max-width: 700px) {
  .card-heading-title {
    font-size: 3rem;
  }
  .card-heading-desc {
    font-size: 15px;
    padding: 0 10px;
  }
}

/* ========== Feature Cards Section ========== */
.feature-cards-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  background: #000;
  padding: 60px 5vw;
}

.feature-card {
  background: #000;
  border-radius: 8px;
  box-shadow: none;
  padding: 32px 24px 40px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  min-height: 540px;
}

.feature-card img {
  width: 100%;
  max-width: 340px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 32px;
  background: #111;
}

.feature-card h3 {
  color: #fff;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.feature-card p {
  color: #fff;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 36px;
}

.feature-btn {
  display: inline-block;
  background: #fff;
  color: #000;
  border: none;
  border-radius: 2px;
  padding: 13px 48px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
  cursor: pointer;
  font-weight: 400;
  box-shadow: none;
  margin-top: auto;
}

.feature-btn:hover,
.feature-btn:focus {
  background: #0d6efd;
  color: #fff;
}

@media (max-width: 1100px) {
  .feature-cards-section {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 40px 2vw;
  }
  .feature-card {
    max-width: 100%;
    min-height: 480px;
    padding: 24px 12px 32px 12px;
  }
  .feature-card img {
    max-width: 100%;
  }
}

@media (max-width: 700px) {
  .feature-cards-section {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 2vw;
  }
  .feature-card {
    min-height: 0;
    padding: 20px 5px 28px 5px;
  }
}

@media (max-width: 470px) {
  .feature-cards-section {
    padding: 0px 0px;
  }
  .feature-card {
    padding: 0px;
  }

  .feature-card h3 {
    padding: 10px;
    margin-bottom: 0px;
  }
  .feature-card p {
    width: 85%;
    margin-bottom: 60px;
  }
  .feature-card img {
    height: 340px;
  }
}

/* **************** carosel section ********************** */

.carousel-section,
.owl-carousel {
  /* width: 100vw;
  height: 95vh; */
  position: relative;
  overflow: hidden;
}

.carousel-slide {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}

.carousel-slide img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 3;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
  pointer-events: none;
}

.carousel-overlay-text {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 600px;
  margin-right: 6vw;
  text-align: left;
  padding: 40px 0;
}

.carousel-overlay-text h2 {
  font-size: 5rem;
  font-weight: 400;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.carousel-overlay-text .divider {
  width: 8.3rem;
  height: 2px;
  background-color: #fff;
  margin: 18px 0 24px 0;
}

.carousel-overlay-text p {
  font-size: 1.5rem;
  line-height: 1.5;
  margin-top: 15px;
}

.carousel-one .owl-dots {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  z-index: 10;
}

.owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.4;
  cursor: pointer;
  transition: opacity 0.3s, background 0.3s;
}

.owl-dots .owl-dot.active span {
  opacity: 1;
  background: #0d6efd;
}

/* Responsive */
@media (max-width: 900px) {
  .carousel-section,
  .owl-carousel,
  .carousel-slide,
  .carousel-slide img {
    height: 60vh;
    min-height: 320px;
  }
  .carousel-overlay {
    justify-content: center;
    align-items: flex-end;
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.7) 100%
    );
  }
  .carousel-overlay-text {
    margin: 0;
    text-align: center;
    padding: 24px 5vw 32px 5vw;
  }
  .carousel-overlay-text h2 {
    font-size: 3rem;
  }
  .carousel-overlay-text p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .carousel-overlay-text {
    text-align: left;
    position: absolute;
    top: 0;
  }
  .carousel-section,
  .owl-carousel,
  .carousel-slide,
  .carousel-slide img {
    height: 40vh;
    min-height: 320px;
  }

  .carousel-section {
    margin-top: 70px;
  }
}

/* **************** contect section code two ******************** */

.centered-section-two {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.centered-section-two p {
  font-size: 1.5rem;
  max-width: 55%;
  margin: 0 auto;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .centered-section-two p {
    font-size: 12px;
    max-width: 85%;
  }
  .centered-section-two {
    min-height: 30vh;
  }
}

/* ========== map Heading Section ========== */
.map-heading-section {
  padding: 100px 5vw 100px 5vw;
  text-align: center;
}

.map-heading-title {
  color: #fff;
  font-size: 6.25rem;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.map-heading-desc {
  color: #fff;
  font-size: 25px;
  max-width: 1000px;
  margin: 0 auto;
  line-height: 1.4;
}

.img-width {
  width: 70% !important;
  margin: 0 auto;
}

.floor-carousel .owl-dots {
  display: none;
}

.floor-carousel {
  padding: 0px 6% !important;
}

@media (max-width: 1024px) {
  .map-heading-title {
    font-size: 5rem;
  }
  .map-heading-desc {
    font-size: 1rem;
  }
}

@media (max-width: 700px) {
  .map-heading-title {
    font-size: 3rem;
  }
  .map-heading-desc {
    font-size: 12px;
    padding: 0 10px;
  }
  .map-heading-section {
    padding: 50px 2vw 50px 2vw;
  }
  .img-width {
    width: 95% !important;
  }
}

@media (max-width: 470px) {
  .map-heading-desc {
    font-size: 10px;
  }
}

/* OWL Code  */

.carousel-section-two {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}

.owl-carousel {
  margin: 0 auto;
  padding: 30px 0px;
  position: relative;
  width: 100vw;
  height: 100vh;
}
.item {
  position: relative;
  height: auto;
}
.item img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}
.owl-dots {
  text-align: center;
  position: absolute;
  width: 100%;
  bottom: 24px;
  display: flex;
  justify-content: center;
}
.owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  background: #ccc;
  border-radius: 50%;
}
.owl-dot.active {
  background: #0d6efd;
}
.owl-nav {
  display: none;
}
.owl-stage-outer {
  overflow: hidden;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #0d6efd !important;
}

@media (max-width: 769px) {
  .owl-carousel {
    padding: 30px 0px 0px 0px;
  }
  .carousel-section-two,
  .owl-carousel,
  .item img {
    height: 60vh;
  }

}

@media (max-width: 470px) {
  .owl-carousel {
    padding: 30px 0px 0px 0px;
  }
  .carousel-section-two,
  .owl-carousel,
  .item img {
    height: 40vh;
  }

}

/* **************** Footer ******************* */

footer {
  padding: 50px 50px;
  text-align: center;
}
.footer-container {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 20px;
}
.footer-section {
  margin: 10px 0;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 50px;
}
.footer-logo {
  width: 147px;
  margin-bottom: 10px;
}
.logo p {
  font-size: 14px;
  margin: 5px 0;
  text-align: left;
}
.contact,
.links,
.social {
  text-align: left;
}
.contact h3,
.links h3,
.social h3 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.contact p {
  font-size: 13px;
  margin: 5px 0;
}
.links a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  margin: 5px 0;
  line-height: 1.8;
}
.links a:hover {
  color: #0d6efd;
}
.social a {
  margin: 0 10px;
  font-size: 20px;
  color: #fff !important;
  text-decoration: none;
}
.social a:hover {
  color: #ccc;
}
.social i {
  vertical-align: middle;
}
.social i:hover {
  color: #0d6efd;
}

.social .fa {
  margin: 0 5px;
}

@media (max-width: 1024px) {
  .contact h3,
  .links h3,
  .social h3 {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 15px;
  }
  .contact {
    text-align: center;
  }
  .links h3 {
    text-align: center;
  }
  .social h3 {
    text-align: center;
  }
  footer {
    padding: 10px;
    padding-bottom: 50px;
  }
  .footer-container {
    justify-content: center;
  }
  .desktop {
    display: none;
  }
  .contact {
    order: 2;
  }
  .links {
    order: 1;
  }
  .social {
    order: 3;
  }
}

@media (max-width: 470px) {
  .contact p {
    font-size: 14px;
  }
  .links a {
    font-size: 16px;
  }
}

/* ************** FORM CODE ******************** */

.form {
  padding: 100px 0px 50px 0px;
}

.form-main {
  background: url("images/formbg.png");
  background-repeat: no-repeat;
  background-position: left;
  width: 100%;
}

.form h2 {
  color: #fff;
  text-align: center;
  font-size: 3.5rem;
  margin-bottom: 3rem;
  font-weight: 500;
  margin-top: 0;
  line-height: 1.2;
  font-family: "Bugatti Bold";
  text-transform: uppercase;
}

.form-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.custom-form {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.user-type {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 25px;
}

.radio-container {
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  user-select: none;
  font-size: 14px;
  color: #aaa;
  display: flex;
  align-items: center;
  height: 30px;
}

.radio-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 30px;
  width: 30px;
  background-color: transparent;
  border: 2px solid #fff;
}

.radio-container input:checked ~ .checkmark::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: white;
}

.custom-input {
  background-color: black !important;
  border: 2px solid white;
  padding: 15px;
  color: white !important;
  font-size: 14px;
  width: 100%;
}

.custom-input::placeholder {
  color: #aaa;
  text-transform: uppercase;
}

.custom-input option {
  color: black;
}

.radio-text {
  padding-left: 5px;
}

.submit-btn {
  background: transparent;
  border: 2px solid white;
  color: white;
  padding: 0.75rem 5rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s ease;
  font-size: 14px;
  width: fit-content;
}

.form-image {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 20px;
}
@media (min-width: 280px) and (max-width: 480px) {
  .form h2 {
    font-size: 2.5rem !important;
  }
  .custom-form {
    width: 90%;
  }
  .form-main {
    background-position: right;
  }
}

.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-content {
  background: #000;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  color: white;
  width: 90%;
  max-width: 400px;
  position: relative;
}

.popup .close {
  position: absolute;
  top: 10px;
  right: 16px;
  font-size: 24px;
  cursor: pointer;
}

/* floating icons  */
.floating-icons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.floating-icons .icon {
  width: 50px;
  height: 50px;
  border: 2px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background-color: transparent;
  font-size: 20px;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.floating-icons .icon:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Show only on max-width 1024px */
@media (max-width: 1024px) {
  .floating-icons {
    display: flex;
  }
}
