@import url('https://fonts.cdnfonts.com/css/bigilla');
@import url('https://fonts.cdnfonts.com/css/avenir');
@import url('https://fonts.googleapis.com/css2?family=Ibarra+Real+Nova:ital,wght@0,400..700;1,400..700&display=swap');
@import url('https://fonts.cdnfonts.com/css/satoshi');

@font-face {
  font-family: "Monschone";
  src: url("../font/monschone-regular-monschone-regular-400.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}



body {
  margin: 0;
  overflow-x: hidden;
}

#smooth-wrapper {
  overflow: hidden;
}

#smooth-content {
  will-change: transform;
}

.portfolio-section {
  position: relative;
  min-height: 100vh;
  padding: 60px 5vw;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.portfolio-box {
  width: 100%;
  background: #0b1220;
  border-radius: 20px;
  padding: 30px;
  overflow: hidden;
}

.portfolio-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  color: #fff;
}

.horiz-gallery-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.horiz-gallery-strip {
  will-change: transform;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.project-wrap {
  width: 40vw;
  min-width: 280px;
  aspect-ratio: 1600 / 973;
  overflow: hidden;
  border-radius: 16px;
}

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

@media (max-width: 768px) {
  .portfolio-section {
    padding: 40px 20px;
    height: auto;
  }

  .portfolio-box {
    padding: 20px;
  }

  .portfolio-head h3 {
    font-size: 22px;
  }

  .portfolio-head p {
    font-size: 14px;
  }

  .horiz-gallery-strip {
    gap: 14px;
    justify-content: flex-start;
  }

  .project-wrap {
    width: 80vw;
  }
}

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

a {
  text-decoration: none;

}

.font-georgia {
  font-family: 'Georgia', serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
div,
li,
ul,
ol,
img,
video,
audio,
iframe,
form,
input,
textarea,
button,
select,
option,
label,
table,
tr,
td,
th,
tbody,
thead,
tfoot {
  margin: 0;
  padding: 0;
}


.menu i {
  cursor: pointer;
  color: #fff;
}

.menu-trigger {
  cursor: pointer;
}

.header {
  z-index: 9999;
}

/* ====================== Full-screen overlay menu ====================== */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  pointer-events: none;
  font-family: "Monschone", sans-serif;
}

.logo{
  object-fit: cover;
  width: 44px;
  padding: 10px 0;
}

.nav-overlay.is-open {
  pointer-events: auto;
}

/* Backdrop – smooth fade + blur (~1.2s) */
.nav-overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s cubic-bezier(0.33, 1, 0.68, 1),
    visibility 1.2s step-end;
}

.nav-overlay.is-open .nav-overlay-backdrop {
  opacity: 1;
  visibility: visible;
  transition: opacity 1.2s cubic-bezier(0.33, 1, 0.68, 1),
    visibility 0s step-start;
}

/* Panel – smooth clip-path wipe (~1.5s) */
.nav-overlay-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.5s cubic-bezier(0.33, 1, 0.68, 1);
}

.nav-overlay.is-open .nav-overlay-panel {
  clip-path: inset(0 0 0 0);
}

/* Content stagger – gentle fade + small slide (~0.9s duration, spread delays) */
.nav-overlay-header,
.nav-menu-link,
.nav-contact-block,
.nav-menu-img {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.9s cubic-bezier(0.33, 1, 0.68, 1),
    transform 0.9s cubic-bezier(0.33, 1, 0.68, 1);
}

.nav-overlay.is-open.is-visible .nav-overlay-header {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.25s;
}

.nav-overlay.is-open.is-visible .nav-menu-link:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.35s;
}

.nav-overlay.is-open.is-visible .nav-menu-link:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.48s;
}

.nav-overlay.is-open.is-visible .nav-menu-link:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.61s;
}

.nav-overlay.is-open.is-visible .nav-menu-link:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.74s;
}

.nav-overlay.is-open.is-visible .nav-menu-link:nth-child(5) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.87s;
}

.nav-overlay.is-open.is-visible .nav-menu-link:nth-child(6) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1s;
}

.nav-overlay.is-open.is-visible .nav-contact-block {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.7s;
}

.nav-overlay.is-open.is-visible .nav-menu-img {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.78s;
}

/* Close – smooth reverse (longer) */
.nav-overlay.is-closing .nav-overlay-header,
.nav-overlay.is-closing .nav-menu-link,
.nav-overlay.is-closing .nav-contact-block,
.nav-overlay.is-closing .nav-menu-img {
  opacity: 0;
  transform: translateY(8px);
  transition-delay: 0s;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
}

.nav-overlay.is-closing .nav-overlay-panel {
  clip-path: inset(0 100% 0 0);
  transition-duration: 1s;
  transition-delay: 0.2s;
  transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
}

.nav-overlay.is-closing .nav-overlay-backdrop {
  opacity: 0;
  transition-duration: 0.9s;
  transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
}

/* Close icon – fixed top right */
.nav-close-fixed {
  position: absolute !important;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1a1a1a;
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 10;
  transition: background 0.3s ease, transform 0.3s ease;
}

.nav-close-fixed:hover {
  background: #b8860b;
  transform: rotate(90deg);
}

.nav-overlay-inner {
  width: 100%;
  height: 100%;
  padding: 80px 24px 40px;
  overflow-y: auto;
  background: url("../img/menu-bg02.png") no-repeat center center/cover;
}

.nav-overlay-inner .container-fluid {
  padding-left: 48px;
  padding-right: 48px;
}

.nav-overlay-header {
  padding-bottom: 24px;
}

.nav-utility-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.05em;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.nav-utility-link:hover {
  color: #b8860b;
}

.nav-utility-link i {
  font-size: 16px;
  color: #1a1a1a;
}

/* Nav links – hover animated, smaller font */
.nav-menu-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 24px 0 0;
}

.nav-menu-link {
  display: flex;
  align-items: center;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 30px;
  /* font-weight: 600; */
  letter-spacing: 1px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  transition: color 0.35s ease;
}

.nav-menu-link span {
  display: inline-block;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #b8860b;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu-link:hover {
  color: #b8860b;
}

.nav-menu-link:hover span {
  transform: translateX(12px);
}

.nav-menu-link:hover::before {
  width: 60px;
}

/* Contact block: address, email, mobile, social */
.nav-contact-block {
  background: #f8f8f8;
  border-radius: 12px;
  padding: 28px 24px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-contact-heading {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: capitalize;
  color: #b8860b;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(184, 134, 11, 0.25);
}

.nav-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nav-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: #444;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.55;
  transition: color 0.25s ease;
}

.nav-contact-item:hover {
  color: #1a1a1a;
}

.nav-contact-item:hover .nav-contact-icon {
  background: #b8860b;
  color: #fff;
}

.nav-contact-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #b8860b;
  font-size: 14px;
  transition: background 0.25s ease, color 0.25s ease;
}

.nav-contact-text {
  flex: 1;
  letter-spacing: 1px;
}

.nav-contact-text strong {
  color: #1a1a1a;
  font-size: 14px;
}

.nav-social-wrap {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-social-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 12px;
}

.nav-social {
  display: flex;
  gap: 10px;
}

.nav-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
  font-size: 14px;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.nav-social a:hover {
  background: #b8860b;
  border-color: #b8860b;
  color: #fff;
  transform: translateY(-2px);
}

