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

* {
  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;
}

.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;
}

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

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

@media (max-width: 576px) {
  .hero-section {
    background-position: -470px center;
    height: 90vh;
  }
  img.hero-title {
    width: 100%;
    max-width: 255px;
    margin-top: 29rem !important;
    padding: 0 5rem;
    background-color: rgba(255, 255, 255, 0.1);
    background: transparent;
  }
}
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
  pointer-events: none;
}
.hero-section > * {
  position: relative;
  z-index: 2;
}

.navbar {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.6rem 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: white;
  padding: 0.5rem 1.3rem;
  border-radius: 0px;
  font-weight: lighter;
  transition: all 0.3s ease;
  background: transparent;
}

.btn-inquire:hover {
  background: white;
  color: #2c5282;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.language-toggle-link-tag {
  text-decoration: none;
  color: inherit;
}

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

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

img.hero-title {
  width: 100%;
  max-width: 278px;
  /* margin-bottom: 2rem; */
  margin-top: 27rem;
  animation: fadeInUp 1.5s ease-out;
  -webkit-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.8rem;
  font-weight: 300;
  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%;
  }
}

.development-showcase {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: slideInRight 1.5s ease-out;
}

.showcase-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(45deg, #64a0c8, #327cb4);
  border-radius: 15px;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
}

.showcase-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 200"><rect width="400" height="200" fill="%2364a0c8"/><g opacity="0.6"><rect x="320" y="50" width="60" height="120" rx="5" fill="%23ffffff"/><rect x="340" y="30" width="40" height="140" rx="5" fill="%23ffffff"/><circle cx="100" cy="150" r="30" fill="%2396b4c8"/><path d="M0,180 Q200,160 400,180 L400,200 L0,200 Z" fill="%23327cb4"/></g></svg>');
  background-size: cover;
}

.showcase-text {
  color: white;
  font-size: 0.9rem;
  font-weight: 400;
  opacity: 0.9;
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.floating-dot:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-dot:nth-child(2) {
  top: 60%;
  left: 20%;
  animation-delay: 2s;
}

.floating-dot:nth-child(3) {
  top: 30%;
  right: 15%;
  animation-delay: 4s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px) translateY(-50%);
  }
  to {
    opacity: 1;
    transform: translateX(0) translateY(-50%);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

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

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

@media (max-width: 768px) {
  .development-showcase {
    position: static;
    transform: none;
    width: 90%;
    margin: 2rem auto;
  }

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

  .mural-hero-section {
    /* background-color: #f8f9fa; */
    padding: 50px 49px !important;
    /* line-height: 10px; */
    text-align: center;
  }

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

  .scroll-line {
    width: 1px;
    height: 40px;
  }

  .scroll-text {
    font-size: 9px;
    font-weight: 300;
    margin-bottom: 7px;
    letter-spacing: 1px;
  }
}

@media (max-width: 576px) {
  .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%);
}

.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: 16px;
  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;
}

.codeOption {
}

/* Remove border when country code select is focused */
.country-code:focus,
.country-code:active,
.country-code:focus-within {
  border-bottom: none;
  box-shadow: none;
}

.country_code {
  width: 100% !important;
  background: none !important;
  border: none !important;
}

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

.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;
  transition: background-color 0.3s ease;
  margin-top: 1rem;
  text-decoration: none;
  -webkit-transition: background-color 0.3s ease;
  -moz-transition: background-color 0.3s ease;
  -ms-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
}

/* Elevation hover effect for Explore button */
.submit-btn {
  transition: background-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.submit-btn:hover {
  background-color: #555;
  box-shadow: 0 6px 24px rgba(44, 62, 80, 0.18),
    0 1.5px 4px rgba(44, 62, 80, 0.1);
  transform: translateY(-2px);
}

.submit-btn:hover {
  background-color: #555;
}

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

  .contact-title {
    font-size: 27px;
  }

  .row > div {
    /* margin-bottom: 2rem; */
  }
}

@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: 15px;
    border-bottom: 1px solid #141414;
    padding-bottom: 10px;
    width: 100%;
  }
}

/* -------------------- story start ---------------------- */

