@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  font-family: "Poppins", serif;
}
@keyframes carouselAnim {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(calc(-100% + (6 * 300px)));
  }
}

@media only screen and (max-width: 768px) {
  .container .carousel-items {
    animation: carouselAnim 60s infinite alternate linear;
  }
  @keyframes carouselAnim {
    from {
      transform: translate(0, 0);
    }
    to {
      transform: translate(calc(-100% + (5 * 300px)));
    }
  }
}

.carousel-focus:hover {
  transition: all 0.8s;
  transform: scale(1.1);
}

.bg-color {
  height: 50px;
  background: #2c3e50;
}

.bg-\[2c3e50\] {
  background-color: #2c3e50;
}
footer a {
  color: #d1d5db;
}
footer .text-gray-300 {
  color: #cbd5e1;
}
footer .text-gray-400 {
  color: #9ca3af;
}
footer .border-gray-600 {
  border-color: #4b5563;
}
#leadership {
  padding: 2rem;
  text-align: center;
  background: #ecf0f1;
}

.leadership-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.leader {
  background: #fff;
  padding: 1rem;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 250px;
}

.leader-image img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.leader h3 {
  font-size: 1.2rem;
  margin: 1rem 0 0.5rem;
  color: #2c3e50;
}

.leader p {
  font-size: 0.9rem;
  color: #666;
}
.equipment {
  padding: 4rem 0;
}
.equipment h2 {
  text-align: center;
  margin-bottom: 2rem;
}
.equipment-carousel {
  display: flex;
  width: 100%;
  justify-content: center;
  overflow-x: auto;
  gap: 1.5rem;
  padding-bottom: 1rem;
}
.equipment-item {
  flex: 0 0 auto;
  width: 250px;
  background-color: #f3f4f6;
  border-radius: 8px;
  overflow: hidden;
}
.equipment-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.equipment-item h3 {
  padding: 1rem;
  text-align: center;
}
