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

body {
  font-family: 'Inter', sans-serif;
  background-color: #fefef7;
  color: #1a2c2f;
  line-height: 1.5;
  scroll-behavior: smooth;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header */
header {
  background: #0a2f3a;
  color: white;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.05);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo h1 {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.logo span {
  font-weight: 500;
  font-size: 0.9rem;
  display: block;
  color: #cbe4e8;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s;
  font-size: 1rem;
}

.nav-links a:hover {
  color: #f7d44a;
  border-bottom: 2px solid #f7d44a;
  padding-bottom: 4px;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: white;
}

/* sections */
section {
  padding: 4rem 0;
  border-bottom: 1px solid #e0e7e9;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  letter-spacing: -0.02em;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 70%;
  height: 4px;
  background: #f3b33d;
  border-radius: 4px;
}

.section-subtitle {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #4b6a72;
  max-width: 800px;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #eef7f5 0%, #dfeef0 100%);
  padding: 4rem 0;
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  justify-content: space-between;
}

.hero-text {
  flex: 1;
}

.hero-text h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #0a2f3a;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #2c4b54;
}

.hero-quote {
  background: rgba(10, 47, 58, 0.08);
  padding: 1.2rem;
  border-left: 5px solid #f3b33d;
  font-style: italic;
  border-radius: 12px;
}

.hero-image {
  flex: 0.8;
  min-width: 220px;
}

.hero-image img {
  width: 100%;
  border-radius: 32px;
  box-shadow: 0 20px 25px -12px rgba(0, 0, 0, 0.2);
}

.btn-outline {
  display: inline-block;
  background: #0a2f3a;
  color: white;
  padding: 0.6rem 1.6rem;
  border-radius: 40px;
  font-weight: 600;
  transition: 0.2s;
  text-decoration: none;
}

.btn-outline:hover {
  background: #f3b33d;
  color: #0a2f3a;
}

/* Tasks grid */
.tasks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

.task-card {
  background: white;
  border-radius: 24px;
  padding: 1.8rem;
  box-shadow: 0 12px 24px -12px rgba(0, 0, 0, 0.1);
  transition: all 0.25s ease;
  border: 1px solid #eef2f0;
}

.task-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 32px -12px rgba(0, 0, 0, 0.15);
}

.task-icon {
  font-size: 2.2rem;
  color: #f3b33d;
  margin-bottom: 1rem;
}

.task-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.mission-text {
  background: #faf6e9;
  padding: 2rem;
  border-radius: 28px;
  margin: 2rem 0 0;
  font-size: 1.1rem;
  border: 1px solid #f5e5c6;
}

.mission-author {
  margin-top: 1rem;
  text-align: right;
}

/* Gallery */
.gallery-heading {
  font-size: 1.6rem;
  margin: 1rem 0 1rem;
  font-weight: 700;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.gallery-item {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: 0.2s;
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.02);
}

.gallery-caption {
  padding: 1rem;
  font-weight: 600;
  text-align: center;
  background: white;
}

.video-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 20px;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  border: 0;
}

.video-card .info {
  padding: 1rem;
  text-align: center;
  font-weight: 600;
}

.gallery-note {
  text-align: center;
  margin-top: 1.2rem;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Leadership */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.leader-card {
  background: white;
  border-radius: 32px;
  text-align: center;
  padding: 1.8rem 1rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  transition: 0.2s;
}

.leader-card img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 4px solid #f3b33d;
  box-shadow: 0 10px 15px -5px rgba(0, 0, 0, 0.1);
}

.leader-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.leader-card .title {
  color: #f3b33d;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.leader-card p {
  color: #4b6a72;
  padding: 0 0.5rem;
}

/* Footer */
footer {
  background: #0a2f3a;
  color: #e2ecee;
  padding: 2.5rem 0 1.5rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: white;
}

.contact-details p {
  margin: 0.6rem 0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.contact-details i,
.social-links i {
  width: 28px;
  color: #f3b33d;
  font-size: 1.2rem;
}

.social-links i {
  margin-right: 0.8rem;
  transition: 0.2s;
  cursor: pointer;
}

.social-links i:hover {
  color: #f7d44a;
}

.social-links p {
  margin-top: 0.6rem;
  font-size: 0.8rem;
}

.footer-copyright {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid #2c5a64;
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    padding: 0 1.2rem;
  }

  .navbar {
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #0a2f3a;
    padding: 1rem 0;
    gap: 1rem;
    text-align: center;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero-text h2 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .hero-content {
    flex-direction: column;
  }

  .hero-image {
    order: -1;
  }
}