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

body {
  scroll-behavior: smooth;
  overflow-x: hidden;
  background-color: #F7F6F3;
  font-family: Satoshi-Regular;
}

@font-face {
  font-family: Satoshi-Regular;
  src: url(../fonts/Satoshi-Regular.otf);
}

@font-face {
  font-family: Satoshi-Medium;
  src: url(../fonts/Satoshi-Medium.otf);
}

@font-face {
  font-family: SoleilBook;
  src: url(../fonts/SoleilBook.otf);
}

@font-face {
  font-family: Satoshi-Light;
  src: url(../fonts/Satoshi-Light.otf);
}

@font-face {
  font-family: Spectral-ExtraLight;
  src: url(../fonts/Spectral-ExtraLight.ttf);
}

@font-face {
  font-family: Spectral-ExtraLight-Italic;
  src: url(../fonts/Spectral-ExtraLightItalic.ttf);
}

.color {
  color: var(--color) !important;
}

.font-spectral {
  font-family: Spectral-ExtraLight;
}

a {
  text-decoration: none;
  color: inherit;
}

.teamName {
  font-family: Spectral-ExtraLight-Italic;
  font-size: 37px;
}

.quiz-question {
  font-size: 20px;
  font-family: Spectral-ExtraLight;
  font-weight: 600;
  margin-bottom: 30px !important;
  letter-spacing: 1px;
}

.options_text {
  font-size: 18px;
  font-family: Satoshi-Light;
}

.home_header {
  width: 100%;
  height: auto;
  padding: 20px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
}

.aboutHeadings1 h3 {
  max-width: 100% !important;
}

.blackOverly::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.home_header.scrolled {
  background: rgba(0, 0, 0, 0.7);
  transition: background 0.3s ease;
}


.menu_item {
  position: relative;
  transform: translateY(-3px);
}

.services_list {
  position: absolute;
  width: 250px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  left: 0;
  top: 40px;
  z-index: 1000;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 2s ease, opacity 0.25s ease;
  padding-bottom: 0;
}

.scrolled .services_list {
  top: 64px;
}

.services_list a {
  display: block;
  padding: 10px 15px;
  color: white;
  text-decoration: none;
}

.services_list a:hover {
  background: rgba(0, 0, 0, 0.8);
}

.menu_item:hover .services_list {
  max-height: 400px;
  opacity: 1;
  padding-bottom: 5px;
}

.header_logo {
  width: 300px;
}

.home_header_banner {
  width: 100%;
  min-height: 100vh;
}

.page_header_banner {
  width: 100%;
  min-height: 70vh;
}


.normalPageHeight {
  min-height: 70vh;
  max-height: 70vh;
}
.ContactHeight {
  min-height: 50vh;
  max-height: 50vh;
}

.header_menu_items {
  display: flex;
  align-items: center;
  gap: 6vw;
  padding-top: 5px;
  padding-right: 4vw;
}

.header_menu_items a,
.header_menu_items span {
  color: white;
  font-size: 13px;
  font-family: Satoshi-Light;
  letter-spacing: 4px;
  font-weight: 100;
  text-decoration: none;
  /* Remove default underline */
  position: relative;
  /* Required to position the underline */
  transition: 0.3s ease-in-out;
  text-wrap: nowrap;
  cursor: pointer;
}

/* The custom underline */
.header_menu_items a::after,
.header_menu_items span::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background-color: #F3A18B;
  transition: width 0.4s ease-in-out;
}

/* On hover, grow the width to 100% */
.header_menu_items a:hover,
.header_menu_items span:hover {
  color: #F3A18B;
}

.header_menu_items a:hover::after,
.header_menu_items span:hover::after {
  width: 100%;
}



.home_header_banner,
.page_header_banner {
  background-size: cover;
  background-repeat: no-repeat;
}

.header_icons {
  display: flex;
  align-items: center;
  gap: 25px;
}

.header_icons img {
  width: 30px;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

.header_icons img:hover {
  scale: 1.1;
}

.selected_projects_wrap {
  width: 90%;
  display: block;
  margin: auto;
  margin-top: 80px;
  margin-bottom: 60px;
}

.project_box {
  width: 250px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  font-family: Satoshi-Medium;
  letter-spacing: 3px;
  color: gray;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

.project_box:hover {
  /* text-decoration: underline; */
  color: #F3A18B;
}


#testimonials_embla .embla__container {
  position: relative;
  min-height: 300px;
  /* match your slide's actual height */
}

#testimonials_embla.embla {
  overflow: hidden;
  position: relative;
}

#testimonials_embla .embla__container {
  position: relative;
  min-height: 200px;
  /* adjust to your content height */
}

#testimonials_embla .embla__slide {
  flex: 0 0 100%;
  min-width: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

#testimonials_embla .embla__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

.project_box.active {
  color: #F3A18B;
}

.borderSides {
  border-left: 1px solid black;
  border-right: 1px solid black;
}

.borderSides1 {
  border-left: 1px solid black;
}

.main_header {
  overflow: hidden;
  display: flex;
  flex-wrap: nowrap;
  height: 100vh;
  gap: 5px;
  overflow: hidden;
}

.left_part,
.right_part {
  width: 50%;
  /* ✅ explicit starting width */
  flex-shrink: 0;
  /* ✅ prevents flex from fighting the width */
  flex-grow: 0;
  /* ✅ same */
  transition: width 0.5s ease;
  /* ✅ transition must be here */
  position: relative;
  overflow: hidden;
}

.media-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.media-container .default-img,
.media-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.6s ease;
  opacity: 1;
}

.media-container video {
  display: block;
  opacity: 0;
  z-index: 1;
}

.caption {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 24px;
  font-weight: 500;
  z-index: 3;
  font-family: Spectral-ExtraLight;
}

.caption .discover {
  font-size: 15px;
  display: block;
  text-align: center;
  margin-top: 8px;
  margin-bottom: 20px;
  letter-spacing: 2px;
  font-family: Satoshi-Light;
  text-transform: uppercase;
  position: relative;
  /* required */
}