.nav-menu-img {
  width: 100%;
  /* max-width: 280px;
  height: 180px; */
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.nav-menu-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.nav-menu-img:hover img {
  transform: scale(1.05);
}

@media (max-width: 991px) {
  .nav-overlay-inner .container-fluid {
    padding-left: 24px;
    padding-right: 24px;
  }

  .nav-overlay-inner .row {
    flex-direction: column;
    align-items: flex-start !important;
  }

  .nav-overlay-inner .col-4 {
    max-width: 100%;
    flex: 0 0 100%;
  }

  .nav-contact-block {
    width: 100%;
    max-width: 360px;
  }

  .nav-menu-img {
    max-width: 320px;
    height: 200px;
  }
}

@media (max-width: 768px) {
  .nav-overlay-inner {
    padding: 60px 20px;
  }

  .nav-menu-link {
    font-size: 18px;
  }

  .nav-contact-block {
    margin-top: 20px;
  }
}

@media (max-width: 767px) {
  .nav-close-fixed {
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .nav-menu-link {
    font-size: 20px;
    padding: 10px 0;
  }

  .nav-utility-link span {
    display: none;
  }
}




.creative-fullpage--slider {
  background-color: #ffffff;
  z-index: 2;
  width: 100%;
  position: relative;
  flex-direction: column;
  height: 100vh;
  font-size: 16px;
  display: flex;
  clip-path: none !important;
}

.creative-fullpage--slider .slider-inner {
  background: #000;
  height: 100vh;
  position: relative;
}

.creative-fullpage--slider .swiper-slide {
  position: relative;
  display: flex;
  justify-content: center;
  text-align: left;
  flex-direction: column;
  overflow: hidden;
}

.creative-fullpage--slider .swiper-slide .slider-inner img {
  object-fit: cover;
  width: 100%;
 height: 100svh;
}

.creative-fullpage--slider .swiper-slide .slider-inner video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.creative-fullpage--slider .swiper-slide .slider-inner .swiper-content {
  position: absolute;
  top: 40%;
  left: 50px;
  z-index: 1;
}

.creative-fullpage--slider .swiper-slide .slider-inner::after {
  content: "";
  position: absolute;
  width: 101%;
  height: 100%;
  top: 0;
  left: -1px;
  background: rgb(0, 0, 0); 
  z-index: 1;
}

.swiper-slide .slider-inner .swiper-content .title-area .tag {
  color: #ffffff;
  font-weight: 900;
  font-size: 24px;
  margin-bottom: 4px;
  margin-top: 0px;
}

.swiper-slide .slider-inner .swiper-content .title-area .title {
  margin-top: 10px;
  color: #fff;
  font-size: 8vw;
  font-family: "Inter", sans-serif;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 10px;
  margin-left: -12px;
  text-decoration: none;
}

.swiper-slide .slider-inner .swiper-content p.disc {
  font-size: 20px;
  width: 100%;
  margin-top: 15px;
  margin: 20px 0px 40px 0px;
  font-weight: 400;
  line-height: 32px;
  color: #FFFFFFB0;
}

.creative-btn--wrap .creative-slide--btn {
  color: #ffffff;
  margin-left: 18px;
  font-size: 1.4em;
  transition: margin-left 300ms cubic-bezier(0.49, 0, 0.01, 1);
  font-weight: 400;
  display: inline-flex;
  position: relative;
  white-space: nowrap;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  user-select: none;
  outline: none;
  outline-color: transparent;
  box-shadow: none;
  will-change: transform;
  backface-visibility: hidden;
}

.creative-btn--circle .circle {
  position: absolute;
  right: calc(100% - 10px);
  top: 0;
  bottom: 0;
  margin: auto;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  clip-path: circle(25% at 50% 50%);
  transition: clip-path 500ms cubic-bezier(0.49, 0, 0.01, 1);
}

.creative-btn--circle .circle .circle-fill {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 100%;
  background-color: #ffffff;
  will-change: transform;
  transform: scale(0);
  z-index: 1;
  transition: transform 500ms cubic-bezier(0.49, 0, 0.01, 1), background-color 500ms cubic-bezier(0.49, 0, 0.01, 1);
}

.creative-btn--circle .circle-icon {
  transform: translate(-100%, 0%);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  z-index: 2;
  transition: all 500ms cubic-bezier(0.49, 0, 0.01, 1);
}

.creative-btn--circle .circle-icon .icon-arrow {
  width: 20px;
  height: 20px;
  stroke: none;
  fill: #000;
}

.creative-btn--circle .circle-outline {
  fill: transparent;
  width: 10px;
  stroke: #ffffff;
}

.creative-btn--wrap .creative-slide--btn .creative-btn--label {
  margin-left: 4pt;
  transition: transform 500ms cubic-bezier(0.49, 0, 0.01, 1);
}

.creative-btn--wrap .creative-slide--btn .creative-btn__border {
  position: absolute;
  left: 4pt;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transform-origin: right;
  transition: transform 500ms cubic-bezier(0.49, 0, 0.01, 1);
}

.creative-btn--wrap .creative-slide--btn:hover .creative-btn--label {
  transform: translateX(18px);
}

.creative-btn--wrap .creative-slide--btn:hover .creative-btn__border {
  transform: scale(0, 1);
}

.creative-btn--wrap .creative-slide--btn:hover {
  margin-left: 38px !important;
}

.creative-btn--wrap .creative-slide--btn:hover .circle {
  clip-path: circle(50% at 50% 50%);
}

.creative-btn--wrap .creative-slide--btn:hover .circle-fill {
  transform: scale(1, 1);
}

.creative-btn--wrap .creative-slide--btn:hover .circle-icon {
  transform: translate(0%, 0%);
  opacity: 1;
}

.creative-fullpage--slider .swiper-container-h .swiper-button-next,
.creative-fullpage--slider .swiper-container-h .swiper-button-prev {
  bottom: 5%;
  top: unset;
  transform: scale(1);
  transition: all 0.4s;
  background-color: #FFFFFF00;
  backdrop-filter: blur(20px);
  height: 85px;
  width: 85px;
  line-height: 85px;
  border-radius: 50%;
  transition: all 0.4s;
}

.creative-fullpage--slider .swiper-container-h .swiper-button-next {
  right: 50px;
}

.creative-fullpage--slider .swiper-container-h .swiper-button-prev {
  left: 50px;
}

.swiper-container-h .slider-pagination-area {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: unset;
  right: unset;
  bottom: 80px;
  left: 50% !important;
  transform: translateX(-50%);
  width: 500px;
  z-index: 1;
}

.swiper-container-h .slider-pagination-area .slide-range {
  font-size: 16px;
  font-weight: 500;
  margin: 0 15px;
  color: #ffffff;
  line-height: 0;
  position: absolute;
  font-size: 20px;
}

.swiper-container-h .slider-pagination-area .slide-range.one {
  left: -50px;
}

.swiper-container-h .slider-pagination-area .slide-range.three {
  right: -50px;
}

.swiper-container-h .slider-pagination-area .swiper-pagination {
  bottom: 0 !important;
  width: 500px !important;
}

.swiper-container-h .slider-pagination-area .swiper-pagination .swiper-pagination-progressbar-fill {
  background: #ffffff;
}

.swiper-container-h .swiper-button-next::after {
  content: "\f061";
  font-family: var(--fa-style-family, "Font Awesome 6 Free");
  font-weight: var(--fa-style, 900);
  background: none;
  color: #ffffff;
  font-size: 60px;
}

.swiper-container-h .swiper-button-prev::after {
  content: "\f060";
  font-family: var(--fa-style-family, "Font Awesome 6 Free");
  font-weight: var(--fa-style, 900);
  background: none;
  color: #ffffff;
  font-size: 60px;
}

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

.swiper-container-h .swiper-button-next:hover,
.swiper-container-h .swiper-button-prev:hover {
  background: #FFFFFF0D;
}


/* ====================== Responsive Ipad =============================== */
@media (max-width: 991px) {
  .creative-fullpage--slider .swiper-slide .slider-inner .swiper-content {
    width: 100%;
    text-align: center;
    left: 0;
  }

  .creative-fullpage--slider .swiper-container-h .swiper-button-next,
  .creative-fullpage--slider .swiper-container-h .swiper-button-prev {
    height: 50px;
    width: 50px;
    line-height: 50px;
  }

  .swiper-container-h .slider-pagination-area {
    width: 200px !important;
  }

  .swiper-container-h .swiper-button-next::after,
  .swiper-container-h .swiper-button-prev::after {
    font-size: 30px;
  }

  .creative-fullpage--slider .swiper-container-h .swiper-button-next,
  .creative-fullpage--slider .swiper-container-h .swiper-button-prev {
    background: #ffffff3b;
  }

  .swiper-container-h .slider-pagination-area .swiper-pagination {
    bottom: 0 !important;
    width: 200px !important;
  }
}

/* ====================== Responsive Iphone =============================== */
@media screen and (max-width: 767px) {
  .swiper-slide .slider-inner .swiper-content .title-area .title {
    font-size: 64px;
  }

  .swiper-slide .slider-inner .swiper-content .title-area .tag {
    margin-bottom: 0px;
  }

  .swiper-slide .slider-inner .swiper-content p.disc {
    margin: 20px auto 20px auto;
    font-size: 16px;
    width: 95%;
  }

  .swiper-container-h .slider-pagination-area {
    display: none;
  }

  .swiper-slide .slider-inner .swiper-content p.disc br {
    display: none;
  }
}






/* About us page */

.inner-menu a {
  color: #333;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  position: relative;
  font-family: 'Avenir', serif;
  font-size: 17px;
}

.inner-menu a:hover {
  color: #b8860b;
}

.inner-menu a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: #b8860b;
  transition: all 0.5s ease;
}

.inner-menu a:hover::after {
  width: 100%;
}

.about-section {
  position: relative;
  overflow: hidden;
}

.about-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #d7b984c2;
  z-index: 1;
}

.header-banner-image {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  display: block;
}

.banner-content {
  z-index: 2;
  width: 100%;
}




.about-image-wrapper {
  position: relative;
  overflow: hidden;
}


.about-image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}



.banner-title {
  font-size: clamp(32px, 4vw, 102px);
  color: transparent;
  text-align: center;
  padding: 0 15px;
  font-family: 'Bigilla', sans-serif;
  color: #000;
  font-weight: 700;
}

@media (max-width: 576px) {
  .banner-title {
    font-size: clamp(24px, 6vw, 44px);
  }
}


.who-bg-text {
  font-size: 130px;
  color: #f2f2f2;
  letter-spacing: -3px;
  pointer-events: none;
  user-select: none;
  top: 50px;
  transform: translateX(-50%);
  white-space: nowrap;
}

.big-intro-text {
  font-size: 32px;
  line-height: 1.3;
  font-family: "Georgia", serif;
  color: #111;
}


.who-section {
  padding-top: 120px !important;
  /* padding-bottom: 120px !important; */
}


@media (max-width: 992px) {
  .who-bg-text {
    font-size: 90px;
    top: 20px;
  }

  .big-intro-text {
    font-size: 26px;
  }
}

@media (max-width: 576px) {
  .who-bg-text {
    font-size: 55px;
  }
}


/* about us scrolling */
.why-choose-heading {
  background-color: #fff;
  padding: 64px 32px 72px;
}

.why-choose-title {
  font-size: 36px;
  font-weight: bold;
  color: #000;
}

.why-choose-heading .why-choose-text-p {
  color: #000;
}

.why-choose-text-p {
  font-size: 20px;
}

.events-page {
  overflow: hidden;
}

.pinWrapper {
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 11;
}

.scrollmagic-pin-spacer {
  position: absolute !important;
  clip: rect(auto, auto, auto, auto);
}

.event {
  position: relative;
  overflow: hidden;
  height: 100svh;
  width: 100vw;
  z-index: 1;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #fff;
}

.event::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.event h2 {
  margin-bottom: 12px;
  font-size: 36px;
  font-weight: 600;
  text-transform: capitalize !important;
}

.event p {
  font-size: 20px;
}

#section1.event::before {
  background-color: rgb(21 22 28 / 15%);
}

#section2.event::before {
  background-color: rgb(21 22 28 / 34%);
}

#section3.event::before {
  background-color: rgb(86 82 76 / 57%);
}

#section4.event::before {
  background-color: rgb(120 115 103 / 58%);
}

#section1 {
  background-image: url("../img/design-img.jpeg");
}

#section2 {
  background-image: url("../img/build-img.jpeg");
}

#section3 {
  background-image: url("../img/pmc-img.jpeg");
}

.image {
  height: 100%;
  width: 100%;
  top: 0%;
  left: 0%;
  position: absolute;
  background-size: cover;
  background-position: center center;
  transition: width 1s, height 1s;
  -webkit-transition: width 1s, height 1s;
  box-shadow: 2px 2px 10px 10px rgb(0 0 0 / 12%);
  -webkit-box-shadow: 2px 2px 10px 10px rgb(0 0 0 / 12%);
  transform-origin: center;
  -webkit-transform-origin: center;
  z-index: 8888;
  overflow: hidden;
  border-radius: 0;
}

.image:not(#loaderVideo) {
  top: -50%;
  width: 500px;
  height: 500px;
  left: auto;
  right: 100px;
  position: absolute;
  border-radius: 12px;
  transform: translate(0%, -50%);
  -webkit-transform: translate(0%, -50%);
}

#section1 .image video {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  top: 0;
  left: 0;
}

#section2 .image {
  background-image: url("../img/build-img.jpeg");
}

#section3 .image {
  background-image: url("../img/pmc-img.jpeg");
}

/* #section4 .image {
  background-image: url("../img/03.jpeg");
} */

/* Section Text */
.text {
  top: -50%;
  left: 0;
  position: absolute;
  transform: translate(100px, -50%);
  -webkit-transform: translate(100px, -50%);
  width: 43%;
}

#section1 .text {
  top: 50%;
}

/* Scroll Button */
.scrollBtn {
  position: absolute;
  bottom: 2.5%;
  left: 50%;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  width: 100px;
  height: auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  z-index: 1;
  transition: all ease-in-out 0.35s;
  -webkit-transition: all ease-in-out 0.35s;
}

.scrollBtn.move {
  visibility: hidden;
  opacity: 0;
}

.scrollBtn span {
  width: 12px;
  height: 12px;
  display: block;
  border-bottom: 2px solid var(--white);
  border-right: 2px solid var(--white);
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  animation: animate 2s infinite;
  -webkit-animation: animate 2s infinite;
  margin: auto;
}

.scrollBtn h6 {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Titillium Web", sans-serif;
  text-align: center;
  text-transform: uppercase;
  -webkit-text-transform: uppercase;
  letter-spacing: 2px;
}

@keyframes animate {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-10px, -10px);
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: rotate(45deg) translate(10px, 10px);
  }
}

@-webkit-keyframes animate {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-10px, -10px);
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: rotate(45deg) translate(10px, 10px);
  }
}

/* Preloader */
/* #preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 1s;
  -webkit-transition: all 1s;
}
#preloader img,
#preloader video {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
#preloader::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: 1;
} */
.text-wrapper {
  text-align: center;
  height: 24px;
  overflow: hidden;
  transition: opacity 1s;
  -webkit-transition: opacity 1s;
}

#first-text {
  animation: moveUp 1s 1s forwards;
  -webkit-animation: moveUp 1s 1s forwards;
}

