@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap");

@font-face {
  font-family: "MyCustomFont";
  src: url("./ABCOracleVariable-Regular.ttf") format("truetype");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --mural-primary: #2c3e50;
  --mural-secondary: #34495e;
  --mural-accent: #8b7355;
  --mural-light: #ecf0f1;
  --mural-dark: #1a252f;
  --mural-gold: #d4af37;
}

.custom-text {
  font-family: "MyCustomFont", fallback-font, sans-serif !important;
  letter-spacing: 2px;
  font-size: 26px;
}

body {
  font-family: "Inter", sans-serif;
  /* overflow-x: hidden; */
}

.inter-thin {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
}
.inter-light {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.hero-section {
  height: 90vh;
  background: url("../images/padHome.jpg") center center/cover no-repeat;
  position: relative;
  display: flex;
  flex-direction: column;
}

.hero-text {
  position: absolute !important;
  /*top: 73%;*/
  bottom: 0;
  left: 25%;
  transform: translate(-50%, -50%);
  /* text-align: center; */
  color: white;
  width: 40%;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
  pointer-events: none;
}
.hero-section > * {
  position: relative;
  z-index: 2;
  /* width: 37%; */
}

.navbar {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(1px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 300;
  color: white !important;
  letter-spacing: 3px;
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 400;
  margin: 0 1rem;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: white !important;
  transform: translateY(-2px);
}

.btn-inquire {
  border: 0.5px solid rgba(255, 255, 255, 0.8);
  color: rgb(30, 30, 30);
  padding: 0.5rem 1.3rem;
  border-radius: 0px;
  font-weight: lighter;
  transition: all 0.3s ease;
  background: white;
}

.btn-inquire:hover {
  background: transparent;

  color: #2c5282;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.language-toggle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-left: 1.3rem;
}

.hero-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* padding: 2rem; */
}

.hero-title {
  width: 450px;
  color: white;
  letter-spacing: 8px;
  margin-bottom: 2rem;
  margin-top: 12rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1.5s ease-out;
}

.scroll-indicator {
  position: absolute;
  bottom: 0rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: white;
}

.scroll-text {
  font-size: 0.9rem;
  font-weight: 400;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.scroll-line {
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, #c8e9ff 0%, #d3ecff 100%);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.scroll-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #327cb4 0%, #64a0c8 100%);
  animation: scrollLineAnim 1.6s cubic-bezier(0.7, 0, 0.3, 1) infinite;
}

@keyframes scrollLineAnim {
  0% {
    top: -100%;
  }
  100% {
    top: 100%;
  }
}

.navbar-toggler {
  border: none;
  color: white;
}

.navbar-toggler:focus {
  box-shadow: none;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 4rem;
    letter-spacing: 4px;
  }

  .custom-text {
    font-size: 20px;
  }

  .mural-description {
    /* font-size: 15px;
    color: #555;
    line-height: 1.7; */
    border-right: none !important;
  }

  .hero-text {
    position: absolute !important;
    /*top: 89%;*/
    bottom: 0;
    left: 53%;
    width: 90%;
    transform: translate(-50%, -50%);
    /* text-align: center; */
    color: white;
  }

  .development-showcase {
    position: static;
    transform: none;
    width: 90%;
    margin: 2rem auto;
  }

  .hero-content {
    flex-direction: column;
  }

  .navbar-brand {
    font-size: 1.5rem;
    letter-spacing: 2px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 3rem;
    letter-spacing: 2px;
  }

  .development-showcase {
    width: 95%;
    height: auto;
    padding: 1.5rem;
  }
}

/* ------------------------ footer start ---------------------  */
.footer-container {
  background: linear-gradient(135deg, #111 0%, #222 100%);
  color: #fff;
  padding: 80px 70px 80px;
}

.beyond-logo {
  /* width: 60px; */
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 33px;
  height: 33px;
  border: 1px solid #6e6e6e;
  border-radius: 50%;
  transition: border-color 0.2s;
}

.section-title {
  font-size: 15px;
  font-weight: 600;
  color: #999;
  /* text-transform: uppercase; */
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 5px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 400;
}

.newsletter-box {
  /* background-color: #2a2a2a; */
  /* border-radius: 12px; */
  /* padding: 40px; */
}

.newsletter-title {
  color: #7c7c7c;
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 25px;
}

.email-input {
  width: 100%;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #6e6e6e;
  /* border-radius: 8px; */
  /* padding: 15px; */
  padding-bottom: 10px;
  color: #fff;
  font-size: 14px;
  margin-bottom: 20px;
}

.email-input::placeholder {
  color: #999;
}

.email-input:focus {
  outline: none;
}

.submit-button {
  width: 40%;
  background-color: rgb(44, 44, 44);
  border: none;
  /* border-radius: 8px; */
  padding: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.privacy-text {
  color: white;
  font-size: 12px;
  line-height: 1.4;
  margin-top: 20px;
  width: 70%;
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 80px;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.copyright {
  color: white;
  font-size: 16px;
}

.bottom-links {
  display: flex;
  gap: 30px;
}

.bottom-links a {
  color: #999;
  text-decoration: none;
  font-size: 14px;
}

.language-section {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #999;
  font-size: 14px;
}

.language-select {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 14px;
}

.location-title {
  font-size: 31px;
}

@media (max-width: 768px) {
  .footer-container {
    padding: 60px 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .bottom-links {
    gap: 20px;
  }

  .bottom-links a {
    color: #999;
    text-decoration: none;
    font-size: 12px;
  }

  .privacy-text {
    /* color: white;
  font-size: 12px;
  line-height: 1.4; */
    margin-top: 20px;
    width: 100%;
  }

  .copyright {
    color: white;
    font-size: 16px;
    /* text-align: center; */
  }
}

/* -------------------- footer ends ---------------------- */

/* -------------------- contact us start ---------------------- */

.contact-container {
  max-width: 100%;
  /* margin: 0 auto; */
  padding: 60px 60px;
  background-color: rgba(236, 232, 228);
}

.git {
  position: relative;
  /* top: 50%;
  transform: translateY(-50%); */
  padding-top: 20px;
}

.contact-title {
  font-size: 37px;
  font-weight: 500;
  color: #565555;
  margin-bottom: 1.8rem;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.contact-subtitle {
  width: 70%;
  font-size: 15px;
  color: #666;
  margin-bottom: 3rem;
  font-weight: 400;
  line-height: 1.5;
}

.form-group {
  margin-bottom: 2rem;
  position: relative;
}

.form-control {
  border: none;
  border-bottom: 1px solid #454545;
  border-radius: 0;
  background: transparent;
  padding: 10px 0;
  font-size: 1rem;
  color: #333;
  box-shadow: none;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-bottom-color: #666;
  box-shadow: none;
  background: transparent;
}

.form-control::placeholder {
  color: #6f6f6f;
  font-weight: 400;
}

.phone-input-group {
  display: flex;
  align-items: center;
}

.country-code {
  display: flex;
  align-items: center;
  padding-right: 15px;
  border-bottom: 1px solid #454545;
  margin-right: 10px;
  min-width: 80px;
  margin-top: 20px;
}

.flag-icon {
  width: 20px;
  height: 15px;
  margin-right: 8px;
  background: linear-gradient(
    to bottom,
    #000 33.33%,
    #fff 33.33%,
    #fff 66.66%,
    #ff0000 66.66%
  );
  display: inline-block;
}

.phone-number {
  flex: 1;
  border: none;
  border-bottom: 1px solid #454545;
  border-radius: 0;
  background: transparent;
  padding: 10px 0;
  font-size: 1rem;
  color: #333;
  outline: none;
  transition: border-color 0.3s ease;
}

.phone-number:focus {
  border-bottom-color: #666;
}

.phone-number::placeholder {
  color: #999;
}

.submit-btn {
  background-color: rgb(44, 44, 44);
  color: white;
  border: none;
  padding: 9px 45px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 0;
  margin-top: 1rem;
  text-decoration: none;
  border: solid 1px black;

  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease,
    transform 0.3s ease, border 0.3s ease;
}

.submit-btn:hover {
  background-color: #f4f4f4;
  color: black;
  border: solid 1px black;
  /* box-shadow: 0 6px 24px rgba(44, 62, 80, 0.18),
    0 1.5px 4px rgba(44, 62, 80, 0.1); */
  /* transform: translateY(-1px); */
}

@media (max-width: 768px) {
  .contact-container {
    padding: 40px 20px;
  }

  .contact-title {
    font-size: 2.5rem;
  }

  .row > div {
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  .contact-title {
    font-size: 2rem;
  }

  .phone-input-group {
    flex-direction: column;
    align-items: stretch;
  }

  .country-code {
    margin-right: 0;
    margin-bottom: 10px;
    border-bottom: 2px solid #ccc;
    padding-bottom: 10px;
  }
}

/* map saction  */

.map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  /* margin-top: 30px; */
}
.interior-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  margin-top: 30px;
}

/* location  */

.location-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.section-header {
  text-align: center;
  margin-bottom: 85px;
}

.section-subtitle {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 20px;
}

/* .section-title {
  font-size: 20px;
  font-weight: 300;
  color: #b4b4b4;
  margin-bottom: 30px;
  line-height: 1.2;
} */
.location-section-title {
  font-size: 31px;
  font-weight: 300;
  color: #333;
  margin-bottom: 30px;
  line-height: 1.2;
}

.section-description {
  font-size: 13px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
  margin-top: 60px;
  margin-bottom: 60px;
}

.location-item {
  text-align: center;
}

.time-badge {
  font-size: 12px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.location-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: #e9ecef; */
  border-radius: 8px;
}

.location-icon i {
  font-size: 20px;
  color: #666;
}

/* .location-icon.highlight {
  color: #007bff;
} */

.location-icon.highlight i {
  color: #007bff;
}

.location-name {
  font-size: 14px;
  font-weight: 400;
  color: #666;
  margin: 0;
  line-height: 1.3;
}

@media (max-width: 1200px) {
  .locations-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
  }

  .location-section-title {
    font-size: 31px;
    padding: 0 3rem;
  }

  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .section-subtitle {
    margin-top: 20px;
    font-size: 15px;
    /* font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase; */
    color: #87bdfa;
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 17px;
    margin-bottom: 15px;
    padding: 0;
  }

  .section-description {
    padding: 0 31px;
  }

  .location-section {
    padding: 40px 0;
  }

  .locations-grid {
    gap: 47px;
  }
}

/* amenties section  */

.luxury-amenities-container {
  background-color: #f8f3ea;
  min-height: 100vh;
  padding: 0;
  font-family: "Arial", sans-serif;
}

.amenities-header-section {
  text-align: center;
  padding: 60px 20px 40px;
  background-color: #f5f5f0;
}

.amenities-main-title {
  font-style: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #545454;
  margin-bottom: 15px;
}

.amenities-hero-title {
  font-size: 20px;
  font-weight: 300;
  color: #2c2c2c;
  margin-bottom: 25px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.amenities-subtitle-text {
  font-size: 14px;
  color: #666;
  font-weight: 300;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.amenities-content-wrapper {
  position: relative;
  background-color: #f8f3ea;
  padding: 0 20px 60px;
}

.amenities-slider-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.amenities-main-image {
  width: 73%;
  height: 560px;
  object-fit: cover;
  border-radius: 0;
}

.amenities-thumbnail-container {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 200px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.amenities-thumbnail-image {
  width: 100%;
  height: 49%;
  object-fit: cover;
}

.amenities-info-section {
  background-color: #f5f5f0;
  padding: 40px 0 0;
  max-width: 1200px;
  margin: 0 auto;
}

.amenities-navigation-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.amenities-nav-arrow {
  width: 40px;
  height: 40px;
  /* border: 1px solid #ccc; */
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.amenities-nav-arrow:hover {
  background-color: #333;
  border-color: #333;
}

.amenities-nav-arrow:hover::after {
  color: white;
}

.amenities-nav-arrow.prev-amenity::after {
  content: "←";
  font-size: 18px;
  color: #666;
}

.amenities-nav-arrow.next-amenity::after {
  content: "→";
  font-size: 18px;
  color: #666;
}

.amenities-feature-title {
  font-size: 20px;
  font-weight: 300;
  color: #2c2c2c;
  margin-bottom: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.amenities-feature-description {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
  font-weight: 300;
  max-width: 500px;
}

@media (max-width: 768px) {
  .amenities-hero-title {
    font-size: 23px;
    padding: 0 20px;
  }
  .amenities-main-title {
    color: #87bdfa;
  }

  .amenities-info-section {
    background-color: #f5f5f0;
    padding: 0px 0 0;
    max-width: 1200px;
    margin: 0 auto;
  }

  .amenities-navigation-controls {
    display: flex;
    justify-content: left;
    /* gap: 20px; */
    margin-bottom: 0px;
  }

  .amenities-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 0;
  }

  .amenities-content-wrapper {
    padding: 0 20px 0px;
  }

  .amenities-thumbnail-container {
    position: static;
    width: 100%;
    flex-direction: row;
    height: 100px;
    margin-top: 10px;
  }

  .amenities-thumbnail-image {
    width: 49%;
    height: 100%;
  }

  .amenities-header-section {
    padding: 40px 20px 20px;
  }

  .amenities-feature-title {
    font-size: 25px;
    /* text-align: center; */
  }

  .amenities-feature-description {
    /* text-align: center; */
    padding-right: 60px;
  }
}

@media (max-width: 992px) {
  .amenities-thumbnail-container {
    width: 150px;
  }
}

/* interior exterior  */

.interior-exterior-container {
  background-color: #f8f3ea;
  padding: 90px 20px;
}

.interior-description {
  font-size: smaller;
  letter-spacing: 1px;
  color: #181818;
  font-weight: 300;
}

.interior-exterior-heading {
  /* color: #87bdfa; */
  font-weight: 400;
  letter-spacing: 1px;
  color: #545454;
  font-size: 15px;
}

.interior-exterior-description {
  padding-right: 20px;
}

/* interior section  */

.hero-section-b {
  min-height: 100vh;
  background-color: #fafafa;
}

.image-section {
  padding: 100px 0px;
  background-color: #fafafa;
}

.interior-image {
  width: 100%;
  height: 650px;
  background: linear-gradient(135deg, #e8e6e1 0%, #d4d0cb 100%);
  /* border-radius: 12px; */
  position: relative;
  overflow: hidden;
}

.content-section {
  padding: 60px 40px 60px 83px;
  /* background-color: #f8f7f5; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.section-tag {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #545454;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.main-title {
  font-size: 28px;
  font-weight: 400;
  line-height: 1.1;
  color: #2c2c2c;
  margin-bottom: 35px;
  padding-right: 100px;
}

.description {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 25px;
}

@media (max-width: 992px) {
  .hero-section {
    flex-direction: column;
  }

  .image-section {
    padding: 0px;
  }

  .interior-image {
    height: 400px;
  }

  .content-section {
    padding: 0px 29px;
  }

  .section-tag {
  }

  .section-tag {
    font-size: 14px;
    color: #87bdfa;
    /* margin: 25px 0; */
    margin-top: 50px;
    /* text-transform: uppercase; */
  }

  .main-title {
    font-size: 36px;
  }

  .staircase {
    left: 30px;
    bottom: 40px;
    width: 120px;
    height: 180px;
  }

  .chandelier {
    top: 60px;
    left: 150px;
    width: 80px;
    height: 100px;
  }

  .ring-1 {
    width: 60px;
    height: 60px;
  }
  .ring-2 {
    width: 48px;
    height: 48px;
    top: 18px;
    left: 12px;
  }
  .ring-3 {
    width: 36px;
    height: 36px;
    top: 30px;
    left: 18px;
  }
}

@media (max-width: 768px) {
  .interior-image {
    height: auto;
  }
  .interior-image img {
    height: 450px;
  }

  .main-title {
    font-size: 28px;
    padding-right: 25px;
    font-weight: 400;
    letter-spacing: 1px;
  }

  .description {
    font-size: 14px;
  }
  .interior-exterior-container {
    background-color: #f8f3ea;
    padding: 41px 25px;
  }

  .interior-exterior-heading {
    color: #87bdfa;
  }
  .interior-exterior-description {
    font-size: 30px;
    font-weight: 400;
    padding-right: 50px;
  }
  .interior-description {
    font-size: 16px;
  }
}

/* the project */

.mural-section {
  /* background-color: #f5f4ef; */
  padding: 60px 0;
}
.mural-text-content {
  padding-right: 40px;
}
.mural-subheading {
  font-size: 14px;
  letter-spacing: 2px;
  color: #5a5a5a;
  text-transform: uppercase;
  font-weight: 600;
}
.mural-heading {
  font-size: 20px;
  font-weight: 700;
  margin-top: 15px;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.mural-description {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  border-right: solid 1px #000;
}

.mural-project-description {
  padding-right: 20px;
  font-weight: 200;
}
.mural-image-wrapper {
  background-color: #e5e4dd;
  padding: 20px;
  display: inline-block;
  position: relative;
  width: 450px;
  height: 522px;
}
.mural-image {
  position: absolute;
  width: 75%;
  /* height: 522px; */
  display: block;
  max-width: 561px;
  top: 41px;
  right: 181px;
}

/* showcase property  */

.mural-summary {
  background-color: #f8f3ea;
}

.mural-summary .mural-description {
  font-size: 14px;
  line-height: 1.6;
  color: #212529;
  padding-right: 70px;
}

.mural-info .mural-heading {
  font-weight: 400;
  letter-spacing: 0.05em;
}

.mural-info-item {
  padding: 0rem 35px;
  border-right: solid 1px #000;
}

.mural-main-heading {
  font-size: 25px;
  font-weight: 500;
  margin-top: 15px;
  margin-bottom: 20px;
  width: 75% !important;
  letter-spacing: 1px;
}

@media (max-width: 767px) {
  .mural-section {
    /* background-color: #f5f4ef; */
    padding: 0;
  }

  .mural-summary .mural-description {
    font-size: 15px;
    line-height: 1.6;
    color: #212529;
    padding-right: 10px;
  }

  .mural-project-description {
    font-size: 15px;
    color: #545454;
    line-height: 1.7;
    border-right: none;
  }

  .mural-main-heading {
    font-size: 30px;
    font-weight: 300;
    margin-top: 15px;
    margin-bottom: 20px;
    padding-right: 58px;
    width: 100% !important;
    letter-spacing: 1px;
  }

  .mural-subheading {
    font-size: 15px;

    color: #87bdfa;
  }

  .mural-info .col-md-4 {
    border: none !important;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 20px;
    margin-bottom: 0;
  }

  .mural-text-content {
    padding: 30px;
  }

  .mural-image-wrapper {
    background-color: #e5e4dd;
    padding: 20px;
    display: inline-block;
    position: relative;
    width: 351px;
    height: 431px;
  }

  .mural-image {
    position: absolute;
    width: 100%;
    /* height: 522px; */
    display: block;
    max-width: 561px;
    top: 0px;
    right: 0px;
  }
}

/* offcanvas  */

.offcanvas-custom {
  background-color: #f5f3f0;
  width: 320px;
  border: none;
}

.offcanvas-header-custom {
  border-bottom: none;
  padding: 2rem 2rem 1rem 2rem;
}

.btn-close-custom {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #666;
  opacity: 0.8;
}

.btn-close-custom:hover {
  opacity: 1;
}

.offcanvas-body-custom {
  padding: 1rem 2rem 2rem 3rem;
}

.nav-section {
  margin-bottom: 2rem;
}

.nav-section-sub {
  margin-bottom: 10rem;
}

.nav-link-custom {
  color: #666;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  padding: 0.8rem 0;
  display: block;
  transition: color 0.3s ease;
  border: none;
  background: none;
  text-align: left;
  width: 100%;
}
.nav-link-custom-sub {
  color: #666;
  text-decoration: none;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.5px;
  padding: 4px 0;
  display: block;
  transition: color 0.3s ease;
  border: none;
  background: none;
  text-align: left;
  width: 100%;
}

.nav-link-custom:hover {
  color: #333;
}

.brand-logo {
  font-size: 1.8rem;
  font-weight: 300;
  color: #666;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.nav-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 35px;
  background-color: #f5f3f0;
}

.nav-social-icons {
  display: flex;
  gap: 1.5rem;
  /* margin-top: 1rem; */
}

.nav-social-icon {
  color: #666;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.nav-social-icon:hover {
  color: #333;
}

/* crousel */

.discover-section {
  /* padding: 96px 24px; */
  background-color: #f8f3ea;
}

@media (min-width: 768px) {
  .discover-section {
    /* padding: 144px 48px; */
  }
}

.swiper {
  width: 100%;
  height: 100%;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
}

.carousel-card {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.text-container {
  position: absolute;
  bottom: 80px;
  left: 0;
  width: 100%;
  padding: 24px;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

@media (min-width: 768px) {
  .text-container {
    padding: 48px;
    max-width: 100%;
    bottom: 0px;
  }
}

.text-container h2 {
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 16px;
}

.text-container p {
  font-size: 16px;
  font-weight: 300;
}

/* Custom Navigation Container */
.custom-navigation {
  position: absolute;
  bottom: 58px;
  right: 195px;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 10000;
}

/* Custom Navigation Arrows */
.custom-nav-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  font-weight: 300;
  transition: color 0.3s ease;
  user-select: none;
}

.custom-prev {
  transform: rotate(180deg);
}

.custom-nav-btn:hover {
  color: rgba(255, 255, 255, 1);
}

.custom-nav-btn.swiper-button-disabled {
  color: rgba(255, 255, 255, 0.3);
  cursor: not-allowed;
}

/* Custom Progress Bar */
.custom-progress-container {
  position: absolute;
  bottom: 71px;
  left: 271px;
  right: 822px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 1px;
  z-index: 10000;
}

.custom-progress-bar {
  height: 100%;
  background: #3b82f6;
  border-radius: 1px;
  transition: width 0.3s ease;
  width: 25%; /* Default for first slide */
}

/* Hide default Swiper elements */
.swiper-button-prev,
.swiper-button-next,
.swiper-scrollbar {
  display: none !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .custom-navigation {
    bottom: 20px;
    right: 20px;
    gap: 15px;
  }

  .custom-progress-container {
    bottom: 36px;
    left: 37px;
    right: 256px;
  }

  .custom-nav-btn {
    width: 30px;
    height: 35px;
    font-size: 19px;
  }

  .swiper {
    width: 100%;
    height: 600px;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
  }

  .slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .text-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    color: #fff;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
  }

  .vertical-buttons {
    left: 20px !important;
    top: 50%;
  }

  .vertical-btn {
    width: 30px !important;
    height: 140px !important;
    font-size: 10px !important;
  }
}

.cust-btn {
  position: absolute;
  display: flex;
}

/* Vertical Buttons - Left Side */
.vertical-buttons {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.vertical-btn {
  width: 58px;
  height: 200px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  font-family: "Arial", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.vertical-btn span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  white-space: nowrap;
  transition: all 0.3s ease;
}

.interior-btn {
  background: transparent;
  color: white;
  backdrop-filter: blur(10px);
}

.exterior-btn {
  background: rgba(255, 255, 255, 0.95);
  color: #1a1a1a;
}

.vertical-btn:hover {
  /* transform: translateX(10px); */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.vertical-btn.active {
  /* transform: translateX(10px); */
  background: rgba(255, 255, 255, 0.95);
}

.interior-btn:hover,
.interior-btn.active {
  /* background: transparent; */
  background: rgba(255, 255, 255, 0.95);
}

.exterior-btn:hover,
.exterior-btn.active {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* crousal style start  */

.amenities-carousel-container {
  position: relative;
  width: 100%;
  padding: 0 1rem 4rem 1rem;
  background-color: #f8f3ea;
}

.amenities-carousel-wrapper {
  /* max-width: 80rem; */
  margin: 0 auto;
}

.amenities-carousel-overflow {
  position: relative;
  overflow: hidden;
}

.amenities-carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.amenities-carousel-item {
  flex-shrink: 0;
  padding: 0 2rem;
  width: 80%;
}

.amenities-carousel-image-container {
  position: relative;
  height: 650px;
  overflow: hidden;
}

.amenities-carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.amenities-carousel-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding: 0 2rem;
  width: 78%;
}

.amenities-carousel-content {
  flex: 1;
}

.amenities-carousel-title {
  font-size: 23px;
  font-weight: 500;
  color: #1e1e1e;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}

.amenities-carousel-description {
  color: #6b7280;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.5;
  font-style: "Inter", sans-serif;
}

.amenities-carousel-nav {
  display: flex;
  gap: 1rem;
  margin-left: 0rem;
}

.amenities-nav-button {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  /* border-radius: 4px; */
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.25rem;
  color: #374151;

  filter: invert(1) brightness(0);
}

.amenities-nav-button:first-child {
  transform: rotate(180deg);
}

.amenities-nav-button:hover {
  /* background-color: white !important; */
  border: none;
  /* border-color: #9ca3af; */
}

.amenities-nav-button:focus {
  outline: none;
  box-shadow: 0 0 0 2px #3b82f6;
  background: transparent;
}

/* Mobile styles */
@media (max-width: 768px) {
  .amenities-carousel-item {
    width: 100%;
    padding: 0 2rem 0 0;
  }

  .amenities-carousel-image-container {
    height: 350px;
  }

  /* .amenities-carousel-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding: 0 2rem;
  width: 78%;
} */

  .amenities-carousel-controls {
    flex-direction: column;
    /* gap: 1.5rem; */
    align-items: center;
    padding: 0;
    width: 78%;
  }

  .amenities-carousel-content {
    text-align: left;
  }

  .amenities-carousel-nav {
    margin-left: 0;
    margin-right: 11rem;
  }

  .amenities-carousel-title {
    font-size: 21px;
  }

  .amenities-carousel-description {
    font-size: 0.875rem;
    padding-right: 32px;
  }
}

@media (min-width: 768px) {
  .amenities-carousel-image-container {
    height: 650px;
  }
  /*
  .mural-image-responsive {
    width: 80% !important;
    right: 0 !important;
  } */
}
/* flolating icons  */

@media (min-width: 768px) {
  #beyond-bottom-bar {
    display: none;
  }
}
/* ===== Desktop Floating Panel ===== */
#beyond-floating-icons {
  position: fixed;
  bottom: 15%;
  right: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
}

#beyond-floating-icons a {
  background: #fff;
  color: #4a4a4a;
  padding: 11px 4px;
  border: 1px solid #eee;
  text-decoration: none;
  font-family: sans-serif;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

#beyond-floating-icons a:hover {
  background-color: #f4f0eb;
}

#beyond-floating-icons i {
  font-size: 16px;
}

/* ===== Mobile Bottom Bar ===== */
@media screen and (max-width: 768px) {
  #beyond-floating-icons {
    display: none;
  }

  #beyond-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    display: flex;
    justify-content: space-around;
    background: #ede8e3;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    padding: 6px 0;
  }

  #beyond-bottom-bar a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-family: sans-serif;
    font-size: 16px;
    color: #4a4a4a;
    text-decoration: none;
  }

  #beyond-bottom-bar i {
    font-size: 16px;
    margin-bottom: 2px;
  }
}
