/*
-----------------------------
WHO WE ARE PAGE STYLES
-----------------------------
*/

/*
-----------------------------
NAVIGARE
-----------------------------
*/

.image-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
    z-index: 10; /* Higher than hex-canvas z-index: 2 */
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../img/other_pages/header_constructori.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -10;
    /* filter: sepia(20%); */
}

.over-image-section {
    position: relative;
    z-index: 10;
    height: 100%;
    text-align: center;
}

.nav-section {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0 10px;
}

.navbar-wrap {
    text-align: right;
}

.secondary-menu-navbar {
    display: inline-flex;
    flex-wrap: wrap;
}

.secondary-menu-link-navbar {
    padding: 2px 15px;
}

.secondary-menu-link-navbar a {
    color: var(--first-color);
    font-size: 1.3rem;
    font-weight: 600;
}

.secondary-menu-link-navbar a:hover {
    font-weight: 800;
}

.primary-menu-navbar {
    display: inline-flex;
    flex-wrap: wrap;
}

.primary-menu-link-navbar {
    padding: 5px 15px;
}

.primary-menu-link-navbar a {
    font-size: 1.6rem;
    color: var(--third-color);
    font-weight: 500;
}

.primary-menu-link-navbar a:hover {
    color: var(--first-color);
}

.on-who-we-are a{
    color: var(--first-color);
    font-weight: 900;
}

.btn-menu-hamburger{
    display: none;
}

.hero-section-wrap {
    margin-top: 12vh;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hero-section-content {
    text-align: center;
    width: 60%;
    max-width: 600px;
    min-width: 280px;
    padding: 4vw 4vw 4vw 4vw; /* Add left padding to align with logo */
    background: none;
    float: none;
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid linear-gradient(
        transparent,
        var(--first-color),
        transparent
    );
    box-shadow: 0 0 10px var(--first-color) inset;
    border-radius: 30px;
}

.hero-section-text {
    width: 100%;
    max-width: 600px;
}

.hero-section-text h1{
    color: var(--first-color);
    margin-bottom: 18px;
    /* font-size: 2.8rem; */
    line-height: 1.1;
}

.hero-section-text p{
    color: #ffffff;
    /* margin-bottom: 18px; */
    font-size: 2.6rem;
    font-weight: 600;
    line-height: 1.5;
}

.hero-section-buttons .btn-black {
    margin-right: 16px;
}

@media (max-width: 1023px) {
  .hero-section-wrap {
    margin-top: 7vh;
    min-height: 50vh;
    justify-content: center;
    padding-top: 4vh;
  }
  .hero-section-content {
    width: 90%;
    max-width: 95vw;
    padding: 4vw 0;
  }
  .hero-section-text {
    max-width: 100vw;
  }
  .hero-section-text h1 {
    font-size: 2.1rem;
  }
  .hero-section-text p {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {

  .hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../img/other_pages/header_constructori.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -10;
    /* filter: sepia(20%); */
}
  .image-hero {
    height: 70vh;
  }
  
  .hero-section-wrap {
    margin-top: 2vh;
    min-height: 60vh;
    padding-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-section-content {
    width: 100%;
    max-width: 100vw;
    padding: 6vw 0 2vw 0;
  }
  .hero-section-text h1 {
    font-size: 1.3rem;
  }
  .hero-section-text p {
    font-size: var(--font-size-xs);
  }
}

/*
-----------------------------
WHO WE ARE SECTION
-----------------------------
*/

.who-we-are {
    background-color: var(--second-color);
    min-height: 60vh; 
    height: auto;
}

.who-we-are-split {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 0;
    height: auto;
    margin-bottom: 6vh;
}


/* Our Story video overlay and video styling */
.whwar-section-img {
  position: relative;
  width: 50%;
  height: 100vh;
  background-image: url("../img/homepage/muncitori_proger_ai.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 2;
}
.video-black-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
  z-index: 2;
  pointer-events: none;
}
.whwar-section-img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  position: relative;
  z-index: 1;
}

.whwar-section-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
}

.whwar-section-content {
    width: 75%;
}

.whwar-section-content-title {
    margin-bottom: 28px;
}

.whwar-section-content-title h2 {
    color: var(--first-color);
    margin-bottom: 5px;
}

.whwar-section-content-text  p,
.whwar-section-content-title h4 {
    color: #ffffff;
}

.whwar-section-content-button {
    margin-top: 50px;
}

/*
-----------------------------
VISION AND MISSION SECTION
-----------------------------
*/
.our-vision, .our-mission {
  height: 70vh;
  display: flex;
  align-items: stretch;
  background-color: var(--second-color);
  padding: 0 ;
}

.our-vision{
  padding-top: 8vh;
}
.vision-mission-split {
  height: 100%;
  display: flex;
  flex-direction: row; 
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  width: 100%;
}
.vision-mission-section {
  width: 40%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  box-sizing: border-box;
}

.vision-mission-split h2 {
  color: var(--first-color);
  padding: 20px 0;
}

.vision-mission-split h3 {
  color: var(--third-color);
}

.vision-mission-split p {
  color: var(--third-color);
  font-size: var(--font-size-m);
  font-weight: 500;
  line-height: 1.4;
  margin-left: 40px;
  /* width: 80%; */
}

#borderz {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/other_pages/ChatGPT\ Image\ Aug\ 22\,\ 2025\,\ 01_34_01\ PM.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  
  /* border: 1px solid var(--first-color); */
  border-radius: 30px;
  /* padding: 40px; */
  /* margin: 20px; */
  /* width: 50%; */
  /* background-color: rgba(0, 0, 0, 0.5); */
  /* box-shadow: 0 0 10px var(--first-color) inset; */
}

