@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  scroll-behavior: smooth;
  overflow-x: hidden;
  background-color: #E3E0D3;
  font-family: Helvetica;
  transform: none !important;
}

@font-face {
  font-family: Roboto-Medium;
  src: url(../fonts/Roboto-Medium.ttf);
}

@font-face {
  font-family: Roboto-Regular;
  src: url(../fonts/Roboto_regular.ttf);
}

@font-face {
  font-family: Marta-Regular;
  src: url(../fonts/Marta-owxOB.otf);
}

.font-freight-light {
  font-family: FreightDispProLight-Regular;
}

.desktopMenuItems {
  display: flex;
  gap: 6vw;
}

a {
  text-decoration: none;
  color: inherit;
}

.topNavBar {
  width: 100%;
  padding: 20px 5%;
  position: fixed;
  top: 0;
  z-index: 100;
  background-color: transparent;
  transition: background-color 0.3s ease;
}

.topNavBar.scrolled {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 15px 5%;
}

.menu_toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  cursor: pointer;
}

.menu_toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: white;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile_menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  padding: 100px 0 60px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
  z-index: 150;
}

.mobile_menu .menu_item {
  font-size: 22px;
}

.topNavBar.menu-open .mobile_menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.topNavBar.menu-open .menu_toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.topNavBar.menu-open .menu_toggle span:nth-child(2) {
  opacity: 0;
}

.topNavBar.menu-open .menu_toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 992px) {
  .topNavBar .d-flex .menu_item {
    display: none;
  }

  .topNavBar>.d-flex {
    position: relative;
    z-index: 200;
  }

  .menu_toggle {
    display: flex;
  }

  .mobile_menu {
    display: flex;
  }
}

@media (min-width: 993px) {
  .mobile_menu {
    display: none;
  }
}

