.hero {
    background-image: url("../assets/images/crcu children 3.jpg");
    background-size: cover;
    background-position: center;
    height: 70vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .hero-overlay {
    background-color: rgba(62, 52, 52, 0.4);
    width: 100%;
    height: 100%;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
    color: rgb(69, 208, 239);
    margin-bottom: 1rem;
  }
  
  .hero-text .btn-primary {
    margin-top: 1.5rem;
  }
  
body {
  font-family: 'Inter', sans-serif;
  background-color: #f9fbfd;
  color: #222;
  line-height: 1.7;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 4rem 2rem;
}

.about-section {
  margin-bottom: 5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-in-out;
}

/* Peter Dossen Section */
  .program-card {
    max-width: 320px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
  }
  .program-card h3 {
    margin-bottom: 6px;
  }
  .program-card address {
    font-style: normal;
    font-size: 0.9em;
    color: #555;
  }
  .program-card a {
    color: #0066cc;
    text-decoration: none;
  }
  .program-card a:hover {
    text-decoration: underline;
  }

.about-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-section h2 {
  font-size: 2.2rem;
  color: #3e3e3e;
  margin-bottom: 1rem;
  position: relative;
}

.about-section h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: #7c2bc2;
  margin-top: 0.5rem;
}

.about-section p {
  font-size: 1.1rem;
  color: #444;
}

.programs {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  margin-top: 2rem;
}

.program-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 2rem;
  width: 280px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.25);
  opacity: 0;
  transform: translateY(20px);
}

.program-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.program-card:hover {
  transform: translateY(-10px) scale(1.02);
}

.program-card h3 {
  font-size: 1.3rem;
  color: #2c2c2c;
  margin-bottom: 0.5rem;
}

.call-to-action {
  background: linear-gradient(235deg, #6be56f, #23a1cf);
  color: #fff;
  padding: 4rem 2rem;
  border-radius: 50px;
  text-align: center;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-in-out;
}

.call-to-action.visible {
  opacity: 1;
  transform: translateY(0);
}

.cta-btn {
  display: inline-block;
  margin-top: 1.5rem;
  background-color: #0f9d58;
  color: white;
  font-weight: 600;
  padding: 0.9rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background-color: #0b7f42;
}

footer {
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.95rem;
  color: #666;
  background-color: #f1f3f6;
}

.social-icons {
  margin-top: 1rem;
}

.social-icons a {
  margin: 0 0.5rem;
  display: inline-block;
}

.social-icons img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.2);
}

.image-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  margin: 40px 0;
}

.image-slider img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
}

.overlay-image {
  position: relative;
  margin: 50px 0;
}

.overlay-image img {
  width: 100%;
  border-radius: 12px;
}

.overlay-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 1rem;
}

.dual-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.dual-cards .card {
  flex: 1;
  min-width: 280px;
  background: #e9f7ef;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
}

.dual-cards .card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.dual-cards .card p {
  padding: 15px;
  font-size: 1rem;
}
 
  .carousel-container {
    overflow: hidden;
    position: relative;
  }
  
  .carousel-track {
    display: flex;
    gap: 1rem;
    transition: transform 0.5s ease-in-out;
  }
  
  .carousel-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    flex: 0 0 calc(33.333% - 0.67rem);
  }
  
  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(124, 43, 194, 0.8);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 0.5rem 1rem;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
  }
  
  .carousel-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
  }
  
  .carousel-btn.prev { left: 10px; }
  .carousel-btn.next { right: 10px; }

  .three-horizontal-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 30px 0;
  justify-content: space-between;
}

.info-card {
  flex: 1;
  min-width: 250px;
  background-color: #d3e0ef;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-card h3 {
  margin-top: 0;
  color: #145DA0;
}

.info-card p {
  font-size: 1rem;
  line-height: 1.5;
}

.overlay-image {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 100px auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.overlay-image img {
  width: 100%;
  height: auto;
  display: block;
}

.overlay-text {
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* semi-transparent black */
  color: white;
  width: 100%;
  padding: 15px 20px;
  font-size: 1.2rem;
  text-align: center;
  box-sizing: border-box;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 40px 0;
  padding: 0 10px;
}

.service-card {
  background-color: #f5faff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card h3 {
  margin-top: 0;
  font-size: 1.3rem;
  color: #145DA0;
}

.service-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.info-card {
  flex: 1;
  min-width: 250px;
  background-color: #8da1b8;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