#second-text {
  opacity: 0;
  transform: translateY(-30px);
  -webkit-transform: translateY(-30px);
  animation: scrollup 1s 1.2s forwards, moveUpAgain 1s 2.2s forwards;
  -webkit-animation: scrollup 1s 1.2s forwards, moveUpAgain 1s 2.2s forwards;
}

@keyframes moveUp {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(-100px);
    opacity: 0;
  }
}

@-webkit-keyframes moveUp {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(-100px);
    opacity: 0;
  }
}

@keyframes scrollup {
  100% {
    transform: translateY(-54px);
  }
}

@-webkit-keyframes scrollup {
  100% {
    transform: translateY(-54px);
  }
}

@keyframes moveUpAgain {
  0% {
    transform: translateY(-54px);
    opacity: 1;
  }

  60% {
    transform: translateY(-54px);
    opacity: 1;
  }

  100% {
    transform: translateY(-60px);
    opacity: 0;
  }
}

@-webkit-keyframes moveUpAgain {
  0% {
    transform: translateY(-54px);
    opacity: 1;
  }

  60% {
    transform: translateY(-54px);
    opacity: 1;
  }

  100% {
    transform: translateY(-60px);
    opacity: 0;
  }
}

/* Media Query */
@media screen and (max-width: 1399px) {
  h2 {
    font-size: 22px;
  }

  p {
    font-size: 20px;
  }

  .text {
    transform: translate(60px, -50%);
    -webkit-transform: translate(60px, -50%);
  }

  .image:not(#loaderVideo) {
    height: 450px;
    width: 450px;
    right: 80px;
    transform: translate(0%, -50%);
    -webkit-transform: translate(0%, -50%);
  }
}

@media screen and (max-width: 1199px) {
  h2 {
    font-size: 20px;
  }

  p {
    font-size: 16px;
  }

  .text {
    transform: translate(40px, -50%);
    -webkit-transform: translate(40px, -50%);
    width: 44%;
  }

  .image:not(#loaderVideo) {
    height: 400px;
    width: 400px;
    right: 60px;
    transform: translate(0%, -50%);
    -webkit-transform: translate(0%, -50%);
  }
}

@media screen and (max-width: 991px) {
  h2 {
    font-size: 18px;
  }

  p {
    font-size: 12px;
  }

  .text {
    transform: translate(24px, -50%);
    -webkit-transform: translate(24px, -50%);
    width: 44%;
  }

  .image:not(#loaderVideo) {
    height: 310px;
    width: 310px;
    right: 40px;
    transform: translate(0%, -50%);
    -webkit-transform: translate(0%, -50%);
  }
}

@media screen and (max-width: 767px) {
  h2 {
    font-size: 16px;
  }

  p {
    font-size: 11px;
  }

  .image:not(#loaderVideo) {
    height: 220px;
    width: 220px;
  }
}

@media screen and (max-width: 576px) {
  .text {
    top: -36%;
    width: 100%;
    width: calc(100% - 80px);
  }

  #section1 .text {
    top: 64%;
  }

  .image:not(#loaderVideo) {
    top: -75%;
    left: 24px;
    right: auto;
    transform: translate(0%, -25%);
    -webkit-transform: translate(0%, -25%);
  }
}


.design-section {
  position: relative;
  padding: 60px 0;
  width: 90%;
  max-width: 1200px;
  margin: auto;
}


.big-title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #111;
}

.para {
  font-size: 18px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
}

.design-image {
  width: 100%;
  margin: 60px 0;
  opacity: 1;
}

.parallax-img {
  position: relative;
  overflow: visible !important;
}


.parallax-img img {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.3s ease-out;
}


.reveal {
  opacity: 0;
  transform: translateY(50px);
}


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

.footer-links a {
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #b8860b;
  padding-left: 4px;
}


.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #333;
  transition: all 0.35s ease;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.1);
}

.social-icon:hover {
  background: #b8860b;
  color: #fff;
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 8px 20px rgba(184, 134, 11, 0.4);
}

.architecture-text {
  color: #d4d4d4 !important;
}

.architecture-tag {
  font-size: 48px;
  font-family: 'Bigilla', sans-serif;
  color: #000;
  text-align: center;
}

/* .architecture-line{
 border-right: 2px solid;
 height: 100%;
 display: block;
} */

.architecture-row::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 80%;
  background: #d4d4d4;
}


.architecture-text-span {
  font-size: 48px;
  font-family: 'Bigilla', sans-serif;
  font-weight: 700;
  color: #000;
}

/* ============================================================
   SECOND SECTION: STICKY IMAGE + CONTENT CARDS
============================================================ */
.second-section {
  color: #fff;
  overflow: visible;
}

/* Sticky image – sticks when it touches top */
.second-section__sticky-img {
  position: sticky;
  top: 0;
  z-index: 1;
  line-height: 0;
}

.second-section__sticky-img img {
  width: 100%;
  height: auto;
  max-height: 85vh;
  object-fit: cover;
  filter: brightness(0.75);
  display: block;
}

.second-section__content {
  position: relative;
  z-index: 2;
  margin-top: -120px;
  padding-bottom: 60px;
}

.second-section__cards {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.second-section__card {
  flex: 1 1 280px;
  max-width: 360px;
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  color: #111;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.second-section__card-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111;
  font-family: 'Ibarra Real Nova', sans-serif;
}

.second-section__card-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .second-section__content {
    margin-top: -60px;
  }

  .second-section__card {
    max-width: 100%;
  }
}

/* ============================================================
   PRODUCT LISTING – HOUSE UI
============================================================ */
.mt70 {
  margin-top: 70px;
}

.product-listing-section {
  position: relative;
}

.product-listing-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url("../img/bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  opacity: 0.1;
}

.product-kicker {
  color: #d4af37;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 600;
}

.product-title {
  color: #000;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.1;
}

.product-subtitle {
  max-width: 720px;
  /* color: rgba(255, 255, 255, 0.72); */
  font-size: 18px;
}

.product-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.filter-chip {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #000;
  color: rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 14px;
  transition: all 0.25s ease;
}

.filter-chip:hover,
.filter-chip.is-active {
  background: #d4af37;
  color: #111;
  border-color: #d4af37;
}

.home-card {
  display: block;
  /* height: 100%; */
  background: rgba(255, 255, 255, 0.96);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.home-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.home-card-media {
  position: relative;
}

.home-card-media img {
  height: 400px;
  object-fit: cover;
}

.details-clip-img {
  clip-path: inset(0 0 0 0);
  -webkit-clip-path: inset(0 0 0 0);
  will-change: clip-path;
}

.home-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #d4af37;
  color: #111;
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  padding: 5px 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.home-card-body {
  padding: 20px;
}

.home-title {
  font-size: 21px;
  margin-bottom: 8px;
  color: #111;
  font-weight: 700;
}

.product-category-section .home-title {

  font-size: 20px;
  margin-bottom: 8px;
  color: #111;
  font-weight: 700;
  padding: 16px;
  text-align: center;

}

.home-location {
  color: #6f6f6f;
  font-size: 14px;
}

.home-location i,
.home-meta i {
  color: #d4af37;
  margin-right: 6px;
}

.home-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  color: #373737;
  font-size: 14px;
}

.home-meta li {
  display: inline-flex;
  align-items: center;
  background: #f7f7f7;
  border-radius: 999px;
  padding: 6px 10px;
}

.home-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.home-amenities span {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(212, 175, 55, 0.5);
  color: #7a6220;
  background: rgba(212, 175, 55, 0.12);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 10px;
  letter-spacing: 0.2px;
}

.home-card-footer {
  /* border-top: 1px solid #ececec; */
  /* margin-top: 12px;
  padding-top: 16px; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  /* display: block; */
}

.home-price {
  font-size: 24px;
  color: #111;
  font-weight: 700;
}

.price-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.price-label {
  font-size: 12px;
  color: #8a8a8a;
  text-transform: uppercase;
  letter-spacing: 0.9px;
}

.home-cta {
  display: inline-block;
  background: #111;
  color: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 14px;
  transition: all 0.25s ease;
}

.home-cta:hover {
  background: #d4af37;
  color: #111;
}

.listing-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 14px;
}

.listing-search-wrap {
  flex: 1 1 300px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 10px 12px;
}

.listing-search-wrap i {
  color: #999;
}

.listing-search-wrap input {
  border: 0;
  outline: 0;
  width: 100%;
  background: transparent;
  font-size: 14px;
}

.listing-sort-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.listing-sort-wrap label {
  font-size: 14px;
  color: #444;
  font-weight: 600;
}

.listing-sort-wrap select {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
  background: #fff;
  color: #222;
}

.listing-result-line {
  background: rgba(255, 255, 255, 0.72);
  border-left: 4px solid #d4af37;
  border-radius: 10px;
  padding: 12px 16px;
  color: #2d2d2d;
}

.listing-pagination-wrap {
  display: flex;
  justify-content: center;
}

.listing-pagination {
  display: flex;
  align-items: center;
  gap: 10px;
}

.listing-pagination a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #ddd;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #444;
  background: #fff;
  transition: all 0.25s ease;
}

.listing-pagination a:hover,
.listing-pagination a.is-active {
  background: #111;
  color: #fff;
  border-color: #111;
}

@media (max-width: 767.98px) {
  .listing-toolbar {
    padding: 12px;
  }

  .listing-sort-wrap {
    width: 100%;
    justify-content: space-between;
  }

  .listing-sort-wrap select {
    flex: 1 1 auto;
  }
}

/* ============================================================
   CONTACT PAGE UI
============================================================ */
.contact-section {
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url("../img/bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  opacity: 0.1;
}

.contact-panel {
  height: 100%;
  background: #101114;
  color: #fff;
  border-radius: 18px;
  padding: 30px 24px;
}

.contact-kicker {
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  font-size: 13px;
}

.contact-title {
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 14px;
}

.contact-copy {
  color: rgba(255, 255, 255, 0.78);
}

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

.contact-item span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  color: #d4af37;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 42px;
}

.contact-item p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.66);
}

.contact-item a {
  color: #fff;
  font-weight: 600;
}

.contact-form-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 0 16px 38px rgba(16, 17, 20, 0.12);
  height: 100%;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form-grid .full {
  grid-column: 1 / -1;
}

.contact-form-grid .form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 7px;
  color: #3e3e3e;
}

.contact-form-grid input,
.contact-form-grid textarea,
.contact-form-grid select {
  width: 100%;
  border: 1px solid #e2e5ef;
  border-radius: 10px;
  padding: 11px 12px;
  font-size: 14px;
  background: #fff;
  color: #222;
  outline: none;
}

.contact-form-grid input:focus,
.contact-form-grid textarea:focus,
.contact-form-grid select:focus {
  border-color: #d4af37;
}

.contact-submit-btn {
  background: #111;
  color: #fff;
  padding: 12px 24px;
  font-weight: 600;
  transition: 0.25s ease;
}

.contact-submit-btn:hover {
  background: #d4af37;
  color: #111;
}

.contact-map-wrap iframe {
  width: 100%;
  height: 360px;
  border: 0;
  box-shadow: 0 16px 36px rgba(16, 17, 20, 0.12);
}

@media (max-width: 767.98px) {
  .contact-form-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   PROJECT DETAILS PAGE UI
============================================================ */
.project-details-section {
  background: #fff;
}

.project-top-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 26px;
  /* box-shadow: 0 18px 45px rgba(16, 17, 20, 0.1); */
}

.project-kicker {
  color: #d4af37;
  letter-spacing: 1.2px;
  font-size: 13px;
  font-weight: 700;
}