.homeheader_wrap {
  width: 100%;
  min-height: 100vh;
  background-image: url("../images/Header.png");
  background-size: cover;
  clip-path: url(#curveClip);
  -webkit-clip-path: url(#curveClip);
  margin-top: -25px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: end;
  flex-direction: column;
  padding-bottom: 80px;
}

.homeheader_wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.homeheader_wrap>* {
  position: relative;
  z-index: 2;
}

.header_content_box {
  width: 60%;
  min-height: 300px;
  background-color: rgb(28, 50, 86, 0.6);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  clip-path: url(#headerContentClip);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 20px 5%;
}

.header_content_box .realestate_text,
.header_content_box .header_subtitle,
.header_content_box .header_description {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
}

.header_subtitle {
  max-width: 730px !important;
}

.header_description {
  max-width: 716px !important;
}

.header_content_box .realestate_text {
  margin-bottom: 12px;
}

.header_content_box .header_description {
  margin-top: 0px;
}

.topLogo {
  width: 250px;
}

.menu_item {
  font-size: 16px;
  font-family: 'Roboto-Regular';
  font-weight: 200;
  letter-spacing: 1px;
  position: relative;
  color: white;
  cursor: pointer;
}

.menu_item::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.menu_item:hover::after {
  transform: scaleX(1);
}


.realestate_text {
  font-size: 16px;
  font-family: 'Roboto-Regular';
  color: white;
  letter-spacing: 2px;
  text-align: center;
}

.header_subtitle {
  font-size: 26px;
  font-family: Marta-Regular;
  color: white;
  font-weight: 100;
  letter-spacing: 1px;
  max-width: 600px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.header_description {
  font-size: 19px;
  font-family: "Roboto", sans-serif;
  color: white;
  font-weight: 200;
  letter-spacing: 1px;
  max-width: 530px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.header_button {
  position: relative;
  width: max-content;
  height: 50px;
  background-color: #1C3256;
  border: 1px solid white;
  color: white;
  padding: 5px 20px;
  font-family: "Roboto", sans-serif;
  letter-spacing: 2px;
  font-size: 15px;
  overflow: hidden;
  cursor: pointer;
  z-index: 1;
  transition: color 0.3s ease;
}

.header_button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
  z-index: -1;
}

.header_button:hover {
  color: black;
}

.header_button:hover::before {
  transform: scaleX(1);
}


.firstButtonGap {
  margin-top: 100px;
}

.hero_buttons_wrap {
  position: absolute;
  right: 5%;
  bottom: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
  z-index: 2;
}

/* Hero entrance sweep, desktop only (min-width: 993px), matching the
   existing mobile/desktop split above. Staged, one after another, with
   a 1s hold before anything moves:
   1. the hero image's bottom-right curve (#curveClip in home.blade.php)
      morphs in from a flat edge — begins at 1s, ends at 2.1s
   2. the blue content bar sweeps in from the left — begins at 2.1s
      (curve's finish), ends at 3.2s
   3. the buttons sweep in from the right — begins at 3.2s
      (bar's finish), ends at 4s */
@keyframes heroBarSweepIn {
  from {
    transform: translate(-100%, -50%);
    opacity: 0;
  }

  to {
    transform: translate(0, -50%);
    opacity: 1;
  }
}

@keyframes heroCurveSweepIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@media (min-width: 993px) {
  .header_content_box {
    animation: heroBarSweepIn 1.1s cubic-bezier(0.22, 1, 0.36, 1) 2.1s both;
  }

  .hero_buttons_wrap {
    animation: heroCurveSweepIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 3.2s both;
  }
}

@media (prefers-reduced-motion: reduce) {

  .header_content_box,
  .hero_buttons_wrap {
    animation: none;
  }
}



.about_section_button {
  position: relative;
  width: max-content;
  height: 50px;
  padding: 5px 40px;
  border: 1px solid #1C3256;
  color: white;
  background-color: #1C3256;
  overflow: hidden;
  cursor: pointer;
  z-index: 1;
  transition: color 0.5s ease;
  margin: auto;
  display: block;
  margin-bottom: 50px;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 200;
  font-family: "Roboto", sans-serif;
}


.about_section_button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: -1;
}

.about_section_button:hover {
  color: #1C3256;
  font-weight: 400;
}

.about_section_button:hover::before {
  transform: scaleX(1);
}

.about_section_title {
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  color: #1C3256;
}

.about_section_subtitle {
  font-family: Marta-Regular;
  font-size: 26px;
  color: #1C3256;
  letter-spacing: 1px;
  max-width: 650px;
  /* margin: auto; */
}

.about_section_description_1,
.about_section_description_2 {
  font-size: 19px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  color: #1C3256;
  max-width: 680px;
  margin-left: auto;
  text-align: left;
  margin-top: 25px;
}

.about_section_description_2 {
  margin-top: 30px;
  margin-bottom: 25px;
}

.our_services_wrap {
  width: 100%;
  min-height: 500px;
  display: flex;
}

.homeAboutSectionWrap {
  width: 100%;
  height: auto;
  padding: 150px 5%;
}

.services_text_box {
  width: 50%;
  height: 600px;
  background-color: #1C3256;
  font-family: Marta-Regular;
  font-size: 26px;
  letter-spacing: 1px;
  color: white;
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-direction: column;
  padding-top: 80px;
  padding-bottom: 30px;
  padding-left: 5%;
}

.our_services_text,
.service_bottom_text {
  font-size: 16px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  color: white;
  letter-spacing: 2px;
}

.service_bottom_text {
  letter-spacing: 0px;
  max-width: 570px;
  font-size: 17px;
  margin: auto;
  display: block;
}

.services_image_box {
  width: 50%;
  height: 600px;
  /* border: 1px solid blue; */
  background-color: #1C3256;
}

.services_image_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.home_service_box {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 15px;
  text-align: left;
  transform: translateX(-10px);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.home_service_box:hover {
  transform: translateX(10px);
}

.hiddenDot {
  opacity: 0;
  width: 10px;
  height: 10px;
  background-color: white;
  border-radius: 50%;
  transition: opacity 0.3s ease;
}

.home_service_box:hover .hiddenDot {
  opacity: 1;
}


.trust_authority_wrap {
  width: 100%;
  min-height: 500px;
  background-image: url("../images/Trust\ and\ Authority.png");
  background-size: cover;
  padding: 50px 5%;
  padding-top: 100px;
}

.trust_description {
  font-size: 17px;
  color: white;
  font-family: "Roboto", sans-serif;
  font-weight: 400px;
  text-align: center;
  max-width: 550px;
  line-height: 1.8;
  margin: auto;
}

.white_bar {
  width: 100%;
  height: 1px;
  background-color: white;
}

.trust_authority_wrap h5 {
  color: white;
  font-size: 26px;
  font-family: Marta-Regular;
  letter-spacing: 1px;
  text-align: center;
}

.experience_box {
  color: white;
  font-size: 20px;
  font-family: Marta-Regular;
  letter-spacing: 1px;
  text-align: center;
  max-width: 130px;
}

.value_box {
  color: white;
  font-size: 20px;
  font-family: Marta-Regular;
  letter-spacing: 1px;
  text-align: center;
  min-width: 200px;
  width: 200px;
}

.prime {
  color: white;
  font-size: 20px;
  font-family: Marta-Regular;
  letter-spacing: 1px;
  text-align: center;
  min-width: 250px;
  width: 250px;
}

.former {
  color: white;
  font-size: 20px;
  font-family: Marta-Regular;
  letter-spacing: 1px;
  text-align: center;
  min-width: 360px;
  width: 360px;
}

.trustButtonGap {
  margin-top: 150px !important;
}

.trustBars {
  margin-top: 120px;
}

.trust_badge {
  width: 250px;
  min-width: 250px;
  color: white;
  font-size: 20px;
  font-family: Marta-Regular;
  letter-spacing: 1px;
  text-align: center;
}

.about_2_wrap {
  width: 100%;
  min-height: 100vh;
  background-color: #1C3256;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about_2_image_box {
  width: 50%;
  height: 90vh;
  background-color: #1C3256;
  overflow: hidden;
  padding: 20px 0;
}

.about_2_text_box {
  width: 50%;
  min-height: auto;
  background-color: #1C3256;
  padding: 50px 5%;
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  justify-content: center;
  color: white;

}

.about_2_image_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease-in-out;
}

.about_2_image_box img:hover {
  scale: 1.1;
}

.about_2_title {
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: 300;
  font-family: "Roboto", sans-serif;
  margin: 0;
  margin-bottom: 10px;
}

.about_2_subtitle {
  font-size: 26px;
  letter-spacing: 2px;
  font-family: Marta-Regular;
  margin: 0;
}

.about_2_description {
  font-size: 19px;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  margin-top: 20px;
  max-width: 650px;
}

.expert_witness_wrap {
  padding: 100px 5%;
}

.expert_witness_image {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 4px;
}

.expert_witness_description {
  margin-top: 20px;
}

.expert_witness_description p {
  font-family: "Roboto", sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #1C3256;
  line-height: 1.8;
  margin-bottom: 16px;
}

.centeral_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.centeral_text_box {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  width: 50%;
  height: auto;
  padding: 50px 5%;
}

.centeral_image_box {
  width: 50%;
  height: 90vh;
  background-color: #1C3256;
  overflow: hidden;
}


.centeral_image_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease-in-out;
}

.centeral_image_box img:hover {
  scale: 1.1;
}

.prime_location_title {
  color: #1C3256;
  font-size: 26px;
  font-family: Marta-Regular;
  letter-spacing: 2px;
  max-width: 400px;
  line-height: 1.6;
}

.prime_location_description {
  color: #1C3256;
  font-size: 19px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  margin-top: 15px;
}

.get_in_touch_wrap {
  padding: 100px 5%;
}

.get_in_touch_subtitle {
  font-size: 26px;
  color: #1C3256;
  font-family: Marta-Regular;
  letter-spacing: 2px;
  text-align: center;
  margin: auto;
  max-width: 550px;
}

.get_in_touch_title {
  color: #1C3256;
  letter-spacing: 2px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}

.get_in_touch_description {
  color: #1C3256;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  margin: auto;
  max-width: 500px;
  margin-top: 15px;
}

.footer {
  width: 100%;
  padding: 50px 5%;
  background-color: #1C3256;
}

.footer_links a {
  color: white;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 2px;
  word-break: break-all;
}

.footer_links a:hover {
  scale: 1.01;
}

.footerLogo {
  max-width: 90%;
  display: block;
  margin: auto;
}

.copyright {
  font-size: 17px;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  color: white;

}

.whiteBar {
  width: 100%;
  border-top: 1px solid white;
  padding-top: 20px;
  margin-top: 50px;
}

@media (max-width:1500px) {
  .footer_links a {
  font-size: 15px;
  letter-spacing: 1px;
}
}

@media(max-width:1150px) {
  .trust_badge {
    width: 200px !important;
    min-width: 150px !important;
    font-size: 16px;
  }

  .experience_box {
    color: white;
    font-size: 18px;
    font-family: Marta-Regular;
    letter-spacing: 1px;
    text-align: center;
    max-width: 100px;
  }


  .value_box {
    color: white;
    font-size: 18px;
    font-family: Marta-Regular;
    letter-spacing: 1px;
    text-align: center;
    min-width: 200px;
    width: 150px;
  }

  .prime {
    color: white;
    font-size: 18px;
    font-family: Marta-Regular;
    letter-spacing: 1px;
    text-align: center;
    min-width: 200px;
    width: 200px;
  }

  .former {
    color: white;
    font-size: 18px;
    font-family: Marta-Regular;
    letter-spacing: 1px;
    text-align: center;
    min-width: 300px;
    width: 300px;
  }
}

@media (max-width:992px) {
  .white_bar {
    width: 1px;
    height: 50px;
    background-color: white;
  }

  .trust_badge {
    width: 100% !important;
    min-width: 100% !important;
    font-size: 16px;
  }

  .about_section_description_1,
  .about_section_description_2 {
    font-size: 18px;
    max-width: 100%;
    margin-left: auto;
  }

  .about_section_subtitle {
    max-width: 100%;
  }

  .homeAboutSectionWrap {
    padding: 60px 5%;
  }



  .trustButtonGap {
    margin-top: 60px !important;
  }

  .trustBars {
    margin-top: 60px;
  }

  /* Tablet and phone: swap the big desktop sweep for a small corner
     curve only, and let the content box take the full width. Desktop
     (min-width: 993px) is untouched. */
  .homeheader_wrap {
    clip-path: url(#curveClipMobile);
    -webkit-clip-path: url(#curveClipMobile);
  }

  .header_content_box {
    position: static;
    width: 100%;
    transform: none;
    clip-path: none;
    align-items: center;
    text-align: center;
    padding: 20px 6%;
    padding-bottom: 0px;
  }

  .header_content_box .realestate_text,
  .header_content_box .header_subtitle,
  .header_content_box .header_description {
    text-align: center;
  }

  .hero_buttons_wrap {
    position: static;
    align-items: center;
    margin-top: 30px;
    width: 100%;
    padding: 0 6%;
  }

  .hero_buttons_wrap .header_button {
    width: 100%;
    max-width: 340px;
    text-align: center;
    white-space: normal;
  }
}

@media (max-width:768px) {
  .our_services_wrap {
    flex-direction: column;
  }

  .header_content_box {
    margin-top: 28vh;
  }

  .get_in_touch_wrap {
    padding: 50px 5%;
  }

  .footer_links a {
    font-size: 13px;

  }

  .values_wrap {
    padding-bottom: 20px !important;
  }

  .centeral_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .centeral_text_box {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    padding: 50px 5%;
  }

  .centeral_image_box {
    width: 100%;
    height: auto;
    background-color: #1C3256;
    overflow: hidden;

  }

  .about_2_wrap {
    flex-direction: column;
  }

  .about_2_image_box {
    width: 100%;
  }

  .about_2_text_box {
    width: 100%;
    height: auto;
    padding: 60px 5%;
  }

  .home_service_box {
    font-size: 20px;
  }

  .homeheader_wrap {
    /* padding-bottom: 120px; */
  }

  .services_text_box,
  .services_image_box {
    width: 100%;
  }

  .services_image_box {
    height: auto;
  }

  .services_image_box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 1;
    transition: opacity 0.3s ease;
    margin: auto;
    display: block;
  }
}

/* Sub pages: About, Services, Insights, Contact */

.page_banner {
  width: 100%;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page_banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.55);
}

.page_banner_content {
  position: relative;
  text-align: center;
  z-index: 1;
}

.page_banner_tag {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  letter-spacing: 3px;
  font-weight: 300;
}

.page_banner_title {
  color: white;
  font-family: Marta-Regular;
  font-size: 34px;
  letter-spacing: 1px;
  margin-top: 15px;
}

/* about page: values */

.values_wrap {
  padding: 100px 5%;
  text-align: center;
}

.values_grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
}

.value_item {
  max-width: 220px;
}

.value_item h6 {
  font-family: Marta-Regular;
  color: #1C3256;
  font-size: 20px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.value_item p {
  font-family: "Roboto", sans-serif;
  color: #1C3256;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
}

/* services page: alternating rows */

.service_row {
  display: flex;
  min-height: 70vh;
}

.service_row.reverse {
  flex-direction: row-reverse;
}

.service_row_image {
  width: 50%;
  overflow: hidden;
}

.service_row_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease-in-out;
}

.service_row_image img:hover {
  scale: 1.05;
}

.service_row_text {
  width: 50%;
  background-color: #1C3256;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 6%;
}

.service_row_text h3 {
  font-family: Marta-Regular;
  font-size: 26px;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.service_row_text p {
  font-family: "Roboto", sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
}

/* insights page: article cards */

.insights_wrap {
  padding: 100px 5%;
}

.insights_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.insight_card {
  background-color: white;
  overflow: hidden;
}

.insight_card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: 0.5s ease-in-out;
}

.insight_card:hover img {
  scale: 1.05;
}

.insight_card_body {
  padding: 25px;
}

.insight_date {
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  color: #1C3256;
  opacity: 0.7;
}

.insight_title {
  font-family: Marta-Regular;
  font-size: 19px;
  color: #1C3256;
  margin: 10px 0;
  line-height: 1.4;
}

.insight_excerpt {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  color: #1C3256;
  font-weight: 400;
  line-height: 1.6;
}

.insight_link {
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  color: #1C3256;
  font-weight: 400;
  display: inline-block;
  margin-top: 15px;
  position: relative;
}

.insight_link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background-color: #1C3256;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.insight_link:hover::after {
  transform: scaleX(1);
}

