/* ===== General Styles ===== */
body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f4f4f4;
}
img {
  transition: transform 0.4s ease-in-out, box-shadow 0.4s;
}

img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}

/* ===== Navbar ===== */
.bg-teal {
  background-color: #00796B !important;
}

.navbar .nav-link {
  color: #fff !important;
  transition: all 0.3s ease;
}

.navbar .nav-link:hover {
  color: #FBC02D !important;
}

/* ===== Hero Carousel Section ===== */
.hero-carousel .item {
  height: 100vh; /* Full screen height */
  min-height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-carousel .overlay {
  background: rgba(0, 0, 0, 0.5); /* Dark semi-transparent background */
  color: #fff;
  text-align: center;
  padding: 3rem 2rem;
  border-radius: 12px;
  max-width: 750px;
  width: 90%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-carousel h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.hero-carousel p {
  font-size: 1.25rem;
  line-height: 1.6;
  margin: 0;
}
/* ===== Owl Carousel Annimation ===== */
.hero-slide .overlay h1,
.hero-slide .overlay p,
.hero-slide .overlay a {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-in-out;
}

.hero-slide.active .overlay h1,
.hero-slide.active .overlay p,
.hero-slide.active .overlay a {
  opacity: 1;
  transform: translateY(0);
}


/* ===== Owl Carousel Dots (optional beautify) ===== */
.owl-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.owl-dot span {
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  margin: 5px;
  display: inline-block;
}

.owl-dot.active span {
  background: #FBC02D;
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 768px) {
  .hero-carousel h1 {
    font-size: 1.8rem;
  }

  .hero-carousel p {
    font-size: 1rem;
  }

  .hero-carousel .overlay {
    padding: 2rem 1.5rem;
  }
}


/* ===== Sticky Footer Layout Fix ===== */
.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* Make wrapper full viewport height */
}

main.flex-fill {
  flex: 1; /* Push footer to the bottom if content is short */
}


/* ===== Programs Page ===== */
.card-img-top {
  height: 220px;
  object-fit: cover;
}

/*Get Involved Page*/
 .animate-link {
    transition: all 0.3s ease;
  }
  .animate-link:hover {
    transform: translateY(-5px);
    color: #0d6efd !important; /* Bootstrap primary color */
  }
  .animate-link i {
    transition: transform 0.3s ease;
  }
  .animate-link:hover i {
    transform: scale(1.2);
  }


  /* Smooth animation style */

  .animated-box {
    transition: all 0.3s ease;
    background-color: #ffffff;
  }

  .animated-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.1);
  }

  @media (max-width: 576px) {
    .animated-box {
      padding: 2rem 1.5rem;
    }
  }

  /*What We Do Page*/
  .hover-shadow {
  transition: all 0.3s ease-in-out;
}
.hover-shadow:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.animate-link {
  transition: transform 0.2s ease, color 0.2s ease;
}

.animate-link:hover {
  transform: translateY(-3px);
  color: #007bff; /* Or any hover color */
}
/* Link Animation */
.animate-link {
  transition: all 0.3s ease-in-out;
}
.animate-link:hover {
  transform: translateY(-4px);
  color: #0d6efd !important;
}

/* Image Animation */
.animate-image {
  transition: transform 0.4s ease-in-out, box-shadow 0.4s;
}
.animate-image:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(0, 123, 255, 0.2);
}


