* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #fff;
  padding-top: 70px;
  line-height: 1.6;
  background-color: #000;
}

/* Header and Navigation */
.header {
  background-color: #fff;
  color: #fff;
  padding: 10px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
  align-self: center;
  color: black;
}

.nav img {
  margin-bottom: 5px;
}

.nav-links {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin-left: 20px;
}

.nav-links a {
  color: #000;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.nav-links a:hover {
  background-color: #d4af37;
}

/* Hero Section with Slideshow */
.hero {
  background-image: url('image1.png'); /* Replace with your preferred image */
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: flex-end; /* Aligns content to the bottom */
  justify-content: center;
  padding-bottom: 150px; /* Adjust this value to control how far below the content appears */
  text-align: center;
  color: white;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
}


.programs {
  display: flex;
  justify-content: space-around;
  margin: 2rem 0;
}

.program {
  text-align: center;
}

.mission-card {
  margin: 2rem 0;
  text-align: center;
}

.contact-info {
  display: flex;
  justify-content: space-around;
  margin: 2rem 0;
}

.social-icon {
  text-align: center;
}


@keyframes slideshow {
  0%,
  100% {
    opacity: 0;
  }
  3%,
  22% {
    opacity: 1;
  }
  25%,
  97% {
    opacity: 0;
  }
}

.programs {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #000;
  padding: 65px 0;
}

.program {
  text-align: center;
  max-width: 300px;
}

.programs .program i {
  font-size: 80px;
  color: #d09f70;
  margin-bottom: 20px;
}

.program h3 {
  font-size: 1.2rem;
  letter-spacing: 1px;
  color: #fff;
}

.program p {
  font-size: 1rem;
  color: #fff;
  line-height: 1.6;
}

.mission-card {
  background-color: #d09f70;
  color: #fff;
  padding: 80px;
  border-radius: 10px;
  width: 80%;
  max-width: 1080px;
  margin: 80px auto;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.mission-card h5 {
  font-family: 'Oswald', Helvetica, Arial, Lucida, sans-serif;
  text-transform: uppercase;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.4) !important;
  letter-spacing: 3px;
  line-height: 1.7em;
  box-sizing: border-box;
  background: transparent;
  vertical-align: baseline;
}

.mission-card h2 {
  font-weight: 700;
  font-size: 50px;
  line-height: 1.5em;
  text-align: center;
  word-wrap: break-word;
  padding-bottom: 10px;
  color: #fff !important;
}

.mission-card p {
  font-size: 16px;
  line-height: 2em;
  font-weight: 500;
}

.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 50px 50px;
  background-color: #000;
  background-image: url('pexels.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  height: auto;
  width: 100%;
  min-height: 300px;
}

.contact p {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  color: white;
}

.contact-info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.social-icon {
  display: flex;
  flex-direction: column;
  margin: 40px;
}

.social-icon i {
  color: #d09f70;
  font-size: 64px;
}

.social-icon h3 {
  margin-top: 10px;
  font-size: 2em;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav {
    flex-direction: row;
    justify-content: space-between;
    padding: 10px 20px;
  }

  .nav img {
    height: 50px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    background-color: #fff;
    width: 100%;
    padding: 10px 0;
    z-index: 999;
  }

  .nav-links li {
    margin: 10px 0;
    text-align: center;
  }

  .hamburger {
    display: block;
  }

  .hero h1 {
    font-size: 2em;
  }

  .programs {
    flex-direction: column;
    align-items: center;
  }

  .program {
    margin: 20px 0;
  }
}
