

* {
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.about-section {
  background-color: black;

  text-align: left;
  margin-top: -5px;
  padding-bottom: -10px;
}
.about-sections {
  padding-right: 60px;
  padding-left: 60px;
}
.about-header {

  font-size: 5rem;
  font-weight: 800;
  color: #FFD700;
  margin-bottom: 30px;
  padding-left: 10px;
}

.about-paragraph {

  font-size: 1.8rem;
  color: white;
  max-width: 900px;
  padding-left: 10px;
  padding-bottom: 40px;
  line-height: 1.6;
  margin: 0;
}

.about-box {
  padding-right: 60px;
  padding-left: 60px;
  background-color: #064e3b;
  color: white;
  width: 100%;
  height: 80vh;
  margin: 0 auto;
  padding: 60px 40px;
  border-radius: 25px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.metrics-carousel {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.carousel-track {
  display: flex;
  width: 100%;
  transition: transform 0.5s ease-in-out;
  height: 100%;
}

.metric-slide {
  min-width: 100%;
  padding: 0 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  text-align: center;
}

.metric-slide h3 {
  font-size: 3rem;
  color: #FFD700;
  margin-bottom: 20px;
}

.metric-slide p {
  font-size: 2rem;
  line-height: 1.5;
  color: white;
  margin: 0;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  color: #FFD700;
  border: none;
  font-size: 3rem;
  cursor: pointer;
  padding: 10px;
  z-index: 2;
  transition: opacity 0.2s ease;
}

.carousel-btn:hover {
  opacity: 0.8;
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

.about-links {
  font-size: 1.1rem;
  color: white;
  text-align: center;
  margin-top: 30px;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.about-links a {
  color: #FFD700;
  font-weight: 600;
}

.apply-callout {
  margin-left: 20px;
}