.project-main-title {
  font-size: clamp(22px, 3vw, 46px);
  color: #111;
  line-height: 1.1;
}

.project-main-copy {
  color: #5b5b5b;
  font-size: 16px;
  max-width: 620px;
}

@media (max-width: 768px) {
  .project-main-copy {
    font-size: 15px;
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .project-main-copy {
    font-size: 14px;
    max-width: 100%;
  }
}


.project-quick-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.project-quick-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f5f5f5;
  border-radius: 999px;
  font-size: 13px;
  padding: 7px 12px;
  color: #373737;
}

.project-quick-meta i {
  color: #d4af37;
}

.project-price-box {
  background: #111319;
  color: #fff;
  border-radius: 16px;
  padding: 24px 20px;
}

.project-price-box p {
  color: rgba(255, 255, 255, 0.74);
}

.project-price-box h3 {
  font-size: 42px;
  color: #d4af37;
}

.project-price-box li {
  border-top: 1px dashed rgba(255, 255, 255, 0.18);
  padding-top: 9px;
  margin-top: 9px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
}

.project-price-box li strong {
  color: #fff;
}

.project-stat-card {
  height: 100%;
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  border: 1px solid #ececf0;
}

.project-stat-card h4 {
  font-size: 34px;
  margin-bottom: 6px;
  color: #111;
}

.project-stat-card p {
  color: #666;
  font-size: 14px;
}

.project-gallery-wrap {
  background: #fff;
  border: 1px solid #ececf0;
  border-radius: 16px;
  padding: 18px;
}

.project-gallery-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.project-gallery-head h3 {
  font-size: 28px;
}

@media (max-width: 991px){
  .project-gallery-head h3{
    font-size: 24px;
  }
}

@media (max-width: 576px){
  .project-gallery-head h3{
    font-size: 20px;
  }
}

.project-gallery-head p {
  color: #646464;
  font-size: 14px;
  font-weight: 600;
}

.project-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.project-gallery-item {
  position: relative;
  overflow: hidden;
  min-height: 140px;
}

.project-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.project-gallery-item:hover img {
  transform: scale(1.05);
}

.project-gallery-item--xl {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 292px;
}

.project-gallery-item--cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 19, 25, 0.5);
}

.project-gallery-item--cta span {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
}

.project-detail-card {
  border-radius: 16px;
  border-left: 5px solid #e7c137;
  padding: 24px 22px;
}

.project-detail-card h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

@media (max-width: 991px) {
  .project-detail-card h3 {
    font-size: 22px;
  }
}

@media (max-width: 576px) {
  .project-detail-card h3 {
    font-size: 18px;
  }
}

.project-detail-card p {
  color: #626262;
}

.project-highlights li {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  color: #343434;
}

.project-highlights i {
  color: #d4af37;
  margin-top: 4px;
}

.timeline-item {
  border-left: 2px solid #e6e6ea;
  padding-left: 14px;
  margin-bottom: 14px;
  position: relative;
}

.timeline-item::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d4af37;
  position: absolute;
  left: -5px;
  top: 3px;
}

.timeline-item h6 {
  margin-bottom: 4px;
  font-size: 15px;
}

.project-cta-wrap {
  background: #f7f7f7;
  border-radius: 18px;
  padding: 34px 20px;
}

.project-cta-wrap h3 {
  font-size: 34px;
}

@media (max-width: 991px){
  .project-cta-wrap h3{
    font-size: 28px
  }
}

@media (max-width: 576px){
  .project-cta-wrap h3{
    font-size: 22px
  }
}


 

.project-cta-btn {
  display: inline-block;
  border-radius: 999px;
  background: #111;
  color: #fff;
  padding: 12px 24px;
  font-weight: 700;
  transition: all 0.25s ease;
}

.project-cta-btn:hover {
  background: #d4af37;
  color: #fff;
}

@media (max-width: 767.98px) {

  .project-top-card,
  .project-detail-card {
    padding: 20px 16px;
  }

  .project-price-box h3 {
    font-size: 32px;
  }

  .project-gallery-wrap {
    padding: 14px;
  }

  .project-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .project-gallery-item {
    min-height: 120px;
  }

  .project-gallery-item--xl {
    grid-column: span 2;
    grid-row: auto;
    min-height: 220px;
  }
}

/* ============================================================
   PRODUCT CATEGORY – INTRO HEADING UI
============================================================ */
.category-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  margin-top: 20px;
  padding: 0 80px;
  margin-bottom: 40px;
}

.category-intro-left {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 20px;
}

.category-intro-line {
  width: 70px;
  height: 2px;
  background: #111;
  margin-top: 12px;
}

.category-intro-title {
  font-family: "Arial Black", "Impact", sans-serif;
  font-size: clamp(26px, 3.0vw, 40px);
  line-height: 1.15;
  letter-spacing: 1px;
  color: #111;
  max-width: 520px;
}

.category-intro-title span {
  display: block;
  margin-top: 6px;
  color: transparent;
  -webkit-text-stroke: 1.2px #6a6a6a;
}

.category-intro-right {
  display: flex;
  justify-content: center;
}

.category-intro-right p {
  max-width: 420px;
  color: #555;
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.8;
}

.category-intro-eyebrow {
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #d4af37;
  margin-bottom: 12px;
  font-weight: 500;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

@media (max-width: 1200px) {
  .category-intro {
    padding: 0 60px;
    gap: 30px;
  }
}

@media (max-width: 991.98px) {
  .category-intro {
    grid-template-columns: 1fr;
    padding: 0 40px;
    gap: 28px;
  }

  .category-intro-right {
    justify-content: flex-start;
  }

  .category-intro-right p {
    max-width: 100%;
  }

  .category-intro-line {
    width: 60px;
  }
}

@media (max-width: 768px) {
  .category-intro {
    padding: 0 24px;
    gap: 22px;
  }

  .category-intro-title {
    line-height: 1.2;
  }

  .category-intro-right {
    display: none;
  }
}

@media (max-width: 480px) {
  .category-intro {
    padding: 0 16px;
  }

  .category-intro-title {
    font-size: 26px;
  }

  .category-intro-eyebrow {
    font-size: 11px;
    letter-spacing: 2px;
  }
}

/* =====================================================
   MODERN CONTACT SECTION
===================================================== */

.contact-modern {
  background: #f3f3f3;
  padding: 120px 0;
  overflow: hidden;
  align-items: center;
  text-align: center;
}

.contact-wrapper {
  position: relative;
}

/* LEFT SIDE */

.contact-form-box {
  background: #d7b9845c;
  padding: 20px 80px;
  min-height: 760px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-title {
  font-size: clamp(52px, 6vw, 96px);
  font-family: 'Bigilla', sans-serif;
  font-weight: 700;
  margin-bottom: 70px;
  line-height: 1;
  color: #111;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  border: none;
  border-bottom: 2px solid #222;
  background: transparent;
  padding: 0 0 18px;
  font-size: 17px;
  outline: none;
  resize: none;
  color: #111;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #777;
}

.form-group select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23222' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
}

.form-group select:invalid {
  color: #777;
}

.contact-btn {
  width: fit-content;
  padding: 18px 42px;
  border: 2px solid #111;
  background: transparent;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  transition: 0.4s ease;
}

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

/* RIGHT SIDE */

.contact-info-box {
  background: linear-gradient(135deg, #161827, #212529);
  color: #fff;
  padding: 70px 55px;
  width: 115%;
  margin-left: -90px;
  position: relative;
  z-index: 5;
  box-shadow: 0 20px 70px rgba(0,0,0,0.18);
}

.contact-info-box h3 {
  font-size: 54px;
  font-family: 'Bigilla', sans-serif;
  font-weight: 500;
  margin-bottom: 55px;
  line-height: 1;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 42px;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: rgba(184, 134, 11, 0.12);
  color: #d4af37;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.info-content {
  flex: 1;
}

.info-content span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
}

.info-content a,
.info-content p {
  color: #fff;
  font-size: 18px;
  line-height: 1.8;
  margin: 0;
  word-break: break-word;
}

/* RESPONSIVE */

@media (max-width: 1199px) {

  .contact-form-box {
    padding: 70px 60px;
  }

  .contact-info-box {
    margin-left: -80px;
    width: 108%;
  }
}

@media (max-width: 991px) {

  .contact-modern {
    padding: 80px 0;
  }

  .contact-form-box {
    min-height: auto;
    padding: 60px 35px;
  }

  .contact-info-box {
    width: 100%;
    margin-left: 0;
    margin-top: -30px;
    padding: 50px 35px;
  }

  .contact-title {
    margin-bottom: 50px;
  }

  .contact-info-box h3 {
    font-size: 42px;
  }
}

@media (max-width: 576px) {

  .contact-form-box,
  .contact-info-box {
    padding: 40px 24px;
  }

  .contact-title {
    font-size: 44px;
    margin-bottom: 36px;
  }

  .contact-map-wrap iframe {
    height: 280px;
  }

  .contact-map-wrap {
    margin-top: 2.5rem !important;
  }

  .contact-info-box h3 {
    font-size: 36px;
  }

  .contact-form {
    gap: 34px;
  }

  .info-content a,
  .info-content p {
    font-size: 15px;
    line-height: 1.7;
  }

  .contact-btn {
    width: 100%;
  }
}

/* ============================================================
   OUR APPROACH - 3 COLUMN DARK UI
============================================================ */
.our-approach-section {
  background: #232428;
  border-radius: 4px;
  overflow: hidden;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* gap: 20px; */
}

.approach-card {
  min-height: 250px;
  padding: 34px 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
  position: relative;
  background: #232428;
  isolation: isolate;
}

.approach-card:last-child {
  border-right: 0;
}

.approach-no {
  font-size: 50px;
  line-height: 1;
  margin-bottom: 14px;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.35);
  font-family: "Arial Black", "Impact", sans-serif;
  position: relative;
  z-index: 2;
}

.approach-title {
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  color: #f2f2f2 !important;
  font-family: "Arial Black", "Impact", sans-serif;
  position: relative;
  z-index: 2;
}

.approach-text {
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82) !important;
  max-width: 95%;
  position: relative;
  z-index: 2;
}

.approach-card-image {
  padding: 0;
}

.approach-bg-img {
  width: 100%;
  height: 100%;
  /* min-height: 360px; */
  object-fit: cover;
  filter: grayscale(1);
  opacity: 0.32;
  visibility: visible;
  position: absolute;
  inset: 0;
  z-index: 0;
  transition: all 0.8s ease;
  filter: grayscale(1) brightness(0.5);
}

.approach-card:hover .approach-bg-img {
  opacity: 0.55;
  visibility: visible;
}

.approach-card:hover .approach-no {
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.55);
}

.approach-card:hover .approach-title,
.approach-card:hover .approach-text {
  color: #fff;
}

.our-approach-section [data-aos] {
  opacity: 1 !important;
  transform: none !important;
}

@media (max-width: 1199.98px) {
  .approach-title {
    font-size: 22px;
    letter-spacing: 2px;
  }

  .approach-text {
    font-size: 16px;
  }
}

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

  .approach-card {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .approach-card:last-child {
    border-bottom: 0;
  }
}

/* ============================================================
   PRODUCT CATEGORY - CINEMATIC SCROLL SYSTEM
============================================================ */
.pc-title-split {
  overflow: hidden;
}

.pc-title-split .pc-word {
  display: inline-block;
  padding-right: 0.18em;
}

.pc-card-3d,
.pc-depth-card {
  transform-style: preserve-3d;
  will-change: transform;
}

