@font-face {
  font-family: "Balldoug";
  src: url("./fonts/Balldoug-Regular.woff2") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* CSS Variables & Theme Setup */
:root {
  --primary-color: #174577;
  --secondary-color: #c5a880;
  --accent-light: #e5e5e5;
  --text-primary: #007ea7;
  --text-dark: #262630;
  --text-light: #7f7f83;
  --bg-cream: #faf9f6;
  --bg-white: #ffffff;
  /* --font-serif: 'Cormorant Garamond', Georgia, serif; */
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
  --font-balldoug: "Balldoug";
  --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);

  --shadow-soft:
    0 4px 20px -2px rgba(12, 62, 88, 0.04), 0 2px 6px -1px rgba(0, 0, 0, 0.02);
  --shadow-card:
    0 10px 30px -5px rgba(12, 62, 88, 0.06),
    0 4px 12px -2px rgba(12, 62, 88, 0.02);
  --shadow-premium: 0 20px 40px -10px rgba(12, 62, 88, 0.12);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

/* Base Resets & Global Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background-color: var(--bg-cream);
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-balldoug);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.heading {
  font-family: var(--font-balldoug);
  font-size: 2.8rem;
  line-height: 1.15;
  margin-bottom: 16px;
  font-weight: 500 !important;
  font-weight: normal;
  color: var(--text-primary);
}

.heading span {
  color: var(--text-dark);
}
p {
  color: var(--text-light);
}
.para {
  font-size: 1rem;
  line-height: 1.25;
  margin-bottom: 16px;
  font-weight: 300;
  color: var(--text-dark);
}
a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}

.video-modal .modal-dialog {
  max-width: 720px;
}

.video-modal .modal-content {
  background: rgba(0, 0, 0, 0.95);
  border-radius: 20px;
}

.video-modal .modal-body {
  padding: 0;
}

.video-modal .btn-close {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.35) !important;
  border-radius: 50%;
  color: #ffffff;
  opacity: 1;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.video-modal .btn-close::before,
.video-modal .btn-close::after {
  background-color: #fff !important;
}

/* Layout Utilities */

.section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.section-title {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 20px;
  position: relative;
}
@media screen and (max-width: 991px) {
  .section {
    padding: 40px 0;
  }
  .section-title {
    font-size: 2rem;
  }
}

/* Header */

.morya-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  padding: 12px 16px;
  width: 100%;
  z-index: 100;
  transition:
    background-color 0.3s ease,
    padding 0.3s ease,
    box-shadow 0.3s ease,
    top 0.3s ease;
}

.morya-header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--primary-color);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
  /* padding: 12px 0; */
  /* height: 80px; */
  /* z-index: 4; */
}

.morya-header.sticky .morya-menu-btn {
  /* background: var(--bg-white); */
}

.morya-header.sticky .morya-menu-btn span {
  background: var(--primary-color);
}

.morya-header.sticky .morya-header-btn {
  background: var(--bg-white);
  color: var(--primary-color);

}

/* .morya-header-logo{
   top:10px;
    position:absolute;
    left:50%;
    transform:translateX(-50%);
} */

.morya-header-logo {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.morya-header.sticky .morya-header-logo {
  opacity: 1;
  visibility: visible;
}

.morya-header-logo img {
  width: 140px;
  margin-left: 8rem;
}

/* Hamburger */

.morya-menu-btn {
  /* position:absolute; */
  left: 40px;

  width: 46px;
  height: 46px;

  border: none;

  border-radius: 50%;

  background: var(--text-primary);

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  gap: 5px;

  cursor: pointer;
}

.morya-menu-btn span {
  width: 18px;
  height: 2px;
  background: #fff;
  transition: 0.4s;
}

/* Enquire */

.morya-header-btn {
  /* position:absolute; */
  /* right:40px; */
  font-weight: 600;
  background: var(--bg-white);
  color: var(--text-dark);
}

.morya-header-btn:hover {
  background: #d9e5f1;
  /* color: var(--bg-white); */
}

/* Overlay */

.morya-menu-overlay {
  position: fixed;

  inset: 0;

  background: rgba(9, 33, 58, 0.95);

  display: flex;

  justify-content: center;

  align-items: center;

  opacity: 0;

  visibility: hidden;

  transition: 0.4s;

  z-index: 999;
}

.morya-menu-overlay.active {
  opacity: 1;

  visibility: visible;
}

.morya-menu-overlay ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.morya-menu-overlay li {
  margin: 25px 0;
}

.morya-menu-overlay a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  font-weight: 300;
  letter-spacing: 2px;
}

.morya-menu-overlay a:hover {
  color: #4dc0ff;
}

.morya-close-btn {
  position: absolute;

  top: 35px;

  right: 40px;

  width: 50px;

  height: 50px;

  border: none;

  background: none;

  color: #fff;

  font-size: 45px;

  cursor: pointer;
}
@media screen and (max-width: 991px) {
  .morya-header {
    top: 0px;
    padding: 0 16px;
  }
  .morya-menu-btn {
    left: 20px;
    top: 20px;
    width: 38px;
    height: 38px;
  }
  .morya-header-btn {
    right: 20px;
    top: 28px;
    font-size: 20px;
    padding: 6px;  
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }
  .morya-header-btn img {
    width: 24px;
    height: 24px;
  }
  .morya-header-logo img {
    width: 100px;
    padding: 10px;
    object-fit: contain;
    height: 100%;
    margin-left: 3rem;
  }
}
.morya-hero-section {
  position: relative;
  overflow: hidden;
  min-height: 800px;
  background: url("./assets/banner/sky-build.webp") center center/cover no-repeat;
}

/* Dark Overlay */

.morya-hero-overlay {
  /* position:absolute;
    inset:0;
    background:linear-gradient(90deg,
    rgba(8,36,61,.70) 0%,
    rgba(8,36,61,.25) 45%,
    rgba(8,36,61,.05) 100%);
    z-index:1; */
}

.morya-hero-section .container {
  position: relative;
  /* z-index:2; */
  margin-top: 15%;
  min-height: 700px;
}

/* Logo */

.morya-hero-logo {
  text-align: center;
  padding-top: 35px;
}

.morya-hero-logo img {
  width: 120px;
}

/* Main Title */

