@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
.animation-circle {
  -webkit-animation: spin 1s linear infinite;
  -moz-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
}

@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.bounce-content {
  -webkit-animation-name: bounce;
  -webkit-animation-duration: 0.3s;
  -webkit-animation-direction: alternate;
  -webkit-animation-timing-function: cubic-bezier(0.5, 0.05, 1, 0.5);
  -webkit-animation-iteration-count: infinite;
}

@-webkit-keyframes bounce {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
@media (max-width: 480px) {
  h2 {
    font-size: 25px !important;
  }
  .mission-card {
    min-height: 320px !important;
    padding: 1.5rem;
  }
  .mission-card .icon-wrapper {
    width: 5rem;
    height: 5rem;
    top: -2.5rem;
  }
}
@media (max-width: 786px) {
  h2 {
    font-size: 28px !important;
  }
}
@media (max-width: 1024px) {
  .mission-card {
    min-height: 350px !important;
    padding: 1.5rem;
  }
}
:root {
  --main-yellow: #ffc107;
  --main-green: red;
  --subtle-green:red;
  --main-bg: #f8f8f8;
  --main-text: #1f2937;
  --subtle-text: #7c7c7c;
  --white: #ffffff;
  --black: #000000;
  --font-inter: "Inter", sans-serif;
  --font-poppins: "Poppins", sans-serif;
}

.badge {
  padding: 5px 15px;
  color: var(--main-green);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.875rem;
  display: inline-flex;
  border-radius: 50px;
  border: 1px solid var(--main-green);
  line-height: 1.25rem;
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
}

.btn-custom {
  padding: 12px 28px;
  border-radius: 50px;
  color: var(--white);
  font-weight: bold;
  font-size: 18px;
  align-items: center;
  transition-duration: 300ms;
  justify-content: center;
  background-color: var(--main-green);
}
.btn-custom:hover {
  background-color: var(--main-yellow);
}

h2,
.heading {
  font-size: 45px;
  color: var(--main-text);
  font-weight: bold;
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  line-height: 1.25;
}

h3,
.sub-heading {
  color: var(--main-text);
  line-height: 1.25;
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-weight: bold;
  font-size: 20px;
}

p {
  color: var(--subtle-text);
  font-size: 20px;
}

.home-banner {
  background: url("../images/hero-bg.png");
}

.list a {
  color: #212121;
}
.list a:hover {
  color: var(--main-green);
}

/* Owl Carousel Custom Dots (To match your image) */
.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #25dfad;
  opacity: 1;
}

.owl-theme .owl-dots .owl-dot.active span {
  background: #facc15; /* Yellow for active */
  transform: scale(1.2);
}

.owl-nav {
  display: none;
}

.mission-card {
  background-color: white;
  border-radius: 0.75rem; /* rounded-xl */
  padding: 2rem;
  text-align: center;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
  transition: transform 0.3s ease;
}
.mission-card:hover {
  transform: translateY(-8px);
}

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