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

body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #eee;
  background-color: #131F47;
}

header {
  height: 100px;
  width: 100%;
  padding: 25px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: #3D3B59;
}
header .logo {
  width: 35%;
  min-width: 200px;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: left;
  gap: 20px;
}
header .logo img {
  height: 100%;
  object-fit: contain;
}
header nav {
  width: 45%;
  min-width: 400px;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
header nav ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  list-style: none;
}
header nav ul li {
  font-size: 18px;
  font-weight: 500;
  color: #eee;
}
header nav ul li a {
  font-size: 20px;
  font-weight: 500;
  background: none;
  color: inherit;
  transition: background 0.3s ease;
}
header nav ul li a:hover {
  background: linear-gradient(60deg, #FFD7FF, #DBC6FA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#hero {
  width: 100%;
  height: 40vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 20px;
  margin-bottom: 50px;
}
#hero .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
#hero .bg img#beforeimage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#hero .bg img#afterimage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
}
#hero .main {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
#hero .main h1 {
  font-size: 36px;
  font-weight: 700;
  color: #eee;
  background: linear-gradient(60deg, #FFD7FF, #DBC6FA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#hero .main h2 {
  font-size: 24px;
  font-weight: 500;
  color: #eee;
}
#hero .main a {
  font-size: 20px;
  font-weight: 500;
  color: #111;
  background-color: #eee;
  padding: 10px 20px;
  border-radius: 50px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
#hero .main a:hover {
  background-color: #DBC6FA;
  color: #eee;
}
#hero .slider {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#hero .slider h3 {
  font-size: 18px;
  font-weight: 400;
  color: #eee;
  margin-bottom: 20px;
}
#hero .slider input {
  width: 80%;
  max-width: 600px;
  height: 5px;
  border-radius: 5px;
  background-color: #eee;
  appearance: none;
  outline: none;
  cursor: pointer;
}
#hero .slider input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #eee;
  cursor: pointer;
}
#hero .slider input::-moz-range-thumb {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #eee;
  cursor: pointer;
}

#about {
  width: 100%;
  padding: 50px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
#about .left {
  width: 60%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
}
#about .left h2 {
  font-size: 28px;
  font-weight: 600;
  color: #eee;
}
#about .left p {
  font-size: 24px;
  font-weight: 400;
  color: #ccc;
}
#about .right {
  width: 40%;
}
#about .right img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

#impact {
  width: 100%;
  padding: 50px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
#impact h2 {
  font-size: 28px;
  font-weight: 600;
  color: #eee;
}
#impact .cards {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
  margin-bottom: 50px;
}
#impact .cards .card {
  width: 30%;
  background: linear-gradient(150deg, #3D3B59, #2C2A40);
  padding: 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
#impact .cards .card h3 {
  font-size: 24px;
  font-weight: 600;
  color: #eee;
}
#impact .cards .card p {
  font-size: 20px;
  text-align: center;
  font-weight: 400;
  color: #ccc;
}

#map {
  width: 100%;
  height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}
#map h2 {
  font-size: 28px;
  font-weight: 600;
  color: #eee;
  margin-bottom: 20px;
}
#map iframe {
  width: 100%;
  height: 100%;
  min-height: 0;
  border: none;
  zoom: 1;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#solutions {
  width: 100%;
  padding: 50px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
#solutions h2 {
  font-size: 28px;
  font-weight: 600;
  color: #eee;
}
#solutions .solutions {
  width: 100%;
  display: flex;
  flex-direction: column;
}
#solutions .solutions .solution {
  width: 100%;
  padding: 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#solutions .solutions .solution .header {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-radius: 10px;
  border: 2px solid #555;
  cursor: pointer;
}
#solutions .solutions .solution .content {
  width: 100%;
  padding: 0 30px;
  padding-top: 20px;
  display: none;
}
#solutions .solutions .solution .content ul {
  list-style: none;
  padding: 0;
}
#solutions .solutions .solution .content ul li {
  font-size: 18px;
  font-weight: 400;
  color: #ccc;
  margin-bottom: 10px;
}