/* underline */
.caption .discover::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -5px;
  width: 60px;
  height: 2px;
  background-color: #e08d77;
}

/* Show when active */
.media-container .show {
  opacity: 1 !important;
  z-index: 2;
}

.media-container .hide {
  opacity: 0 !important;
  z-index: 1;
}

.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  font-size: 48px;
  color: white;
  font-weight: bold;
  pointer-events: none;
  letter-spacing: 12px;
  font-family: "canela-bold";
}

/* Blur effect instead of grayscale */
.blur-effect {
  filter: blur(6px);
  transition: filter 0.5s ease;
}

/* Optional overlay (keep color, just soften visually) */
.blur-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.15);
  /* light overlay instead of dark */
  z-index: 2;
  transition: all 0.5s ease;
}


/* Apply blur to actual media */
.blur-effect img,
.blur-effect video {
  filter: blur(6px);
  transition: filter 0.5s ease;
}

/* Optional soft overlay */
.blur-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  z-index: 2;
}

.left_part .media-container img,
.right_part .media-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 4s ease-in-out;
  /* ✅ transition on base state */
}

/* FIX 3: Apply zoom via .zoom-effect on the parent */
.zoom-effect .media-container img {
  transform: scale(1.3);
  /* scale(5) is too extreme, 1.3 looks natural */
}

@media (max-width: 768px) {
  .main_header {
    flex-direction: column;
    height: 100vh;
  }

  .left_part,
  .right_part {
    width: 100% !important;
    height: 50%;
    transition: height 0.5s ease;
  }
}

.selected_projects_wrap h2 {
  font-size: 47px;
  font-family: Spectral-ExtraLight;
}

.selected_projects_wrap .intro {
  font-size: 18px;
  font-family: Satoshi-Regular;
  max-width: 610px;
  margin-top: 20px;
}

.orange_line {
  color: #F3A18B;
  font-size: 15px;
  letter-spacing: 3px;
  font-family: Satoshi-Medium;
}

.home_header_banner .gridContainer {
  position: absolute;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0px;
  display: grid;
  height: 60px;
  grid-template-columns: repeat(4, 1fr);
  background-color: #e8826a;
  /* background-color: rgb(255, 255, 255, 0.6); */
  align-items: center;
}

.orangeText{
  color: #e8826a !important;
}

.gridItem {
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-family: Satoshi-Medium;
  letter-spacing: 3px;
}

.gridItem {
  animation: fadeUp 0.8s ease-out forwards;
  animation-delay: 0.4s;
  transition: 0.2s ease-in-out;
}


.gridItem a {
  text-decoration: none;
  color: white;
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
  transition: color 0.3s ease-in-out;
}


.quiz-result h4 {
  font-family: Satoshi-Light;
}

.text_orrnage {
  color: #e08d77;
}

.gridItem a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #fff;
  transition: width 0.4s ease-in-out;
}

.gridItem a:hover::after {
  width: 96%;
}

.gridItem a:hover {
  color: #fff;
}


@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
    /* Starts 30px below */
  }

  to {
    opacity: 1;
    transform: translateY(0);
    /* Ends in its natural position */
  }
}

.gridItem:nth-child(2) {
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
}

.gridItem:nth-child(3) {
  border-right: 1px solid #fff;
}

.proejct_heading {
  font-size: 60px !important;
}



.projectGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 25px;
}

/* When a project card is the last item and odd, take full width */
.projectCard:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.locationImage {
  width: 100%;
  height: 600px;
  object-fit: cover;
}


.press-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  column-gap: 20px;
  row-gap: 40px;
}

.press_image_box {
  overflow: hidden;
  height: 550px;
  width: 100%;
}

.press_item img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: 5px;
  transition: 0.3s ease-in-out;
}

.press_item:hover img {
  scale: 1.1;
}

.press_item:hover p {
  color: #F3A18B;
}

.press_item p {
  font-size: 25px;
  font-family: Spectral-ExtraLight;
  margin-top: 10px;
  transition: 0.3s ease-in-out;

}

.contactPageForm {
  justify-content: center;
  align-items: center;
  display: flex;
  padding: 100px;
  height: 600px;
  background-color: #2B3644;
}

/* Tablet: 2 columns (typically 768px and up) */
@media (min-width: 768px) {
  .press-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop: 3 columns (typically 1024px and up) */
@media (min-width: 1024px) {
  .press-list {
    grid-template-columns: repeat(3, 1fr);
  }
}


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

  .main_header {
    flex-direction: column;
  }

  .projectGrid {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
    margin-bottom: 15px;
  }

  .header_part {
    width: 100%;
    height: 50vh;
  }

  .contactPageForm {
    justify-content: center;
    align-items: center;
    display: flex;
    padding: 20px;
    height: 550px;
    background-color: #2B3644;
  }

  .locationImage {
    margin: 30px auto;
  }

  .homeProjectImageWrap img {
    height: 500px !important;
  }

  .mobileImageFull img {
    height: 100% !important;
  }

  .proejct_heading {
    font-size: 40px !important;
  }

  .solution_heading {

    font-size: 35px !important;
  }
}


.projectCard {
  width: 100%;
  height: 80vh;
  min-height: 500px;
  overflow: hidden;
  position: relative;
}

/* Image */
.projectCard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Zoom */
.projectCard:hover img {
  transform: scale(1.1);
}

/* Overlay (hidden by default) */
.projectCard::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  /* 🔥 hidden initially */
  transition: opacity 0.4s ease;
  z-index: 1;
}

/* Show overlay on hover */
.projectCard:hover::after {
  opacity: 1;
  cursor: pointer;
}


.projectContent {
  position: absolute;
  width: 90%;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
  color: white;
  z-index: 5;
}

.projectContent h3 {
  font-family: Spectral-ExtraLight;
  font-size: 37px;
}