.pc-depth-showcase {
  perspective: 1000px;
}

.pc-depth-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pc-depth-card {
  background: #111319;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}

.pc-depth-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.pc-depth-content {
  padding: 16px 14px 18px;
}

.pc-depth-content h4 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 8px;
}

.pc-depth-content p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.65;
}

.pc-horizontal-section {
  background: #0d0f14;
  border-radius: 14px;
  padding: 18px 14px 14px;
  overflow: hidden;
}

.pc-horizontal-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  color: #fff;
  margin-bottom: 14px;
  padding: 0 8px;
}

.pc-horizontal-head h3 {
  font-size: 30px;
}

.pc-horizontal-head p {
  color: rgba(255, 255, 255, 1);
  font-size: 14px;
}

.pc-horizontal-pin {
  overflow: hidden;
}

.pc-horizontal-track {
  display: flex;
  gap: 14px;
  width: max-content;
  padding: 2px 6px 8px;
  position: relative;
  padding-bottom: 56.25%;
}

.pc-horizontal-item {
  width: min(56vw, 560px);
  height: min(58vh, 390px);
  border-radius: 14px;
  overflow: hidden;
  flex: 0 0 auto;
}

.pc-horizontal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
}

.afterimage {
  position: absolute;
  overflow: hidden;
  top: 0;
  transform: translate(100%, 0px);
}

.afterimage img {
  transform: translate(-100%, 0px);
}

@media (max-width: 991.98px) {
  .pc-depth-grid {
    grid-template-columns: 1fr;
  }

  .pc-depth-img {
    height: 220px;
  }

  .pc-horizontal-head h3 {
    font-size: 24px;
  }

  .pc-horizontal-item {
    width: 84vw;
    height: 44vh;
  }
}

.retail-outle-section {
  background: #fff;
  border-left: 5px solid #d4af37;
}

.retail-outle-section .pc-horizontal-head {
  color: #111;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 12px;
}

.retail-outle-section .pc-horizontal-head p {
  color: #111;
}

.retail-outle-section .pc-horizontal-item img {
  border-radius: 14px;
}

.retail-outle-section img {
  border-radius: 14px;
  width: 100%;
  object-fit: cover;
  height: 100%;
}

.details_page_section_left p{
  font-size: 20px;
 text-align: justify;
}

@media (max-width: 991px) {
  .details_page_section_left p{
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .details_page_section_left p{
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  .details_page_section {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }

  .project-details-section .mt-5 {
    margin-top: 10px !important;
  }

  .details-clip-img {
    margin-bottom: 0;
  }
}

@media (max-width: 576px) {
  .details_page_section {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }

  .project-details-section .mt-5 {
    margin-top: 5px !important;
  }
}

@media (max-width: 991px) {
  .mt70 {
    margin-top: 10px !important;
  }
}

@media (max-width: 576px) {
  .mt70 {
    margin-top: 5px !important;
  }
}

/* ============================================================
   INNER-MENU DROPDOWN – Projects
   Scoped to .inner-menu .has-dropdown — zero conflicts
============================================================ */
.inner-menu .has-dropdown {
  position: relative;
}

.inner-menu .dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.inner-menu .dropdown-trigger .drop-arrow {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid #333;
  border-bottom: 1.5px solid #333;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.35s cubic-bezier(0.33, 1, 0.68, 1),
  border-color 0.3s ease;
  margin-top: 1px;
}

.inner-menu .has-dropdown:hover .drop-arrow,
.inner-menu .has-dropdown:focus-within .drop-arrow {
  transform: rotate(-135deg) translateY(-2px);
  border-color: #b8860b;
}

/* The panel */
.inner-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 170px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.13), 0 4px 12px rgba(0, 0, 0, 0.06);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.32s cubic-bezier(0.33, 1, 0.68, 1),
              transform 0.32s cubic-bezier(0.33, 1, 0.68, 1),
              visibility 0s step-end;
  z-index: 9000;
}


/* Pointer notch */
.inner-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 11px;
  height: 11px;
  background: #fff;
  border-left: 1px solid rgba(0, 0, 0, 0.07);
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 2px 0 0 0;
}

.inner-menu .has-dropdown:hover .inner-dropdown,
.inner-menu .has-dropdown:focus-within .inner-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
  transition: opacity 0.32s cubic-bezier(0.33, 1, 0.68, 1),
              transform 0.32s cubic-bezier(0.33, 1, 0.68, 1),
              visibility 0s step-start;
}

/* Items */
.inner-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 10px;
  color: #222;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  text-decoration: none;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
  position: relative;
  overflow: hidden;
}

.inner-dropdown-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  width: 0;
  height: 1.5px;
  background: #b8860b;
  transition: width 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

.inner-dropdown-item:hover {
  background: rgba(184, 134, 11, 0.07);
  color: #b8860b;
  transform: translateX(3px);
}

.inner-dropdown-item:hover::after {
  width: calc(100% - 28px);
}

/* Icon badge */
.inner-dropdown-item .drop-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(184, 134, 11, 0.1);
  color: #b8860b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex: 0 0 34px;
  transition: background 0.22s ease;
}

.inner-dropdown-item:hover .drop-icon {
  background: rgba(184, 134, 11, 0.18);
}

.inner-dropdown-item .drop-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.inner-dropdown-item .drop-label small {
  font-size: 11px;
  font-weight: 400;
  color: #888;
  letter-spacing: 0.1px;
}

.inner-dropdown-item:hover .drop-label small {
  color: #b8860b;
}

/* Stagger entrance for the two items */
.inner-dropdown-item:nth-child(1) { transition-delay: 0.04s; }
.inner-dropdown-item:nth-child(2) { transition-delay: 0.08s; }

@media (max-width: 991px) {
  .inner-dropdown {
    left: 0;
    transform: translateX(0) translateY(-6px);
  }

  .inner-menu .has-dropdown:hover .inner-dropdown,
  .inner-menu .has-dropdown:focus-within .inner-dropdown {
    transform: translateX(0) translateY(0);
  }

  .inner-dropdown::before {
    left: 30px;
  }
}

/* Bridge the gap so hover stays connected */
.inner-menu .has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: 18px;
}

.tagheading {
  position: absolute;
  top: 40%;
  left: 50px;
  z-index: 999;
  pointer-events: none;
}

.tagheading .tag {
  color: #fff;
  font-size: 24px;
  font-weight: 900;
}

.fixed-heading .main-title {
  font-size: 5vw;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
}

.fixed-heading h1,
.fixed-heading p {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.swiper-container-h {
  width: 100%;
  height: 100vh;
  flex: 1;
}

.fixed-heading {
  position: absolute;
  top: 50%;
  left: 60px;
  transform: translateY(-50%);
  z-index: 2;
  color: #fff;
  max-width: 90%;
}

.fixed-heading .tag {
  font-size: 24px;
  font-weight: normal;
  color: #fff;
}

.fixed-heading .tag,
.fixed-heading .main-title {
  opacity: 1;
  transform: translateY(40px);
  transition: all 0.6s ease;
}


.main-title {
  display: flex;
  flex-direction: column;
}

.title-small {
  display: block;
  font-size: clamp(16px, 2vw, 28px);
  letter-spacing: 2px;
  font-weight: normal;
}

.title-big {
  display: block;
  font-size: clamp(32px, 6vw, 90px);
  font-weight: bold;
}

.fixed-heading .tag {
  text-transform: lowercase;
  
}

.tag {
  font-size: clamp(12px, 1.5vw, 18px);
}

@media (max-width: 768px) {
  .fixed-heading {
    left: 20px;
    top: 55%;
  }

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

  .title-small {
    font-size: 14px;
  }

  .tag {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .swiper-button-next,
  .swiper-button-prev {
    width: 40px;
    height: 40px;
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 20px;
  }
}

.video-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.video-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: 0;
}

.video-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw; /* 16:9 ratio */
  min-height: 100vh;
  min-width: 177.77vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5); /* same overlay feel */
  z-index: 1;
}

.fixed-heading {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50px;
  transform: translateY(-50%);
  color: #fff;
}

.main-title .title-small {
  display: block;
  font-size: 20px;
  letter-spacing: 2px;
}

.main-title .title-big {
  font-size: 60px;
  font-weight: bold;
}

.word-wrapper {
  display: inline-block;
  position: relative;
  height: 1.2em;
  overflow: hidden;
  min-width: 420px; /* wide enough for your longest word */
  vertical-align: bottom;
}

.word {
  position: absolute;
  left: 0;
  top: 0;              /* FIXED */
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.6s ease;
  white-space: nowrap;
}

.word.active {
  opacity: 1;
  transform: translateY(0);
}

.word.exit {
  opacity: 0;
  transform: translateY(-100%);
}

/* =========================
   PROJECT SECTION (PREMIUM)
========================= */

.project-section {
  position: relative;
  padding: 40px 0;
  background: #f8fafc;
  overflow: hidden;
}

.clearboth{
  overflow: hidden;
  width: 100%;
}

/* TITLE */
.project-section .title-box {
  text-align: center;
  margin-bottom: 50px;
}

.project-section .title-box h2 {
  font-size: 42px;
  font-weight: 700;
  color: #111;
  letter-spacing: -1px;
  font-family: "Arial Black", "Impact", sans-serif;
}

/* =========================
   FILTER BUTTONS
========================= */

.project-section .filters {
  margin-bottom: 40px;
}

.filter-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 70px;
  padding: 0;
}

.filter-btns li {
  list-style: none;
  position: relative;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: #000;
  padding: 5px 0;
  transition: color 0.3s ease;
  font-family: 'Avenir', serif;
}

/* UNDERLINE (hidden initially) */
.filter-btns li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #b8860b;
  transition: width 0.3s ease;
}

/* HOVER EFFECT */
.filter-btns li:hover {
  color: #b8860b;
}

.filter-btns li:hover::after {
  width: 100%;
}

/* ACTIVE STATE */
.filter-btns li.active {
  color: #b8860b;
}

.filter-btns li.active::after {
  width: 100%;
}
/* =========================
   GRID LAYOUT
========================= */

.items-container {
  max-width: 1200px;   /* controls total width */
  margin: 0 auto;      /* centers horizontally */
  /*display: flex;
  flex-wrap: wrap;
  justify-content: center; /* centers items inside */
}

/* 3 COLUMN */
.gallery-item {
  width: 33.33%;
  padding: 10px;
  /*display: flex;
  justify-content: center;
*/
}

/* =========================
   CARD STYLE
========================= */

.gallery-item .inner-box {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 410px;
  margin: 0 auto; /* center card within its column on every breakpoint */
}

/* IMAGE */
.gallery-item .image-box {
  position: relative;
  height: auto;
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
}

.gallery-item img.grayscale {
  filter: grayscale(1);
}

.gallery-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* =========================
   CAPTION (always visible, no hover)
========================= */

.gallery-item .overlay-box {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
              rgb(0 0 0) 0%,
              rgba(0, 0, 0, 0.35) 38%,
              rgba(0, 0, 0, 0) 100%);
  opacity: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

/* TEXT */
.gallery-item .overlay-inner {
  width: 100%;
  text-align: center;
  padding: 16px 16px 14px;
}

.gallery-item .overlay-inner h3 {
  color: #fff;
  font-size: clamp(15px, 4.2vw, 18px);
  font-weight: 700;
  margin: 0 0 4px;
  font-family: 'Ibarra Real Nova', serif;
}