/* contact page */

.contact_wrap {
  display: flex;
  min-height: 80vh;
}

.contact_form_box {
  width: 50%;
  background-color: #1C3256;
  padding: 80px 6%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact_form_box h6 {
  color: white;
  font-family: "Roboto", sans-serif;
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 10px;
}

.contact_form_box h3 {
  color: white;
  font-family: Marta-Regular;
  font-size: 26px;
  letter-spacing: 1px;
  margin-bottom: 30px;
  max-width: 450px;
}

.contact_input,
.contact_textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  color: white;
  padding: 12px 0;
  margin-bottom: 20px;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
}

.contact_input::placeholder,
.contact_textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.contact_input:focus,
.contact_textarea:focus {
  outline: none;
  border-bottom-color: white;
}

select.contact_input {
  cursor: pointer;
}

/* Native <select> dropdowns render their option list with a browser-default
   white background regardless of the select's own transparent styling, so
   the white text used for the closed field is invisible inside the open
   list. Give the options their own readable, on-theme colours. */
select.contact_input option {
  color: #1C3256;
  background: #ffffff;
}

.contact_details_box {
  width: 50%;
  padding: 80px 6%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact_detail_item {
  margin-bottom: 30px;
}

.contact_detail_label {
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  color: #1C3256;
  opacity: 0.7;
  margin-bottom: 5px;
}

.contact_detail_value {
  font-family: Marta-Regular;
  font-size: 19px;
  color: #1C3256;
}

.contact_map {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

/* contact page: redesigned content sections */

.contact_details_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
  margin-top: 30px;
}

.service_numbered_list {
  margin: 0;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service_numbered_list li {
  font-family: "Roboto", sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #1C3256;
  line-height: 1.6;
  padding-left: 8px;
}

.service_numbered_list li::marker {
  color: #1C3256;
  font-weight: 600;
}

.contact_form_wrap {
  padding: 20px 5% 80px;
}

.contact_form_box_full {
  max-width: 900px;
  margin: auto;
  background-color: #1C3256;
  border-radius: 6px;
  padding: 60px 6%;
}

.contact_form_box_full h6 {
  color: white;
  font-family: "Roboto", sans-serif;
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 10px;
}

.contact_form_box_full h3 {
  color: white;
  font-family: Marta-Regular;
  font-size: 26px;
  letter-spacing: 1px;
  margin-bottom: 30px;
  max-width: 550px;
}

.contact_form_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 30px;
}

.contact_input_full {
  grid-column: 1 / -1;
}

.contact_file_field {
  margin: 10px 0 25px;
}

.contact_file_label {
  display: block;
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  margin-bottom: 10px;
}

.contact_file_optional {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.contact_file_input {
  width: 100%;
  color: rgba(255, 255, 255, 0.8);
  font-family: "Roboto", sans-serif;
  font-size: 14px;
}

.contact_file_input::file-selector-button {
  background-color: #fff;
  color: #1C3256;
  border: none;
  border-radius: 4px;
  padding: 8px 16px;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  cursor: pointer;
  margin-right: 15px;
  transition: opacity 0.3s ease;
}

.contact_file_input::file-selector-button:hover {
  opacity: 0.85;
}

.contact_consent_text {
  color: rgba(255, 255, 255, 0.6);
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  line-height: 1.6;
  margin-top: 20px;
  margin-bottom: 0;
  max-width: 600px;
}

@media (max-width: 992px) {
  .insights_grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .insights_wrap {
    padding: 50px 5% !important;
  }
}

@media (max-width: 768px) {

  .service_row,
  .service_row.reverse {
    flex-direction: column;
  }

  .contact_detail_value {

    font-size: 17px;

  }

  .insight_card {
    width: 100%;
    height: max-content;
  }

  .insight_card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: 0.5s ease-in-out;
  }

  .service_row_image,
  .service_row_text {
    width: 100%;
  }

  .service_row_image {
    height: 50vh;
  }

  .expert_witness_image {
    height: 260px;
    margin-top: 30px;
  }

  .contact_wrap {
    flex-direction: column;
  }

  .contact_form_box,
  .contact_details_box {
    width: 100%;
  }

  .contact_form_grid {
    grid-template-columns: 1fr;
  }

  .contact_details_list {
    gap: 30px;
  }

  .contact_form_box_full {
    padding: 45px 6%;
  }

  .insights_grid {
    grid-template-columns: 1fr;
  }

  .page_banner_title {
    font-size: 26px;
  }

  .gallery_grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery_item {
    height: 160px;
  }
}

/* service detail page */

.service_detail_content {
  max-width: 1200px;
  margin: auto;
  padding: 100px 5% 60px;
  text-align: center;
}

.service_detail_content h2,
.service_detail_content h3 {
  font-family: Marta-Regular;
}

.service_detail_content p {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #1C3256;
  line-height: 1.8;
  margin-bottom: 20px;
}

.service_sections_wrap {
  max-width: 1200px;
  margin: auto;
  padding: 0 5% 60px;
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.service_section_heading {
  font-family: Marta-Regular;
  color: #1C3256;
  font-size: 24px;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.service_section_body p {
  font-family: "Roboto", sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #1C3256;
  line-height: 1.8;
  margin-bottom: 15px;
}

.service_lists_wrap {
  max-width: 1200px;
  margin: auto;
  padding: 0 5% 60px;
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.service_bullet_list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service_bullet_list li {
  font-family: "Roboto", sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #1C3256;
  line-height: 1.6;
  padding-left: 26px;
  position: relative;
}

.service_bullet_list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background-color: #1C3256;
  border-radius: 50%;
}

.service_cta_wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 5%;
}

.service_faqs_wrap {
  max-width: 1100px;
  margin: auto;
  padding: 60px 5%;
}

.service_faq_list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service_faq_item {
  border-radius: 6px;
  overflow: hidden;
}

.service_faq_question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background-color: #1C3256;
  border: none;
  padding: 20px 25px;
  text-align: left;
  font-family: "Roboto", sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
}

.service_faq_icon {
  flex-shrink: 0;
  font-size: 22px;
  line-height: 1;
  font-weight: 300;
  color: #fff;
  transition: transform 0.3s ease;
}

.service_faq_item.open .service_faq_icon {
  transform: rotate(45deg);
}

.service_faq_answer {
  max-height: 0;
  overflow: hidden;
  background-color: #fff;
  transition: max-height 0.35s ease;
}

.service_faq_answer_inner {
  padding: 20px 25px;
}

.service_faq_answer_inner p {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #1C3256;
  line-height: 1.7;
  margin-bottom: 0;
}

.gallery_wrap {
  padding: 0 5% 100px;
}

.gallery_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.gallery_item {
  position: relative;
  display: block;
  width: 100%;
  height: 220px;
  padding: 0;
  border: none;
  overflow: hidden;
  cursor: pointer;
  background: none;
}

.gallery_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease-in-out;
}