.projectContent p {
  font-family: Satoshi-Light;
  font-size: 17px;
}

.projectCard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease-in-out;
}

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

  .home_header_banner {
    padding-top: 300px !important;
  }

  .services_list {
    background: rgba(0, 0, 0, 1);
  }

  .services_list {
    position: relative;
    width: 250px;
    left: 0;
    top: 5px;
  }

  .scrolled .services_list {
    top: 20px !important;
  }

  .menu_item {
    text-align: center;
  }

  .home_header_banner .content h1,
  .page_header_banner .content h1 {
    font-size: 35px;
  }

  .selected_projects_wrap h2 {
    font-size: 40px;
  }

  .ourValues h3 {
    font-size: 35px;
  }

  .AboutSection h3 {
    font-size: 35px !important;
  }

  .subscribe_section h3 {
    font-size: 35px !important;
  }

  .contactSection h4 {
    font-size: 30px !important;
  }


  .ValuesSection h3 {
    font-size: 35px !important;
  }

  .fixed_sidebar_warp {
    display: none !important;
  }

  .solution_dots_wrap {
    display: none !important;
  }

  .home_header_banner {
    width: 100%;
    min-height: 100vh;
  }


  .home_header_banner .gridContainer {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 20px;
    position: relative;
    height: fit-content !important;
    padding: 20px 0;
    bottom: 0 !important;
  }

  .home_header_banner .content {
    position: relative !important;
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
    bottom: 50px !important;
  }

  .gridItem:nth-child(2) {
    border: none;
    border-left: 1px solid black;
  }

  .gridItem:nth-child(3) {
    border: none;
    border-right: 1px solid black;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .home_header_banner .gridContainer {
    grid-template-columns: repeat(1, 1fr);
  }

  .homeProjectImageWrap {
    height: 600px !important;
  }

  .gridItem:nth-child(2) {
    border: none;
  }

  .gridItem:nth-child(3) {
    border: none;
  }

}



.home_header_banner .content,
.page_header_banner .content {
  position: absolute;
  width: 90%;
  left: 50%;
  transform: translateX(-50%);
  bottom: 100px;
}

.page_header_banner .content {
  bottom: 50px;
  z-index: 10 !important;
}



.home_header_banner .content h1,
.page_header_banner .content h1 {
  font-size: 41px;
  font-family: Spectral-ExtraLight;
  color: white;
  max-width: 900px;
}

.home_header_banner .content p {
  font-size: 18px;
  font-family: Satoshi-Regular;
  color: white;
  max-width: 630px;
}

.MenuOpener {
  display: none;
}

.project_item {
  position: relative;
  height: 800px;
  overflow: hidden;
  cursor: pointer;
}


.project_item:hover::after {
  opacity: 1;
}

.project_item>* {
  position: relative;
  z-index: 2;
}

.project_item .content {
  opacity: 0;
  transition: 0.3s ease-in-out;
  position: absolute;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
  color: white;
  padding: 0% 30px;
}

.project_item:hover .content {
  opacity: 1;
}

.project_item .content h5 {
  font-size: 37px;
  font-family: Spectral-ExtraLight;
}

.project_item .content p {
  font-size: 18px;
  font-family: Satoshi-Regular;
  margin: 0;
}

.ourValues h3 {
  font-family: Spectral-ExtraLight;
  font-size: 47px;
  max-width: 750px;
}

.values_text {
  font-family: Satoshi-Regular;
  font-size: 17px;
  max-width: 570px;
  color: grey;
}

.values_btn {
  width: 250px;
  height: 60px;
  background-color: #F3A18B;
  border: 2px solid #F3A18B;
  color: white;
  font-size: 12px;
  letter-spacing: 4px;
  outline: none;
  margin-top: 25px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s ease-in-out;
}

/* white layer */
.values_btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: white;
  transform: scaleX(0);
  /* hidden initially */
  transform-origin: left;
  transition: transform 0.4s ease-in-out;
  z-index: -1;
}

/* hover → fill from left to right */
.values_btn:hover::before {
  transform: scaleX(1);
}

/* text color on hover */
.values_btn:hover {
  color: #F3A18B;
}

.contentBanner {
  width: 100%;
  min-height: 500px;
  padding: 120px 5%;
  text-align: center;
  background-color: #2B3644;
}