.gallery-item .overlay-inner .white-text {
  margin: 0;
}

/* =========================
   LINK RESET
========================= */

.gallery-item a {
  display: block;
  height: 100%;
  text-decoration: none;
}

/* =========================
   RESPONSIVE DESIGN
========================= */

/* TABLET */
@media (max-width: 992px) {
  .gallery-item {
    width: 50%;
  }

  .project-section .title-box h2 {
    font-size: 32px;
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .gallery-item {
    width: 100%;
  }

  .filter-btns {
    gap: 8px;
  }

  .filter-btns li {
    font-size: 12px;
    padding: 8px 16px;
  }
}


.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%; /* render at native size — avoids upscaling blur */
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%) scale(1);

  /* keep playback crisp on the GPU */
  image-rendering: -webkit-optimize-contrast;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform, opacity;

  opacity: 0;
  transition: opacity 1s ease, transform 6s ease;
}

/* Active video */
.bg-video.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.04); /* gentler zoom = less upscaling */
}

.white-text {
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;

  /* premium feel */
  opacity: 0.9;
  font-family: 'Avenir', sans-serif;

  /* subtle glow for readability on images */
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);

  /* spacing */
  margin: 2px 0;
}


.over-view {
  max-width: 1020px;
  margin: 0 auto;
  text-align: center;

  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.85;
  letter-spacing: 0.3px;

  color: #0b0e10;
  
  padding: 10px 12px;
  position: relative;
}

/* premium divider line */


/* subtle text polish */
.over-view {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* responsive */
@media (max-width: 768px) {
  .over-view {
    font-size: 15.5px;
    line-height: 1.75;
  }
}

.header-banner-image{
  width: 100%;
  height: auto;
}

.process-section {
  position: relative;
  padding: 10px 8%;
  overflow: hidden;
  background-color: #d7b98430;
}

.team-section{
  position: relative;
  padding: 10px 8%;
  overflow: hidden;
}

.process-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 45px;

}


.process-header h2 {
  font-size: 48px;
  font-weight: 700;
  color: #000000;
  line-height: 1.1;
  margin-bottom: 20px;
  font-family: 'Bigilla', sans-serif;
  margin-top: 28px;
}



.timeline {
  position: relative;
  max-width: 1300px;
  margin: auto;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  background: #d7d7d7;
  transform: translateX(-50%);
}

.timeline-progress {
  position: absolute;
  left: 50%;
  top: 0;
  width: 3px;
  height: 0%;
  background: #c59b45;
  transform: translateX(-50%);
  z-index: 2;
}

.process-item {
  position: relative;
  width: 50%;
  margin-bottom: 120px;
  display: flex;
  align-items: center;
  gap: 60px;

}

.process-item.left {
  left: 0;
  padding-right: 80px;
  flex-direction: row;
  
}

.process-item.right {
  left: 50%;
  padding-left: 80px;
  flex-direction: row-reverse;
}


.process-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.process-image {
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 16px;
}

.process-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.step-number {
  font-size: 70px;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px #c59b45;
  line-height: 1;
  display: block;
  margin-bottom: 25px;
}

.process-card h3 {
  font-size: 30px;
  margin-bottom: 18px;
  color: #111;
  font-family: 'Ibarra Real Nova', sans-serif;
}

.process-card p {
  font-size: 16px;
  line-height: 1.9;
  color: #555;
  margin-top: -30px;
}


.process-item::before {
  content: "";
  position: absolute;
  top: 60px;
  width: 22px;
  height: 22px;
  background: #c59b45;
  border: 5px solid #f5f5f2;
  border-radius: 50%;
  z-index: 5;
  box-shadow: 0 0 0 8px rgba(197,155,69,0.15);
}

.process-item.left::before {
  right: -11px;
}

.process-item.right::before {
  left: -11px;
}


@media(max-width: 991px) {

  .timeline{
    padding-left: 16px;
    padding-right: 16px;
  }

  .timeline-line,
  .timeline-progress {
    left: 20px;
    transform: none;
  }

  .process-item {
    width: 100%;
    left: 0 !important;
    padding-left: 70px !important;
    padding-right: 0 !important;
    margin-bottom: 80px;
  }

  .process-item.left,
  .process-item.right {
    flex-direction: row;
  }

  .process-item::before {
    left: -6px !important;
    right: auto !important;
  }

  .process-header h2 {
    font-size: 33px;
  }

  .step-number {
    font-size: 52px;
  }

  .process-card {
    padding: 28px 20px;
  }
}


@media (max-width: 768px) {

  .process-section {
    padding: 40px 16px;
  }

  .process-header h2 {
    font-size: 28px;
  }

  .timeline {
    max-width: 100%;
  }

  .process-item,
  .process-item.left,
  .process-item.right {
    flex-direction: column;
    gap: 20px;
    padding-left: 50px !important;
  }
  .step-number {
    font-size: 40px;
    margin-bottom: 10px;
  }

  .process-card h3 {
    font-size: 22px;
  }

  .process-card p {
    font-size: 14px;
    margin-top: 0;
  }
}
.banner-content {
  width: 100%;
  z-index: 5;
}

.banner-content .over-view {
  max-width: 990px;
  margin: 25px auto 0;
  text-align: center;
  color: #3f3f3f;
  font-size: 18px;
  line-height: 1.9;
  font-family: 'Avenir', sans-serif;
}

@media (max-width: 768px) {
  .banner-content .over-view {
    font-size: 15px;
    line-height: 1.7;
    padding: 0 20px;
  }
}


.team-card {
  background: #ffffff;
  overflow: hidden;
  height: 100%;
}


.team-image {
  width: 100%;
  height: 425px;
  overflow: hidden;
  border-radius: 15px;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.5s ease;
}

.team-info {
  padding: 24px 20px;
  text-align: center;
}

.team-name {
  font-size: 24px;
  margin-bottom: 6px;
  color: #111;
  font-weight: 600;
}

.team-role {
  color: #777;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.team-link {
  text-decoration: none;
  display: block;
  color: inherit;
}

/* TEAM CARD */
.team-card {
  position: relative;
  overflow: hidden;
}

/* IMAGE */
.team-image {
  position: relative;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: all 0.5s ease;
}

/* DARK OVERLAY */
.team-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: all 0.5s ease;
}

/* INFO CARD */
.team-info {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: -500px;
  padding: 20px;

  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border: 1px solid rgba(255,255,255,0.2);

  transition: all 0.9s ease;
  z-index: 2;
}

/* NAME */
.team-name {
  color: #fff;
  font-size: 24px;
  margin-bottom: 6px;
  font-weight: 600;
}

/* ROLE */
.team-role {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  letter-spacing: 1px;
}

/* HOVER EFFECT */
.team-card:hover .team-image img {
  transform: scale(1.03);
  filter: blur(4px) brightness(0.55);
}

.team-card:hover .team-image::after {
  background: rgba(0,0,0,0.25);
}

.team-card:hover .team-info {
  bottom: 20px;
}

.team-desc{
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  letter-spacing: 1px;
  text-align: center;
  margin-top: 10px;
}

.team-card:hover .team-desc {
  bottom: 20px;
}

/* bio expander — only shown on small screens where the bio is clamped */
.team-readmore {
  display: none;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #dcdcdc;
  border-left: 1px solid #dcdcdc;
}

.client-item {
  border-right: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc;

  height: 250px;
  padding: 20px;

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

  background: #fff;
  overflow: hidden;
  transition: 0.3s ease;
}

.client-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;

  filter: grayscale(100%);
  opacity: 0.7;
  transition: 0.3s ease;
}

.client-item:hover {
  background: #f8f8f8;
}

.client-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* Responsive */

@media (max-width: 991px) {
  .client-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .client-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .client-item {
    height: 200px;
  }
}

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

.service-modern-section {
  background: #f5f5f5;
}

.service-modern-wrapper {
  min-height: 620px;
}

.service-modern-content {
  padding: 60px 44px 60px 20px;
}

.service-modern-content-reverse {
  padding: 60px 20px 60px 44px;
}

.service-modern-title {
  font-size: 40px;
  line-height: 1.15;
  font-weight: 600;
  color: #111;
  margin-bottom: 35px;
  text-transform: uppercase;
}

.service-modern-list li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 10px;
  color: #444;
  font-size: 15.5px;
  line-height: 1.7;
}

.service-modern-list li span {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 1px solid #b8860b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b8860b;
  font-size: 11px;
  margin-top: 4px;
}

.service-modern-btn {
  margin-top: 25px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #b8860b;
  color: #fff;
  padding: 16px 34px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.service-modern-btn:hover {
  background: #111;
  color: #fff;
}

.service-modern-image {
  height: 100%;
  overflow: hidden;
  border-radius: 15px;
}

.service-modern-image img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}



@media (max-width: 991px) {

  .service-modern-wrapper {
    min-height: auto;
  }

  .service-modern-content,
  .service-modern-content-reverse {
    padding: 40px 20px;
  }

  .service-modern-title {
    font-size: 34px;
  }

  .service-modern-image img {
    height: 450px;
  }

}

@media (max-width: 767px) {

  .service-modern-section {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .service-modern-content,
  .service-modern-content-reverse {
    padding: 30px 16px;
  }

  .service-modern-title {
    font-size: 28px;
    margin-bottom: 25px;
  }

  .service-modern-list li {
    font-size: 15px;
    gap: 14px;
  }

  .service-modern-image img {
    height: 320px;
  }

}

@media (max-width: 575px) {

  .service-modern-content,
  .service-modern-content-reverse {
    padding: 26px 14px;
  }

  .service-modern-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .service-modern-list li {
    font-size: 14.5px;
    gap: 12px;
    line-height: 1.6;
  }

  .service-modern-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    margin-top: 20px;
  }

  .service-modern-image img {
    height: 240px;
  }

}

.footer-brand-wrap{
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-logo-wrap{
  flex-shrink: 0;
}

.footer-logo{
  width: 80px;
  max-width: 100%;
  object-fit: contain;
}

.footer-brand-content{
  display: flex;
  flex-direction: column;
}

.footer-desc{
  color: rgba(255,255,255,0.75);
  line-height: 1.9;
  font-size: 15px;
  max-width: 700px;
  font-family: 'Avenir', sans-serif;
  text-align: right;
}

.footer-contact-center{
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 40px;
}

.footer-contact-link{
  color: #fff;
  text-decoration: none;
}

.footer-contact-link:hover{
  color: #fff;
  text-decoration: underline;
}

.footer-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  padding: 14px 30px;
  background: #d7b984;
  color: #111;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.35s ease;
}

.footer-btn:hover{
  background: #fff;
  color: #111;
  transform: translateY(-3px);
}

.footer-btn{
  margin-left: auto;
}

/* ===== PREMIUM FOOTER FORM STRIP ===== */
.footer-form-section{
  background-color: #f5f5f5;
}

/* Colored form card (section stays transparent) */
.footer-form-strip{
  width: 100%;
  background: #1a1d21;
  padding: 40px;
  border-radius: 6px;
  border: 1px solid rgba(215,185,132,0.18);
}

.footer-form-head{
  margin-bottom: 28px;
}

.footer-form-eyebrow{
  display: inline-block;
  font-family: 'Avenir', sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #d7b984;
  margin: 0;
}

/* Boxed field with label above */
.footer-field{
  display: flex;
  flex-direction: column;
}

.footer-field label{
  font-family: 'Avenir', sans-serif;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #d7b984;
  margin-bottom: 10px;
}

