.hero {
    background-image: url("../assets/images/project.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);
}
.programs {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.program-card {
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 20px;
  width: 300px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.program-card:hover {
  transform: translateY(-5px);
}

.program-card img {
  border-radius: 50%;
  width: 150px;
  height: 150px;
  object-fit: cover;
  margin-bottom: 15px;
}

.program-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.program-card address {
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 10px;
}

.more-info {
  text-align: left;
  font-size: 0.9rem;
  margin-top: 10px;
  display: none;
}

.read-more-btn {
  margin-top: 10px;
  background-color: #145DA0;
  color: white;
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}

.read-more-btn:hover {
  background-color: #0d3e75;
}

@media (max-width: 768px) {
  .programs {
    flex-direction: column;
    align-items: center;
  }
}
