:root {
  --greenBlue: #6497B1;
  --blue: #0095D3;
  --yellow: #F2C337;
  --grey: #9f9f9f;
  --deepBlue: #005B96;
  --darkyellow: #936732;
  --mediumyellow: #C49C2C;
  --lightyellow: #DFAB09;
  --whitecolor: #fff;
}
.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
ul,
ol {
  list-style: none;
}
a,
a:focus,
a:active {
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}
body {
  font-family: "neue_haas_grotesk_disp55roman";
  font-weight: normal;
  color: #000;
  background-color: #fff;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  margin: 0;
}
p {
  margin: 0;
}
p > em {
  display: block;
}
input,
input:focus,
input:active,
input:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}
select:focus,
select:active,
select:focus-visible {
  outline: none;
  box-shadow: none;
}
html {
  scroll-behavior: smooth;
}

@media (min-width: 1600px) {
  .container {
    max-width: 100% !important;
    padding-left: 100px;
    padding-right: 100px;
  }
}

/*Header*/
.headerWrap {
  z-index: 1000;
  will-change: padding, background, box-shadow;
  background: linear-gradient(#000, #0000);
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  width: 100%;
  padding: 20px 50px;
  transition:
    padding 0.5s ease,
    background-color 0.5s ease;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
}
.headerWrap.fix {
  background-color: #000;
  backdrop-filter: blur(2px);
  padding: 10px 50px;
}
.headerWrap > .container {
  width: 100%;
}
.headerSec {
  display: flex;
  justify-content: space-between;
  padding: 35px 0 0;
  height: 135px;
}
.headerWrap.fix .headerSec {
  padding: 30px 0 0;
  height: 100px;
}
.navLinksList {
  display: flex;
  gap: 30px;
  transition: all 0.5s ease;
  height: 80px;
  padding: 0;
  margin: 0;
  align-items: center;
}
.headerWrap.fix .navLinksList {
  gap: 30px;
  height: 70px;
}
.navLinksList > li {
  display: block;
}
.navLinksList > li > a {
  font-size: 18px;
  line-height: 1em;
  color: #fff;
}
.navLinksList > li > a.active,
.navLinksList > li.active > a {
  color: var(--yellow);
}
.homeLink {
  position: relative;
}
.homeLink::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../images/common/home-icon.png);
  background-repeat: no-repeat;
  background-position: center center;
  width: 20px;
  height: 20px;
}
.headerLogoSec {
  position: relative;
}
/* .headerLogoSec > a > img {
  position: relative;
  top: 0;
  transition: all 0.5s ease;
  max-width: 200px;
} */

.headerLogoSec > a > img {
    height: 62px;       /* increase logo size */
    width: auto;        /* keep aspect ratio */
    position: relative;
    top: 0;
    transition: all 0.5s ease;
}
.headerWrap.fix .headerLogoSec > a > img {
  transform: scale(0.8);
}
.hamburgerSec {
  display: flex;
  align-items: center;
  gap: 20px;
}
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  height: max-content;
  align-items: flex-end;
}
.headerWrap.scrolled .hamburger span {
  width: 23px;
}
.talkWithUsBtn {
  background: linear-gradient(
    252deg,
    rgba(147, 103, 50, 1) 0%,
    rgba(192, 152, 44, 1) 100%
  );
  border-radius: 30px;
  align-items: center;
  gap: 15px;
  padding: 15px 30px;
  font-size: 16px;
  transition: background 0.3s ease-in-out;
  display: inline-flex;
  color: #fff;
  line-height: 1em;
  font-family: "neue_haas_grotesk_display65Md";
  font-weight: normal;
}
.talkWithUsBtn:hover {
  background: linear-gradient(
    252deg,
    rgba(192, 152, 44, 1) 0%,
    rgba(147, 103, 50, 1) 100%
  );
  color: #fff;
}

