/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

/* ================= NAVBAR ================= */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #b30000;
  padding: 15px 50px;
  color: white;
}

.logo {
  font-size: 22px;
  font-weight: bold;
}

.navbar ul {
  display: flex;
  list-style: none;
}

.navbar ul li {
  margin-left: 30px;
}

.navbar ul li a {
  text-decoration: none;
  color: white;
  transition: 0.3s;
  font-weight: 500;
}

.navbar ul li a:hover,
.navbar ul li a.active {
  color: #ffd700;
}

/* ================= HERO ================= */
.hero {
  height: 100vh;
  background: url('hero.jpeg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.4));
}

.hero-content {
  position: relative;
  text-align: center;
  color: white;
  animation: fadeIn 1.5s ease-in-out;
}

.title {
  font-size: 60px;
  font-weight: bold;
}

.subtitle {
  font-size: 22px;
  margin: 15px 0 30px;
}

/* Buttons */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn {
  padding: 12px 30px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

/* Primary */
.primary {
  background: #ffd700;
  color: black;
}

.primary:hover {
  background: white;
  transform: scale(1.05);
}

/* Secondary */
.secondary {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.secondary:hover {
  background: white;
  color: black;
  transform: scale(1.05);
}

/* ================= VISION MISSION ================= */
.vm-section {
  background: #f5efe8;
  padding: 80px 50px;
}

.vm-container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.vm-card {
  flex: 1;
  min-width: 250px;
  background: #ffffff;
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.vm-card h2 {
  margin-bottom: 15px;
  font-size: 24px;
}

.vm-card p {
  color: #555;
  line-height: 1.6;
}

/* Hover */
.vm-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* ================= IMPACT ================= */
.impact {
  background: #a80000;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.impact h2 {
  margin-bottom: 40px;
  font-size: 28px;
}

.impact-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.impact-box {
  margin: 20px;
}

.impact-box h3 {
  font-size: 32px;
  margin-bottom: 10px;
}

/* ================= ANIMATION ================= */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {

  .navbar {
    flex-direction: column;
    padding: 15px;
  }

  .navbar ul {
    flex-direction: column;
    margin-top: 10px;
  }

  .navbar ul li {
    margin: 10px 0;
  }

  .title {
    font-size: 36px;
  }

  .subtitle {
    font-size: 16px;
  }

  .vm-container {
    flex-direction: column;
  }

  .hero-buttons {
    flex-direction: column;
  }
}
/* ================= FOOTER ================= */
.footer {
  background: #111;
  color: #ddd;
  padding: 50px 20px 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-section {
  flex: 1;
  min-width: 250px;
}

.footer-section h3 {
  margin-bottom: 15px;
  color: #ffd700;
}

.footer-section p {
  line-height: 1.6;
  font-size: 14px;
}

/* Links */
.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  text-decoration: none;
  color: #ddd;
  transition: 0.3s;
}

.footer-section ul li a:hover {
  color: #ffd700;
  padding-left: 5px;
}

/* Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 14px;
}
/* ================= ABOUT HERO ================= */
.about-hero {
  height: 50vh;
  background: url('bg\ copy.jpeg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.about-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
}

.about-hero h1 {
  position: relative;
  font-size: 40px;
}

/* ================= ABOUT CONTENT ================= */
.about-content {
  padding: 80px 50px;
  text-align: center;
}

.about-text {
  max-width: 700px;
  margin: auto;
  margin-bottom: 50px;
}

.about-text h2 {
  margin-bottom: 15px;
}

.about-text p {
  color: #555;
  line-height: 1.7;
}

/* Boxes */
.about-boxes {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.about-box {
  background: white;
  padding: 30px;
  border-radius: 12px;
  width: 300px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.about-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
/* ================= LEADERS ================= */
.leaders {
  padding: 80px 50px;
  background: #f9f9f9;
}

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

.leader-card {
  background: white;
  border-radius: 15px;
  padding: 25px;
  width: 260px;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.leader-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.leader-card h3 {
  margin-bottom: 5px;
}

.leader-card p {
  color: #777;
  margin-bottom: 15px;
}

/* Hover */
.leader-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Social Button */
.social a {
  text-decoration: none;
  background: #1877f2;
  color: white;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 14px;
  transition: 0.3s;
}

.social a:hover {
  background: #0d5bd3;
}
/* Logo Container */
.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Logo Image */
.logo-container img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

/* Logo Text */
.logo-container span {
  font-size: 20px;
  font-weight: bold;
  color: white;
}
/* ================= CONTACT ================= */
.contact {
  padding: 80px 50px;
  background: #f9f9f9;
}

.contact-container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

/* Form */
.contact-form {
  flex: 1;
  min-width: 300px;
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.contact-form h2 {
  margin-bottom: 20px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 15px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  outline: none;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #b30000;
}

/* Info */
.contact-info {
  flex: 1;
  min-width: 250px;
}

.contact-info h2 {
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 10px;
}