.vision-mission-split li {
  color: var(--third-color);
  font-size: var(--font-size-xs); /* or a fixed size like 2rem */
  line-height: 2.4rem;           /* optional: improves readability */
  font-weight: 500;  
  /* padding: 1% 0; */
}

.vision-mission-split ul {
  padding: 10px 3%;
  list-style-type:disc; /* removes default bullet points */
}

/*
-----------------------------
ESG PILLARS SECTION
-----------------------------
*/

.esg-pillars {
  background-color: var(--second-color);
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8vh 0;
  z-index: 10;
}

.esg-pillars-title h1{
  text-align: center;
  color: var(--first-color);
  font-weight: 900;
  margin: 8vh 0;
}

.esg-pillars-split {
  display: flex;
  width: 100%;
  height: auto;
  min-height: 80vh;
  gap: 40px;
  padding: 0 8vw;
  max-width: 1600px;
  margin: 0 auto;
}

.esg-pillars-img {
  width: 45%;
  min-height: 400px;
  background-image: url("../img/other_pages/OUR_VISION.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  /* filter: sepia(40%); */
  z-index: 2;
  border-radius: 16px;
}

.esg-pillars-content {
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 60px;
}

.esg-pillars-text {
  color: var(--first-color);
}

.esg-pillars-text h2 {
  color: var(--first-color);
  padding: 10px 0;
  font-size: var(--font-size-l);
  margin-bottom: 20px;
}

.esg-pillars-text h3 {
  color: var(--first-color);
  padding: 10px 0;
}

.esg-pillars-text p {
  color: var(--third-color);
  font-size: var(--font-size-s);
  margin: 20px 0;
  width: 100%;
  line-height: 1.6;
}

.esg-pillars-text .highlight {
  color: var(--third-color);
  font-size: var(--font-size-s);
  font-weight: 700;
}

.esg-pillars-text ul {
  width: 90%;
  color: #ffffff;
  margin: 20px 0;
  padding-left: 20px;
}

.esg-pillars-text li {
  color: #ffffff;
  margin: 15px 0;
  /* line-height: 1.6; */
  font-size: var(--font-size-s);
  list-style-type: disc;
}

.esg-pillars-text .btn-black {
  width: 40%;
  margin-top: 30px;
}

#sustainability-img {
  background-image: url("../img/other_pages/OUR_MISSION_2.png");
  width: 45%;
  min-height: 400px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  /* filter: sepia(40%); */
  z-index: 2;
  border-radius: 16px;
  margin-right: 60px;
}