.footer-input{
  width: 100%;
  padding: 13px 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.16);
  color: #fff;
  font-family: 'Avenir', sans-serif;
  font-size: 15px;
  line-height: 1.4;
  border-radius: 3px;
  transition: border-color 0.3s ease, background 0.3s ease;
  appearance: none;
}

.footer-input:focus{
  outline: none;
  box-shadow: none;
  border-color: #d7b984;
  background: rgba(255,255,255,0.04);
}

.footer-input::placeholder{
  color: rgba(255,255,255,0.35);
}

textarea.footer-input{
  resize: vertical;
  min-height: 110px;
}

/* Select arrow */
.footer-select{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23d7b984' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}

.footer-select option{
  background: #1a1a1a;
  color: #fff;
}

.footer-form-btn{
  margin: 0 auto;
  min-width: 100%;
}

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

  .footer-brand-wrap{
    flex-direction: column;
    gap: 20px;
  }

  .footer-logo{
    width: 40px;
  }

  .footer-desc{
    font-size: 14px;
    line-height: 1.7;
    text-align: left;
  }

  .footer-btn{
    margin-left: 0;
  }

  .footer-form-strip{
    padding: 24px 20px;
  }

  .footer-form-btn{
    width: 100%;
    margin: 0;
  }
}

/* Phones: stack phone & email into two rows, larger text + icons */
@media(max-width:576px){

  .footer-contact-list{
    flex-direction: column;
    gap: 16px !important;
  }

  .footer-contact-list p{
    font-size: 18px;
  }

  .footer-contact-list i{
    font-size: 22px;
  }
}

.project-detail-section {
  width: 100%;
  overflow: hidden;
}

.hero-image-wrapper {
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

.hero-image-wrapper:last-of-type{
  margin-bottom: 50px;
  background: #fff;
}

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

.project-info-section {
  padding: 90px 0 70px;
}

.project-heading {
  font-size: 36px;
  font-weight: 100;
  color: #ff3b1d;
  line-height: 1;
  margin-bottom: 18px;
  letter-spacing: -2px;
}

.project-subtitle {
  font-size: 20px;
  color: #555;
  font-weight: 100;
  margin: 0;
}

.project-description {
  font-size: 20px;
  line-height: 1.7;
  color: #555;
  font-weight: 100;
  margin: 0;
  max-width: 700px;
}

.project-meta {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.project-meta p {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #666;
  line-height: 2;
  text-align: center;
}

.project-meta span {
  color: #ff3b1d;
}

@media (max-width: 991px) {
  .project-info-section {
    padding: 70px 0 50px;
  }

  .project-heading {
    font-size: 3rem;
  }

  .project-description {
    font-size: 1.3rem;
    line-height: 1.6;
  }

  .project-meta {
    margin-top: 50px;
  }
}

@media (max-width: 767px) {
  .hero-image-wrapper {
    height: 70vh;
  }

  .project-heading {
    font-size: 2.5rem;
  }

  .project-subtitle {
    font-size: 1.1rem;
  }

  .project-description {
    font-size: 1.05rem;
  }

  .project-meta p {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
  }
}

.project-images {
  padding: 0;
}

.project-images .row {
  row-gap: 0px;
}

.project-images img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.project-images .col-lg-6 {
  display: flex;
}

.project-images .col-lg-6 img {
  min-height: auto;
}

.project-images .col-lg-6:first-child {
  padding-right: 0;
}

.project-images .col-lg-6:last-child {
  padding-left: 0;
}

@media (max-width: 991px) {
  .project-images {
    padding: 50px 0;
  }

  .project-images .col-lg-6 img {
    min-height: auto;
  }

  .project-images .col-lg-6:first-child,
  .project-images .col-lg-6:last-child {
    padding: 0 12px;
  }
}

.project-story-section {

  overflow: hidden;
}

.story-image-wrapper {
    height: 500px;
    overflow: hidden;
}

.story-image {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.story-content {
  height: 100%;
  padding: 70px 65px;
  display: flex;
  align-items: center;
  
}

.story-content p {
  font-size: 1.35rem;
  line-height: 1.9;
  font-weight: 300;
  color: #5f5f5f;
  margin: 0;
  letter-spacing: 0.2px;
  max-width: 420px;
}

.story-content p span {
  color: #ff4a2d;
}

@media (max-width: 1199px) {
  .story-content {
    padding: 60px 45px;
  }

  .story-content p {
    font-size: 1.15rem;
  }

  .story-image {
    min-height: 450px;
  }
}

@media (max-width: 991px) {
  .story-image {
    min-height: 380px;
  }

  .story-content {
    padding: 45px 28px;
  }

  .story-content p {
    font-size: 1rem;
    line-height: 1.8;
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .story-image {
    min-height: 300px;
  }

  .story-content {
    padding: 35px 22px;
  }
}

.dual-image-section {
  padding: 0;
  background: #fff;
}

.dual-image-card {
  overflow: hidden;
  position: relative;
  background: #f5f5f5;
}

.dual-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;

}



@media (max-width: 991px) {
  .dual-image {
    height: auto;
  }
}

@media (max-width: 767px) {


  .dual-image {
    height: auto;
  }
}

.suggestion-text{
  font-size: 20px;
  line-height: 1.7;
  color: #555;
  font-weight: 100;
}

/* =====================================
   Architecture Banner Responsive Fix
===================================== */

@media (max-width: 991px) {
  .banner-content {
    width: 90%;
    padding: 0 20px;
  }

  .header-banner-image {
    min-height: 70vh;
    object-fit: cover;
  }

  .banner-title {
    font-size: clamp(32px, 6vw, 56px);
    line-height: 1.1;
    margin-bottom: 15px;
  }

  .over-view {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.7;
  }
}

@media (max-width: 767px) {
  .about-section {
    min-height: 80vh;
  }

  .header-banner-image {
    height: 80vh;
  }

  .banner-content {
    width: 92%;
    padding: 0 15px;
  }

  .banner-title {
    font-size: 30px;
    margin-bottom: 12px;
  }

  .over-view {
    font-size: 14px;
    line-height: 1.6;
    padding: 0;
  }
}

@media (max-width: 480px) {
  .header-banner-image {
    height: 75vh;
  }

  .banner-title {
    font-size: 24px;
  }

  .over-view {
    font-size: 13px;
    line-height: 1.5;
  }
}

/* Hide overview text on mobile */
@media (max-width: 768px) {
  .over-view {
    display: none !important;
  }

  .banner-title {
    display: block;
    font-size: clamp(28px, 8vw, 42px);
    line-height: 1.2;
    margin-bottom: 0;
  }
}

/* =====================================
   Project Section Responsive
===================================== */

/* Tablet */
@media (max-width: 992px) {
  .filter-btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .filter-btns li {
    padding: 10px 18px;
    font-size: 14px;
  }

  .gallery-item {
    width: 50%;
    padding: 10px;
  }

  .gallery-item .image-box img {
    width: 100%;
    height: auto;
    display: block;
  }

  .gallery-item h3 {
    font-size: 20px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .project-section {
    padding: 40px 15px;
  }

  .filters {
    margin-bottom: 25px;
  }

  .filter-btns {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .filter-btns li {
    width: auto !important;
    display: inline-block;
    padding: 8px 14px;
    font-size: 16px;
    margin: 0;
  }

  .gallery-item {
    width: 100%;
    padding: 0 0 20px;
  }

  .gallery-item .inner-box {
    width: 100%;
  }

  .gallery-item .image-box {
    width: 100%;
  }

  .gallery-item .image-box img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .overlay-box h3 {
    font-size: 18px;
    line-height: 1.3;
  }

  .white-text {
    font-size: 12px;
    letter-spacing: 1px;
  }
}

/* Small phones */
@media (max-width: 480px) {

  .overlay-box h3 {
    font-size: 16px;
  }
}

@media (max-width: 767px) {

  .about-section {
    min-height: auto;
  }

  .header-banner-image {
    height: 45vh !important;
    min-height: 250px;
    object-fit: cover;
  }

  .banner-content {
    top: 50% !important;
  }

  .banner-title {
    font-size: 32px;
    line-height: 1.1;
  }
}

@media (max-width: 767px) {
  .header-banner-image {
    height: 35vh !important;
    min-height: 220px;
  }
}

.header{
    background:#fff;
    position:relative;
    z-index:999;
}

.logo{
    width:50px;
}

.logo img{
    width:100%;
    display:block;
}

.inner-menu{
    display:flex;
    justify-content:flex-end;
    align-items:center;
}

/* Desktop Menu */

.desktop-menu{
    display:flex;
    gap:35px;
    list-style:none;
    margin:0;
    padding:0;
}

.desktop-menu li{
    position:relative;
}

.desktop-menu a{
    color:#222;
    text-decoration:none;
    font-size:16px;
    font-weight:600;
}

/* Dropdown */

.inner-dropdown{
    position:absolute;
    top:100%;
    left:0;
    background:#fff;
    min-width:220px;
    opacity:0;
    visibility:hidden;
    transition:.3s;
    box-shadow:0 10px 30px rgba(0,0,0,.1);
}

.inner-dropdown a{
    display:block;
    padding:12px 18px;
}

.has-dropdown:hover .inner-dropdown{
    opacity:1;
    visibility:visible;
}

/* Mobile Button */

.menu-toggle{
    display:none;
    border:none;
    background:none;
    font-size:30px;
    cursor:pointer;
    color:#222;
}

/* Mobile Menu */

.mobile-menu{
    position:fixed;
    top:0;
    right:-100%;
    width:280px;
    height:100vh;
    background:#fff;
    z-index:99999;
    transition:.4s;
    padding:80px 30px;
}

.mobile-menu.active{
    right:0;
}

.mobile-menu ul{
    list-style:none;
    padding:0;
}

.mobile-menu li{
    margin-bottom:25px;
}

.mobile-menu a{
    color:#222;
    text-decoration:none;
    font-size:18px;
    font-weight:600;
}

.close-menu{
    position:absolute;
    top:20px;
    right:20px;
    border:none;
    background:none;
    font-size:24px;
    cursor:pointer;
}

.mobile-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.4);
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:9999;
}

.mobile-overlay.active{
    opacity:1;
    visibility:visible;
}



@media(max-width:991px){

    .desktop-menu{
        display:none;
    }

    .menu-toggle{
        display:block;
    }

    .logo{
        width:45px;
    }
}

.hero-project{
    position:relative;
    height:100vh;
    overflow:hidden;
}

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

.hero-content{
    position:absolute;
    bottom:80px;
    left:80px;
    max-width:700px;
    color:#fff;
}

.hero-content span{
    letter-spacing:4px;
    font-size:12px;
}

.hero-content h1{
    font-size:64px;
    line-height:1.1;
    font-weight:300;
}

.project-intro{
    padding:180px 0;
}

.intro-text{
    max-width:900px;
    font-size:34px;
    line-height:1.7;
}

.full-image{
    padding:0 60px;
}

.full-image img{
    width:100%;
    height:85vh;
    object-fit:cover;
}

.offset-gallery{
    width:90%;
    margin:180px auto;

    display:flex;
    justify-content:space-between;
    align-items:flex-start;
}

.image-left{
    width:48%;
}

.image-right{
    width:35%;
    margin-top:150px;
}

.offset-gallery img{
    width:100%;
    height:700px;
    object-fit:cover;
}

.story-section{
    width:90%;
    margin:200px auto;

    display:grid;
    grid-template-columns:60% 30%;
    justify-content:space-between;
    align-items:center;
}

.story-image img{
    width:100%;
    height:850px;
    object-fit:cover;
}

.story-copy h2{
    font-size:46px;
    margin-bottom:25px;
}

.story-copy p{
    font-size:20px;
    line-height:2;
}

.project-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
}

.project-images-grid img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* ── HERO ──────────────────────────────── */
    .p-hero {
      width: 100%;
      height: 95vh;
      min-height: 560px;
      overflow: hidden;
      position: relative;
      background: #1a1816;
    }

    .p-hero img {
      position: absolute;
      inset: 0;
      opacity: .82;
      transform: scale(1.04);
      transition: transform 9s cubic-bezier(.25, .46, .45, .94), opacity 1.2s;
    }

    .p-hero.is-loaded img {
      transform: scale(1);
      opacity: .88;
    }

    /* ── INTRO HEADER ──────────────────────── */
    .p-header {
      padding: 64px 0 52px;
      border-bottom: 1px solid var(--rule);
    }

    .p-header__kicker {
      font-family: var(--sans);
      font-size: .68rem;
      font-weight: 500;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--mid);
      margin-bottom: 20px;
    }

    .p-header__title {
      font-size: 50px;
      font-weight: 100;
      line-height: 1;
      margin-bottom: 18px;
    }

    .p-header__desc {
      font-family: var(--sans);
      font-size: 1.05rem;
      font-weight: 300;
      line-height: 1.7;
      color: var(--mid);
      max-width: 560px;
      margin-bottom: 32px;
    }

    /* meta row — Studio Lotus style */
    .p-meta {
      font-family: var(--sans);
      font-size: .7rem;
      font-weight: 400;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--ink);
      line-height: 2;

      border: 1px solid var(--rule);
      padding: 10px 14px;
      display: inline-block;
    }

    .p-meta strong {
      color: var(--accent);
      font-weight: 500;
      margin-right: 6px;
    }

    .p-meta span {
      margin-right: 14px;
    }

    /* ── SECTION LABEL ─────────────────────── */
    .s-label {
      font-family: var(--sans);
      font-size: 1.66rem;
      font-weight: 500;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 0;
    }

    /* ── BODY TEXT ─────────────────────────── */
    .p-body {
      font-family: var(--sans);
      font-size: 20px;
      font-weight: 300;
      line-height: 1.85;
      color: var(--mid);
    }

    .p-body strong {
      font-weight: 500;
      color: var(--ink);
    }

    /* highlight span — red like Studio Lotus */
    .p-body .hl {
      font-family: var(--serif);
      font-style: italic;
      font-size: 1.1em;
      color: var(--ink);
    }

    /* ── PULL QUOTE ────────────────────────── */
    .p-pull {
      font-family: var(--serif);
      font-size: clamp(1.7rem, 1.2vw, 2.8rem);
      font-weight: 400;
      font-style: italic;
      line-height: 1.3;
      color: var(--ink);
      border-left: 2px solid var(--accent);
      padding-left: 28px;
    }

    /* ── FULL BLEED ────────────────────────── */
    .p-full {
      width: 100%;
      height: 70vh;
      min-height: 380px;
      overflow: hidden;
    }

    /* ── TWO COL IMG ───────────────────────── */
    .p-duo {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }

    .p-duo__item {
      overflow: hidden;
      height: 100%;
    }

    /* ── TEXT + IMAGE ──────────────────────── */
    .p-split__img {
      overflow: hidden;
    }

    .p-split__img--tall {

      width: 100%;
    }

    .p-split__img--med {

      width: 100%;
    }

    /* ── THREE IMAGES ──────────────────────── */
    .p-trio {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 10px;
    }

    .p-trio__item {
      overflow: hidden;
      object-fit: cover;
    }

    /* ── DIVIDER ───────────────────────────── */
    .p-divider {
      border: none;
      border-top: 1px solid var(--rule);
      margin: 0;
    }

    /* ── SECTION SPACING ───────────────────── */
    .p-section {
      padding: 80px 0;
    }

    .p-section--sm {
      padding: 52px 0;
    }

    .p-section--lg {
      padding: 104px 0;
    }

    /* ── FADE IN ───────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .85s cubic-bezier(.25, .46, .45, .94),
        transform .85s cubic-bezier(.25, .46, .45, .94);
    }

    .reveal.in {
      opacity: 1;
      transform: none;
    }

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

      .p-duo,
      .p-trio {
        grid-template-columns: 1fr;
      }

      .p-duo__item,
      .p-trio__item {
        height: 280px;
      }

      .p-split__img--tall,
      .p-split__img--med {
        height: 300px;
      }
    }

    @media (max-width: 575px) {
      .p-hero {
        height: 65vh;
        min-height: 400px;
      }

      .p-hero img {
        transform: scale(1);
      }

      .p-full {
        height: 50vw;
        min-height: 220px;
      }

      .p-section {
        padding: 52px 0;
      }

      .p-section--lg {
        padding: 64px 0;
      }
    }

    .p-header-grid {
      display: grid;
      grid-template-columns: 1.3fr .7fr;
      gap: 80px;
      align-items: start;
    }

    .p-header-left {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .p-header__kicker {
      margin: 0 0 8px;
    }

    .p-header__title {
      margin: 0 0 14px;
      line-height: .95;
    }

    .p-header__desc {
      margin: 0;
      max-width: 420px;
      color: var(--mid);
    }

    .p-meta {
      margin: 0;
      display: inline-block;
      border: 1px solid var(--rule);
      padding: 10px 14px;
    }

    @media (max-width: 991px) {
      .p-header-grid {
        grid-template-columns: 1fr;
        gap: 24px;
      }

      .p-header-right {
        order: -1;
      }

      .p-header__desc {
        max-width: 100%;
      }
    }

/* ============================================================
   ABOUT PAGE – RESPONSIVE FIXES
============================================================ */