.content_description {
  max-width: 700px;
  color: white;
  font-family: Satoshi-Light;
  display: block;
  margin: auto;
  font-size: 19px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contentBanner h2,
.last_content h3 {
  color: white;
  font-family: Spectral-ExtraLight;
  font-size: 45px;
}

.last_content h3 {
  color: black;
}

.last_orange {
  color: #F3A18B;
  font-family: Satoshi-Regular;
  font-size: 16px;
  letter-spacing: 3px;
  max-width: 780px;
  line-height: 1.8;
}

.text_orange {
  color: #F3A18B;
  font-family: Satoshi-Regular;
}

.contentBanner .text_orange {
  color: #F3A18B;
  font-family: Satoshi-Light;
  font-size: 16px;
  letter-spacing: 3px;
  max-width: 750px;
  line-height: 1.8;
  display: block;
  margin: auto;
  margin-top: 25px;
  margin-bottom: 20px;
}

.details_last_banner {
  width: 100%;
  height: auto;
  padding: 150px 0;
  display: flex;
}

.details_last_banner img {
  width: 50%;
  height: 800px;
  object-fit: cover;
}

.last_content {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 0 7%;
}

.text_gray {
  color: gray;
}

.last_description {
  font-family: Satoshi-Regular;
  font-size: 18px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 680px;
}

.project_detail_banner {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.projects_grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.projects_row {
  display: flex;
  gap: 20px;
  width: 100%;
  min-height: 500px;
}

.projects_row:nth-child(odd) .project_item:nth-child(1) {
  flex: 13;
}

.projects_row:nth-child(odd) .project_item:nth-child(2) {
  flex: 7;
}

.projects_row:nth-child(even) .project_item:nth-child(1) {
  flex: 7;
}

.projects_row:nth-child(even) .project_item:nth-child(2) {
  flex: 13;
}

.home_blogs_slider {
  width: 100%;
  padding-left: 5%;
  padding-top: 100px;
  padding-bottom: 70px;
}


.project_main_card_wrap {
  width: 100%;
}

.blog_item p {
  font-size: 18px;
  color: black;
  font-family: Satoshi-Light;
  max-width: 90%;
  margin-top: 15px;
  transition: 0.3s ease-in-out;
}

.blog_item:hover p {
  color: #F3A18B;
}



/* Container reset */
.service_project {
  overflow: hidden;
  width: 100%;
}

.service_project__container {
  display: flex;
  /* Negative margin equal to the padding-left of the first slide */
  margin-left: -10px;
  backface-visibility: hidden;
  touch-action: pan-y;
}

/* Individual Slide Logic */
.service_project__slide {
  flex: 0 0 100%;
  /* Mobile: 1 slide */
  min-width: 0;
  /* 10px on each side = 20px gap between slides */
  padding-left: 10px;
  padding-right: 10px;
}

/* Tablet: Show 2 slides */
@media (min-width: 768px) {
  .service_project__slide {
    flex: 0 0 50%;
  }
}

/* Desktop: Show 3 slides */
@media (min-width: 992px) {
  .service_project__slide {
    flex: 0 0 33.3333%;
  }
}

/* Ensure images and content fill the slide width */
.blog_image_box,
.blog_content_index {
  width: 100%;
}


.home_blogs_slider h3 {
  font-size: 47px;
  font-family: Spectral-ExtraLight;
  margin-bottom: 30px;
}

.blog_image_box {
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.blog_image_box:hover img {
  scale: 1.1;
}

.blog_image_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease-in-out;
}


.ourValues {
  width: 90%;
  display: block;
  margin: auto;
  padding: 150px 0;
}

.aboutValues {
  padding: 90px 0;
  padding-bottom: 0;
}

.subscribe_section {
  width: 100%;
  height: auto;
  padding: 150px 5%;
  display: flex;
  justify-content: space-between;
  background-color: #2B3644;
}

@media (min-width:992px) {
  .serviceImage {
    width: 100%;
    min-height: 650px;
    object-fit: cover;
  }
}


.subscribe_form input,
.footer_input {
  width: 100%;
  height: 45px;
  border: none;
  outline: none;
  background-color: transparent;
  color: white;
  border-bottom: 1px solid white;
}

.projects_form input,
.projects_form textarea {
  border-color: #2B3644 !important;
  color: #2B3644 !important;
}

.projects_form input::placeholder,
.projects_form textarea::placeholder {
  color: #2B3644 !important;
}

.text_grays {
  color: #2B3644 !important;

}

.subscribe_form textarea {
  width: 100%;
  height: 150px;
  border: none;
  outline: none;
  background-color: transparent;
  color: white;
  border: 1px solid white;
  padding: 5px;
}

.subscribe_form input::placeholder,
.footer_input::placeholder,
.subscribe_form textarea::placeholder {
  color: white;
}


.labelText {
  margin-bottom: 11px;
  font-size: 17px;
}

.blogs_text {
  font-family: Satoshi-Light;
  font-size: 19px;
  max-width: 920px;
}

.blog_content {
  width: 90%;
  margin: auto;
  padding: 60px 0;
}

.blog_content p {
  font-size: 18px;
  font-family: Satoshi-Light;
}

.blog_content h2,
.blog_content h3,
.blog_content_index h3 {
  font-family: Spectral-ExtraLight;
  font-weight: 600;
}

.blog_content_index {
  padding: 20px;
}

.headerH h1 {
  text-align: left !important;
}

.guide_input {
  width: 100%;
  height: 50px;
  background-color: transparent;
  border: none;
  outline: none;
  border-bottom: 1px solid #2B3644;
  color: #2B3644;

}

.guide_input::placeholder {
  color: #2B3644;
}

.bgCream {
  background-color: #E1D9D1;
}

.customNav {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  color: white;
  background-color: #005a70;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 50px;
  z-index: 100;
  font-size: 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.BlogsNavArrow {
  background-color: transparent;
  border: none;
  outline: none;
  color: white;
  transition: 0.3s ease-in-out;
}

.BlogsNavArrow:hover {
  color: #F3A18B;
  scale: 1.1;
}


.subscrible_btn {
  width: 180px;
  height: 50px;
  color: #fff;
  font-size: 12px;
  letter-spacing: 3px;
  background-color: #F3A18B;
  border: 2px solid #F3A18B;
  font-family: Satoshi-Regular;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s ease-in-out;
}

/* animated fill */
.subscrible_btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #fff;
  z-index: -1;
  transition: all 0.4s ease-in-out;
}

/* hover effect */
.subscrible_btn:hover::before {
  width: 100%;
}

.subscrible_btn:hover {
  color: #F3A18B;
}

.subscribe_section h3 {
  font-size: 47px;
  font-family: Spectral-ExtraLight;
  max-width: 500px;
  color: white;
}


h1 i,
h2 i,
h3 i,
h4 i,
h5 i,
h6 i {
  font-family: Spectral-ExtraLight-Italic;
}

h1 em,
h2 em,
h3 em,
h4 em,
h5 em,
h6 em {
  font-family: Spectral-ExtraLight-Italic;
}

.subscribe_section p {
  font-size: 19px;
  font-family: Satoshi-Regular;
  line-height: 1.5;
  margin-top: 15px;
  color: white;
}

.footer_heading {
  font-family: Spectral-ExtraLight;
  font-size: 27px;
  color: white;
}

.footer_text {
  font-family: Satoshi-Light;
  font-size: 18px;
  max-width: 355px;
  color: white;
}

.copyrightbar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid white;
  padding-top: 30px;
  color: white;
  margin-top: 50px;
  font-family: Satoshi-Light;
  font-size: 18px;
}

.contactSection {
  width: 100%;
  height: auto;
  padding: 100px 0;
  padding-left: 5%;
  background-color: #E1D9D1;
}

.contactSection .orange {
  color: #F3A18B;
  font-size: 15px;
  font-family: Satoshi-Medium;
  letter-spacing: 3px;
}

.contactSection h4 {
  font-size: 35px;
  font-family: Spectral-ExtraLight;
  max-width: 550px;
}

.contactSection .text {
  font-size: 18px;
  font-family: Satoshi-Regular;
  max-width: 550px;
  line-height: 1.5;
  margin-top: 15px;
}

@media (min-width:1200px) {
  .subscribeFormWidth {
    width: 550px;
  }
}

.ValuesSection {
  width: 100%;
  padding: 40px 5%;
  height: 700px;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: end;
}

.ValuesSection h3 {
  font-size: 47px;
  color: white;
  font-family: Spectral-ExtraLight;
  /* max-width: 750px; */
  max-width: 900px;
}

.quote_image {
  width: 100px;
  margin-bottom: 10px;
}

.socialIconsContact img {
  width: 35px;
  height: 35px;
  object-fit: contain;
  transition: 0.2s ease-in-out;
  cursor: pointer;
}

.socialIconsContact img:hover {
  scale: 1.1;
}

.ValuesSection .maxWidth {
  font-size: 47px;
  color: white;
  font-family: Spectral-ExtraLight;
  max-width: 810px !important;
}

.ValuesSection button {
  min-width: 200px;
  padding: 0 50px !important;
  height: 60px;
  font-size: 12px;
  letter-spacing: 2px;
  font-family: Satoshi-Regular;
  border: 2px solid transparent;
  background-color: rgba(255, 255, 255, 0.4);
  color: white;
  margin-top: 25px;

  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s ease-in-out, border 0.4s ease-in-out;
}

/* white fill layer */
.ValuesSection button::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: white;
  transform: scaleX(0);
  /* hidden initially */
  transform-origin: left;
  transition: transform 0.4s ease-in-out;
  z-index: -1;
}