@media (max-width: 767px) {
  .esg-pillars-split {
    flex-direction: column;
    height: auto;
    padding: 0 6vw;
  }
  
  .esg-pillars-img,
  .esg-pillars-content {
    width: 100%;
  }
  
  .esg-pillars-img {
    height: 40vh;
    margin-bottom: 20px;
  }
  
  .esg-pillars-content {
    padding: 40px 0;
  }

  .esg-pillars-split {
    gap: 0px;
    padding: 0 4vw;
  }
  
  .esg-pillars-content {
    padding: 20px 0 40px 0;
  }
  
  .esg-pillars-text{
    padding-left: 20px;
  }

  .esg-pillars-text .btn-black {
    width: 100%;
  }
  
  .esg-pillars-title h1 {
    margin: 6vh 0;
    font-size: 3rem;
  }
  
  .esg-pillars-text h2 {
    font-size: var(--font-size-m);
  }
  
  .esg-pillars-text li {
    font-size: var(--font-size-xs);
    line-height: 1.6;
  }
  
  .esg-pillars-img,
  #sustainability-img,
  #governance-img {
    background-position: left;
    /* height: 35vh; */
    margin-right: 5vh;
    min-height: 250px;
    width: 100%;
  }
  
  /* Reorder sustainability section on mobile - image before text */
  .esg-pillars-split:nth-child(2) {
    flex-direction: column;
  }
  
  #sustainability-img {
    order: -1;
    margin-bottom: 20px;
  }
}

@media (max-width: 1023px) {
  .esg-pillars-split {
    gap: 0px;
    padding: 0 4vw;
  }
  
  .esg-pillars-content {
    padding: 20px 0 40px 0;
  }
  
  .esg-pillars-text{
    padding-left: 20px;
  }

  .esg-pillars-text .btn-black {
    width: 100%;
  }
  
  .esg-pillars-title h1 {
    margin: 6vh 0;
    font-size: 3rem;
  }
  
  .esg-pillars-text h2 {
    font-size: var(--font-size-m);
  }
  
  .esg-pillars-text li {
    font-size: var(--font-size-xs);
    line-height: 1.6;
  }
  
  .esg-pillars-img,
  #sustainability-img,
  #governance-img {
    background-position: center;
    /* height: 35vh; */
    margin-right: 5vh;
    min-height: 250px;
    width: 100%;
  }
  
  /* Reorder sustainability section on mobile - image before text */
  .esg-pillars-split:nth-child(3) {
    flex-direction: column;
  }
  
  .esg-pillars-split:nth-child(3) #sustainability-img {
    order: -1;
    margin-bottom: 20px;
  }
}


/*
-----------------------------
OUR VALUES SECTION
-----------------------------
*/

.our-values {
    background-color: var(--second-color);
    padding: 0;
    min-height: 70vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.honeycomb-section {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: 2;
}

.honeycomb-svg {
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  filter: blur(0.5px);
}

.hex-outline {
  stroke: transparent;
  stroke-width: 1.5;
  fill: none;
  transition: stroke 0.2s, filter 0.2s;
}

.hex-outline.lit {
  stroke: rgba(255,179,0,0.22);
  transition: filter 0.2s, fill 0.2s; 
}

.oprcs-section-wrap {
    text-align: center;

}

.oprcs-section-title {
    margin-bottom: 50px;
    text-align: center;
}

.oprcs-section-title h2,
.oprcs-section-category p{
    color: var(--first-color);
}
.oprcs-section-title h2{
  margin-bottom: 5px;
}
.oprcs-section-title h4{
    color: #ffffff;
}
.oprcs-section-category h3{
  color: var(--first-color);
  text-align: center;
}
.oprcs-section-category p{
  color: #ffffff;
  text-align: center;
}
.oprcs-section-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
}