.morya-hero-title {
    position: absolute;
    left: 50%;
    top: -6%; 
    /* top: -19%;  */
    transform: translateX(-50%);
    font-size: 14rem;
    line-height: 1;
    font-weight: 300;
    text-align: center;
    white-space: nowrap;

    background: linear-gradient(
        to bottom,
        #ffffff 42%,
        rgba(255, 255, 255, 0) 100%,
        rgba(255, 255, 255, 0.81) 100%
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.morya-hero-title img{
  width: 400px;
}

/* Location */

.morya-hero-location {
  position: absolute;
  left: 0;
  top: 250px;

  display: flex;
  align-items: center;
  gap: 12px;

  background: #fff;
  padding: 14px 18px;

  border-radius: 6px;

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.morya-hero-location img {
  width: 18px;
}

.morya-hero-location span {
  font-size: 12px;
  color: #163d68;
  font-weight: 600;
  line-height: 1.5;
}

/* Price Card */

.morya-hero-price {
  position: absolute;
  right: 12%;
  top: 54%;
  background: #fff;
  padding: 8px 28px;
  border-radius: 0 10px 10px 0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.morya-hero-price small {
  display: block;
  color: #666;
  font-size: 12px;
  margin-bottom: 0px;
}

.morya-hero-price strong {
  color: var(--text-primary);
  font-size: 24px;
  font-weight: 700;
}

/* CTA */

.morya-hero-btn {
  position: absolute;
  left: 50%;
  /* bottom:170px; */
  top: 54%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 7;
  background: var(--text-primary);
  color: var(--bg-white);
  text-decoration: none;

  padding: 6px 14px;

  border-radius: 6px;

  font-size: 13px;
  font-weight: 600;
}

.morya-hero-btn img {
  object-fit: none;
  background: #fff;
  width: 28px;
  height: 28px;
  padding: 8px;
  border-radius: 50%;
}

.morya-hero-btn:hover {
  background: var(--bg-white);
  color: var(--text-primary);
}
.morya-hero-btn:hover img {
  background: #dbdde0;
}

/* Building */

.morya-hero-building {
  position: absolute;

  left: 0;
  right: 0;
  bottom: -50px;

  width: 100%;
  height: 100%;
  z-index: 2;
}

.morya-hero-building img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.morya-hero-2-0logo {
    position: relative;
    z-index: 2;
}

.morya-hero-building {
    z-index: 5;
}

@media screen and (max-width: 767px) {
  .morya-hero-section {
    background: url("./assets/mobile/banner-mobile.avif") center center/cover no-repeat;
  
  }
  .morya-hero-section .container{
    min-height: 650px;
  }
  .morya-header-btn {
    font-size: 12px;
    padding: 6px;
  }
  .morya-hero-building{
    top: 0;
  }
}
/* counter section */
.counter-section {
  padding: 80px 0;
  background: var(--bg-white);
}

.counter-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.counter-item {
  flex: 1;
  text-align: center;
  position: relative;
}

.counter-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 75px;
  border-right: 2px dashed var(--text-primary);
}

.counter-item h2 {
  font-size: 72px;
  line-height: 1;
  font-weight: 500;
  margin-bottom: 10px;

  background: linear-gradient(to bottom, #174577 0%, #4d7fb8 68%, #ffffff 100%);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.counter-item p {
  font-size: 14px;
  text-transform: uppercase;
  color: #333;
  line-height: 20px;
  letter-spacing: 0.5px;
  margin: 0;
}

@media (max-width: 991px) {
  .counter-section {
    padding: 0 0 40px 0;
  }
  .counter-item:nth-child(odd)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 0;
    height: 70%;
    border-right: 2px dashed var(--text-primary);
  }

  /* Remove border from even cards */
  .counter-item:nth-child(even)::after {
    display: none;
  }

  .counter-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .counter-item {
    width: 50%;
    flex: none;
    padding: 30px 15px;
  }
}

@media (max-width: 576px) {
  .counter-item {
    width: 100%;
  }

  .counter-item h2 {
    font-size: 54px;
  }
}
/* luxe section */
.luxe-section {
  background: #edf8ff;
  padding: 80px 0;
}

.luxe-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.luxe-content {
  width: 36%;
}

.luxe-content h2 {
  font-size: 2.8rem;
  line-height: 1.1;
  margin-bottom: 40px;
  color: var(--text-dark);
}

.luxe-content h2 span {
  color: var(--text-primary);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.feature-card {
  background: var(--bg-white);
  border: 1px solid #8dcaf2;
  border-radius: 8px;
  min-height: 130px;
  display: flex;
  padding: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: 0.35s;
}

.feature-card img {
  width: 34px;
  margin-bottom: 18px;
}

.feature-card p {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  text-transform: uppercase;
  line-height: 18px;
  margin: 0;
}

.feature-card.active {
  background: linear-gradient(135deg, #65c8f6, #175ca0);
  color: var(--bg-white);
}

.feature-card.active p {
  color: var(--bg-white);
}

.feature-card.active img {
  filter: brightness(0) invert(1);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* Video */

.luxe-video-box {
  position: relative;
  width: 64%;
}

.luxe-video-popup {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 8px solid #fff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.luxe-video-thumb {
  width: 100%;
  display: block;
  border-radius: 18px;
}

.luxe-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: 0.3s;
}

.luxe-play-icon {
  width: 90% !important;
  height: 90% !important;
  display: block;
  object-fit: contain;
}

.luxe-video-popup:hover .luxe-play-btn {
  transform: translate(-50%, -50%) scale(1.08);
}

/* Responsive */

@media (max-width: 991px) {
  .luxe-section {
    padding: 40px 0;
  }
  .feature-card p {
    font-size: 15px;
  }

  .luxe-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .luxe-content,
  .video-box {
    width: 100%;
  }
  .luxe-video-box {
    width: 100%;
  }

  .luxe-content h2 {
    font-size: 40px;
    text-align: center;
  }
  .luxe-play-icon {
    width: 50px !important;
    height: 50px !important;
  }
  .luxe-play-btn {
    width: 50px !important;
    height: 50px !important;
  }
}

@media (max-width: 576px) {
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-card {
    min-height: 120px;
  }

  .luxe-content h2 {
    font-size: 32px;
  }

  .play-btn {
    width: 60px;
    height: 60px;
  }

  .play-btn i {
    font-size: 22px;
  }
}
/* amenities section */
.amenities-section {
  position: relative;
  padding: 80px 0;
  background: url("./assets/amenities.webp") center center/cover no-repeat;
  overflow: hidden;
}
.amenities-section h2 span {
  color: var(--text-primary);
}
.amenities-section .section-subtitle {
  max-width: 550px;
  margin: 15px auto 0;
}

.amenities-slider {
  margin-top: 35px;
  position: relative;
}

.amenities-slider .carousel-inner {
  padding: 0 0 10px;
}

.amenities-slider .carousel-control-prev,
.amenities-slider .carousel-control-next {
  width: 44px;
  height: 44px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #0b2b3d;
  opacity: 1;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.amenities-slider .carousel-control-prev {
  left: -10px;
}

.amenities-slider .carousel-control-next {
  right: -10px;
}

.amenities-slider .carousel-control-prev-icon,
.amenities-slider .carousel-control-next-icon {
  filter: brightness(0) saturate(100%);
}

/* .amenity-card{
    padding:0 12px;
}

.amenity-card img{
    width:100%;
    height:270px;
    object-fit:cover;
    border-radius:16px;
    display:block;
    transition:.4s;
}

.amenity-card:hover img{
    transform:scale(1.04);
} */

.swiper {
  width: 100%;
}

.swiper-wrapper {
  align-items: center;
}

.swiper-slide {
  width: auto;
}

.amenities-top {
  margin-left: -12px;
}

.amenities-bottom {
  margin-right: -12px;
}

/* Card */
.amenity-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.amenity-card a {
  display: block;
  position: relative;
  text-decoration: none;
  color: inherit;
}

.amenity-card > a > img {
  width: 100%;
  height: 100%;
  /* min-height: 270px; */
  display: block;
  transition: transform 0.5s ease;
}

.amenity-card:hover > a > img {
  transform: scale(1.05);
}

/* Bottom Content */
.amenity-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  background: #1e4c7a;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 6px 18px;
}

.amenity-text {
  flex: 1;
  padding-right: 15px;
  padding-left: 15px;
}

.amenity-text h4 {
  margin: 0 0 4px;
  color: #fff;
  font-size: 18px;
  /* font-style: italic; */
  font-weight: 400;
  line-height: 1.2;
}

.amenity-text span {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.amenity-logo {
  max-width: 30%;
  width: 100%;
  height: auto;
  flex-shrink: 0;
}

/* Optional hover overlay */
.amenity-hover {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);

  display: flex;
  justify-content: center;
  align-items: center;

  opacity: 0;
  transition: 0.35s;
}

.amenity-hover img {
  max-width: 30%;
  width: 100%;
}

.amenity-card:hover .amenity-hover {
  opacity: 1;
}

/* Mobile */
@media (max-width: 767px) {
  .amenity-content {
    padding: 6px 0 12px;
  }

  .amenity-text h4 {
    font-size: 12px;
  }

  .amenity-text span {
    font-size: 9px;
    letter-spacing: 1px;
  }

  .amenity-logo {
    max-width: 30%;
    width: 100%;
  }
}

/* @media(max-width:991px){

.amenity-card img{
    height:220px;
}

}

@media(max-width:767px){

.amenity-card{
    padding:0 6px;
}

.amenity-card img{
    height:180px;
} */

/* } */
/* location */
.location-section {
  background-color: #eff9fd;
  overflow: hidden;
}
.location-section h2 {
  color: var(--text-primary);
}

.location-subtitle {
  max-width: 60%;
  margin: 15px auto 0;
  color: var(--text-light);
  line-height: 1.8;
  font-size: 14px;
}

.location-card {
  background: var(--bg-white);

  border: 1px solid var(--text-primary);

  border-radius: 18px;

  overflow: hidden;

  height: 100%;
}

.location-item {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
}

/* Border with left & right gap */
.location-item::after {
  content: "";
  position: absolute;
  left: 22px; /* same as horizontal padding */
  right: 22px;
  bottom: 0;
  height: 1px;
  background: #b3d8e5;
}

/* Remove border from last item */
.location-item:last-child::after {
  display: none;
}
.location-item::after {
  left: 30px;
  right: 30px;
}

.location-left {
  display: flex;

  align-items: center;

  gap: 15px;
}

.location-left img {
  width: 28px;

  height: 28px;

  object-fit: contain;
}

.location-left span {
  font-size: 1rem;
  font-weight: 600;
  color: #222;
  text-transform: uppercase;
}

.distance {
  font-size: 1rem;
  color: var(--text-dark);
  white-space: nowrap;
}

.map-wrapper {
  border: 1px solid var(--text-primary);
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  min-height: 430px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.section-title span {
}
@media (max-width: 991px) {
  .location-row {
    flex-direction: column-reverse;
  }
  .location-item {
    padding: 8px 22px;
  }
  .map-wrapper {
    min-height: unset;
  }
  .location-subtitle{
     max-width: 550px;
  }
}
/* specifications section */
.specification-section {
  position: relative;
  padding: 80px 0;
  background: url("./assets/aminities-bg.webp") center center/cover no-repeat;
  overflow: hidden;
}

.specification-section .container {
  position: relative;
  z-index: 2;
}
.specification-section h2 span {
  color: var(--text-primary);
}

.specification-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 35px 0;
}

.spec-card {
  position: relative;
  text-align: center;
  padding: 10px 30px 25px;
}

/* Vertical Divider */

.spec-card::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15px;
  width: 1.5px;
  height: 110px;
  background: #cce5ed;
}

/* remove last divider */

.spec-card:nth-child(5n)::after {
  display: none;
}

.spec-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.spec-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.spec-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-dark);
  font-weight: 600;
}

.section-title span {
  color: var(--text-dark);
}
@media (max-width: 991px) {
  .specification-section {
    padding: 40px 0;
  }
  .specification-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px 0;
  }

  .spec-card:nth-child(3n)::after {
    display: none;
  }
  .spec-card:nth-child(5n)::after {
    display: flex;
  }
  .spec-card {
    padding: 10px 6px 6px;
  }
}
/*=========================
      FLOOR PLAN
==========================*/

.floorplan-section {
  padding: 80px 0;

  background: url("./assets/floorplan-bg.webp") center center/cover no-repeat;

  position: relative;

  overflow: hidden;
}

.floorplan-section::before {
  content: "";

  position: absolute;

  inset: 0;
}

.floorplan-section .container {
  position: relative;

  z-index: 2;
}

/* Heading */

.section-header {
  max-width: 500px;
  margin: 0 auto 60px;
}

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

.section-desc {
  color: #d9e5f1;
  font-size: 16px;
  line-height: 1.4;
}

/* Cards */

.floor-card {
  background: var(--bg-white);
  border-radius: 18px;
  padding: 30px;
  text-align: center;
  height: 100%;
  position: relative;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.floor-card:hover {
  transform: translateY(-6px);
}
.floor-cd {
  height: 100%;
  max-height: 250px;
}
.floor-image {
  display: flex;
  align-items: center;
  justify-content: center;
  /* min-height:340px; */
}

.floor-image img {
  max-width: 100%;
  /* max-height:320px; */
  object-fit: contain;
}

.floor-card h5 {
  margin-top: 20px;
  font-size: 18px;
  color: var(--text-light);
  letter-spacing: 0.5px;
}

.master-plan-card {
  border: 1px solid rgba(23, 69, 119, 0.12);
  box-shadow: 0 30px 80px rgba(23, 69, 119, 0.15);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(245, 249, 255, 0.98) 100%
  );
}

.master-plan-card .floor-image img {
  max-height: 380px;
}

.master-plan-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(11, 132, 183, 0.12);
  color: #0b84b7;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.master-plan-card h5 {
  margin-top: 18px;
  font-size: 20px;
  color: #174577;
  font-weight: 500;
}