/* hover → fill left to right */
.ValuesSection button:hover::before {
  transform: scaleX(1);
}

/* hover styles */
.ValuesSection button:hover {
  border: 2px solid white;
  color: black;
}


.AboutSection {
  width: 100%;
  padding: 20px 5%;
  height: 700px;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.AboutSection h3 {
  font-size: 47px;
  color: white;
  font-family: Spectral-ExtraLight;
  max-width: 650px;
}

.AboutSection p {
  font-size: 18px;
  color: white;
  font-family: Satoshi-Regular;
  max-width: 510px;
  line-height: 1.5;
  font-family: Satoshi-Light;
  margin-top: 15px;

}

.AboutSection button {
  width: 200px;
  height: 50px;
  font-size: 12px;
  letter-spacing: 2px;
  font-family: Satoshi-Regular;
  border: 2px solid transparent;
  background-color: rgba(255, 255, 255, 0.4);
  color: white;
  margin-top: 25px;

  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease-in-out, border 0.3s ease-in-out;
}

/* white fill layer */
.AboutSection button::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: white;
  transform: scaleX(0);
  /* hidden */
  transform-origin: left;
  transition: transform 0.3s ease-in-out;
  z-index: -1;
}

/* hover → fill left to right */
.AboutSection button:hover::before {
  transform: scaleX(1);
}

/* hover styles */
.AboutSection button:hover {
  border: 2px solid white;
  color: #000;
  /* or #e8826a if you want theme color */
}

.footer_wrap {
  width: 100%;
  height: auto;
  padding: 80px 5%;
  padding-bottom: 20px;
  background-color: #2B3644;
}

.footer_wrap a {
  color: white;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

.footer_wrap a:hover {
  color: #F3A18B;
}

.footer_icons {
  display: flex;
  align-items: center;
  gap: 50px;
  font-size: 30px;
  color: white;
}

.footer_icons i {
  transition: 0.3s ease-in-out;
  color: white;
}

.footer_icons i:hover {
  color: #F3A18B;
  scale: 1.1;
  cursor: pointer;
}

.footer_logo {
  max-width: 90%;
}


/* ── Home Gallery Grid ───────────────────────────────── */
.home_gallery_grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  width: 100%;
}

.gallery_item {
  height: 400px;
}

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



/* ── Testimonials Section ────────────────────────────── */
.home_testimonials {
  width: 100%;
  background: #E1D9D1;
  padding: 110px 5%;
}

#testimonials_splide .splide__track {
  overflow: hidden;
}

/* ── Each Slide Layout ───────────────────────────────── */
.testimonial_slide {
  display: flex;
  align-items: center;
  gap: 80px;
  width: 100%;
  justify-content: space-between;
}

/* ── Left Column ─────────────────────────────────────── */
.testimonial_left {
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.testimonial_quote {
  font-size: 70px;
  color: #e8826a;
}

.testimonial_title {
  font-size: 57px;
  font-family: Spectral-ExtraLight;
  margin: 0;
}

/* ── Right Column ────────────────────────────────────── */
.testimonial_right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 850px;
}

.testimonial_text {
  font-size: 27px;
  font-family: Satoshi-Regular;
  margin: 0;
}

.testimonial_name {
  font-size: 27px;
  letter-spacing: 2px;
  color: #e8826a;
  font-family: Satoshi-Light;
}



/* ── Custom Dots ─────────────────────────────────────── */
.testimonial_dots {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 20px;
}

.testimonial_dots .t_dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid #e8826a;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.testimonial_dots .t_dot.is-active {
  background: #e8826a;
  transform: scale(1.2);
}

.home_testimonials .splide__slide {
  display: flex;
  align-items: center;
}

.project_item_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease-in-out;
}