.gallery_item:hover img {
  transform: scale(1.08);
}

.gallery_item_overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(28, 50, 86, 0.45);
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.gallery_item:hover .gallery_item_overlay {
  opacity: 1;
  transform: scale(1);
}

.gallery_item_icon {
  color: #fff;
  font-size: 26px;
  line-height: 1;
}

/* Lightbox */

.service_lightbox {
  position: fixed;
  inset: 0;
  z-index: 1090;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 22, 35, 0.92);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.service_lightbox.open {
  opacity: 1;
  visibility: visible;
}

.service_lightbox_image {
  max-width: 85vw;
  max-height: 85vh;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.service_lightbox.open .service_lightbox_image {
  transform: scale(1);
}

.service_lightbox_close {
  position: absolute;
  top: 25px;
  right: 30px;
  background: none;
  border: none;
  color: #fff;
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
}

.service_lightbox_arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-size: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.service_lightbox_arrow:hover {
  background: rgba(255, 255, 255, 0.25);
}

.service_lightbox_prev {
  left: 25px;
}

.service_lightbox_next {
  right: 25px;
}

@media (max-width: 767px) {
  .service_lightbox_close {
    top: 15px;
    right: 15px;
    font-size: 32px;
  }

  .service_lightbox_arrow {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .service_lightbox_prev {
    left: 10px;
  }

  .service_lightbox_next {
    right: 10px;
  }
}

/* blog detail page */

.blog_detail_wrap {
  max-width: 80%;
  margin: auto;
  padding: 100px 5%;
}

.blog_detail_meta {
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  color: #1C3256;
  opacity: 0.7;
  margin-bottom: 15px;
}

.blog_detail_title {
  font-family: Marta-Regular;
  font-size: 30px;
  color: #1C3256;
  letter-spacing: 1px;
  margin-bottom: 30px;
  line-height: 1.4;
}

.blog_detail_image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  margin-bottom: 40px;
}

.blog_detail_wrap p {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #1C3256;
  line-height: 1.8;
  margin-bottom: 20px;
}

.blog_detail_wrap h4 {
  font-family: Marta-Regular;
  font-size: 22px;
  color: #1C3256;
  margin: 30px 0 15px;
}


@media (max-width:1400px) {
  .desktopMenuItems {
    gap: 5vw;
  }
}

@media (max-width:1300px) {
  .desktopMenuItems {
    gap: 4vw;
  }
}

@media (max-width:1200px) {
  .desktopMenuItems {
    gap: 25px;
  }
}

/* Related sliders (case study services / service case studies) */

.splide__arrow {
  background-color: #1C3256;
  opacity: 1;
  width: 44px;
  height: 44px;
}

.splide__arrow svg {
  fill: #ffffff;
  width: 18px;
  height: 18px;
}

.splide__arrow:hover:not(:disabled) {
  background-color: #ffffff;
  border: 1px solid #1C3256;
}

.splide__arrow:hover:not(:disabled) svg {
  fill: #1C3256;
}

.splide__arrow:disabled {
  opacity: 0.35;
}


/* new service section */


.solutions_section {
  position: relative;
  padding: 0 5%;
  padding-top: 10px;
  padding-bottom: 100px;

  /* background-color: #2B3644; */
}

.solutions_section.pinned {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50vh;
  z-index: 10;
}

.solution-image {
  position: absolute;
  inset: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.solution-image.active {
  opacity: 1;
}



#solution_section {
  position: relative;
}

.solution-pin-wrapper {
  position: relative;
  min-height: 50vh;
  overflow: visible;
}

.image-col {
  position: relative;
  height: 700px;
}

.col-lg-6.padding {
  position: relative;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}


.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: relative;
  width: 100%;
  opacity: 0.6;
  transform: translateX(0);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
  pointer-events: auto;
  z-index: 1;
  margin-top: 25px;
}

.solution_heading {
  font-family: Marta-Regular;
}

/* ACTIVE */
.solution_box.opened {
  opacity: 1;
  z-index: 2;
  transform: translateX(-30px);
}

/* INACTIVE */
.solution_box.closed {
  opacity: 0.5;
}


@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;
  }

  /* Tablet/phone: only show the active item, no blurred stack. */
  .solution_box {
    display: none;
    opacity: 1;
    filter: none;
    transform: none;
    margin-top: 0;
  }

  .solution_box.opened {
    display: block;
    transform: none;
  }

  .home_service_content {
    padding: 5%;
  }


  .solutions_section {
    position: relative;
    padding-top: 0px;
    padding-bottom: 50px;
  }

}


/* before */
.insight_excerpt {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  color: #1C3256;
  font-weight: 400;
  line-height: 1.6;
}

/* after */
.insight_excerpt {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  color: #1C3256;
  font-weight: 400;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.insight_excerpt p {
  margin: 0;
}