/* === RESET AND BASE STYLES === */

{ margin: 0; padding: 0; box-sizing: border-box; }


body { font-family: Arial, sans-serif; line-height: 1.6; color: #333; background: #f4f4f4; }

.container { width: 90%; max-width: 1200px; margin: auto; padding: 20px 0; }

h2, h3 { margin-bottom: 10px; }

/* === HEADER === */ header { background: #fff; text-align: center; padding: 10px 0; border-bottom: 1px solid #ccc; }

header img { width: 80px; }

header h1 { font-size: 1.8rem; margin: 10px 0; }

header p, header a { font-size: 0.9rem; margin: 4px 0; display: block; }

.social-icons { margin-top: 10px; }

.social-icons a { margin: 0 5px; color: #333; font-size: 1.2rem; }

/* === BANNER === */ .banner { position: relative; height: 350px; background: url('../images/banner.jpg') center center/cover no-repeat; display: flex; align-items: center; justify-content: center; text-align: center; color: white; }




.banner-text h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
  border: 0px solid #fff;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 5px;
}

.banner-text p {
  font-size: 1rem;
  margin-top: 10px;
  color: #fff;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
  border: 0px solid #fff;
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
}
.





/* === SECTION 1: PROGRAM CARDS === */ .card-section { text-align: center; background: #fff; padding: 40px 0; }

.card-container { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }


.card {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center; /* Center horizontally */
  justify-content: center; /* Center vertically */
}


.card { background: #fefefe; border: 1px solid #ddd; border-radius: 8px; padding: 20px; width: 300px; transition: transform 0.3s ease; box-shadow: 0 0 5px rgba(0,0,0,0.1); }

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

.card i { font-size: 2rem; margin-bottom: 10px; color: #007bff; }

.card h3 { font-size: 1.2rem; font-weight: bold; }

.card p { font-size: 0.95rem; color: #555; }

/* === SECTION 2: CORE VALUES === */ 


.core-values-section {
  padding: 50px 20px;
  text-align: center;
}

.core-values-intro h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #333;
}

.core-values-intro p {
  font-size: 1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 40px;
}

.core-values-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.core-value-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 25px;
  max-width: 300px;
  flex: 1 1 250px;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.core-value-card h3 {
  color: #007bff;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.core-value-card p {
  color: #666;
  font-size: 0.95rem;
}



.core-values { padding: 40px 0; background: #eef2f3; text-align: center; }

.core-values .container { width: 95%; margin-left: 1200px; margin-right: 1200px; }

.core-values h2 { text-align: center; margin-bottom: 20px; }

.core-values p { margin-bottom: 15px; font-size: 1rem; line-height: 1.6; }



/* === Management Team Section === */
.management-team {
  padding: 50px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.management-team h2 {
  font-size: 2rem;
  color: #222;
  margin-bottom: 10px;
}

.management-team p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
}

.management-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.management-card {
  background-color: #fff;
  width: 300px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.management-card:hover {
  transform: translateY(-6px);
}

.management-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.management-card-content {
  padding: 20px;
  text-align: left;
}

.management-card-content h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #007bff;
}

.management-card-content p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #444;
}



/* === SECTION 4: FAQ === */ .faq { background: #eef2f3; padding: 40px 0; }

.faq h2 { text-align: center; margin-bottom: 20px; }

.faq-item { margin: 10px auto; max-width: 800px; background: white; padding: 15px; border-radius: 5px; cursor: pointer; box-shadow: 0 0 5px rgba(0,0,0,0.1); }

.faq-question { display: flex; justify-content: space-between; align-items: center; font-weight: bold; }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s ease-in-out; }

.faq-answer.show { max-height: 300px; }

.faq-icon { transition: transform 0.3s ease; }

.faq-icon.rotate { transform: rotate(180deg); }

/* === SECTION 5: CONTACT === */ .contact { background: #fff; padding: 40px 0; text-align: center; }

.contact form { display: flex; flex-direction: column; gap: 15px; max-width: 500px; margin: auto; }

.contact input, .contact textarea { padding: 10px; font-size: 1rem; border: 1px solid #ccc; border-radius: 5px; }

.contact button { background: #007bff; color: white; border: none; padding: 10px; border-radius: 5px; font-size: 1rem; cursor: pointer; }




/* === FOOTER === */ 


footer {
  background-color: #f0f0f0;  /* ash color */
  color: #333;
  padding: 40px 20px;
  text-align: center;
}





footer img { width: 50px; margin-bottom: 10px; }

footer .social-icons a { color: white; margin: 0 10px; font-size: 1.2rem; }

footer p { margin: 5px 0; font-size: 0.85rem; }

.contact-card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 40px auto;
  text-align: left;
}

.contact-card h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #333;
}

.contact-card p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #555;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #444;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #3498db;
}

.submit-btn {
  background-color: #3498db;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #2b80c1;
}.footer .social-icons a {
  color: #333; /* Darker icon color for visibility */
  font-size: 24px; /* Bigger size */
  margin: 0 10px; /* Spacing between icons */
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer .social-icons a:hover {
  color: #007bff; /* Bright blue on hover */
  transform: scale(1.2); /* Slight zoom on hover */
}