.project_image_wrap {
  overflow: hidden;
}

.project_image_wrap:hover img {
  scale: 1.1;
}

.RightCenter {
  position: relative;
}

.RightCenter::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  /* 50% black overlay */
  z-index: 1;
}

.RightCenter>* {
  position: relative;
  z-index: 2;
}

.image_box_warp {
  width: 100%;
  height: 400px;
  overflow: hidden;
  text-align: center;
  font-size: 30px;
}

.container-90 {
  max-width: 90%;
  display: block;
  margin: auto;
}

.image_box_warp:hover img {
  scale: 1.1;
}

.image_box_warp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.service_link p {
  transition: 0.3s ease-in-out;
}

.service_link:hover p {
  color: #e08d77;
}


@media (max-width:1400px) and (min-width:992px) {
  .project_item::before {
    background-size: contain !important;
  }

  .AboutSection,
  .RightCenter {
    background-position: center right;
  }

  .RightCenter {
    background-position: center;
  }

  .project_item {
    height: 650px !important;
  }
}




/* ── Tablet ──────────────────────────────────────────── */
@media (max-width: 992px) {
  .testimonial_slide {
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
  }

  .details_last_banner {
    width: 100%;
    height: auto;
    padding: 50px 0;
    display: flex;
    gap: 30px;
    flex-direction: column;
  }

  .details_last_banner img {
    width: 100%;
    height: 500px;
    object-fit: cover;
  }

  .last_content {
    width: 100%;
  }

  .testimonial_left {
    min-width: unset;
    width: 100%;
  }
}

/* ── Mobile ──────────────────────────────────────────── */
@media (max-width: 576px) {
  .home_testimonials {
    padding: 40px 5%;
  }

  .testimonial_title {
    font-size: 50px;
  }

  .testimonial_text {
    font-size: 20px;
  }

  .testimonial_name {
    font-size: 20px;
  }
}



/* ── Tablet (max 992px): 2 / 2 / 1 ──────────────────── */
@media (max-width: 992px) {
  .home_gallery_grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* 5th item centers alone on last row */
  .home_gallery_grid .gallery_item:nth-child(5) {
    grid-column: 1 / -1;
    /* ← spans full width */
    max-width: calc(50% - 7.5px);
    /* ← matches sibling width */
    margin: 0 auto;
    /* ← centers it */
  }
}

/* ── Mobile (max 576px): 1 column ───────────────────────*/
@media (max-width: 576px) {
  .home_gallery_grid {
    grid-template-columns: 1fr;
  }

  /* reset 5th item override on mobile */
  .home_gallery_grid .gallery_item:nth-child(5) {
    grid-column: auto;
    max-width: 100%;
    margin: 0;
  }
}