.our-story-section {
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 50px 0px;
  text-align: center;
  background-color: rgba(248, 243, 235);
}

.story-header {
  margin-bottom: 30px;
}

.story-subtitle {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #888;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.story-title {
  font-size: 30px;
  font-weight: 100;
  line-height: 1.2;
  /* color: #333; */
  margin: 0;
  /* font-family: "Georgia", serif; */
}

.story-image {
  margin: 50px 0;
  /* border-radius: 12px; */
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.story-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.story-image:hover img {
  transform: scale(1.02);
}

.story-footer {
  max-width: 800px;
  margin: 0 auto;
  /* padding-top: 40px; */
}

.story-footer p {
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin: 0;
  font-weight: 400;
  /* text-align: left; */
}

/* Responsive Design */
@media (max-width: 768px) {
  .our-story-section {
    padding: 60px 15px;
  }

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

  .story-header {
    margin-bottom: 40px;
  }

  .story-image {
    margin: 40px 0;
  }

  .story-footer p {
    font-size: 16px;
    line-height: 1.7;
  }
}

@media (max-width: 480px) {
  .our-story-section {
    padding: 40px 10px;
  }

  .story-title {
    font-size: 28px;
    padding: 0 31px;
  }

  .story-subtitle {
    font-size: 12px;
    letter-spacing: 1.5px;
  }

  .story-footer p {
    font-size: 15px;
    padding: 0 26px;
  }
}

/* -------------------- portfolio start ---------------------- */

/* -------------------- portfolio start ---------------------- */
.portfolio-section {
  padding: 60px 80px;
  margin: 0 auto;
}

.portfolio-section-title {
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #666;
  margin-bottom: 45px;
  text-transform: uppercase;
  text-align: center;
}

.portfolio-item {
  margin-bottom: 10px;
  background: white;
  text-decoration: none;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.portfolio-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.portfolio-image {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-image img {
  transform: scale(1.05);
}

.portfolio-content {
  padding: 40px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.portfolio-title {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #2c2c2c;
  letter-spacing: 1px;
}

.portfolio-subtitle {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.portfolio-description {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  text-align: justify;
  flex-grow: 1;
  margin: 0;
}

.submit-btn {
  background: #2c2c2c;
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-top: 20px;
}

.submit-btn:hover {
  background: #555;
  transform: translateY(-2px);
}

/* Swiper customizations */
.swiper {
  padding-bottom: 50px;
}

.swiper-slide {
  height: auto;
  display: flex;
}

.swiper-pagination {
  position: relative;
  width: 100%;
  height: 4px;
  background: #eee;
  border-radius: 2px;
  margin: 30px 0 0 0;
  overflow: hidden;
  /* Hide default bullets */
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.swiper-pagination-bullet {
  display: none !important;
}

/* Progress bar style */
.swiper-pagination-progressbar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #2c2c2c;
  border-radius: 2px;
  transition: width 0.3s;
  z-index: 2;
  width: 0;
  pointer-events: none;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #ccc;
  opacity: 1;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: #2c2c2c;
  transform: scale(1.2);
}

/* .swiper-button-next,
.swiper-button-prev {
  top: 95% !important;
  color: #2c2c2c;

  width: 50px;
  height: 50px;

  transition: all 0.3s ease;
} */

/* .swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px;
  font-weight: 600;
} */

/* Responsive adjustments */
@media (max-width: 768px) {
  .portfolio-section {
    padding: 40px 20px;
  }

  .portfolio-content {
    padding: 30px;
  }

  .portfolio-title {
    font-size: 20px;
  }

  .portfolio-image {
    height: 250px;
  }

  .portfolio-section-title {
    margin-bottom: 30px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}

@media (max-width: 576px) {
  .portfolio-content {
    padding: 25px;
  }

  .portfolio-image {
    height: 200px;
  }

  .portfolio-section {
    padding: 40px 15px;
  }
}

/* .portfolio-section {
  padding: 80px 80px;

  margin: 0 auto;
}

.section-title {
  text-align: left;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #666;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.portfolio-item {
  margin-bottom: 10px;
  background: white;
  text-decoration: none;

  overflow: hidden;

  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;

} */

/* .portfolio-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.portfolio-image {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-image img {
  transform: scale(1.05);
}

.portfolio-content {
  padding: 40px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.portfolio-title {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #2c2c2c;
  letter-spacing: 1px;
} */

/* .portfolio-subtitle {
  font-size: 16px;
  font-weight: 600;

  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.portfolio-description {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  text-align: justify;
  flex-grow: 1;
  margin: 0;
} */

/* Responsive adjustments */
/* @media (max-width: 768px) {
  .portfolio-section {
    padding: 40px 0;
  }

  .portfolio-content {
    padding: 30px;
  }

  .portfolio-title {
    font-size: 20px;
  }

  .portfolio-image {
    height: 250px;
  }

  .section-title {
    margin-bottom: 20px;
  }

  .portfolio-item {
    margin-bottom: 40px;
  }
}

@media (max-width: 576px) {
  .portfolio-content {
    padding: 25px;
  }

  .portfolio-image {
    height: 200px;
  }
} */

/* ---------------------- hero 4 */

.luxury-tower-hero {
  position: relative;
  height: 120vh;
  background-image: url("../images//image_16.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.luxury-tower-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2));
}

.luxury-tower-text-primary {
  position: absolute;
  top: 8%;
  left: 28%;
  color: white;
  /* font-family: "Arial", sans-serif; */
  /* font-weight: 70; */
  font-size: 1.7rem;
  line-height: 1.3;
  max-width: 500px;
  /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); */
}

.luxury-tower-text-secondary {
  position: absolute;
  bottom: 15%;
  right: 8%;
  color: white;
  /* font-family: "Arial", sans-serif; */
  font-weight: 100;
  font-size: 1.7rem;
  line-height: 1.3;
  max-width: 450px;
  text-align: right;
  /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); */
}

@media (max-width: 768px) {
  .luxury-tower-text-primary {
    font-size: 1.4rem;
    left: 5%;
    right: 5%;
    max-width: none;
    width: 90%;
  }

  .luxury-tower-hero {
    position: relative;
    height: 100vh;
    background-image: url("../images/image-16-mob.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .luxury-tower-text-secondary {
    font-size: 1.2rem;
    right: 5%;
    left: 5%;
    max-width: none;
    width: 90%;
    text-align: right;
    bottom: 10%;
  }
}

@media (max-width: 576px) {
  .luxury-tower-text-primary {
    font-size: 1.1rem;
    top: 5%;
  }

  .luxury-tower-text-secondary {
    font-size: 1rem;
    bottom: 8%;
  }
}

/* ---------------------- hero 5 */

.main-hero-container {
  min-height: 70vh;
  background-color: rgba(248, 242, 235);
  position: relative;
  padding: 80px 0;
}

.left-image-section {
  position: relative;
  height: 70vh;
  overflow: hidden;
}

.woman-curtain-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.right-content-area {
  background-color: rgba(248, 242, 235);
  display: flex;
  /* align-items: center;
  justify-content: center; */
  min-height: 85vh;
  position: relative;
}

.text-content-block {
  max-width: 400px;
  padding: 0 70px;
  margin-top: 9rem;
}

.main-headline-text {
  font-size: 20px;
  font-weight: 400;
  color: #333;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.description-paragraph {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  font-weight: 300;
  margin: 0;
}

.stairs-image-container {
  position: absolute;
  right: 0;
  top: 20%;
  width: 200px;
  height: 300px;
}

.stairs-accent-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bottom-navigation-area {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.page-dots-container {
  display: flex;
  gap: 8px;
}

.dot-active,
.dot-inactive {
  width: 30px;
  height: 3px;
  border-radius: 2px;
}

.dot-active {
  background-color: #333;
}

.dot-inactive {
  background-color: #ccc;
}

.arrow-buttons-row {
  display: flex;
  gap: 15px;
}

.nav-arrow-btn {
  width: 50px;
  height: 50px;
  border: 1px solid #999;
  background-color: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #999;
}

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

/* Placeholder for actual images */
.image-placeholder-woman {
  background: linear-gradient(135deg, #e8dcc6, #d4c4a8);
  position: relative;
}

.image-placeholder-woman::after {
  content: "";
  position: absolute;
  top: 20%;
  left: 15%;
  width: 200px;
  height: 300px;
  background: rgba(139, 111, 71, 0.7);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}

.image-placeholder-stairs {
  background: linear-gradient(45deg, #e8dcc6, #d4c4a8);
  position: relative;
}

.image-placeholder-stairs::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 20px;
  width: 80%;
  height: 80%;
  background: repeating-linear-gradient(
    45deg,
    #c4b296,
    #c4b296 15px,
    #d4c4a8 15px,
    #d4c4a8 30px
  );
}

@media (max-width: 768px) {
  .left-image-section {
    height: 50vh;
  }

  .right-content-area {
    min-height: 50vh;
    padding: 40px 0;
  }

  .main-headline-text {
    font-size: 2rem;
  }

  .stairs-image-container {
    display: none;
  }
}

@media (max-width: 576px) {
  .main-headline-text {
    font-size: 1.5rem;
  }

  .text-content-block {
    padding: 0 15px;
  }
}

.masterplan {
  text-align: center;
  padding: 100px 40px;
  background-color: #ede8e3; /* Optional: light background */
  border-radius: 10px; /* Optional: rounded corners */
  font-size: 24px;
  color: #333;
  font-weight: lighter;
  letter-spacing: 1px;
}

.waterfront-masterplan-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  /* background: linear-gradient(135deg, var(--luxury-beige) 0%, #f8f5f0 100%); */
  background-color: #f8f3ea;
}

.luxury-content-wrapper {
  width: 100%;
  padding: 40px 0;
}

.masterplan-hero-section {
  display: flex;
  align-items: center;
  min-height: 80vh;
  gap: 60px;
}

.premium-text-column {
  flex: 0.6;
  padding-right: 40px;
}

.elite-brand-header {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sophisticated-gray);
  margin-bottom: 20px;
  position: relative;
}

.elite-brand-header::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--accent-gold);
}

.masterplan-headline {
  font-size: 2rem;
  font-weight: 300;
  color: var(--elegant-charcoal);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -1px;
}

.luxury-features-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.premium-feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  padding-left: 0;
}

.feature-bullet-point {
  width: 8px;
  height: 8px;
  background-color: black;
  border-radius: 50%;
  margin-top: 8px;
  margin-right: 20px;
  flex-shrink: 0;
}

.feature-description-text {
  font-size: 0.9rem;
  color: var(--sophisticated-gray);
  line-height: 1.6;
  font-weight: 400;
}

.waterfront-image-column {
  flex: 1.2;
  position: relative;
}

.luxury-property-showcase {
  width: 800px;
  height: 500px;
  /* border-radius: 15px; */
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  position: relative;
}

.waterfront-hero-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s ease;
}

.luxury-property-showcase:hover .waterfront-hero-image {
  transform: scale(1.05);
}

.image-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(212, 175, 55, 0.05) 50%,
    rgba(0, 0, 0, 0.1) 100%
  );
}

