.logo img {
  left: 15vw;
  z-index: 999;
  filter: none;
}

.nav a{
    color: #005a56;
}

.language-dropdown select {
    color: #005a56;
}

.hamburger {
    color: #005a56;
}

/* Base Layout */
.soltech-hero {
  margin-top: 10vh;
  padding: 5rem 2rem;
  background-color: white;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
  max-width: 1200px;
  margin: auto;
}

/* Text */
.hero-text {
  flex: 1;
  min-width: 280px;
}

.hero-text .subheading {
  font-size: 1rem;
  color: #507174;
  margin-bottom: 1rem;
}

.hero-text h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #004d4d;
  line-height: 1.2;
}

/* Image */
.hero-image-wrapper {
  position: relative;
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  border-radius: 2rem;
  overflow: visible; /* allow cutout to escape bounds */
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2rem;
  object-fit: cover;
}

/* WHO WE ARE SECTION */

.who-we-are {
  position: relative;
  background-color: #f8f8f8;
  padding: 6rem 2rem;
  padding-bottom: 0;
  overflow: hidden;
  align-content: space-around;
  height: 90vh;
}

.who-container {
  display: flex;
  justify-content: space-between;
  align-items: start;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
  z-index: 2;
  position: relative;
}

.who-left {
  flex: 1;
  min-width: 250px;
  padding-right: 2rem;
}

.who-left h2 {
  font-size: 2rem;
  color: #333;
  font-weight: 400;
}

.who-right {
  flex: 2;
  min-width: 300px;
}

.who-right p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
}

.who-bg-text{
    display: flex;
    justify-content: center;
}
/* Huge background text */
.giant-bg-text {
  position: absolute;
  font-size: 8rem;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.05);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}

/* Vision and Mission Section */
.vision-mission {
  background-color: #005a56; /* dark teal */
  color: white;
  padding: 5rem 2rem;
}

.vm-container {
  display: flex;
  justify-content: center;
  gap: 4rem;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

.vm-block {
  flex: 1;
  min-width: 280px;
  max-width: 500px;
}

.vm-block h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.vm-block p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-text h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  .who-container {
    flex-direction: column;
    text-align: center;
  }

  .who-left,
  .who-right {
    padding: 0;
  }

  .giant-bg-text {
    font-size: 4rem;
    bottom: -5px;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
  }

  .vm-container {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }

  .vm-block h2 {
    font-size: 1.75rem;
  }

  .vm-block p {
    font-size: 0.95rem;
  }
}