/* Mobile Sidebar */
.mobileSidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.mobileSidebar.active {
  opacity: 1;
  visibility: visible;
}
.sidebarOverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
}
.sidebarContent {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  max-width: 75vw;
  height: 100vh;
  background: #fff;
  color: #000;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}
.mobileSidebar.active .sidebarContent {
  transform: translateX(0);
}
.sidebarHeader {
  display: flex;
  justify-content: flex-end;
  padding: 20px 20px 15px;
}
.closeSidebar {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
}
.closeSidebar span {
  display: block;
  width: 20px;
  height: 2px;
  background: #000;
  transition: all 0.3s ease;
}
.closeSidebar span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.closeSidebar span:nth-child(2) {
  transform: rotate(-45deg) translate(1px, -1px);
}

.sidebarNav {
  flex: 1;
  padding: 0 20px 40px 20px;
  overflow-y: auto;
}
.sidebarNavList {
  list-style: none;
  padding: 20px;
  margin: 0;
}
.sidebarNavList li {
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
}
.sidebarNavList a {
  color: #000;
  text-decoration: none;
  font-size: 22px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: block;
  font-family: "neue_haas_grotesk_display65Md";
  font-weight: normal;
}
.sidebarNavList a:hover {
  color: var(--greenBlue);
  padding-left: 10px;
}
.sidebarNavList a.active {
  color: var(--greenBlue);
}

/*WhatsApp Button*/
.whatsappBtnWrap {
  position: fixed;
  bottom: 48px;
  right: 38px;
  z-index: 1000;
  border-radius: 50%;
}
.whatsappBtn {
  display: inline-block;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.whatsappBtn:hover {
  transform: scale(1.1);
}
.whatsappBtn img {
  width: 64px;
  height: 64px;
}

/*Banner*/
.bannerWrapper {
  position: relative;
}
.bannerWrapper .container {
  height: 100%;
}
.bannerSwiper {
  position: relative !important;
}
.bannerSlide {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  background-color: #000;
}
.bannerBgImage {
  object-fit: cover;
  object-position: center;
  z-index: 1;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.bannerOverlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.bannerContent {
  position: relative;
  z-index: 3;
  color: #fff;
  text-align: center;
  margin: 0 auto;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bannerContent h1 {
  margin-bottom: 50px;
  font-family: "neue_haas_grotesk_display65Md";
  font-weight: normal;
  font-size: 70px;
  line-height: 1em;
}
.bannerContent h1 span {
  display: block;
  font-family: "neue_haas_grotesk_disp55roman";
  font-weight: normal;
}
.bannerContent p {
  font-size: 24px;
  line-height: 1.6;
  color: #fff;
  position: absolute;
  bottom: 55px;
  left: 0;
  text-align: left;
  max-width: 760px;
}
.bannerWrapper .swiper-pagination {
  position: absolute !important;
  right: 100px !important;
  left: auto !important;
  z-index: 100 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  width: auto !important;
  height: 100%;
  justify-content: center;
}
.bannerWrapper .swiper-pagination-bullet {
  margin: 0 !important;
  width: 15px !important;
  height: 15px !important;
  background: transparent !important;
  transition: all 0.3s ease !important;
  border-radius: 50% !important;
  border: 1px solid #fff !important;
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.bannerWrapper .swiper-pagination-bullet::before {
  content: "" !important;
  width: 3px !important;
  height: 3px !important;
  border-radius: 50% !important;
  opacity: 1 !important;
  background: #fff !important;
}
.bannerWrapper .swiper-pagination-bullet-active {
  transform: scale(1.3) !important;
  opacity: 1 !important;
}
.bannerWrapper .swiper-pagination-bullet-active::before {
  background: #FDC03F!important;
  opacity: 1 !important;
  transform: scale(1.2) !important;
}

/* At Glance */
.atGlanceWrap {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  padding: 85px 0;
}
.atGlanceWrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 35px solid #fff;
  z-index: 5;
  pointer-events: none;
}
.atGlanceBg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  border-radius: 3px;
}
.atGlanceOverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(360deg, #000 30%, #fff0 100%);
  opacity: 0.6;
}
.atGlanceWrap .container {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}
.atGlanceGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  height: 100%;
  gap: 40px;
}
.atGlanceItem {
  display: flex;
  flex-direction: column;
}
.atGlanceItem.item1 {
  justify-content: flex-start;
  align-items: flex-start;
}
.atGlanceItem.item2 {
  justify-content: flex-start;
  align-items: flex-end;
}
.atGlanceItem.item2 img {
  filter: brightness(0) invert(1);
}
.atGlanceItem.item3 {
  justify-content: flex-end;
  align-items: flex-start;
}
.atGlanceItem.item4 {
  justify-content: flex-end;
  align-items: flex-end;
  color: #fff;
}
.atGlanceItem h2 {
  font-size: 60px;
  line-height: 1em;
  font-family: "neue_haas_grotesk_display65Md";
  font-weight: normal;
  color: #fff;
  max-width: 400px;
}
.atGlanceItem span {
  font-size: 60px;
  line-height: 1em;
  display: block;
  margin-bottom: 20px;
  font-family: "neue_haas_grotesk_disp55roman";
  font-weight: normal;
}
.atGlanceItem p {
  font-size: 24px;
  line-height: 1em;
  text-align: right;
}
.atGlanceItem .exploreBtn {
  display: inline-block;
  background: linear-gradient(
    252deg,
    rgba(147, 103, 50, 1) 0%,
    rgba(192, 152, 44, 1) 100%
  );
  color: #fff;
  padding: 16px 42px;
  border-radius: 30px;
  transition: all 0.5s ease;
  font-size: 22px;
  line-height: 1em;
  font-family: "neue_haas_grotesk_display65Md";
  font-weight: normal;
}
.atGlanceItem .exploreBtn:hover {
  background: linear-gradient(
    252deg,
    rgba(192, 152, 44, 1) 0%,
    rgba(147, 103, 50, 1) 100%
  );
  color: #fff;
}

/*what we do*/
.whatWeDoWrap {
  margin: 50px 35px 85px;
}
.whatWeDoHead {
  margin-bottom: 60px;
  text-align: center;
}
.whatWeDoHead h2 {
  font-size: 50px;
  line-height: 1em;
  margin-bottom: 30px;
  color: var(--grey);
}
.whatWeDoHead p {
  font-size: 25px;
  line-height: 1.2em;
  color: #000;
}
.whatWeDoGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* .residential_link {
  border-radius: 5px;
  background-color: var(--mediumyellow);

}
.interior_link {
    border-radius: 5px;
  background-color: var(--lightyellow);
} */

.whatWeDoGridItem {
  background-color: var(--greenBlue);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  gap: 30px;
  color: #fff;
  border-radius: 5px;
}
.whatWeDoTextStack {
  display: grid;
  place-items: center;
  width: 100%;
  position: relative;
  align-items: flex-end;
}
.whatWeDoGridItemIcon img {
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.whatWeDoGridItem:hover .whatWeDoGridItemIcon img {
  transform: scale(0.9);
}
.whatWeDoGridItem p {
  line-height: 1.2em;
}
.whatWeDoDefaultText,
.whatWeDoHoverText {
  grid-area: 1 / 1;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  backface-visibility: hidden;
}

/* Default State */
.whatWeDoDefaultText {
  opacity: 1;
  transform: translateY(0);
}
.whatWeDoHoverText {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

/* Hover State */
.whatWeDoGridItem:hover .whatWeDoDefaultText {
  opacity: 0;
  transform: translateY(-20px);
}
.whatWeDoGridItem:hover .whatWeDoHoverText {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.whatWeDoGridItem.item1 {
  background-color: var(--darkyellow);
}
.whatWeDoGridItem.item2 {
  background-color: var(--mediumyellow);
}
.whatWeDoGridItem.item3 {
  background-color: var(--lightyellow);
}

/* Best Work Section */
.bestWorkWrap {
  overflow: hidden;
  position: relative;
}
.bestWorkBody {
  position: relative;
  height: 80vh;
}
.bestWorkOverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  pointer-events: none;
  background: linear-gradient(360deg, #000 0%, #fff0 100%);
}
.bestWorkOverlay .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 80px;
  padding-bottom: 80px;
}
.bestWorkHeader,
.bestWorkFooterExternal {
  pointer-events: auto;
}
.bestWorkHeader {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
}
.sectionTitle {
  color: #fff;
  font-size: 70px;
  line-height: 1em;
  font-family: "neue_haas_grotesk_display65Md";
  font-weight: normal;
}
.sectionTitle > em {
  display: block;
  font-family: "neue_haas_grotesk_disp55roman";
  font-size: 35px;
  line-height: 1em;
  font-style: normal;
}
.bestWorkControls {
  display: flex;
  align-items: center;
  gap: 15px;
}
.bestWorkControls .swiper-pagination-bullet {
  width: 5px;
  height: 5px;
  border-radius: 50%;
}
.bestWorkControls .swiper-pagination-bullet-active {
  background: #fff;
  width: 12px;
  height: 5px;
  border-radius: 5px;
}
.bestWorkControls .swiper-pagination-fraction,
.bestWorkControls .swiper-pagination-custom,
.bestWorkControls .swiper-horizontal > .swiper-pagination-bullets,
.bestWorkControls .swiper-pagination-bullets.swiper-pagination-horizontal {
  width: auto;
}
.custom-nav-btn {
  cursor: pointer;
  transition: opacity 0.3s;
}
.custom-nav-btn:hover {
  opacity: 0.7;
}
.bestWorkMainSlider {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.bestWorkSlideItem {
  width: 100%;
  height: 100%;
  position: relative;
}
.bestWorkImage {
  width: 100%;
  height: 100%;
  position: relative;
}
.bestWorkImage img {
  height: 100%;
  width: 100%;
}
.workImg {
  object-fit: cover;
}
.bestWorkFooterExternal {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.activeSlideInfo {
  max-width: 60%;
  color: #fff;
}
.activeSlideInfo h3 {
  font-size: 45px;
  margin-bottom: 10px;
  font-family: "neue_haas_grotesk_display65Md";
  font-weight: normal;
  line-height: 1em;
}
.activeSlideInfo p {
  font-size: 30px;
  line-height: 1.4em;
  color: #fff;
  max-width: 850px;
}
.bestWorkThumbsSlider {
  margin: 0 !important;
  pointer-events: auto;
}
.bestWorkThumbsSlider .swiper-slide {
  cursor: pointer;
  width: 60px !important;
  height: 60px !important;
  border-radius: 10px;
  overflow: hidden;
  opacity: 0.5;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.bestWorkThumbsSlider .swiper-slide-thumb-active {
  opacity: 1;
  border-color: #fff;
}
.bestWorkThumbsSlider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Home Gallery */
.homeGallerySection {
  width: 100%;
}
.homeGalleryGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
}
.galleryItem {
  width: 100%;
  position: relative;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.galleryText {
  color: #fff;
}
.galleryContent h3 {
  font-size: 60px;
  font-family: "neue_haas_grotesk_display65Md";
  font-weight: normal;
}
.galleryContent p {
  font-size: 16px;
  line-height: 1.5;
}
.galleryImg {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* Why Choose Us Home */
.whyChooseSection {
  position: relative;
  padding: 70px 60px 0 0;
}
.whyChooseSection.pdHome {
  padding: 150px 0 50px;
}
.whyChooseSection .alSelfCenter {
  align-self: center;
}
.whyChooseRow {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}
.whyChooseImage {
  position: relative;
  overflow: hidden;
  margin: 0;
  display: flex;
  height: 100%;
}
.whyChooseImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.whyChooseContent {
  position: relative;
  padding-left: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.whyChooseContent.paddingLeft {
  padding-left: 45px;
}
.whyChooseContent.paddingRight {
  padding-right: 45px;
}
.whyChooseContent > h2 {
  font-size: 40px;
  line-height: 1.1em;
  font-family: "neue_haas_grotesk_display65Md";
  font-weight: normal;
  padding-bottom: 40px;
  color: #000;
}
.whyChooseContent .SecHeading {
  font-size: 30px;
}
.whyChooseAccordion {
  padding-top: 30px;
}
.whyChooseAccordion .accordion-button {
  font-size: 30px;
  font-family: "neue_haas_grotesk_display75Bd";
  padding: 25px 0;
}
.whyChooseAccordion .accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: none;
  color: #000;
}
.whyChooseAccordion .accordion-button:focus {
  box-shadow: none;
  outline: none;
  border-color: rgba(0, 0, 0, 0.125);
}
.whyChooseAccordion .accordion-body {
  padding: 0 0 25px;
  font-size: 18px;
}

/* Post Tension */
.postTensionWrap {
  position: relative;
  min-height: 640px;
  display: flex;
  padding: 100px 0;
}
.postTensionWrap:after {
  content: "";
  z-index: 5;
  pointer-events: none;
  border: 35px solid #fff;
  position: absolute;
  inset: 0;
}
.postTensionBg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  border-radius: 3px;
}
.postTensionOverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #25150394;
  opacity: 0.5;
}
.postTensionWrap .container {
  position: relative;
  z-index: 2;
  width: 100%;
}
.postTensionContent {
  position: relative;
  z-index: 2;
  padding: 0;
  color: #fff;
}
.postTensionContent span {
  font-size: 55px;
  line-height: 1em;
}
.postTensionContent h2 > em {
  display: block;
}
.postTensionContent h2 {
  font-size: 70px;
  line-height: 1em;
  font-family: "neue_haas_grotesk_display65Md";
  font-weight: normal;
  margin-bottom: 30px;
  max-width: 635px;
}
.postTensionContent p {
  font-size: 25px;
  line-height: 1.2em;
  margin-bottom: 40px;
}
.postTensionContent .exploreBtn {
  display: inline-block;
  background: linear-gradient(252deg, rgba(147, 103, 50, 1) 0%, rgba(192, 152, 44, 1) 100%);
  padding: 16px 42px;
  color: var(--whitecolor);
  border-radius: 30px;
  transition: all 0.5s ease;
  font-size: 22px;
  line-height: 1em;
  font-family: "neue_haas_grotesk_display65Md";
  font-weight: normal;
}
.postTensionContent .exploreBtn:hover {
  background: linear-gradient(
    252deg,
    rgba(192, 152, 44, 1) 0%,
    rgba(147, 103, 50, 1) 100%
  );
  color: #fff;
}

/*client review*/
.clientReviewSlider {
  width: 100%;
  overflow: hidden;
}

.clientReviewSlider .swiper-wrapper {
  align-items: stretch;
}

.clientReviewSlider .swiper-slide {
  height: auto;
  width: 100%;
  box-sizing: border-box;
}
.clientReviewSliderItem {
  display: flex;
  align-items: stretch;
  width: 100%;
  flex-wrap: wrap;
}
.clientReviewSliderItemImg {
  flex: 0 0 300px;
  max-width: 300px;
  width: 100%;
}

.clientReviewSliderItemImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.clientReviewSliderItemContent {
  flex: 1;
  min-width: 0;
  padding: 30px;
  background: #e2e2e2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 0 100px 0 0;
  box-sizing: border-box;
}

.clientReviewSliderItemContent p {
  font-size: 25px;
  line-height: 1.4;
  color: #000;
  margin-bottom: 30px;
  word-break: break-word;
}

.clientReviewSliderItemContent span {
  font-size: 22px;
  text-align: right;
}







/* already in this fdile */
.clientReviewWrap {
  background: #efefef;
  padding: 80px 0;
}
.clientReviewContent {
  display: flex;
  gap: 40px;
  flex-direction: column;
}
.clientReviewSliderItem {
  display: flex;
  align-items: stretch;
}
.clientReviewSliderItemImg {
  flex: 0 0 500px;
}
.clientReviewSliderItemImg > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* .clientReviewSliderItemContent {
  flex: 1;
  padding: 0 35px;
  background: #e2e2e2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 0 100px 0 0;
}

.clientReviewSliderItemContent p {
  font-size: 25px;
  line-height: 1.4em;
  color: #000;
  font-family: "neue_haas_grotesk_disp55roman";
  margin-bottom: 40px;
}
.clientReviewSliderItemContent span {
  font-size: 25px;
  line-height: 1.2em;
  color: #000;
  font-family: "neue_haas_grotesk_disp55roman";
  text-align: right;
  display: block;
} */

/* responsive */
.clientReviewSliderItemContent {
  flex: 1;
  padding: 30px;
  background: #e2e2e2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 0 100px 0 0;
  width: 100%;
  box-sizing: border-box;
}

.clientReviewSliderItemContent p {
  font-size: 25px;
  line-height: 1.4em;
  color: #000;
  margin-bottom: 30px;
  word-break: break-word;
}

.clientReviewSliderItemContent span {
  font-size: 22px;
  text-align: right;
  display: block;
}

.clientReviewSliderItemContent,
.clientReviewSliderItemContent p {
  max-width: 100%;
  overflow-wrap: break-word;
}

/* old */
.clientReviewTitle > h2 {
  font-size: 50px;
  line-height: 1.2em;
  margin-bottom: 20px;
  font-family: "neue_haas_grotesk_disp55roman";
  color: #000;
}
.clientReviewTitle > h2 > span {
  display: inline-block;
  font-size: 60px;
  line-height: 1em;
  color: #000;
  font-family: "neue_haas_grotesk_display65Md";
  font-weight: normal;
}
.clientReviewTitle > div > span {
  font-size: 35px;
  font-family: "neue_haas_grotesk_display65Md";
  font-weight: normal;
  color: #000;
  display: block;
  line-height: 1em;
}
.clientReviewTitle > div {
  display: flex;
  gap: 8px;
}

/*home form*/
.homeFormWrap {
  position: relative;
  padding: 80px 0;
  color: #fff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.homeFormBgWrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.homeFormBg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.homeFormOverlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}
.homeFormWrap .container {
  height: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}
.homeFormContent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  flex: 1;
}
.homeFormHead {
  max-width: 1050px;
}
.homeFormHead h2 {
  font-size: 50px;
  line-height: 1.3em;
  margin-bottom: 20px;
  color: var(--grey);
  text-align: center;
  font-family: "neue_haas_grotesk_display65Md";
  font-weight: normal;
}
.homeFormHead p {
  font-size: 30px;
  line-height: 1.5em;
  margin-bottom: 40px;
  color: var(--grey);
  text-align: center;
}
.homeFormSec {
  width: 100%;
}
.homeFormSec form {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-top: 40px;
}
.homeFormSec input {
  background: transparent;
  border: none;
  border: 1px solid var(--grey);
  padding: 12px 28px;
  color: #fff;
  font-size: 18px;
  flex: 1;
  border-radius: 50px;
  height: 55px;
}
.homeFormSec input::placeholder {
  color: var(--grey);
  font-size: 20px;
  line-height: 1em;
}
.homeFormSec button {
  background: linear-gradient(
    252deg,
    rgba(147, 103, 50, 1) 0%,
    rgba(192, 152, 44, 1) 100%
  );
  padding: 16px 60px;
  border-radius: 30px;
  font-size: 22px;
  line-height: 1em;
  transition: all 0.3s ease;
  color: #fff;
  font-family: "neue_haas_grotesk_display65Md";
  font-weight: normal;
  border: 1px solid #fff;
  height: 55px;
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.homeFormSec button:hover {
  background: linear-gradient(
    252deg,
    rgba(192, 152, 44, 1) 0%,
    rgba(147, 103, 50, 1) 100%
  );
  color: #fff;
}

/*footer*/
.footerWrap {
  background: #000;
  padding: 60px 0;
}
.footerContent {
  display: flex;
  gap: 40px;
}
.footerContent span {
  color: #fff;
  font-family: "neue_haas_grotesk_display65Md";
  font-weight: normal;
  font-size: 20px;
  line-height: 1em;
  margin-bottom: 20px;
  display: block;
}
.footerLogoSec {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 60px;
}
.footerLinksSec {
  display: flex;
  gap: 40px;
}
.socialMediaLinks {
  display: flex;
  gap: 25px;
  align-items: center;
}
.socialMediaList {
  padding: 0;
  margin: 0;
  display: flex;
  gap: 15px;
  align-items: center;
}
.socialMediaList > li a img {
  transition: all 0.3s ease;
}
.socialMediaList > li a:hover > img {
  transform: scale(1.2);
}
.footerLinksList {
  padding: 0;
  margin: 0;
}
.footerLinksList > li > a {
  color: var(--grey);
  /* font-family: "neue_haas_grotesk_display65Md"; */
  font-weight: normal;
  font-size: 20px;
  line-height: 1.2em;
  margin-bottom: 18px;
  display: block;
}
.footerLinksList > li:last-child > a {
  margin-bottom: 0;
}
.footerLinksList > li > a:hover {
  color: var(--yellow);
}
.footerBottomSec {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
  padding: 25px 0;
  margin-top: 60px;
}
.footerBottomSec > p {
  font-size: 16px;
  line-height: 1em;
  color: var(--grey);
  margin: 0;
}
.footerAddressSec > p {
  color: var(--grey);
  font-size: 20px;
  margin: 0 0 15px;
  line-height: 1.2em;
}
.socialMediaLinks > p {
  font-size: 18px;
  line-height: 1em;
  color: var(--grey);
  margin: 0;
  flex-shrink: 0;
  white-space: nowrap;
}

/* Header Z-Index Fix */
.headerWrap {
  z-index: 9999 !important;
}

/* Sub Banner Styles */
.subBanner {
  position: relative;
  padding: 180px 0 80px;
  text-align: center;
  background-color: #000; /* Dark background so header is visible if transparent */
  background-image: url("../images/common/footer-bg.jpg"); /* Placeholder or reuse footer bg */
  background-size: cover;
  background-position: center;
  color: #fff;
}
.subBanner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.subBanner h1 {
  position: relative;
  font-family: "neue_haas_grotesk_display65Md";
  font-size: 60px;
  color: #fff;
  z-index: 1;
}


/* navbar hiding script  */
.headerWrap{
    transition: transform 0.35s ease, opacity 0.35s ease;
}

/* .headerHidden{
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
} */
.headerHidden {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(-100%) !important;
    transition: all 0.3s ease !important;
    z-index: -1 !important; /* Forces it behind everything */
}


.commercial_hover:hover {
  background-color: var(--mediumyellow);
}

.res_hover:hover {
      background-color: var(--darkyellow);
}

.interior_hov:hover {
  background-color: var(--lightyellow);
}

.post_hov:hover{
  background-color: var(--yellow);
}

/* icon link style  */
.icon_style {
  display: flex;
  justify-content: center;
}

.anchortag_p p{
  color: #fff;
}

/* our company scroll  */
.ourCompanyVerticalScroll {
    height: 720px;
    overflow: hidden;
    position: relative;
}

.scrollTrack {
    display: flex;
    flex-direction: column;
    animation: verticalScroll 20s linear infinite;
    will-change: transform;
}

/* IMPORTANT: ensure no spacing issues */
.scrollTrack img {
    width: 100%;
    height: 720px; /* FIXED height for perfect sync */
    object-fit: cover;
    display: block;
}

@keyframes verticalScroll {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}