@media (max-width: 992px) {
  .projects_row {
    flex-direction: column;
  }

  .subscribe_section {
    flex-direction: column;
    padding: 50px 5% !important;
  }

  .subscribe_form .col-sm-6,
  .subscribe_form .col-12 {
    padding: 0 25px !important;
  }

  .ValuesSection {
    width: 100%;
    padding: 40px 5%;
    height: 700px;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: start;
  }

  .ourValues {
    width: 90%;
    display: block;
    margin: auto;
    padding: 50px 0;
  }

  .projects_grid {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .projects_row .project_item {
    flex: 1 !important;
    width: 100% !important;
    height: 550px !important;
    /* ← this was missing */
  }
}

@media (max-width: 576px) {
  .projects_row .project_item {
    height: 450px !important;
  }
}


@media (max-width:1500px) {

  .header_menu_items {
    display: flex;
    align-items: center;
    gap: 4vw;
    padding-top: 5px;
    padding-right: 3vw;
  }
}

@media (max-width:1300px) {
  .header_logo {
    width: 250px;
  }

  .header_menu_items {
    display: flex;
    align-items: center;
    gap: 4vw;
    padding-top: 5px;
    padding-right: 2.5vw;
  }
}

@media (max-width:1199px) {
  .header_logo {
    width: 200px;
  }

  .header_menu_items {
    display: flex;
    align-items: center;
    gap: 4vw;
    padding-top: 5px;
    padding-right: 2.5vw;
  }
}


@media (max-width:1150px) {
  .header_logo {
    width: 150px;
  }

  .header_menu_items {
    display: flex;
    align-items: center;
    gap: 4vw;
    padding-top: 4px;
    padding-right: 2vw;
  }

  .header_menu_items a,
  .header_menu_items span {
    font-size: 12px;
  }
}

@media (max-width:1100px) {

  .header_menu_items {
    display: flex;
    align-items: center;
    gap: 3vw;
    padding-top: 4px;
    padding-right: 1vw;
  }
}

@media (max-width: 992px) {

  .header_logo {
    width: 200px;
  }

  .header_menu_items a,
  .header_menu_items span {
    font-size: 14px;
  }

  .header_menu_items {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 40px;
    left: 0;
    width: 100%;
    overflow: hidden;
    height: 0;
    top: 100%;
    transform: translateY(-10px);
    pointer-events: none;
    will-change: transform, opacity, backdrop-filter;
    transform: translate3d(0, -10px, 0);
    isolation: isolate;
    z-index: 1000;
  }

  .header_menu_items.active {
    height: 100vh;
    padding: 50px 0;
    background: rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: blur(12px) saturate(1.4);
    -webkit-backdrop-filter: blur(12px) saturate(1.4) !important;
    transform: translateY(0);
    pointer-events: all;
    z-index: 1000;
  }

  .fa-x {
    display: none;
  }

  .MenuOpener {
    display: block;
    color: white;
    font-size: 22px;
    padding-left: 5px;
    cursor: pointer;
  }

  .MenuOpener i {
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
      opacity 0.3s ease;
  }

  /* icon swap animations */
  .fa-bars {
    transform: rotate(0deg);
    opacity: 1;
  }

  .fa-bars.hiding {
    transform: rotate(90deg);
    opacity: 0;
  }

  .fa-x {
    transform: rotate(-90deg);
    opacity: 0;
  }

  .fa-x.showing {
    transform: rotate(0deg);
    opacity: 1;
  }

}


@media (max-width:768px) {
  .header_icons {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .projects_row {
    min-height: 1000px;
  }


  .contentBanner h2,
  .last_content h3 {
    font-size: 35px;
  }

  .projects_grid {
    gap: 10px;
  }

  .projects_row {
    gap: 10px;
  }

  .selected_projects_wrap {
    text-align: center;
  }

  .customNav {
    display: none !important;
  }

  .home_blogs_slider {
    width: 100%;
    padding-left: 5%;
    padding-top: 50px;
    padding-bottom: 30px;
  }

  .copyrightbar {
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    border-top: 1px solid white;
    padding-top: 30px;
  }

  .footer_logo {
    display: block;
    margin: auto;
  }

  .footer_icons {
    justify-content: center;
  }

  .footer_wrap {
    padding: 50px 5%;
    padding-bottom: 20px;
    background-color: #2B3644;
  }

  .contactSection {
    width: 100%;
    height: auto;
    padding: 50px 5%;
  }

  .borderSides {
    border: none;
  }

  .project_box {
    width: 100%;
    margin-top: 20px;
  }


  .selected_projects_wrap .intro {
    margin-top: 10px;
  }

  .header_logo {
    width: 160px;
  }
}




/* SCROLL ANIMAITON */

.home_service_content {
  padding: 0 10%;
}

.home_service_content .orangeText {
  color: #F3A18B;
  letter-spacing: 3px;
  font-family: Satoshi-Light;
  font-size: 16px;
  line-height: 2;
  max-width: 600px;
}

.description {
  color: white;
  font-family: Satoshi-Regular;
  font-size: 18px;
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-weight: 200;
}

.solution_heading {
  font-family: Spectral-ExtraLight;
  font-size: 47px;
  color: white;
  margin-bottom: 20px;
}

.general_button {
  width: 250px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 12px;
  letter-spacing: 3px;
  font-family: Satoshi-Light;
  background-color: #F3A18B;
  border: 2px solid #F3A18B;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s ease-in-out;
}

.general_button::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: white;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease-in-out;
  z-index: -1;
}

.general_button:hover::before {
  transform: scaleX(1);
}

.general_button:hover {
  color: #e8826a;
}


.solutions_section {
  position: relative;
  padding-top: 110px;
  padding-bottom: 100px;
  background-color: #2B3644;
}

.solutions_section.pinned {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 10;
}

.solution-image {
  position: absolute;
  inset: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.solution-image.active {
  opacity: 1;
}

.solution_dots_wrap {
  width: 20px;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
}

.dots_box {
  width: 10px;
  height: 10px;
  border: 1px solid #e8826a;
  border-radius: 50%;
}

.dots_box.active {
  background-color: #e8826a;
}

html,
body {
  overflow-x: hidden;
}


#solution_section {
  position: relative;
}

.solution-pin-wrapper {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.image-col {
  position: relative;
  height: 100vh;
}

.col-lg-6.padding {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
}


.solution-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  pointer-events: none;
}

.solution-image.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}



.solution_box {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;

  transform: translateY(-50%) translateY(40px);
  opacity: 0;

  transition:
    opacity 0.5s ease,
    transform 0.5s ease;

  pointer-events: none;
  z-index: 1;
}

/* ACTIVE */
.solution_box.opened {
  opacity: 1;
  transform: translateY(-50%) translateY(0);
  pointer-events: auto;
  z-index: 2;
}

/* INACTIVE */
.solution_box.closed {
  opacity: 0;
  transform: translateY(-50%) translateY(40px);
}


.headingmaxwidth {
  max-width: 510px;
}

.homeProjectImageWrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  /* required for overlay */
}

/* Overlay */
.homeProjectImageWrap::after {
  content: "";
  position: absolute;
  inset: 0;
  /* top:0; left:0; right:0; bottom:0 */
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: 0.3s ease;
  z-index: 2;
}

/* Show overlay on hover */
.homeProjectImageWrap:hover::after {
  opacity: 1;
}

/* Content should stay on top */
.homeProjectImageWrap .content {
  z-index: 3;
}

.homeProjectImageWrap img {
  width: 100%;
  height: 100%;
  transition: 0.5s ease-in-out;
  object-fit: cover;
}

.homeProjectImageWrap:hover img {
  scale: 1.1;
  z-index: 1;
}

@media (max-width: 991px) {

  .solution-pin-wrapper {
    height: auto;
    overflow: visible;
  }

  .image-col {
    height: 50vh;
  }

  .col-lg-6.padding {
    position: relative;
    height: 50vh;
    display: flex;
    align-items: start;
  }


  .home_service_content {
    padding: 5%;
  }


  .solutions_section {
    position: relative;
    padding-top: 0px;
    padding-bottom: 50px;
  }

}









.fixed_sidebar_warp {
  width: 320px;
  min-height: 120px;
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  padding: 0px 0px;
  background-color: rgba(70, 68, 68, 0.5);
  /* Semi-transparent white */
  backdrop-filter: blur(2px);
  /* The blur effect */
  -webkit-backdrop-filter: blur(10px);
  /* For Safari support */
  border: 1px solid rgba(53, 51, 51, 0.3);
  /* Optional: Adds a "glass" border */
  overflow: hidden;
  transition: 0.5s ease-in-out;
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
  z-index: 10;
}

.fixed_sidebar_warp.inactive {
  width: 45px;
  padding: 0px 8px;
}