#provensolutions {
  width: 100%;
  padding: 50px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#provensolutions h2 {
  font-size: 28px;
  font-weight: 600;
  color: #eee;
  margin-bottom: 20px;
}
#provensolutions .slides {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
#provensolutions .slides .slide {
  width: 60%;
  height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 10px;
  background-color: #3D3B59;
  display: none;
}
#provensolutions .slides .slide h3 {
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 600;
  color: #eee;
}
#provensolutions .slides .slide p {
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 400;
  color: #ccc;
  text-align: center;
}
#provensolutions .slides .slide.current {
  display: flex;
}
#provensolutions .slides .slide .container {
  width: 100%;
  flex: 1;
  min-height: 0;
}
#provensolutions .slides .slide .container img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  object-position: bottom;
}
#provensolutions .circles {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
#provensolutions .circles .circle {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #555;
  cursor: pointer;
}
#provensolutions .circles .circle.current {
  background-color: #eee;
}

#references {
  width: 100%;
  padding: 50px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
#references h2 {
  font-size: 28px;
  font-weight: 600;
  color: #eee;
}
#references .sources {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#references .sources h3 {
  font-size: 18px;
  font-weight: 400;
  color: #ccc;
  margin-bottom: 20px;
  padding: 20px;
  background-color: #3D3B59;
  border-radius: 10px;
  width: 100%;
}

footer {
  width: 100%;
  padding: 40px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: #3D3B59;
}
footer .left {
  font-size: 16px;
  color: #ccc;
}
footer .left h1 {
  font-size: 24px;
  font-weight: 500;
  color: #eee;
  margin-bottom: 10px;
}
footer .left h2 {
  font-size: 20px;
  font-weight: 400;
  color: #ccc;
}
footer .right {
  font-size: 20px;
  color: #ccc;
  gap: 20px;
  display: flex;
  flex-direction: row;
}
footer .right a {
  color: #ccc;
  transition: color 0.3s ease;
}
footer .right a:hover {
  color: #DBC6FA;
}

@media (max-width: 768px) {
  header .logo {
    width: 100%;
    align-items: center;
    justify-content: center;
  }
  header nav {
    display: none;
  }
  #hero {
    height: 55vh;
    text-align: center;
    margin-bottom: 20px;
  }
  #about {
    padding: 20px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  #about .left {
    width: 100%;
    text-align: center;
    align-items: center;
  }
  #about .left p {
    font-size: 18px;
  }
  #about .right {
    width: 100%;
  }
  #impact {
    padding: 20px;
    gap: 20px;
  }
  #impact .cards {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 0;
  }
  #impact .cards .card {
    width: 90%;
    gap: 10px;
  }
  #map {
    height: 60vh;
    padding: 20px;
  }
  #map h2 {
    text-align: center;
  }
  #map iframe {
    zoom: 2;
  }
  #solutions {
    padding: 20px;
    gap: 10px;
  }
  #solutions .solutions {
    width: 100%;
    gap: 10px;
  }
  #solutions .solutions .solution {
    width: 100%;
    padding: 0;
  }
  #solutions .solutions .solution .header {
    padding: 15px;
  }
  #solutions .solutions .solution .content {
    padding: 10px 20px;
  }
  #provensolutions {
    padding: 20px;
    gap: 10px;
  }
  #provensolutions .slides {
    width: 100%;
  }
  #provensolutions .slides .slide {
    width: 90%;
    height: auto;
    padding: 15px;
    flex-direction: column;
  }
  #provensolutions .slides .slide h3 {
    font-size: 18px;
  }
  #provensolutions .slides .slide p {
    font-size: 16px;
  }
  #provensolutions .circles {
    margin-top: 10px;
  }
  #references {
    padding: 20px;
    gap: 10px;
  }
  #references p {
    margin-bottom: 5px;
  }
  #references .sources {
    width: 100%;
    gap: 20px;
  }
  #references .sources h3 {
    font-size: 16px;
    padding: 15px;
    margin-bottom: 0;
  }
  footer .left h1 {
    font-size: 20px;
  }
  footer .left h2 {
    font-size: 16px;
  }
  footer .right {
    font-size: 16px;
  }
}

/*# sourceMappingURL=style.css.map */
