 /* Reset defaults */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body, html {
  height: 100%;
  width: 100%;
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
}

/* Center logo in page */
.center-wrapper {
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Logo styling */
.logo-bottom {
  max-width: 100px;
  width: 20%;
  animation: popIn 1s ease-out forwards;
  box-shadow: 0 6px 20px rgba(0, 0, 240);
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.logo-bottom:hover {
  transform: scale(1.05);
  cursor: pointer;
}

/* Logo animation */
@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.6);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Navigation styling */
header {
  background-color: #004080;
  padding: 1rem;
  text-align: center;
}

nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}
.banner {
  background-image: url('images/students.png'); 
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero-box {
  background-color: rgba(0, 0, 0, 0.65); /* dark transparent box */
  padding: 3rem 2rem;
  border-radius: 12px;
  max-width: 800px;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.hero-box h1 {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
  color: #ffcc00;
}

.hero-box p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  color: #f0f0f0;
}
.cta-buttons .btn {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  margin: 0 10px;
  font-weight: bold;
  background-color: #ffcc00;
  color: #004080;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.cta-buttons .btn.alt {
  background-color: #ffffff;
  color: #004080;
}

.cta-buttons .btn:hover {
  background-color: #e6b800;
}

.hero-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #ffeedd; 
  text-shadow: 1px 1px 6px rgba(0,0,0,0.5);
}
.what-we-do-section {
  padding: 4rem 2rem;
  background-color: #ffffff;
  color: #004080;
}

.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}
.what-we-do-overlay {
  background-image: url('images/plambg.png');
  background-size: cover;
  background-position: center;
  padding: 5rem 2rem;
  position: relative;
  color: white;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.6); 
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: auto;
  border-radius: 10px;
}

.overlay-content {
  text-align: left;
}

.overlay-content h2,
.overlay-content h3 {
  color: #ffcc00;
}

.overlay-content ul {
  list-style: disc;
  margin-left: 1.5rem;
  margin-bottom: 2rem;
}

.overlay-content li {
  margin-bottom: 0.5rem;
}
.who-we-are {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
  color: #004080;
  text-align: center;
}

.who-we-are .about-content {
  max-width: 900px;
  margin: 0 auto;
}

.who-we-are h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.who-we-are p {
  font-size: 1.15rem;
  line-height: 1.7;
}
/* Overlay card layout */
.get-involved-full {
  background-image: url('images/plambg.png');
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  padding: 4rem 2rem;
}

.get-involved-full .overlay {
  background-color: rgba(0, 0, 0, 0.65); 
  padding: 3rem;
  border-radius: 16px;
  max-width: 1200px;
  width: 100%;
  color:#004080;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.get-involved-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #ffcc00;
}

.get-involved-content p {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  color: black;
}

.involvement-options {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.involve-card {
  background-color: rgba(255, 255, 255, 0.1); 
  padding: 2rem;
  border-radius: 12px;
  width: 300px;
  color: black;
  backdrop-filter: blur(5px);
}

.involve-card h2 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #ffcc00;
}

.involve-card p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.involve-card .btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background-color: #ffcc00;
  color: #004080;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.involve-card .btn.alt {
  background-color: #ffffff;
  color: #004080;
  border: 1px solid #004080;
}

.involve-card .btn:hover {
  background-color: #e6b800;
}
.programs-hero {
  background-image: url('images/student.png'); 
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.programs-hero .overlay {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 2rem;
  border-radius: 10px;
}

.programs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  padding: 4rem 2rem;
}

.program-card {
  background-color: #004080;
  color: white;
  padding: 2rem;
  border-radius: 12px;
  width: 300px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.program-card:hover {
  transform: translateY(-5px);
}

.program-card h2 {
  color: #ffcc00;
  margin-bottom: 1rem;
}

.program-card p {
  line-height: 1.5;
}
.team {
  display: flex;
  flex-direction: column; 
  justify-content: center; 
  align-items: center;    
  height: 100vh;            
  text-align: center;
}

.team h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.team p {
  font-size: 1.2rem;
  margin: 5px 0;
}
.team {
  text-align: center;
  padding: 60px 20px;
  background: #f9f9f9;
}

.team h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.team-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.team-member {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  width: 250px;
  text-align: center;
}

.team-member img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}
.logo {
  width: 100px; 
  height: auto; 
}