/* Tabs */

.floor-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
}

.floor-tabs button {
  border: 1px solid var(--text-light);
  color: var(--text-light);
  background: var(--bg-white);
  padding: 6px 36px;
  border-radius: 6px;
  font-size: 14px;
  transition: 0.3s;
  cursor: pointer;
}

.floor-tabs button.active {
  background: var(--text-primary);
  color: var(--bg-white);
  border-color: var(--text-primary);
}

/* Download */

.download-btn {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  text-decoration: none;

  color: #174577;

  border: 1px solid #0b84b7;

  border-radius: 40px;

  padding: 12px 12px 12px 24px;

  font-weight: 500;

  transition: 0.3s;
}

.download-btn span {
  width: 34px;

  height: 34px;

  border-radius: 50%;

  background: #0b84b7;

  display: flex;

  align-items: center;

  justify-content: center;
}

.download-btn span img {
  width: 16px;
}

.download-btn:hover {
  background: #174577;

  color: #fff;
}

@media (max-width: 991px) {
  .floor-tabs button {
    padding: 6px 24px;
  }

  .floorplan-section {
    padding: 40px 0;
  }
  .floor-tabs {
    margin-bottom: 0px;
  }

  .floor-card {
    /* height:300px; */
    padding: 25px;
  }

  .floor-image {
    /* min-height:250px; */
  }
  .floor-image img {
    max-height: 200px;
  }
}