.fixed_sidebar_warp.inactive span {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-8px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.fixed_sidebar_warp:not(.inactive) span,
.fixed_sidebar_warp.hoverOpened span {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.fixed_sidebar_warp.hoverOpened {
  width: 320px;
}

.sidebar_items {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

}

.sidebar_items a {
  color: white;
  font-size: 15px;
  text-align: center;
  width: 100%;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 2px;
  cursor: pointer;
  position: relative;
  z-index: 1000;
  transition: 0.2s ease-in-out;
  position: relative;
  text-wrap: nowrap;
}

.sidebar_items a i {
  color: #F3A18B;
  font-size: 20px;
  position: absolute;
  left: 3px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-6px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.fixed_sidebar_warp.inactive .sidebar_items a i {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* .sidebar_items a {
  color: #fff;
}

.sidebar_items a:hover {
  background-color: #e8826a;
  color: #F7F6F3;
} */

.sidebar_items a {
  display: flex;
  /* important */
  color: #fff;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s ease-in-out;
}

/* fill layer */
.sidebar_items a::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #e8826a;
  transform: scaleX(0);
  /* hidden */
  transform-origin: left;
  transition: transform 0.4s ease-in-out;
  z-index: -1;
}

/* hover → fill left to right */
.sidebar_items a:hover::before {
  transform: scaleX(1);
}

/* text color */
.sidebar_items a:hover {
  color: #F7F6F3;
}

.sidebar_items a:nth-child(2) {
  border-top: 1px solid white;
  border-bottom: 1px solid white;
}

.fixed_sidebar_warp.hoverOpened i {
  visibility: hidden !important;
}

.fixed_sidebar_warp.hoverOpened a {
  color: #fff !important;
}

.fixed_sidebar_warp.inactive .sidebar_items a:nth-child(2) {
  border-top: 1px solid #e8826a;
  border-bottom: 1px solid #e8826a;
}


.blogIndexHeading {
  font-size: 1.5rem !important;
}



/* LOADER */

.newBlackOverlay {
  position: relative;
  overflow: hidden;
}

/* black overlay */
.newBlackOverlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

/* keep content above overlay */
.newBlackOverlay>* {
  position: relative;
  z-index: 2;
}


.loader {
  width: 48px;
  height: 48px;
  border: 2px solid #2B3644;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

.loader::after {
  content: '';
  box-sizing: border-box;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid;
  border-color: #e8826a transparent;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}




/* Core Embla required styles */
.embla {
  overflow: hidden;
}

.embla__container {
  display: flex;
  gap: 20px;
  /* your original gap */
  cursor: grab;
}

.embla__container:active {
  cursor: grabbing;
}

.embla__slide {
  flex: 0 0 calc((100% - 40px) / 2.7);
  /* matches perPage: 2.7 */
  min-width: 0;
}

/* Tablet */
@media (max-width: 992px) {
  .embla__slide {
    flex: 0 0 calc(90% / 2);
    /* perPage: 2 with right padding peek */
  }
}

/* Mobile */
@media (max-width: 768px) {
  .embla__slide {
    flex: 0 0 90%;
    /* perPage: 1 with 4.5% peek on right */
  }
}




#project_header_banner {
  position: relative;
  overflow: hidden;
}

.header_slide_bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.header_slide_bg.is-active {
  opacity: 1;
  z-index: 1;
}

#project_header_banner .content {
  position: relative;
  z-index: 2;
}




:root {
  --primary: #F3A18B;
  --primary-dark: #e08d77;
  --primary-light: #fde7e1;
}


/* Progress */
.progress-track {
  height: 5px;
  background: #eee;
  border-radius: 10px;
}

.progress-fill {
  height: 100%;
  background: var(--primary);
  transition: 0.4s;
}

/* Question */
.question-text {
  font-size: 20px;
  font-weight: 600;
  margin: 20px 0;
}

/* Options */
.option-item {
  padding: 14px;
  border: 1px solid #eee;
  border-radius: 12px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: 0.2s;
}

.option-item:hover {
  background: var(--primary-light);
  border-color: var(--primary);
}

.option-item.selected {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary-dark);
}

/* Button */
.btn-next {
  background: var(--primary);
  color: #fff;
  border-radius: 10px;
  padding: 10px 20px;
  border: none;
}

.btn-next:hover {
  background: var(--primary-dark);
}

/* Inputs */
.guide_input {
  width: 100%;
  padding: 10px;
  /* border-radius: 10px; */
  border: none;
  border-bottom: 1px solid #000;
}

.guide_input:focus {
  border-color: var(--primary);
  outline: none;
}

/* Summary */
.summary-row {
  background: #f8f7fb;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 6px;
  display: flex;
  justify-content: space-between;
}








.testimonial_details_section {
  padding: 60px 0;
  background-color: #E1D9D1;
}

.testimonial_details_header {
  text-align: center;
  margin-bottom: 50px;
}

.testimonial_details_subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.testimonial_details_grid {
  column-count: 3;
  column-gap: 20px;
}

@media (max-width: 992px) {
  .testimonial_details_grid {
    column-count: 2;
  }
}

@media (max-width: 576px) {
  .testimonial_details_grid {
    column-count: 1;
  }
}

.testimonial_details_card {
  display: inline-block;
  width: 100%;
  background: #ffffff;
  border-radius: 0px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
  break-inside: avoid;
}

.testimonial_details_card:hover {
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.testimonial_details_text {
  font-size: 18px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
  text-align: justify;
  font-family: Spectral-medium;
}

.testimonial_details_name {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a1a2e;
  letter-spacing: 0.5px;
  padding-top: 15px;
}

.testimonial_details_empty {
  text-align: center;
  font-size: 1.2rem;
  color: #999;
  padding: 40px 0;
  grid-column: 1 / -1;
}

/* Optional: Add custom scrollbar */
.testimonial_details_section::-webkit-scrollbar {
  width: 8px;
}

.testimonial_details_section::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.testimonial_details_section::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

.testimonial_details_section::-webkit-scrollbar-thumb:hover {
  background: #555;
}


@media (min-width:1500px) {
  .scalingImage{
    scale:1.5;
    margin:160px auto;
  }
}