 @font-face {
    font-family: 'bw_vivantbw-vivant-black';
    src: url('../font/bw-vivant-bold.ttf') format('ttf'),
         url('../font/bw-vivant-bold.ttf') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'general_sansmedium';
    src: url('generalsans-medium.woff2') format('woff2'),
         url('generalsans-medium.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'general_sansregular';
    src: url('../font/generalsans-regular.woff2') format('woff2'),
         url('../font/generalsans-regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
   @font-face {
    font-family: 'Bw Vivant Thin';
    font-style: normal;
    font-weight: normal;
    src: local('Bw Vivant Thin'), url('../font/bw-vivant-bold.woff') format('woff');
    }
.inter {
  font-family: "Inter";
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
html {
    box-sizing: border-box;
    font-size: 62.5%;
    height: 100%;
}
.bg-overlay {
  position: absolute;
  inset: 0;
  background: #0000000f;  /* Light black overlay */
  z-index: 1;
}
.overlay_content {
  z-index: 2 !important;
  position: relative;
}
.heading {
    font-family: 'bw_vivantbw-vivant-black';
}
.sansregular {
  font-family: 'general_sansregular';
}
.sansregular-medium  {
   font-family: 'general_sansmedium';
}
.center {
  text-align: center;
}
/*#menu-icon {
    padding: 0 0.9rem;
}*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'general_sansregular';
}

/* PAGE LOADER WRAPPER */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: white;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity 0.65s ease-in-out;
}

/* Logo animation */
.loader-logo {
  width: 180px;
  transform: scale(0);
  opacity: 0;
  animation: logoZoom 1.4s ease forwards;
}

@keyframes logoZoom {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/* Default hidden state for all sections */
.fade-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

/* When visible */
.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* FADE OUT LOADER */
.page-loader.fade-out-animation {
  opacity: 0;
  pointer-events: none;
}

/* HERO CONTENT ANIMATION */
.hero-content {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.hero-content.show {
  opacity: 1;
  transform: translateY(0);
}


 /* Hide the form initially */
.h_contact-form-wrapper {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
/* Show when active */
.h_contact-form-wrapper.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}
/* Popup animation */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
/* Inner form box */
.h_contact-form-wrapper form {
  background: #fff;
  padding: 40px;
  width: 420px;
  max-width: 90%;
  position: relative;
}

/* Input styles */
.h_contact-form-wrapper input,
.h_contact-form-wrapper textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
  margin-bottom: 15px;
  font-size: 15px;
  outline: none;
  background: transparent;
}
.h_contact-form-wrapper input:focus,
.h_contact-form-wrapper textarea:focus {
  border-color: #7da57d;
}
/* Submit button */
.h_contact-form-wrapper button {
  background: #8ab58a;
  border: none;
  color: #fff;
  padding: 12px;
  font-size: 16px;
  border-radius: 3px;
  cursor: pointer;
  width: 100%;
  margin-top: 27px;
}
.h_contact-form-wrapper button:hover {
  background: #7da57d;
}
.homepage .h_contact-form-wrapper, .index_page .h_contact-form-wrapper {
    max-width: 100%;
}
.h_contact-form-wrapper input::placeholder,
.h_contact-form-wrapper textarea::placeholder {
  color: #000000;
  opacity: 0.5; /* Ensures full color visibility in all browsers */
}
.h_contact-form-wrapper label {
    color: #101010;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
}
.hero {
  position: relative;
  height: 100vh;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  background: #00000029;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    padding: 1.6rem;
    z-index: 9;
    transition: all 0.25s;
}
.header_sticky {
  background: #ffffff;
  transition: all 0.25s;
}
.logo_header a {
  display: block;
}
.logo_header img {
    width: 136px;
    height: auto;
}
.menu-icon svg {
  width: 30px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
.menu-icon span {
  height: 3px;
  background: #95B995;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hero-content {
  margin-top: auto;
  padding: 0 2.8rem; 
  margin-bottom: 52px;
}
.hero-content h1 {
    font-family: 'bw_vivantbw-vivant-black';
    font-size: 7.2rem;
    line-height: 84px;
    margin-bottom: 3.2rem;
    color: #ffffff;
}
.hero-content p {
  font-size: 2.2rem;
  margin-bottom: 2.4rem;
  line-height: 32px;
}
.btn {
  color: #ffffff;
  text-decoration: none;
  font-size: 24px;
  line-height: 32px;
  border-bottom: 1px solid #ffffff;
  display: inline-flex;
  gap: 4px;
}
.Main_hero_btn span {
  padding-left: 4px;
}
/* Overlay Menu */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #a5bc9c;
  color: #fff;
  transform: translateY(-100%);
  transition: transform 0.6s ease;
  z-index: 1000;
}
.overlay.active {
  transform: translateY(0);
}
.overlay-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  position: relative;
}
.close-btn {
  position: absolute;
  top: 0;
  right: 50%;
  transform: translateX(50%);
  font-size: 4rem;
  cursor: pointer;
}
.overlay ul {
  list-style: none;
}
.overlay ul li {
  margin: 20px 0;
}
.overlay ul li a {
  text-decoration: none;
  color: white;
  font-size: 4.8rem;
  transition: opacity 0.3s;
}
.overlay ul li a:hover {
  opacity: 0.7;
}
/* Bottom Image Section */
.menu-image {
  position: absolute;
  bottom: 50px;
  right: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.menu-image img {
  width: 245px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}
.menu-image span {
    font-size: 1.8rem;
    color: #000000;
    background: #ffffff;
    width: 100%;
    padding: 1rem 1.2rem;
    border-radius: 0 0 8px 8px;
}
.scroll-btn {
  position: fixed;
  bottom: 55px;
  right: 30px;
  width: 48px;
  height: 48px;
  z-index: 8;
  border-radius: 2px;
  background: #FFFFFF3D;
  overflow: hidden;
  backdrop-filter: blur(4px);
  cursor: pointer;
  animation: bounce 2s infinite;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.chevron {
    position: absolute;
    width: 10px;
    height: 2px;
    left: 19px;
    bottom: 55px;
    opacity: 0;
    transform: scale3d(0.5, 0.5, 0.5);
    animation: move 3s ease-out infinite;
}
@keyframes move {
  0% { opacity: 0; transform: translateY(0px); }
  50% { opacity: 1; transform: translateY(10px); }
  100% { opacity: 0; transform: translateY(20px); }
}
.chevron:first-child {
  animation: move 3s ease-out 1s infinite;
}
.chevron:nth-child(2) {
  animation: move 3s ease-out 2s infinite;
}
.chevron:before,
.chevron:after {
  content: ' ';
  position: absolute;
  top: 0;
  height: 100%;
  width: 51%;
  background: #fff;
}
.chevron:before {
  left: 0;
  transform: skew(0deg, 30deg);
}
.chevron:after {
  right: 0;
  width: 50%;
  transform: skew(0deg, -30deg);
}
@keyframes move {
  25% {
    opacity: 1;
  }
  33% {
    opacity: 1;
    transform: translateY(30px);
  }
  67% {
    opacity: 1;
    transform: translateY(40px);
  }
  100% {
    opacity: 0;
    transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
  }
}
.sticky_button {
    position: fixed;
    right: 0;
    top: 40%;
    z-index: 8;
    right: 0;
    transform: rotate(-90deg);
    transform-origin: bottom right;
    z-index: 9;
}
.main_sticky_button span svg {
  transform: none;
}
.main_sticky_button {
    text-decoration: none;
    color: #000000 !important;
    background: #ffffff;
    padding: 0.6rem 1.5rem;
    font-size: 18px !important;
    line-height: 26px;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    text-decoration: none !important;
    font-weight: 500 !important;
    border: 0;
    cursor: pointer;
}
.section_hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.hero-image {
  width: 100%;
  object-fit: cover;
  display: block;
  height: 100vh;
}
.overlay-box {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  background: #ffffff26;
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 48px 48px 64px 48px;
  max-width: 595px;
  line-height: 1.6;
}
.overlay-box h1 {
  font-size: 6.4rem;
  font-weight: 700;
  margin-bottom: 4rem;
  line-height: 84px;
}
.overlay-box h1 span {
  display: block;
  color: #fff;
  font-weight: 700;
}
.overlay-box p {
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 32px;
}
.text_section {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80rem;
  background: #ffffff;
  opacity: 1;
  transition: opacity 0.8s ease;
}

.text_secion__inner {
  font-size: 5.2rem;
  color: #ADB091;
  line-height: 1;
  max-width: 370px;
  text-align: center;
  font-weight: 900;
  transform: scale(0.5);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
}
.text_section.visible .text_secion__inner  {
  opacity: 1;
}
/* fade-out state */
.text_section.fade-out {
  opacity: 0;
  pointer-events: none;
}
.video_slider {
  cursor: grab;
}
.video_slider:active {
  cursor: grabbing;
}

/* ==== Base styling for fade transitions ==== */

/*.video_slider {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.video_slider.visible {
  opacity: 1;
  transform: translateY(0);
}

.video_slider .right video,
.video_slider .slide-content {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease 0.3s, transform 1s ease 0.3s;
}

.video_slider.visible .right video.active,
.video_slider.visible .slide-content {
  opacity: 1;
  transform: translateY(0);
}*/
/* The whole video_slider section fades in */
.video_slider {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.46, 0.07, 0.64, 0.92), transform 1s cubic-bezier(0.28, 0.07, 0.88, 0.96);
}

.video_slider.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.35s;
}




.video_slider .right video {
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  inset: 0;
  width: 100%;
  object-fit: cover;
  z-index: 0;
}
.video_slider .right video.active {
  opacity: 1;
  z-index: 1;
}
/* Smooth text fade animation */
.slide-content {
  transition: opacity 0.36s ease, transform 0.36s ease;
}
.slide-content.fade-out {
  opacity: 0;
  transform: translateY(10px);
}
.slide-content.fade-in {
  opacity: 1;
  transform: translateY(0);
}
.video_slider {
    display: flex;
    width: 100%;
  }
  .video_slider > * {
    width: 50%;
}
  /* Left Side */
  .video_slider .left {
    background: #d2d0b7;
    color: #fff;
    position: relative;
    padding: 6rem 9.6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .video_slider .slide-content {
    max-width: 540px;
  }
  .video_slider .slide-content h2 {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 4rem;
    color: #fff;
    line-height: 52px;
    letter-spacing: 0;
  }
  .video_slider .slide-content p {
    color: #ffffff;
    line-height: 32px;
    font-size: 2.2rem;
    font-style: italic;
    font-weight: 400;
    overflow: hidden;
    letter-spacing: 0;
  }
  /* Progress Bar */
  .video_slider .progress {
    position: absolute;
    top: 50px;
    left: 96px;
    right: 96px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .video_slider .progress-number {
    width: 52px;
    height: 52px;
    border: 2px solid #fff;
    border-radius: 50%;
    text-align: center;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    line-height: 36px;
  }
 .video_slider .progress-number:last-child {
    font-size: 20px;
    width: 40px;
    height: 40px;
 }
  .video_slider .progress-bar {
    flex: 1;
    height: 3px;
    background: rgba(255, 255, 255, 0.4);
    margin: 0 15px;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
  }
  .video_slider .progress-fill {
    height: 100%;
    width: 0%;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    transition: width 0.6s ease;
  }
  /* Arrows */
  .video_slider .arrows {
    position: absolute;
    bottom: 60px;
    left: 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 96px;
  }
  .video_slider .arrow {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 20px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    border: 1px solid #FFFFFF66;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .video_slider .arrow:hover {
    background: rgba(255, 255, 255, 0.4);
  }
  /* Right Side Video */
  .video_slider .right {
    background: #000;
    position: relative;
  }
  .video_slider .right video {
    width: 100%;
    object-fit: cover;
    display: none;
    height: 100vh;
  }
 .video_slider .fade {
    opacity: 0;
    transition: opacity 0.6s ease;
  }
  .video_slider .active {
    opacity: 1;
    display: block !important;
  }
.raaya-homes-section {
      padding: 80px 9.6rem;
      position: relative;
      overflow: hidden;
      background: #ffffff;
    }
    .raaya-homes-section:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url(../images/raaya_home_backgroung_image.jpg);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }
    .raaya-homes-container {
      position: relative;
      z-index: 1;
    }
    .raaya-homes-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      margin-bottom: 2.4rem;
    }
    .raaya-homes-header h2 {
      font-size: 4.4rem;
      margin: 0;
      color: #000000;
      line-height: 56px;
    }
    .raaya_home_link {
      text-decoration: none;
      color: #000000;
      font-weight: 500;
      font-size: 20px;
      border-bottom: 1px solid #000000;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: 0.3s;
    }
    .raaya-homes-header a:hover {
      opacity: 0.7;
    }
    .raaya-homes-subtitle {
      font-size: 2.2rem;
      line-height: 32px;
      color: #000000b8;
    }
    .raaya-homes-cards {
      display: flex;
      gap: 20px;
      margin-top: 64px;
      overflow: hidden;
    }
    .raaya-card {
      background: #f9f9f9;
      border-radius: 8px;
      overflow: hidden;
      flex: 1;
      width: 25%;
      transition: transform 0.3s ease;
    }
    .raaya-card {
      display: block;
      text-decoration: none;
      color: inherit;
    }
    .raaya-card img {
      width: 100%;
      aspect-ratio: 1 / 0.9;
      object-fit: cover;
    }
    .raaya-card-content {
      padding: 17px 35px 17px 20px;
      background-color: #E4E4E4;
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: -5px;
    }
    .raaya-card-text h4 {
      margin: 0;
      font-size: 2.8rem;
      font-weight: 900;
      color: #6C583D;
      line-height: 36px;
    }
    .raaya-card-arrow svg path {
      fill: #6C583D;
    }
    .raaya-card-text p {
      margin: 5px 0 0;
      font-size: 2rem;
      color: #101010;
      line-height: 28px;
    }
    .raaya-card-arrow {
      font-size: 18px;
    }
    /* Scrollbar Hidden */
    .raaya-homes-cards::-webkit-scrollbar {
      display: none;
    }
    .raaya-section {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .raaya_content_container {
      max-width: 540px;
    }
    .Main_raaya_aesthetics {
      padding: 6.4rem 0;
      width: 100%;
      height: 100%;
      background-image: url(../images/raaya_home_aesthetics_image.jpg);
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
    }
    .raaya-section > * {
      width: 50%;
    }
    .raaya-content {
      padding: 8.4rem 9.6rem;
    }
    .raaya-content h2 {
      font-size: 4.4rem;
      font-weight: 700;
      margin-bottom: 2.4rem;
    }
    .raaya-content p {
      font-size: 2.2rem;
      margin-bottom: 2.4rem;
      line-height: 32px;
      color: #101010;
    }
    .raaya-tabs {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 1.6rem;
    }
    .raaya-noma.highlight {
  animation: glow 1.5s ease-out;
}

@keyframes glow {
  0% { opacity: 0.2; transform: scale(0.98); }
  100% { opacity: 1; transform: scale(1); }
}
     .raaya-tab-text {
      font-size: 22px;
      line-height: 32px;
    }
    .raaya-tabs button {
      border: 1px solid #101010;
      background: #fff;
      border-radius: 25px;
      padding: 8px 16px;
      font-size: 1.6rem;
      line-height: 22px;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .raaya-tabs button.active {
      background: #000;
      color: #fff;
    }
    .raaya-main-image img {
      width: 100%;
      aspect-ratio: 1 / 0.72;
      object-fit: cover;
    }
    .raaya-slider {
      display: flex;
      gap: 15px;
      overflow-x: auto;
      scroll-behavior: smooth;
      margin-top: 1.1rem;
    }
    .raaya-slider::-webkit-scrollbar {
      display: none;
    }
    .raaya-slider img {
      width: 455px;
      aspect-ratio: 1 / 0.7;
      object-fit: cover;
      cursor: pointer;
      flex-shrink: 0;
    }
    .raaya-images {
      position: relative;
    }
    .check-layout-btn {
      position: absolute;
      top: 12px;
      right: 12px;
      display: flex;
      align-items: center;
      gap: 4px;
      background: #fff;
      color: #101010;
      border-radius: 25px;
      padding: 9px 16px;
      font-size: 1.4rem;
      cursor: pointer;
      border: none;
      line-height: 20px;
      text-decoration: none;
      z-index: 6;
    }
    .intro_image_wrapper {
      position: relative;
    }
    .intro_bg_image {
      overflow: hidden;
    }
    .intro_bg_image video {
      width: 100%;
      height: 100vh;
      object-fit: cover;
    }
    .intro_text_inner {
      position: absolute;
      top: 64px;
      left: 48px;
      max-width: 55.3rem;
    }
    .intro_content_inner {
      position: absolute;
      bottom: 0;
      padding: 4rem 4.8rem;
      backdrop-filter: blur(8px);
    }
    .intro_text {
      font-size: 72px;
      line-height: 84px;
      color: #ffffff;
  }
  .intro_content_inner p {
    color: #ffffff;
    font-size: 2.2rem;
    line-height: 32px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    letter-spacing: 0;
  }
/* ==== MAIN SECTION ==== */
.contact-section-unique {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url(../images/6469bfbac63e6d7594d3b2f9b481da474d1acb75.jpg) center bottom / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
}
/* Optional dark overlay for readability */
.contact-section-unique::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
/* ==== CONTENT CONTAINER ==== */
.contact-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 0 7.2rem 0 9.6rem;
  color: #fff;
}
.contact-content > * , .faq-content > * {
  width: 50%;
}
/* ==== LEFT SIDE TEXT ==== */
.contact-text h2 {
  font-size: 3.6rem;
  font-weight: 900;
  margin-bottom: 2.4rem;
  line-height: 48px;
}
.contact-text p {
    font-size: 1.8rem;
    line-height: 26px;
}
/* ==== RIGHT FORM BOX ==== */
.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 64px 64px 48px;
  border-radius: 8px;
  max-width: 564px;
}
.contact-form-wrapper label {
  display: block;
  font-size: 14px;
  line-height: 20px;
  color: #ffffff;
  margin-bottom: 4px;
}
.contact-form-wrapper input,
.contact-form-wrapper textarea {
  width: 100%;
  padding: 10px 0;
  margin-bottom: 18px;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: #fff;
  font-size: 14px;
  outline: none;
}
.contact-form-wrapper textarea {
  resize: none;
  height: 80px;
}
.contact-form-wrapper input::placeholder,
.contact-form-wrapper textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.contact-form-wrapper button {
  width: 100%;
  background: #fff;
  color: #000;
  padding: 1.5rem 1.8rem;
  border: none;
  border-radius: 3px;
  font-size: 2rem;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s ease;
  line-height: 28px;
}
.contact-form-wrapper button:hover {
  background: #f1f1f1;
}
.contact-text {
  margin-bottom: 3.8rem;
}
/* ===== FAQ Section ===== */
.faq-section {
  position: relative;
  background: url(../images/615d0aff12f0d51dd9cf6bc41f80d80a0d133965.jpg) center center / cover no-repeat;
  color: #fff;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}
.faq-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 15, 0.1); /* soft overlay only on background */
  z-index: 1;
}
.faq-content {
  flex-wrap: wrap;
  position: absolute;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 7.2rem 0 9.6rem;
  color: #fff;
  height: 65%;
}
/* ===== Left Column ===== */
.faq-title {
  font-size: 3.6rem;
  font-weight: 900;
  margin-bottom: 2.4rem;
  line-height: 48px;
}
.faq-subtitle {
  color: #ffffff;
  line-height: 32px;
  font-size: 2.2rem;
  font-weight: 400;
}
.faq-left {
  max-width: 540px;
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-end;
}
.faq-right {
  max-width: 564px;
}
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding: 10px 0;
}
.faq-question {
  width: 100%;
    background: none;
    border: none;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 2rem;
    font-weight: 500;
    cursor: pointer;
    padding: 10px 0;
    transition: color 0.3s ease;
    text-align: left;
    line-height: 28px;
}
.faq-icon {
  font-size: 2.5rem;
  transition: transform 0.3s ease;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}
.faq-item.active .faq-answer {
  max-height: 200px;
  opacity: 1;
  margin-top: 8px;
  color: #eee;
  line-height: 1.6;
  font-size: 1.6rem;
}
footer.Main__footer_wrapper {
  background: #101010;
  color: #ffffff;
  padding: 6rem 9.6rem 21%;
  position: relative;
}
.topbar_footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 8rem;
}
.topbar_logo img {
    width: 344px;
    height: auto;
}
.footer-column h4 {
  font-size: 18px;
  line-height: 26px;
}
.footer-column ul li {
  list-style: none;
  margin-bottom: 16px;
}
.footer-column ul li a {
  text-decoration: none;
  font-size: 16px;
  color: #ffffff;
  line-height: 16px;
}
.footer-column h4 {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 20px;
}
.bottom_logo {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: calc(100% - 19.2rem);
  transform: translateX(-50%);
}
.bottom_link_flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
}
.bottom_footer__inner {
  padding-top: 3.2rem;
  border-top: .1rem solid #ffffff30;
  position: relative;
  z-index: 7;
}
.bottom_link_flex a {
  text-decoration: none;
  color: #ffffff;
  font-size: 1.6rem;
}
.bottom_footer__inner span {
  font-size: 1.6rem;
}
.scroll-btn.hidden {
  opacity: 0;
  visibility: hidden;
}
/* M-Responsive */
@media (max-width: 768px) {
  .header {
    width: 100%;
  }
  .main_sticky_button {
    padding: 0.8rem;
  }
  span svg {
    width: 20px;
    height: 20px;
  } 
  .mobile-hide {
    display: none !important;
  }
  .page_width {
    padding: 1.6rem;
  }
  .hero-image {
    aspect-ratio: 1 / 2.235;
  }
  .hero {
    padding: 1.6rem;
  }
  .hero-content {
    padding: 0;
    margin-bottom: 4.4rem;
  }
   .menu-icon svg {
    width: 18px;
    height: 12px;
  }
  .logo_header img {
      width: 106px;
  }
  .overlay-content {
    justify-content: space-between;
    padding-bottom: 3rem;
  }
  .overlay-content .close-btn {
    position: unset;
    transform: none;
  }
  .overlay ul li a {
    font-size: 2.8rem;
  }
  .hero-content h1 {
    margin-bottom: 0.8rem;
    line-height: 52px;
    font-size: 4rem;
    color: #ffffff;
    font-weight: 900;
  }
  .hero-content p {
    margin-bottom: 2.4rem;
    font-size: 16px;
    line-height: 24px;
  }
  .btn {
    font-size: 18px;
    line-height: 26px;
  }
  .scroll-btn {
    bottom: 25px;
    right: 16px;
    width: 40px;
    height: 40px;
  }
  .chevron {
    left: 15px;
    bottom: 50px;
  }
   .overlay-box h1 {
    font-size: 3.2rem;
    line-height: 44px;
    margin-bottom: 8px;
  }
  .overlay-box p {
    font-size: 1.6rem;
    line-height: 24px;
  }
  .menu-image {
    position: unset;
  }
  .menu-image img {
    width: 215px;
    height: 140px;
  }
  .overlay-box {
    bottom: 0;
    top: auto;
    left: 0;
    padding: 24px 16px 48px;
    transform: translateY(0);
    max-width: 100%;
  }
  .text_secion__inner {
    font-size: 4.8rem;
    line-height: 60px;
  }
  .text_section {
    padding: 33.2rem 1.6rem 34.8rem;
  }
  .video_slider .arrow {
    width: 48px;
    height: 48px;
  }
  .video_slider .arrow svg {
    width: 16px;
    height: 16px;
  }
  .video_slider .slide-content h2{
    font-size: 2.6rem;
    line-height: 36px;
    margin-bottom: 8px;
  }
  .video_slider .left {
    padding: 6rem 1.6rem;
    background: #000000;
    color: #ffffff;
    height: 400px;
  }
  .video_slider {
    flex-direction: column-reverse;
  }
  .video_slider > * {
    width: 100%;
  } 
  .video_slider .slide-content p {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0;
  }
  .video_slider .right video {
    height: 500px;
  }
  .video_slider {
    height: auto;
  }
  .video_slider .progress {
    top: 28px;
    left: 16px;
    right: 16px;
  }
  .video_slider .arrows {
    bottom: 48px;
    padding: 0 16px;
  }
  .raaya-homes-section {
    padding: 8.4rem 1.6rem 6.4rem;
  }
  .raaya-homes-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0.8rem;
  }
  .raaya-homes-header h2 {
    font-size: 3.2rem;
    line-height: 44px;
  }
  .raaya-homes-subtitle {
    font-size: 16px;
    line-height: 24px;
  }
  .raaya-homes-cards {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
    margin-top: 40px;
  }
  .raaya-card {
    flex: 0 0 80%;
    scroll-snap-align: start;
    min-width: 284px;
  }
  .raaya-card img {
      width: 100%;
      aspect-ratio: 1 / 0.846;
      object-fit: cover;
  }
  .raaya_home_link {
    margin: 2.4rem 0 6rem;
    font-size: 1.8rem;
    line-height: 26px;
  }
   .raaya-section {
    flex-direction: column;
  }
  .Main_raaya_aesthetics {
    padding: 4.4rem 1.6rem 6.6rem;
  }
  .raaya-tabs {
    margin-bottom: 1.6rem;
    gap: 8px;
  }
  .raaya-tab-text {
    font-size: 16px;
    line-height: 24px;
  }
  .raaya-content h2 {
    font-size: 3.2rem;
    line-height: 44px;
    margin-bottom: 0.8rem;
  }
  .raaya-content p {
    font-size: 1.6rem;
    line-height: 24px;
    letter-spacing: 0;
  }
  .raaya-content {
    text-align: left;
    width: 100%;
  }
  .raaya-images {
    width: 100%;
  }
  .raaya-content {
    padding: 0;
  }
  .raaya-slider img {
    width: 162px;
    aspect-ratio: 1 / 1;
    border-radius: 4px;
  }
  .raaya-main-image img, .raaya-main-image {
    aspect-ratio: 1 / 0.775;
    border-radius: 4px;
  }
  .raaya-tabs button {
    font-size: 1.2rem;
    padding: 8px 12px;
    line-height: 100%;
  }
  .check-layout-btn {
    padding: 6px 12px;
  }
  .raaya-slider {
    gap: 4px;
    margin-top: 4px;
  }
  .intro_content_inner p {
    font-size: 1.8rem;
    line-height: 26px;
    -webkit-line-clamp: 7;
  }
  .intro_text {
    font-size: 4.4rem;
    line-height: 52px;
  }
  .intro_text_inner{
    top: 48px;
    left: 16px;
    right: 16px;
    max-width: 100%;
  }
  .intro_content_inner {
    padding: 4rem 1.6rem 3.6rem;
  }
  .contact-content {
    flex-direction: column;
    padding: 6.4rem 1.6rem;
  }
  .contact-content > *, .faq-content > * {
    width: 100%;
  }
  .contact-text h2 {
    margin-bottom: 3.2rem;
  }
  .contact-form-wrapper {
    padding: 2.55rem 1.6rem;
  }
  .contact-form-wrapper button {
    padding: 1.2rem;
    font-size: 1.6rem;
    line-height: 24px;
  }
  .contact-text {
    margin-bottom: 6rem;
  }
  .faq-content {
    padding: 6rem 1.6rem;
  }
  .faq-left {
    margin-bottom: 6rem;
  }
  .faq-section {
    flex-direction: column;
  }
  .faq-title {
    margin-bottom: 3.2rem;
  }
  footer.Main__footer_wrapper {
    padding: 6rem 1.6rem 50%;
  }
  .bottom_logo {
    width: calc(100% - 2rem);
    bottom: 10px;
  }
  .topbar_footer {
    flex-direction: column;
  }
  .topbar_footer > *{
    width: 100%;
    max-width: 100%;
  }
  .topbar_logo img {
      width: 174px;
  }
  .footer-columns {
    margin-top: 6.4rem;
  }
  .footer-column {
      width: 50%;
  }
  .svg_width svg {
    width: 12px;
    height: 12px;
  }
 /* #menu-icon {
    padding: 0 0.7rem;
  }*/
  .raaya-card-content {
    padding: 10px 30px 10px 12px;
  }
}
@media screen and (max-width: 990px ){
  .medium-hide {
    display: none !important;
  }
}
@media screen and (min-width: 769px) {
  .desktop-hide {
    display: none !important;
  }
  .line_height {
    line-height: 0;
  }
  .faq-question:hover {
    color: #f1b24a;
  }
  .bg_slider-container .swiper-pagination {
    display: none;
  }
  .footer-column ul li {
    transition: all 0.35s;
  }
  .footer-column ul li:hover {
    margin-left: 0.4rem;
    transition: all 0.35s;
  }
  .overlay-box p {
    display: -webkit-box;
    -webkit-line-clamp: 11;
    -webkit-box-orient: vertical;
    overflow: hidden
  }
}
header{
  position: absolute;
}