@media (max-width: 767px) {
  .section-header {
    margin-bottom: 40px;
  }

  .floor-image {
    /* min-height:220px; */
  }

  .download-btn {
    font-size: 14px;

    padding: 10px 10px 10px 18px;
  }
}
/*==========================
        GALLERY
===========================*/

.gallery-section {
  padding: 80px 0;
  background: var(--bg-white);
}

.gallery-section h2 span {
  color: var(--text-primary);
}

/*=========================
        GRID
==========================*/

/* .gallery-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    grid-auto-rows:250px;

    gap:12px;
} */

.gallery-popup {
  display: block;

  overflow: hidden;

  border-radius: 14px;
}

.gallery-popup img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: 0.45s;
}

.gallery-popup:hover img {
  transform: scale(1.08);
}
.gallery-2ndrow {
  height: 100%;
}
.gallery-2nd-grid {
  display: flex;
  flex-direction: column;
}



.mfp-wrap .mfp-close:hover,
.mfp-wrap .mfp-close:focus,
.mfp-container .mfp-close:hover,
.mfp-container .mfp-close:focus,
button.mfp-close:hover,
button.mfp-close:focus {
  color: #ffffff !important;
  opacity: 1 !important;
}

.mfp-arrow {
  width: 54px;
  height: 54px;
  background: rgba(0, 0, 0, 0.65);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
  border-top-width: 12px;
  border-bottom-width: 12px;
}

.mfp-arrow-left {
  left: 20px;
}

.mfp-arrow-right {
  right: 20px;
}

.mfp-arrow-left:after {
  border-right: 18px solid #ffffff;
  margin-left: 16px;
}

.mfp-arrow-right:after {
  border-left: 18px solid #ffffff;
  margin-left: 20px;
}

.mfp-arrow-left:before,
.mfp-arrow-right:before {
  border: 0;
}

.mfp-container .mfp-content {
  /* margin-top: 74px; */
}

/* .large{

    grid-column:3;
}

.wide{

    grid-column:1 / span 2;
} */

/*======================
        VIDEO
=======================*/

.gallery-video {
  display: block;

  position: relative;

  height: 100%;

  overflow: hidden;

  border-radius: 18px;
}

.gallery-video img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

.video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%)!important;
}

.video-play img {
  width: 73px;
}
@media (max-width: 991px) {
    /* .video-play{
   position: absolute;
    left: 45%;
    top: 45%;

  } */
  .video-play img {
    width: 50px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);

    grid-auto-rows: 200px;
  }
}

/*========================
        BANNER
=========================*/

.upgrade-banner {
  margin-top: 70px;

  position: relative;

  overflow: hidden;

  border-radius: 22px;
}

.banner-content {
  position: absolute;

  right: 10%;

  top: 80%;

  transform: translateY(-50%);

  text-align: center;

  color: var(--bg-white);
}

.banner-content h3 {
  font-size: 60px;
  line-height: 1.1;
  font-weight: 300;
  margin-bottom: 25px;
}

.banner-content span {
  display: block;
  font-size: 22px;
}

.banner-content strong {
  display: block;

  font-size: 52px;
}

.banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-white);
  color: var(--primary-color);
  padding: 10px 10px 10px 22px;
  border-radius: 40px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
}
.banner-btn:hover {
  background: var(--accent-light);
  color: var(--primary-color);
}