.oprcs-section-category {
    width: 280px;
}

.oprcs-section-category-img {
    text-align: center;
}

.oprcs-section-category-img img{
    margin: 0 auto 16px;
}

.icon-wrap {
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.8s ease-out;
}

.icon-wrap.in-view {
    transform: translateY(0);
    opacity: 1;
}

.delay-animation-icon-1 {
    transition-delay: 0.1s;
}

.delay-animation-icon-2 {
    transition-delay: 0.2s;
}

.delay-animation-icon-3 {
    transition-delay: 0.3s;
}

/*
-----------------------------
OUR MISSION SECTION
-----------------------------
*/

.our-mission {
  background-color: var(--second-color);
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.engineering-solutions-split {
  display: flex;
  width: 100%;
  height: 100vh;
}

.engineering-solutions-img {
  width: 50%;
  background-image: url("../img/homepage/autostrada-nocturna.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  filter: sepia(20%);
  z-index: 2;
}

.engineering-solutions-content {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
}

.engineering-solutions-text {
  color: var(--third-color);
}

.engineering-solutions-text h2 {
  color: var(--first-color);
  text-transform: uppercase;
}

.engineering-solutions-text p {
  color: var(--third-color);
  margin: 20px 0;
} 

.engineering-solutions-text .slogan {
  color: var(--first-color);
  font-size: 2rem;
  margin: 40px 0;
}

.engineering-solutions-button {
  margin-top: 30px;
}

/*
-----------------------------
OUR TEAM SECTION
-----------------------------
*/

.our-team {
    background-color: var(--second-color);
    padding: 8vh 0;
    min-height: 120vh;
    position: relative;
    overflow: hidden;
    text-align: center;
    /* padding-bottom: 16vh; */
    /* z-index: 10; */
}

.our-team-header {
  margin: 8vh 0;
}

.our-team h1 {
  /* font-size: 3.2rem; */
  font-weight: 900;
  color: var(--first-color);
}

.our-team h4 {
  font-weight: 700;
  color: #fff;
  margin-bottom: 40px;
}

.our-team-cards {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  z-index: 20;
  position: relative;
  margin-bottom: 60px;
}

:root {
  --gradient: conic-gradient(
    from 90deg at 50% 50%,
    var(--first-color),
    rgb(253, 164, 11),
    rgb(253, 196, 11),
    rgb(253, 136, 11)
  );
}

.team-card {
  --start: 0;
  position: relative;
  background: #000;
  border-radius: 20px;
  padding: 30px 20px;
  width: 300px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s ease-in-out;
  box-shadow: 0 1px 8px #333;
  z-index: 25;
}

.team-card::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 20px;
  border: 2px solid transparent;
  background: var(--gradient);
  -webkit-mask: linear-gradient(#0000, #0000),
    conic-gradient(
      from calc((var(--start) - (20 * 1.1)) * 1deg),
      #ffffff1f 0deg,
      white,
      #ffffff00 100deg
    );
  mask: linear-gradient(#0000, #0000),
    conic-gradient(
      from calc((var(--start) - (20 * 1.1)) * 1deg),
      #ffffff1f 0deg,
      white,
      #ffffff00 100deg
    );
  -webkit-mask-composite: source-over;
  mask-composite: intersect;
  -webkit-mask-clip: padding-box, border-box;
  mask-clip: padding-box, border-box;
  opacity: 0;
  transition: 0.5s ease;
}

.team-card .glow {
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  filter: blur(14px);
}

.team-card .glow::before {
  position: absolute;
  content: "";
  width: 98%;
  height: 98%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 20px;
  border: 15px solid transparent;
  background: var(--gradient);
  -webkit-mask: linear-gradient(#0000, #0000),
    conic-gradient(
      from calc((var(--start) - (20 * 1.1)) * 1deg),
      #ffffff1f 0deg,
      white,
      #ffffff00 100deg
    );
  mask: linear-gradient(#0000, #0000),
    conic-gradient(
      from calc((var(--start) - (20 * 1.1)) * 1deg),
      #ffffff1f 0deg,
      white,
      #ffffff00 100deg
    );
  -webkit-mask-composite: source-over;
  mask-composite: intersect;
  -webkit-mask-clip: padding-box, border-box;
  mask-clip: padding-box, border-box;
  opacity: 0;
  transition: 1s ease;
}

.team-card:hover > .glow::before {
  opacity: 1;
}

.team-card:hover::before {
  opacity: 0.6;
}

/* Fallback for browsers that don't support advanced mask properties */
@supports not (mask-composite: intersect) {
  .team-card::before,
  .team-card .glow::before {
    background: var(--gradient);
    border: 2px solid transparent;
    background-clip: padding-box;
    -webkit-background-clip: padding-box;
  }
  
  .team-card:hover::before {
    opacity: 0.8;
    border-color: var(--first-color);
  }
  
  .team-card:hover > .glow::before {
    opacity: 0.4;
  }
}

.team-card-img {
  width: 175px;
  height: 175px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 20px;
}

.team-card-info h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--first-color);
  margin-bottom: 8px;
}

.team-card-info h5 {
  font-size: 1.3rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 20px;
}

.team-card-info p {
  font-size: 1.5rem;
  color: #fff;
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

/* Responsive */
@media (max-width: 1100px) {
  .our-team-cards {
    gap: 24px;
  }
  .team-card {
    width: 90vw;
    max-width: 350px;
  }
}
@media (max-width: 800px) {
  .our-team-cards {
    flex-direction: column;
    align-items: center;
  }
}

/*
-----------------------------
WHY CHOOSE US SECTION
-----------------------------
*/
.why-choose-us {
    background-color: var(--second-color);
    min-height: 40vh; 
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding:0 0 8vh 0;
}

.wcu-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* padding: 0 8vh; */
}

.wcu-titles {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.wcu-titles h2 {
    color: var(--first-color);
    margin-bottom: 20px;
}

.wcu-titles h4 {
    color: #fff;
    width: 45%;
    text-align: center;
    font-weight: 700;
    margin-bottom: 80px;
    font-size: var(--font-size-l);
    line-height: 4rem;
}
.wcu-buttons{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.wcu-buttons .btn-black {
    background-color: var(--first-color);
    color: #000;
    border: 2px solid var(--first-color);
}

.wcu-buttons .btn-black:hover {
  border: 2px solid #fff;
  background-color: var(--second-color);
  color: #fff;
}

.wcu-buttons .btn-yellow-negativ {
  border: 2px solid #fff;
}
.wcu-buttons .btn-yellow-negativ:hover{
  border: 2px solid var(--first-color);
}


/*
-----------------------------
RESPONSIVE DESIGN
-----------------------------
*/

@media (max-width: 1023px) {
  /* .container {
    width: 95%;
    padding: 0 20px;
  } */
  
  /* Hero Section */
  .hero-section-wrap {
    margin-top: 8vh;
    min-height: 60vh;
    justify-content: center;
  }
  
  .hero-section-content {
    width: 90%;
    max-width: 95vw;
    padding: 4vw 0;
    text-align: center;
  }
  
  .hero-section-text h1 {
    font-size: 2.4rem;
  }
  
  .hero-section-text p {
    font-size: 1.2rem;
  }
  
  /* Who We Are Section */
  .who-we-are-split {
    flex-direction: column;
    min-height: auto;
  }
  
  .whwar-section-img {
    width: 100%;
    height: 50vh;
    min-height: 300px;
  }
  
  .whwar-section-wrap {
    width: 100%;
    padding: 40px 20px;
  }
  
  .whwar-section-content {
    width: 100%;
    text-align: center;
  }
  
  .whwar-section-content-title h2 {
    font-size: 3rem;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  }
  
  .whwar-section-content-title h4 {
    font-size: 1.8rem;
    font-weight: 700;
  }
  
  /* Our Values Section */
  .our-values {
    padding: 6vh 0;
  }
  
  .oprcs-section-categories {
    justify-content: center;
    gap: 30px;
  }
  
  .oprcs-section-category {
    width: 45%;
    min-width: 250px;
  }
  
  /* Our Mission Section */
  .engineering-solutions-split {
    flex-direction: column;
    height: auto;
  }
  
  .engineering-solutions-img {
    width: 100%;
    height: 50vh;
    min-height: 300px;
  }
  
  .engineering-solutions-content {
    width: 100%;
    padding: 40px 20px;
  }
  
  .engineering-solutions-text h2 {
    font-size: 3rem;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  }
  
  .engineering-solutions-text .slogan {
    font-size: 1.6rem;
  }
  
  /* Our Team Section */
  .our-team {
    padding: 6vh 0;
  }
  
  /* Fast Facts Section */
  .fstfct-section-wrap {
    flex-direction: column;
    gap: 30px;
  }
  
  .fstfct-section-title {
    text-align: center;
  }
  
  .fstfct-section-content {
    justify-content: center;
    gap: 20px;
  }
  
  .fstfct-section-content-category {
    width: 45%;
    min-width: 150px;
  }
  
  /* Why Choose Us Section */
  .why-choose-us .who-we-are-split {
    flex-direction: column-reverse;
  }
  
  /* Footer */
  .footer-section-wrap {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  
  .footer-section-first-content,
  .footer-section-second-content,
  .footer-section-third-content,
  .footer-section-fourth-content {
    width: 100%;
    margin: 0;
  }
}

@media (max-width: 767px) {
  /* .container {
    width: 100%;
    padding: 0 15px;
  } */
  
  /* Navigation */
  .nav-section {
    padding: 40px 0 10px;
  }
  
  .navbar-wrap {
    display: none; /* Hide desktop menu on mobile */
  }
  
  .btn-menu-hamburger {
    display: block; /* Show mobile menu button */
  }
  
  /* Hero Section */
  .hero-section-wrap {
    margin-top: 2vh;
    min-height: 60vh;
    padding-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero-section-content {
    width: 100%;
    max-width: 100vw;
    padding: 6vw 0 2vw 0;
    text-align: center;
  }
  
  .hero-section-text h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 900;
    /* text-shadow: 2px 2px 4px rgba(0,0,0,0.5); */
  }
  
  .hero-section-text p {
    font-size: var(--font-size-s);
    margin-bottom: 25px;
  }
  
  .hero-section-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  
  .hero-section-buttons .btn-black {
    margin-right: 0;
  }
  
  /* Who We Are Section */

.who-we-are-split :nth-child(1){
  order: 2;
}

  .whwar-section-img {
    min-height: 35vh;
    min-height: 250px;
  }
  
  .whwar-section-wrap {
    padding: 20px 0;
  }
  
  .whwar-section-content {
    width: 100%;
    text-align: center;
    padding: 4vh 8vw;
  }
  
  .whwar-section-content-title h2 {
    font-size: 3rem;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 15px;
    text-align: center;
  }
  
  .whwar-section-content-title h4 {
    font-size: var(--font-size-m);
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
  }
  
  .whwar-section-content-text p {
    font-size: var(--font-size-xs);
    line-height: 1.6;
    margin-bottom: 50px;
    text-align: left;
  }
  
  .whwar-section-content-button {
    margin-top: 30px;
  }
  
  .whwar-section-content-button .btn-black {
    width: 100%;
    padding: 15px 30px;
    font-size: var(--font-size-xs);
    font-weight: 300;
  }
  
  /* Vision and Mission Section */
  .our-vision, .our-mission {
    height: auto;
    min-height: 60vh;
    padding: 0 0 4vh 0;
  }
  
  .vision-mission-split {
    flex-direction: column;
    gap: 0;
    padding: 0 8vw;
  }
  
  .vision-mission-section {
    width: 100%;
    padding: 30px 0;
    justify-content: flex-start;
  }
  
  .vision-mission-split h2 {
    font-size: 3rem;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    /* margin-bottom: 20px; */
  }
  
  .vision-mission-split h3 {
    font-size: var(--font-size-m);
    margin-bottom: 15px;
  }
  
  .vision-mission-split p {
    font-size: var(--font-size-xs);
    line-height: 1.6;
    margin-bottom: 15px;
  }
  
  .vision-mission-split li {
    font-size: var(--font-size-xs);
    line-height: 1.6;
    margin-bottom: 10px;
  }

  .our-mission{
    padding-top: 4vh;
  }
  
  /* Our Values Section */
  .our-values {
    padding: 4vh 4vw;
  }

  .oprcs-section-title{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .oprcs-section-title h2 {
    font-size: 3rem;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 30px;
  }
  
  .oprcs-section-title h4 {
    font-size: var(--font-size-m);
    font-weight: 700;
    margin-bottom: 20px;
    width: 80%;
    text-align: center;
  }
  
  .oprcs-section-categories {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0 4vw;
  }
  
  .oprcs-section-category {
    width: 100%;
    max-width: 300px;
  }
  
  .oprcs-section-category-img img {
    width: 100px;
    height: auto;
    margin-bottom: 20px;
  }
  
  .oprcs-section-category h3 {
    font-size: var(--font-size-m);
    font-weight: 800;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    margin-bottom: 15px;
  }
  
  .oprcs-section-category p {
    font-size: var(--font-size-xs);
    line-height: 1.6;
    text-align: center;
  }
  
  /* Our Mission Section */
  .engineering-solutions-img {
    height: 35vh;
    min-height: 250px;
  }
  
  .engineering-solutions-content {
    padding: 20px 0 40px 0;
  }
  
  .engineering-solutions-text {
    padding: 0 4vw;
    text-align: center;
  }
  
  .engineering-solutions-text h2 {
    font-size: 3rem;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 20px;
  }
  
  .engineering-solutions-text p {
    font-size: var(--font-size-xs);
    line-height: 1.6;
    margin-bottom: 15px;
  }
  
  .engineering-solutions-text .slogan {
    font-size: var(--font-size-m);
    margin: 25px 0;
    font-weight: 800;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
  }
  
  .engineering-solutions-button .btn-black {
    width: 100%;
    padding: 15px 30px;
    font-size: var(--font-size-xs);
    font-weight: 300;
  }
  
  /* Our Team Section */
  .our-team {
    padding: 4vh 0;
  }
  
  .our-team-header {
    margin: 4vh 0;
    padding: 0 8vw;
  }
  
  .our-team h1 {
    font-size: 3rem;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 20px;
  }
  
  .our-team h4 {
    font-size: var(--font-size-m);
    font-weight: 700;
    margin-bottom: 30px;
  }
  
  .our-team-cards {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0 4vw;
  }
  
  .team-card {
    width: 100%;
    max-width: 350px;
    padding: 30px 20px;
    min-height: 520px;
    height: auto;
  }
  
  .team-card-img {
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
  }
  
  .team-card-info h3 {
    font-size: var(--font-size-m);
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .team-card-info h5 {
    font-size: var(--font-size-xs);
    font-weight: 500;
    margin-bottom: 15px;
  }
  
  .team-card-info p {
    font-size: var(--font-size-xs);
    line-height: 1.6;
  }
  
  /* Why Choose Us Section */
  .why-choose-us {
    padding: 8vh 8vw;
  }
  
  .why-choose-us .whwar-section-img {
    height: 35vh;
    min-height: 250px;
  }
  
  .why-choose-us .whwar-section-wrap {
    padding: 20px 0 40px 0;
  }
  
  
  .wcu-titles h2 {
    font-size: 3rem;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 20px;
  }
  
  .wcu-titles h4 {
    font-size: var(--font-size-m);
    font-weight: 700;
    width: 100%;
    margin-bottom: 30px;
    line-height: 1.6;
  }
  
  .wcu-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 4vw;
  }
  
  /* .wcu-buttons .btn-black,
  .wcu-buttons .btn-yellow-negativ {
    width: 100%;
    padding: 15px 30px;
    font-size: var(--font-size-s) ;
    font-weight: 300;
    text-align: center;
  } */

  .wcu-buttons .btn-black {
    width: 100%;
    text-align: center;
  }
  
  /* Footer */
  .footer-section-wrap {
    gap: 20px;
  }
  
  .footer-section-first-content-text p {
    font-size: var(--font-size-xs);
  }
  
  .footer-section-second-content a,
  .footer-section-third-content a {
    font-size: 2rem;
    line-height: 3.5rem;
  }
  
  .footer-section-fourth-content-text a {
    font-size: 1.4rem;
    line-height: 2.5rem;
  }
}

.logo-header-navbar img {
    width: 180px !important;
    max-width: 40vw;
    height: auto;
    display: block;
}

@media (max-width: 1023px) {
  .logo-header-navbar img {
    width: 150px !important;
  }
  .hero-section-content {
    padding-left: 16px;
  }
}

.who-we-are, .our-values, .our-mission, .our-team, .why-choose-us {
  position: relative;
  overflow: hidden;
}

.who-we-are img,
.our-values img,
.our-mission img,
.our-team img,
.why-choose-us img {
  position: relative;
  z-index: 4;
}

main {
  position: relative;
  z-index: 1;
}
main > .honeycomb-section {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: 2;
}

/* iOS-safe sticky header, who-we-are only */
body.who-we-are .nav-section {
  position: fixed;
  top: env(safe-area-inset-top, 0);
  left: 0;
  right: 0;
  z-index: 13000;
}

@media (max-width: 767px) {
  body.who-we-are .nav-section {
    position: fixed;
  }
}

/* Make sure the full-screen overlay always covers content on iOS */
@supports (height: 100dvh) {
  body.who-we-are .mobile-menu-overlay {
    height: 100dvh;
    top: 0; left: 0; right: 0; bottom: 0;
  }
}

/* Keep potential UI floaters below the header & overlay on this page only (no visual changes) */
body.who-we-are #buton-sus { z-index: 900; }
body.who-we-are .wrapper    { z-index: 800; }
body.who-we-are footer      { z-index: 13100; }
body.who-we-are #hex-canvas { z-index: 2; }
body.who-we-are .mobile-menu-overlay { z-index: 12500 !important; }
/* Ensure inactive overlay doesn't block scroll/taps on iOS */
body.who-we-are .mobile-menu-overlay { pointer-events: none; }
body.who-we-are .mobile-menu-overlay.active { pointer-events: auto; }

/* Ensure page remains scrollable when overlay is not active (iOS) */
body.who-we-are { -webkit-overflow-scrolling: touch; }
@supports selector(body:has(.mobile-menu-overlay.active)) {
  html.menu-open:not(:has(.mobile-menu-overlay.active)),
  body.who-we-are.menu-open:not(:has(.mobile-menu-overlay.active)) {
    overflow: auto !important;
  }
  html:has(.mobile-menu-overlay.active),
  body.who-we-are:has(.mobile-menu-overlay.active) {
    overflow: hidden !important;
  }
}

/* Strong page-scoped fallback to keep page scrollable when menu is closed */
html { overflow: auto !important; }
body.who-we-are { overflow: auto !important; }