/* --- "Architecture" intro row --- */
@media (max-width: 767.98px) {
  /* neutralise the inline padding-left:80px on the second column */
  .architecture-row > [class*="col-"] {
    padding-left: calc(var(--bs-gutter-x, 1.5rem) * .5) !important;
    padding-right: calc(var(--bs-gutter-x, 1.5rem) * .5) !important;
  }

  /* the centered vertical divider only makes sense side-by-side */
  .architecture-row::after {
    display: none;
  }

  .architecture-tag,
  .architecture-text-span {
    font-size: clamp(30px, 9vw, 40px);
  }
}

/* --- "Why Choose us" pinned scroll sections ---
   The pinned, full-viewport scroll animation is desktop-only (the ScrollMagic
   pin init is skipped on small screens in script.js). On tablets and phones
   each panel becomes a static full-width picture with its text laid over it. */
@media (max-width: 991.98px) {
  .events-page .event {
    width: 100%;
    height: 100svh;
  }

  .events-page .event h2 {
    font-size: clamp(24px, 6vw, 32px);
  }

  .events-page .event p {
    font-size: 16px;
    line-height: 1.7;
  }

  /* lay the text over the full section background picture */
  .events-page .text,
  .events-page #section1 .text {
    width: 100%;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    padding: 0 24px;
  }

  /* hide the floating decorative image boxes; the section background picture
     stays visible underneath the text */
  .events-page .image {
    display: none !important;
  }

  /* black overlay over the background photos so white text stays readable */
  .events-page #section1.event::before,
  .events-page #section2.event::before,
  .events-page #section3.event::before {
    background-color: rgba(0, 0, 0, 0.55);
    z-index: 1;
  }
}

/* --- Our Process timeline: drop the desktop zig-zag overlap --- */
@media (max-width: 991px) {
  /* the inline style="margin-top:-220px" pulls cards up to interleave the
     two desktop columns – in the single-column mobile layout it overlaps them */
  .process-item[style] {
    margin-top: 0 !important;
  }
}

/* --- Team cards: hover reveal is unusable on touch, show info inline --- */
@media (hover: none), (max-width: 991.98px) {
  .team-image img {
    height: 320px;
  }

  .team-info {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    background: #f7f7f5;
    border: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .team-name {
    color: #111;
  }

  .team-role {
    color: #777;
  }

  /* trim the long bios to a single line so the cards stay compact */
  .team-desc {
    color: #555;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* disable the hover blur / zoom / darken on touch devices */
  .team-card:hover .team-image img {
    transform: none;
    filter: none;
  }

  .team-card:hover .team-image::after {
    background: rgba(0, 0, 0, 0);
  }
}

/* --- Team bios: smaller text on phones (still one line) --- */
@media (max-width: 575.98px) {
  .team-desc {
    font-size: 14px;
  }
}

/* --- Team cards: premium treatment on small screens only --- */
@media (max-width: 767.98px) {
  .team-card {
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(197, 155, 69, 0.22);
    box-shadow: 0 18px 45px rgba(17, 17, 17, 0.12);
  }

  .team-image img {
    height: 360px;
  }

  /* soft scrim so the photo melts into the info panel */
  .team-image::after {
    background: linear-gradient(to top, rgba(17, 17, 17, 0.45), rgba(17, 17, 17, 0) 55%);
  }

  /* frosted panel overlapping the bottom of the photo */
  .team-info {
    position: relative;
    z-index: 2;
    margin: -58px 18px 18px;
    padding: 26px 18px 22px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(197, 155, 69, 0.25);
    box-shadow: 0 10px 30px rgba(17, 17, 17, 0.1);
  }

  /* the desktop hover rule sets bottom: 20px, which would nudge the
     now position:relative panel upward on tap */
  .team-card:hover .team-info {
    bottom: auto;
  }

  /* gold accent line above the name */
  .team-info::before {
    content: "";
    display: block;
    width: 46px;
    height: 2px;
    margin: 0 auto 14px;
    background: #c59b45;
  }

  .team-name {
    font-family: 'Bigilla', sans-serif;
    font-size: 26px;
    letter-spacing: 0.5px;
  }

  .team-role {
    color: #c59b45;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2.5px;
  }

  /* give the bio room to breathe: three lines instead of one */
  .team-desc {
    -webkit-line-clamp: 3;
    line-clamp: 3;
    margin-top: 12px;
    line-height: 1.65;
    color: #666;
  }

  .team-readmore {
    display: inline-block;
    margin-top: 12px;
    padding: 0;
    border: none;
    background: none;
    color: #c59b45;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
  }

  .team-info.expanded .team-desc {
    display: block;
    -webkit-line-clamp: unset;
    line-clamp: unset;
    overflow: visible;
  }
}

/* --- "Why Choose us" intro heading + lead paragraph --- */
@media (max-width: 767.98px) {
  .why-choose-heading {
    padding: 44px 20px 48px;
  }

  .why-choose-title {
    font-size: clamp(26px, 7vw, 34px);
  }

  .why-choose-text-p {
    font-size: 16px;
    line-height: 1.7;
    padding: 0 6px;
  }
}

/* --- "A World of Sameness / Defining the Design" text + diptych --- */
@media (max-width: 991.98px) {
  .design-section {
    width: 92%;
    padding: 40px 0;
  }

  .design-section .big-title {
    font-size: clamp(26px, 5vw, 32px);
  }

  .design-section .para {
    font-size: 16px;
    line-height: 1.7;
  }

  .design-image {
    margin: 36px 0;
    gap: 1rem !important;
  }
}

@media (max-width: 575.98px) {
  /* the two side-by-side images get too narrow on phones – stack them */
  .design-image {
    flex-direction: column;
  }
}