.banner-btn img {
  width: 24px;
  height: 24px;
  background: var(--primary-color);
  padding: 4px;
  margin: 0;
  border-radius: 50%;
}
.step-inside-bg {
  width: 100%;
  display: block;
  height: auto;
}

.upgrade-banner {
  margin-top: 70px;
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  min-height: 320px;
}

.upgrade-banner picture,
.upgrade-banner picture img {
  display: block;
  width: 100%;
}

.upgrade-banner .step-inside-bg {
  position: relative !important;
  inset: auto !important;
  width: 100%;
  height: auto !important;
  min-height: 320px;
  object-fit: cover;
}

@media (max-width: 991px) {
  .gallery-section {
    padding: 40px 0;
  }

  .step-inside-bg {
    width: 100%;
    display: block;
    height: auto;
  }

  .banner-content {
    right: 50%;

    top: 40%;

    transform: translate(50%, -50%);
  }
}
/*=========================
    WHY MORYA
==========================*/

.why-morya-section {
  background: #fafafa url("./assets/marble-bg.webp") center/cover;
  padding: 80px 0 0;
}
.why-morya-section h2 {
  color: var(--text-dark);
}
.why-morya-section h2 span {
  color: var(--text-primary);
}

.why-video {
  position: relative;

  border-radius: 18px;
  aspect-ratio: 16/12;
  overflow: hidden;
}

.why-video img {
  width: 100%;

  display: block;

  border-radius: 18px;
}

.play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) !important;
  width: 85px;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.play-btn img {
  width: 73px;
}
.video-dir svg,
.video-dir img {
    filter: brightness(0) saturate(100%) invert(36%) sepia(99%) saturate(1816%) hue-rotate(164deg) brightness(91%) contrast(101%);
}

.videoSwiper {
  position: relative;
}

.videoSwiper .swiper-button-next,
.videoSwiper .swiper-button-prev {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text-dark);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.videoSwiper .swiper-button-next:after,
.videoSwiper .swiper-button-prev:after {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
}

.videoSwiper .swiper-button-next {
  right: 12px;
}

.videoSwiper .swiper-button-prev {
  left: 12px;
}

.video-thumbnail,
.youtubePlayer {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.youtubePlayer {
  display: none;
  border: 0;
}


.why-features {
  display: flex;

  flex-direction: column;

  gap: 18px;
}

.feature-item {
  display: flex;

  gap: 18px;

  padding-bottom: 18px;

  border-bottom: 1px solid #cbe4ed;
}

.feature-item:last-child {
  border: none;
}

.feature-item img {
  width: 52px;

  height: 52px;

  flex-shrink: 0;
}

.feature-item h5 {
  color: var(--text-primary);
  text-transform: uppercase;
  font-size: 15px;
  font-family: var(--font-sans);
  margin-bottom: 3px;
  font-weight: 700;
}

.feature-item p {
  margin: 0;

  color: var(--text-light);

  font-size: 12px;

  line-height: 1.7;
}

/*=========================
    Developer Strip
==========================*/

.developer-strip {
  margin-top: 80px;

  background: var(--primary-color);

  padding: 45px 0;
}

.developer-strip p {
  color: var(--bg-white);

  text-align: center;

  margin-bottom: 35px;

  font-size: 18px;
}

.developer-logos {
  display: flex;

  justify-content: center;

  gap: 35px;

  flex-wrap: wrap;
}

.developer-logos img {
  width: 180px;
  height: 130px;
  object-fit: contain;
  background: var(--bg-white);
  padding: 10px;
  border-radius: 10px;
  transition: 0.3s;
}

.developer-logos img:hover {
  transform: translateY(-6px);
}
@media (max-width: 991px) {
    .play-btn img{
        width: 50%;
    }
  .developer-strip {
    margin-top: 40px;
  }
  .developer-logos {
    gap: 15px;
    flex-wrap: wrap;
  }
  .developer-logos img {
    width: 100%;
    max-width: 90px;
    padding: 0px;
  }
  .videoSwiper .swiper-button-next,
.videoSwiper .swiper-button-prev {
  width: 30px;
  height: 30px;
}
  /* .play-btn{
        left: 35%;
    top: 35%;
  } */

}
/*==========================
        AWARDS
===========================*/

.awards-section {
  padding: 80px 0;
  background: url("./assets/award.webp") center center / cover no-repeat;
  position: relative;
  overflow: hidden;
}

.awards-section .container {
  position: relative;
  z-index: 1;
}

.awards-bg {
  width: 100%;
  display: block;
}

.awards-overlay .section-title {
  margin-bottom: 70px;
}

.awards-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 56px;
  margin-top: 40px;
}
.award-item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 140px;
  text-align: center;
  width: 100%;
  max-width: 250px;
  padding: 30px 34px;
  z-index: 2;
}

.award-item img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 1;
  pointer-events: none;
}

.award-item h4 {
  font-size: 16px !important;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: var(--text-dark);
  /* line-height:1.3; */
  letter-spacing: 0.0001rem;
  font-family: "Poppins", sans-serif;
}

.award-item p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 767px) {
  .awards-section {
    background: url("./assets/mobile/award.webp") center center / cover no-repeat;
    padding: 40px 0;
  }

  .awards-wrapper {
    border-radius: 16px;
  }

  .awards-overlay {
    position: relative;

    /* padding:40px 20px; */
  }

  .awards-bg {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
  }

  .awards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    justify-content: center;
    margin-top: 6px;
  }

  .award-item {
    flex: 0 0 calc(50% - 8px);
    max-width: calc(48% - 8px);
    min-height: 120px;
    padding: 0px 25px;
  }

  .award-item img {
    width: 100%;
  }

  .award-item h4 {
    font-size: 10px !important;
  }

  .award-item p {
    font-size: 10px;
  }
}

/*=========================
    STEP INSIDE SECTION
=========================*/

.step-inside-section {
  padding: 80px 0;
  background-color: var(--bg-white);
}

.step-inside-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 70px;
}

/* Background Image */

.step-inside-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Left Content */

.step-inside-content {
  position: relative;
  z-index: 2;
  max-width: 450px;
}

.step-inside-content h2 {
  font-size: 2.8rem;
  margin-bottom: 25px;
  line-height: 1.15;
  color: var(--text-dark);
}

.step-inside-content h2 span {
  color: var(--text-primary);
}

.step-inside-content p {
  font-size: 16px;
  line-height: 1.4;
  color: var(--text-light);
  margin-bottom: 40px;
}