/* Responsive Design */
@media (max-width: 1200px) {
  .masterplan-hero-section {
    gap: 40px;
  }

  .waterfront-masterplan-container {
    min-height: auto;
    padding-top: 20px;
  }

  .masterplan-headline {
    font-size: 2.5rem;
  }
}

@media (max-width: 992px) {
  .masterplan-hero-section {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .premium-text-column {
    padding-right: 0;
    order: 2;
  }

  .waterfront-image-column {
    order: 1;
    width: 100%;
  }

  .masterplan-headline {
    font-size: 2.5rem;
  }

  .luxury-property-showcase {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .luxury-content-wrapper {
    padding: 20px 0;
  }

  .masterplan {
    text-align: center;
    padding: 60px;
    background-color: #ede8e3;
    border-radius: 10px;
    font-size: 28px;
    color: #333;
    font-weight: lighter;
    letter-spacing: 1px;
  }

  .masterplan-hero-section {
    min-height: auto;
    gap: 30px;
  }

  .masterplan-headline {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .feature-description-text {
    font-size: 1rem;
  }

  .luxury-property-showcase {
    height: 300px;
    border-radius: 10px;
  }

  .premium-feature-item {
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .premium-text-column {
    padding: 0 10px;
  }

  .masterplan-headline {
    font-size: 1.8rem;
  }

  .elite-brand-header {
    font-size: 0.8rem;
    letter-spacing: 2px;
  }

  .luxury-property-showcase {
    height: 250px;
  }
}

/* Animation Effects */
.waterfront-masterplan-container {
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.premium-feature-item {
  animation: slideInLeft 0.8s ease-out;
  animation-fill-mode: both;
}

.premium-feature-item:nth-child(1) {
  animation-delay: 0.1s;
}
.premium-feature-item:nth-child(2) {
  animation-delay: 0.2s;
}
.premium-feature-item:nth-child(3) {
  animation-delay: 0.3s;
}
.premium-feature-item:nth-child(4) {
  animation-delay: 0.4s;
}
.premium-feature-item:nth-child(5) {
  animation-delay: 0.5s;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.luxury-property-showcase {
  animation: slideInRight 1s ease-out 0.3s;
  animation-fill-mode: both;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* wallpaper  */
.hero-wallpaper {
  background-color: #f8f3ea;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* min-height: 100vh; */
  text-align: center;
}

.hero-wallpaper-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 80px;
}

.hero-wallpaper-title {
  text-align: center;
  color: #686868;
  letter-spacing: 2px;
  font-weight: 500;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
}

.hero-wallpaper-subtitle {
  text-align: center;
  font-size: 30px;
  font-weight: lighter;
}

.hero-wallpaper-text-space {
  max-width: 750px;
  padding-bottom: 80px;
  font-weight: 400;
  color: #686868;
}

.hero-wallpaper-image-box {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.hero-wallpaper-text-box {
  width: 500px;
  font-size: 29px;
  position: absolute;
  font-weight: 400;
  /* color: white; */
  margin-bottom: 271px;
  text-transform: uppercase;
}

.hero-wallpaper-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* new launch  */

.mural-hero-section {
  /* background-color: #f8f9fa; */
  padding: 80px 0;
  text-align: center;
}

.mural-launch-text {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #686868;
  margin-bottom: 10px;
}

.mural-main-title {
  font-size: 20px;
  font-weight: normal;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 10px;
}
.mural-main-title img {
  /* width: 40% !important; */
}

.mural-description {
  font-size: 26px;
  color: #666;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 200;
}

.mural-showcase-section {
  background: url("../images/Image.png") center center/cover no-repeat;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mural-showcase-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(16px);
  background: rgba(0, 0, 0, 0.18);
  z-index: 1;
  pointer-events: none;
}

.mural-showcase-section > * {
  position: relative;
  z-index: 2;
}

.showcase-description {
  font-weight: 100;
}

.mural-carousel-container {
  position: relative;
  width: 85%;
  height: 85vh;
  transform: scale(1.07);

  -webkit-transform: scale(1.07);
  -moz-transform: scale(1.07);
  -ms-transform: scale(1.07);
  -o-transform: scale(1.07);
}

.mural-building-image {
  width: 100%;
  height: 100%;

  background-size: cover;
  background-position: center;
}

.mural-brand-overlay {
  width: 100%;
  padding: 50px;
  position: absolute;
  bottom: -15px;
  /* left: 40px; */
  color: white;
  z-index: 3;
}

.mural-brand-name {
  padding-right: 40px;
  /* font-size: 32px; */
  /* font-weight: normal; */

  /* letter-spacing: 3px;
  margin-bottom: 15px; */
}

.mural-tagline {
  font-size: 20px;
  font-weight: lighter;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.mural-description-text {
  font-size: 16px;
  color: #fff;
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 0 !important;
}

/* .mural-bottom-nav {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
} */

.mural-dots {
  display: flex;
  /* gap: 15px; */
}

.mural-dot {
  width: 80px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
}

.mural-dot.active {
  /* background-color: #d4af37; */
  background-color: #fff;
}

.mural-arrows {
  /* position: absolute;
  bottom: 34px;
  right: 103px; */
  display: flex;
  gap: 15px;
}

.mural-arrow {
  width: 40px;
  height: 40px;
  border: none;
  /* border: 1px solid rgba(255, 255, 255, 0.3); */
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

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

  .mural-main-title img {
    width: 40% !important;
  }

  .hero-wallpaper-subtitle {
    padding: 0 25px;
  }

  .hero-wallpaper-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 50px !important;
  }

  .hero-wallpaper-text-space {
    padding: 0 50px;
    margin-bottom: 30px;
  }

  .mural-brand-overlay {
    width: 100%;
    padding: 0px;
    position: absolute;
    top: 241px;
    /* left: 40px; */
    color: white;
    z-index: 3;
  }

  .mural-description {
    font-size: 27px;
    color: #666;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.2;
    font-weight: 200;
  }

  /*  */

  .mural-carousel-container {
    width: 100%;
    height: auto;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }

  /* .mural-brand-overlay {
    bottom: 60px;
    left: 20px;
  } */

  .mural-brand-name {
    font-size: 24px;
  }

  .mural-tagline {
    font-size: 16px;
  }

  .mural-arrows {
    bottom: 20px;
    right: 20px;
  }

  .mural-bottom-nav {
    bottom: 20px;
  }
}

/* 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 {
  line-height: 2;
}

.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;
}

/* Demo button styling */
/* .demo-btn {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1000;
  background-color: #333;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
} */

/* news / media  */

/* .news-container {
  padding: 60px 0;
  text-align: center;
} */

.news-sidebar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: auto;
  align-items: baseline;
}

.news-header {
  color: #6c757d;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.news-title {
  color: #545454;
  font-size: 27px;
  font-weight: 300;
  line-height: 1.4;
  margin-bottom: 10px;
  max-width: 273px;
}

.explore-btn {
  background-color: #6c757d;
  border: none;
  color: white;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
}

.explore-btn:hover {
  background-color: #5a6268;
  color: white;
}

.news-card {
  position: relative;
  height: 400px;
  /* margin-bottom: 30px; */
  overflow: hidden;
}

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

.news-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  padding: 40px 22px 30px;
  color: white;
  margin-top: 87px;
  && a {
    text-decoration: none;
    color: #fff;
  }
}

.news-card-title {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.news-date {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  /* margin-bottom: 15px; */
}

.view-icon {
  position: absolute;
  bottom: 10px;
  right: 14px;
  width: 24px;
  height: 24px;
  /* background: rgba(255, 255, 255, 0.3); */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.view-icon::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url("../icons/View_light.svg") center center/contain no-repeat;
  vertical-align: middle;
}

.disabled_swiper_button {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next:after {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev:after {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.carousel-controls {
  /* display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px; */
}

.carsousel-indicator {
  display: flex;
}

.carousel-line {
  width: 60px;
  height: 2px;
  background-color: #dee2e6;
}

.carousel-line.active {
  background-color: #6c757d;
}

.carousel-arrow {
  background: none;
  /* border: 2px solid #6c757d; */
  color: #6c757d;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.carousel-arrow:hover {
  background-color: #6c757d;
  color: white;
}

.offcanvas-title {
  letter-spacing: 2px;
}

/* Custom */
.mr-0-i {
  margin-right: 0 !important;
}
.rotate-180 {
  transform: rotate(180deg);
}
button.mural-explore-button {
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 100;
}
.border-lighter {
  border-color: #ffffff79 !important;
  border-width: 0.5px;
}

/* carousal  */

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

.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: 45%;
}

.amenities-carousel-image-container {
  position: relative;
  height: 450px;
  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;
}

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

.amenities-carousel-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.amenities-carousel-description {
  color: #6b7280;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.5;
}

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

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

.amenities-nav-button:hover {
  background-color: #f3f4f6;
  border-color: #9ca3af;
}

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

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

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

  .amenities-carousel-controls {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }

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

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

  .amenities-carousel-title {
    font-size: 1.125rem;
  }

  .amenities-carousel-description {
    font-size: 0.875rem;
  }

  .news-title {
    color: #545454;
    font-size: 30px;
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 10px;
    max-width: auto;
  }

  .news-sidebar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: auto;
    align-items: center;
    text-align: center;
  }
}

@media (min-width: 768px) {
  .amenities-carousel-image-container {
    height: 550px;
  }
}

/* career start  */

.page-container {
  min-height: 100vh;
  background-color: #f5f5f5;
  font-family: "Arial", sans-serif;
  position: relative;
}

.contact-sidebar {
  position: fixed;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 100;
}

.contact-btn {
  background-color: rgb(44, 44, 44);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 120px;
}

.contact-btn:hover {
  background-color: #555;
}

.contact-btn::before {
  content: "";
  width: 16px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
}

.enquire-btn::before {
  content: "✉";
  font-size: 14px;
}

.call-btn::before {
  content: "📞";
  font-size: 14px;
}

.whatsapp-btn::before {
  content: "💬";
  font-size: 14px;
}

.main-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 40px;
  text-align: center;
}

.primary-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 40px;
  line-height: 1.2;
}

.content-paragraph {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  text-align: justify;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .contact-sidebar {
    position: fixed;
    bottom: 20px;
    right: 20px;
    top: auto;
    transform: none;
    flex-direction: row;
    gap: 10px;
  }

  .contact-btn {
    padding: 10px 15px;
    font-size: 12px;
    min-width: auto;
  }

  .main-content {
    padding: 60px 20px;
  }

  .primary-heading {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .content-paragraph {
    font-size: 1rem;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .primary-heading {
    font-size: 1.5rem;
    letter-spacing: 0.5px;
  }

  .contact-btn {
    padding: 8px 12px;
    font-size: 11px;
  }
}

/* Careers page main container */
.careers-main {
  /* Main container for careers page */
}

/* Careers hero section */
.careers-hero-section {
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 64px;
}

@media (min-width: 768px) {
  .careers-hero-section {
    padding-left: 48px;
    padding-right: 48px;
    padding-top: 96px;
  }
}

/* Careers hero container */
.careers-hero-container {
  margin: 0 auto;
  width: 100%;
  padding-bottom: 96px;
  text-align: center;
}

@media (min-width: 768px) {
  .careers-hero-container {
    padding-bottom: 144px;
  }
}

/* Careers main heading */
.careers-main-heading {
  color: #4a5568; /* richgrey equivalent */
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  margin-top: 64px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .careers-main-heading {
    font-size: 48px;
    margin-top: 96px;
  }
}

/* Careers animated text spans */
.careers-animated-word {
  display: inline-block;
  filter: blur(0px);
  transform: translateX(0px);
  opacity: 1;
  will-change: auto;
}

/* Careers content container */
.careers-content-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 64px;
}

@media (min-width: 768px) {
  .careers-content-container {
    padding-bottom: 96px;
  }
}

/* Careers content wrapper */
.careers-content-wrapper {
  width: auto;
}

@media (min-width: 768px) {
  .careers-content-wrapper {
    width: 900px;
  }
}

/* Careers fade-in content */
.careers-fade-in {
  opacity: 1;
  transform: none;
  will-change: auto;
}

/* Careers description text */
.careers-description-text {
  color: rgba(0, 0, 0, 0.8); /* black80 equivalent */
  margin-top: 32px;
  font-weight: 300;
  font-size: 14px;
}

@media (min-width: 768px) {
  .careers-description-text {
    font-size: 16px;
  }
}

/* Careers image container */
.careers-image-container {
  width: 100%;
  height: 100%;
  opacity: 1;
  transform: translateY(0px);
  will-change: auto;
}

/* Careers hero image */
.careers-hero-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  color: transparent;
}

/* Careers opportunities section */
.careers-opportunities-section {
  padding-left: 24px;
  padding-right: 24px;
  padding-bottom: 96px;
}

@media (min-width: 768px) {
  .careers-opportunities-section {
    padding-left: 48px;
    padding-right: 48px;
    padding-bottom: 144px;
  }
}

/* Careers opportunities container */
.careers-opportunities-container {
  width: auto;
  margin: 0 auto;
}

/* Careers apply now text */
.careers-apply-now-text {
  font-weight: 300;
  font-size: 16px;
  text-align: center;
  padding-bottom: 24px;
}

@media (min-width: 768px) {
  .careers-apply-now-text {
    font-size: 18px;
  }
}

/* Careers section heading */
.careers-section-heading {
  color: #4a5568; /* richgrey equivalent */
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  text-align: center;
  padding-bottom: 64px;
}

@media (min-width: 768px) {
  .careers-section-heading {
    font-size: 48px;
    padding-bottom: 96px;
  }
}

/* Careers job card */
.careers-job-card {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  background-color: #f7f7f7; /* warmgrey equivalent */
  padding: 24px;
}

@media (min-width: 768px) {
  .careers-job-card {
    flex-direction: row;
    align-items: center;
  }
}

/* Careers job title container */
.careers-job-title-container {
  width: 100%;
  flex: 1;
}

@media (min-width: 768px) {
  .careers-job-title-container {
    width: auto;
  }
}

/* Careers job title */
.careers-job-title {
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-weight: 300;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .careers-job-title {
    font-size: 32px;
    margin-bottom: 0;
  }
}

/* Careers button container */
.careers-button-container {
  display: block;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  flex: 1;
}

@media (min-width: 768px) {
  .careers-button-container {
    display: flex;
    justify-content: flex-end;
  }
}

/* Careers apply button */
.careers-apply-button {
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 9999px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  color: #4a5568; /* richgrey equivalent */
  background-color: #e2e8f0; /* coolgrey equivalent */
  border: none;
  cursor: pointer;
  margin-top: 12px;
}

@media (min-width: 768px) {
  .careers-apply-button {
    margin-top: 0;
  }
}

/* Careers LinkedIn button */
.careers-linkedin-button {
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 9999px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  color: #4a5568; /* richgrey equivalent */
  background-color: #e2e8f0; /* coolgrey equivalent */
  border: none;
  cursor: pointer;
  margin-top: 24px;
  text-decoration: none;
}

@media (min-width: 768px) {
  .careers-linkedin-button {
    margin-top: 0;
    margin-left: 24px;
  }
}

/* Careers button text */
.careers-button-text {
  margin-right: 16px;
  display: block;
}

.careers-apply-button .careers-button-text {
  margin-right: 0;
  margin-left: 0;
}

/* Careers button hover effects */
.careers-apply-button:hover,
.careers-linkedin-button:hover {
  opacity: 0.8;
  transform: translateY(-1px);
}

/* Careers specific job positions */
.careers-job-procurement {
  /* Specific styles for procurement manager position */
}

.careers-job-sales {
  /* Specific styles for sales manager position */
}

.careers-job-contact-center {
  /* Specific styles for contact center executive position */
}

/* Careers utility classes */
.careers-text-center {
  text-align: center;
}

.careers-font-light {
  font-weight: 300;
}

.careers-font-normal {
  font-weight: 400;
}

.careers-uppercase {
  text-transform: uppercase;
}

.careers-antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.careers-object-cover {
  object-fit: cover;
}

.careers-rounded-md {
  border-radius: 8px;
}

.careers-rounded-full {
  border-radius: 9999px;
}

/* Careers page color variables */
:root {
  --careers-richgrey: #4a5568;
  --careers-warmgrey: #f7f7f7;
  --careers-coolgrey: #e2e8f0;
  --careers-black80: rgba(0, 0, 0, 0.8);
}

/* Careers page specific responsive utilities */
@media (min-width: 768px) {
  .careers-md-text-h2 {
    font-size: 48px;
  }

  .careers-md-text-h4 {
    font-size: 32px;
  }
}
/* career end  */

/* our portfolio  */

.our-portfolio-card .card-body {
  height: 216px;
}

.our-portfolio-card .card-footer {
  /* height: 631px; */
  border: none;
  background-color: transparent;
  margin-bottom: 20px;
}

.our-portfolio-description {
  font-size: small;
  color: #686868;
}

.our-portfolio-heading {
  text-transform: uppercase;
  letter-spacing: 1px;
}
.our-portfolio-sub-heading {
  font-size: 16px;
  margin-bottom: 11px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .our-portfolio-card .card-body {
    height: 100%;
  }
}

/* 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;
  }
}