/* Button */

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  position: absolute;
  top: 50%;
  left: 30%;
  background: var(--bg-white);
  color: var(--text-dark);
  text-decoration: none;
  padding: 8px;
  border-radius: 8px;
  font-weight: 500;
  transition: 0.35s;
}
.download-btns {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  top: 50%;
  left: 30%;
  background: var(--text-primary);
  color: var(--bg-white);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 28px;
  font-weight: 500;
  transition: 0.35s;
}
.download-btns:hover {
  background: #096488;
  color: var(--bg-white);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 28px;
  font-weight: 500;
  transition: 0.35s;
}

.download-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.download-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
@media (max-width: 991px) {
  .step-inside-section {
    padding: 40px 0;
  }
  .step-inside-card {
    padding: 50px;
    height: 100%;
    min-height: 700px;
    align-items: flex-start;
  }
  .step-inside-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .step-inside-content h2 {
    font-size: 32px;
  }
  .step-inside-content p {
    margin-bottom: 20px;
  }
}
/* construction section */
.construction-section {
  background: #eef8fc;
  padding: 80px 0;
  position: relative;
}
.construction-section h2 {
  color: var(--text-primary);
}
.construction-section h2 span {
  color: var(--text-dark);
}

.construction-slider-wrapper {
  position: relative;
  margin-top: 50px;
}

.construction-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  /* margin-left:8%; */
  scroll-behavior: smooth;
  padding-bottom: 10px;
  -webkit-overflow-scrolling: touch;
}

.construction-slider::-webkit-scrollbar {
  display: none;
}

.construction-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  flex: 0 0 320px;
  /* min-width:320px; */
  /* box-shadow:0 24px 50px rgba(2, 22, 48, 0.12); */
  /* transition:transform .35s, box-shadow .35s; */
}

/* .construction-card:hover{
    transform:translateY(-8px);
    box-shadow:0 32px 64px rgba(2, 22, 48, 0.16);
} */

.card-image {
  position: relative;
  padding: 14px;
}

.card-image img {
  width: 100%;
  height: 230px;

  object-fit: cover;

  border-radius: 14px;

  transition: 0.4s;
}

/* .construction-card:hover img{

    transform:scale(1.05);

} */

.new-tag {
  position: absolute;

  top: 22px;
  left: 22px;

  background: var(--text-primary);

  color: #fff;

  font-size: 11px;

  padding: 4px 12px;

  border-radius: 30px;

  z-index: 2;
}

.card-content {
  padding: 0px 18px 18px;
}

.date-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--text-primary);
  color: var(--text-dark);
  font-size: 12px;
  border-radius: 30px;
  padding: 5px 14px;
}

.date-pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-primary);
}
.construction-slider-wrapper {
  margin-left: calc((100vw - 1320px) / 2);
}

.card-content h3 {
  text-transform: capitalize;
  font-size: 18px;
  margin: 6px 0;
  color: var(--text-dark);
  font-weight: 500;
  font-family: var(--font-sans);
}

.view-more {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  color: var(--text-primary);

  text-decoration: none;

  font-weight: 500;
}

.view-more img {
  width: 24px;
  background: var(--text-primary);
  padding: 5px;
  border-radius: 50%;
}

.construction-prev,
.construction-next {
  position: absolute;
  top: 40%;
  width: 36px;
  height: 36px;
  border: none;
  background: var(--text-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transform: translateY(-50%);
  box-shadow: 0 20px 35px rgba(11, 132, 185, 0.24);
}
.swiper-button-disabled {
    opacity: 0.6!important;
    pointer-events: none !important;
    cursor: not-allowed!important;
}
/* .swiper-button-disabled .view-more img {
    background: #bdbdbd; 
    opacity: 0.2!important;
} */

.construction-prev {
  left: 10px;
}

.construction-next {
  right: 10px;
}

.construction-btn img {
  width: 18px;
  height: 18px;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  display: none;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  display: none;
}

@media (max-width: 591px) {
  .construction-slider-wrapper {
    margin-left: unset;
    margin-top: 0px;
  }
  .construction-card {
    flex: 0 0 280px;
    min-width: 280px;
  }
}

@media (max-width: 767px) {
  .construction-section {
    padding: 40px 0;
  }
  .construction-prev,
  .construction-next {
    width: 44px;
    height: 44px;
  }
  .construction-prev {
    left: 0;
  }
  .construction-next {
    right: 0;
  }
  .construction-prev,
  .construction-next {
    top: 45%;
  }
}
/*==========================
        FAQ SECTION
==========================*/

.faq-section {
  background: var(--bg-white);
  padding: 0 0 80px 0;
}

.faq-accordion {
  margin-top: 50px;
}

/* Accordion Item */
.faq-accordion .accordion-item {
  background: #e9f4f9;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 18px;
  box-shadow: none;
}

/* Header Button */
.faq-accordion .accordion-button {
  background: #e9f4f9;
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 500;
  padding: 14px 28px 14px 28px;
  box-shadow: none;
  border: none;
}

/* Open State */
.faq-accordion .accordion-button:not(.collapsed) {
  background: #e9f4f9;
  color: var(--text-dark);
  box-shadow: none;
}

/* Remove Bootstrap Blue Focus */
.faq-accordion .accordion-button:focus {
  box-shadow: none;
  border: none;
}

/* Body */
.faq-accordion .accordion-body {
  background: #e9f4f9;
  color: var(--text-light);
  padding: 0 28px 24px;
  font-size: 16px;
  line-height: 1.4;
  width: 80%;
}

/* Remove divider line between header & body */
.faq-accordion .accordion-button:not(.collapsed) {
  border-bottom: none;
}
.faq-accordion .accordion-item:has(.accordion-button:not(.collapsed)) {
  border: 1px solid var(--text-primary);
}

.faq-accordion .accordion-collapse {
  border-top: none;
}

/* Bootstrap Arrow */
.faq-accordion .accordion-button::after {
  content: "";
  width: 36px;
  height: 36px;
  flex-shrink: 0;

  border: 1px solid var(--text-primary);
  border-radius: 6px;

  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23174577' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 5.646a.5.5 0 0 1 .708 0L8 11.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");

  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;

  transition: all 0.3s ease;
}

/* Open state */
.faq-accordion .accordion-button:not(.collapsed)::after {
  transform: rotate(-180deg);
  background-color: var(--text-primary);
  border-color: var(--text-primary);

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 5.646a.5.5 0 0 1 .708 0L8 11.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

/* Remove Bootstrap Default Border */
.faq-accordion .accordion-item:first-of-type,
.faq-accordion .accordion-item:last-of-type {
  border-radius: 12px;
}

/*==========================
        MOBILE
==========================*/

@media (max-width: 991px) {
  .faq-accordion .accordion-button {
    font-size: 18px;
    padding: 18px 18px 18px 18px;
  }

  .faq-accordion .accordion-body {
    padding: 0 18px 18px;
    font-size: 15px;
    line-height: 1.4;
  }
  .faq-accordion .accordion-button::after {
    margin-right: 0;
  }
}
/* ==========================================================================
   5. FOOTER / CONTACT CARD
   ========================================================================== */
.footer-section {
  background-color: var(--primary-color);
  padding: 60px 0;
}

.footer-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 50px 50px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}
.footer-card h2 {
  color: var(--text-dark);
}
.footer-card h2 span {
  color: var(--text-primary);
}
.footer-card .para {
  font-weight: 300;
}

/* Small rotating circle in the background/top right */
.footer-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-section .para {
  max-width: 380px;
}
.footer-sub {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 35px;
  max-width: 440px;
  line-height: 1.4;
}
.newsletter-form {
  width: 100%;
  max-width: 360px;
}

.input-group-custom {
  display: flex;
  align-items: center;
  background: var(--bg-white);
  border: 1px solid var(--accent-light);
  border-radius: 20px;
  overflow: hidden;
  padding: 10px;
}

.newsletter-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 6px 0px;
  font-size: 14px;
  color: var(--text-light);
  background: transparent;
}

.newsletter-input::placeholder {
  color: #9b9b9b;
}

.newsletter-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: #0088bd;
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s;
}

.newsletter-btn:hover {
  background: #0074a3;
}

.newsletter-btn img {
  width: 24px;
  height: 22px;
  background: #fff;
  border-radius: 50%;
  padding: 7px;
  object-fit: contain;
}

.newsletter-text {
  margin-top: 12px;
  text-align: center;
  font-size: 1rem;
  color: var(--text-light);
}

/* Right side content */
.footer-right {
  position: relative;
  padding-left: 60px;
  display: flex;
  justify-content: flex-end;
}

.footer-contact {
  max-width: 380px;
  margin-top: 200px;
}

.footer-title {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-heading);
  color: var(--text-light);
  margin-bottom: 18px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}

.contact-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.contact-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-content p,
.contact-content a {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 400;
}

.footer-rera {
  margin-top: 40px;
}

.footer-rera p {
  margin: 0 0 3px;
  color: #4c4c4c;
  font-size: 12px;
  line-height: 1.4;
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 45px;
}

.footer-social a img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.footer-social a:hover {
  transform: translateY(-4px);
}

.footer-social img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.footer-badge {
  position: absolute;
  width: 130px;
  right: 50px;
  height: 130px;
  background: #0b86b8;
  border-radius: 50%;
  overflow: hidden;
}
.footer-branding img {
  width: 40%;
}

/* Only the text rotates */
.badge-text {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: rotateText 12s linear infinite;
}

.badge-text text {
  fill: #fff;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* Arrow stays fixed */
.badge-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.badge-arrow img {
  width: 34px;
  height: 34px;
  display: block;
}

@keyframes rotateText {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Backdrop Blur */

.modal-backdrop.show {
  opacity: 0.75;
  backdrop-filter: blur(4px);
}

/* Modal */

.morya-modal-content {
  border: none;
  border-radius: 24px;
  overflow: hidden;
  padding: 20px;
}

/* Logo */

.morya-modal-logo {
  text-align: center;
  margin-bottom: 8px;
}

.morya-modal-logo img {
  width: 120px;
}

/* Heading */

.morya-modal-title {
  text-align: center;
  color: var(--primary-color);
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 8px;
}

.morya-modal-subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 8px;
}
.modal-body {
  padding: 0;
}

/* Input */

.morya-modal-input {
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--text-light);
  box-shadow: none;
}

textarea.morya-modal-input {
  height: auto;
  resize: none;
}

.morya-modal-input:focus {
  border-color: var(--primary-color);
  box-shadow: none;
}

/* Button */

.morya-modal-submit {
  background: var(--primary-color);
  color: #fff;
  border-radius: 20px;
  height: 35px;
  font-weight: 500;
  transition: 0.3s;
}

.morya-modal-submit:hover {
  background: #0f3253;
  color: #fff;
}

/* Close */

.morya-modal-close {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 2;
}

/* Note */

.morya-modal-note {
  margin-top: 18px;
  margin-bottom: 18px;
  /* text-align: center; */
  color: #888;
  font-size: 12px;
}

.footer-mobile {
  background: var(--primary-color);
  padding: 20px 0;
}

.footer-mobile-card {
  position: relative;
  background: var(--bg-white);
  border-radius: 30px;
  padding: 28px 22px;
}

.footer-mobile-heading {
  position: relative;
  padding-right: 120px;
}

.footer-mobile-heading h2 {
  font-size: 42px;
  line-height: 1.4;
  margin-bottom: 15px;
}

.footer-mobile-heading span {
  color: #1487c9;
}

.footer-mobile-heading p {
  color: #555;
  margin-bottom: 25px;
}

.footer-mobile-badge {
  position: absolute;
  right: 10%;
  top: 5%;
  width: 90px;
  height: 90px;
}

.footer-mobile-contact {
  margin-top: 25px;
}
.footer-mobile-contact h6 {
  font-family: var(--font-sans);
  color: var(--text-light);
}

.contact-row {
  display: flex;
  gap: 20px;
  margin: 20px 0;
}

.contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 3px;
}

.footer-mobile-social {
  display: flex;
  gap: 16px;
  margin: 30px 0;
}

.footer-mobile-logo {
  margin: 35px 0;
  text-align: left;
}

.footer-mobile-logo img {
  width: 170px;
}
.contact-item p {
  color: var(--text-dark);
}
@media (max-width: 767px) {
  .newsletter-input{
    font-size: 11px;
  }
  .newsletter-btn{
   font-size: 11px;
   gap: 6px;
  }
  .contact-item {
    margin-bottom: 0px;
    font-size: 14px;
  }
  .contact-row {
    margin: 0px 0px;
    gap: 8px;
    flex-direction: column;
  }
  .footer-left {
    margin-bottom: 30px;
  }
  .footer-right {
    padding-left: 0;
  }
  .footer-contact {
    margin-top: 0;
  }
}


@media (min-width: 1300px) {
  .morya-hero-title {
    /* left: 27%; */
    /* top: -22%; */
    top: -10%;
    /* font-size: 13rem; */
    
  }
}

@media (min-width: 1500px) {
  .morya-hero-title {
    /* left: 27%; */
    top: -31%; 
    /* font-size: 13rem; */
    
  }
}
@media (min-width: 1600px) {
  .morya-hero-title {
    /* left: 27%; */
    top: -16%; 
    /* top: -27%;  */
    /* font-size: 13rem; */
    
  }
}
@media (min-width: 1700px) {
  .morya-hero-title {
    /* left: 27%; */
    /* top: -30%;  */
    top: -18%; 
    /* font-size: 13rem; */
    
  }
}
@media (min-width: 1900px) {
  .morya-hero-title {
    /* left: 27%; */
    /* top: -38%;  */
    top: -28%;
    /* font-size: 13rem; */
    
  }
}
@media (max-width: 1300px) {
  .awards-grid {
    gap: 24px 30px;
  }
  .feature-item img {
    width: 48px;
    height: 52px;
  }
  .counter-item h2 {
    font-size: 46px;
  }
  .luxe-content h2 {
    font-size: 2.3rem;
  }
  .spec-card p {
    font-size: 12px;
  }
  .location-left span {
    font-size: 12px;
  }
  .construction-slider-wrapper {
    margin-left: calc((100vw - 1100px) / 2);
  }
  /* .morya-hero-title {
    left: 25%;
    top: -1%;
    font-size: 12rem;
  } */
}
@media (max-width: 390px) {
    .morya-hero-title {
        /* left: 15%; */
        /* top: 6%; */
        font-size: 6rem;
        font-weight: 300;
    }
}
@media (max-width: 991px) {
    .morya-hero-title {
        left: 50%;
        top: 6%;
        font-size: 6rem;
        font-weight: 300;
    }
}
@media (max-width: 991px) {
.morya-hero-title {
    position: absolute;
    left: 26%;
    top: -7%;
    font-size: 14rem;
    line-height: 1;
    font-weight: 300;
    text-align: center;
    /* z-index: 3; */
       background: linear-gradient(to bottom, #ffffff 42%, #fffffffa 100%, #ffffffcf 100%);;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
  .construction-slider-wrapper {
    margin-left: unset;
  }
  .why-morya-section {
    padding: 40px 0 0 0;
  }
  .why-morya-section .col-lg-5 {
    margin-top: 30px;
  }
  .why-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-item img {
    width: 36px;
    height: 36px;
  }
  .morya-hero-title {
    left: 15%;
    top: 6%;
    font-size: 6rem;
    font-weight: 300;
  }
}

@media (max-width: 510px) {
    .luxe-content h2{
    font-size: 2rem;
    }
    .morya-hero-2-0logo  {
        height: 110px;
        position: absolute;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        top: 20%;
    }

    .banner-btn {
  font-size: 12px;
}
.download-btn{
        left: 25%;
}
    .morya-hero-2-0logo img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      z-index: 3;
    }
  .developer-logos img {
    max-width: 74px;
    height: 70px;
  }
  .morya-hero-btn {
    bottom: -4%;
    top: unset;
    font-size: 12px;
    gap: 5px;
  }
  .step-inside-card {
    padding: 30px;
  }
  .faq-section {
    padding: 0 0 40px 0;
  }

  .morya-hero-title {
        left: 50%;
        top: 10%;
        font-size: 6rem;
        font-weight: 300;
        z-index: 2;
    }
      .morya-hero-title img{
        width:250px;
      }
  
   .footer-mobile-heading h2 {
    font-size: 28px;
  }
  .footer-mobile-heading{
        padding-right: 110px;
  }
  .ut-br{
    display: none;
  }
}
@media (max-width: 390px) {
 
  .banner-btn {
    font-size: 11px;
  }
  .developer-logos {
    gap: 8px;
  }
  .awards-grid {
    gap: 16px 20px;
  }
  /* .morya-hero-title {
    left: 15%;
    top: 6%;
    font-size: 6rem;
    font-weight: 300;
  } */
  .morya-hero-btn {
    font-size: 11px;
  }
}


html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

/* Default (placeholder) color */
select.morya-modal-input {
    color: #7f7f83;
}

/* After a value is selected */
select.morya-modal-input:valid {
    color: #000; /* Your selected text color */
}

/* Dropdown options */
select.morya-modal-input option {
    color: #000;
}

/* Placeholder option */
select.morya-modal-input option[value=""] {
    color: #7f7f83;
}




.mfp-img{
    cursor:grab;
}

.mfp-img:active{
    cursor:grabbing;
}

.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    font-size: 12px;
    line-height: 1.5;
}

.consent-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    min-width: 16px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #234f7d;
}

.consent-checkbox span {
    flex: 1;
}

/* Read More button hidden on desktop */
.spec-read-more {
    display: none;
}

/* Mobile */
@media (max-width: 767px) {

    .mobile-hidden-card {
        display: none;
    }
  .mobile-hidden-card {
        display: flex;
        flex-direction: column;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transform: translateY(-10px);
        margin-top: 0;
        padding-top: 0;
        padding-bottom: 0;
        transition:
            max-height 0.5s ease,
            opacity 0.4s ease,
            transform 0.4s ease,
            margin 0.5s ease,
            padding 0.5s ease;
    }

    /* Expanded cards */
    .mobile-hidden-card.show-card {
        max-height: 300px;
        opacity: 1;
        transform: translateY(0);
    }

      .spec-read-more {
        display: block;
        margin-top: 16px;
        text-align: center;
    }


    .spec-read-more button {
        border: 1px solid #234f7d;
        background: var(--text-primary);
        color: #fff;
        padding: 4px 12px;
        border-radius: 4px;
        font-size: 14px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .spec-read-more button:hover {
        background: #fff;
        color: #234f7d;
    }

    
}