/* General */
body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  color: #222;
  background: #fff;
  line-height: 1.7;
  overflow-x: hidden;
}


.background {
  background-color: #0d6efd38 !important;
}

/* Hero */
.hero {
  position: relative;
  height: 65vh;
  background: url("../../assets/page-header.webp") center/cover no-repeat !important;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.hero .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 5, 19, 0.6);
}

.hero-text h1 {
  font-size: 3rem;
  margin: 0;
  letter-spacing: 2px;
}
.hero-text p {
  margin-top: 8px;
  font-size: 1.2rem;
  opacity: 0.9;
}

/* About */
.about {
  padding: 70px 10%;
  text-align: center;
  /* max-width: 1000px; */
  margin: auto;
}
.about h2 {
  font-size: 2.2rem;
  color: #004080;
  margin-bottom: 20px;
}
.about p {
  font-size: 1.05rem;
  margin-bottom: 15px;
  color: #444;
  text-align: justify;
}

/* Timeline */
.timeline {
  background: #f9f9f9;
  padding: 80px 10%;
  text-align: center;
}
.timeline h2 {
  font-size: 2.2rem;
  color: #004080;
  margin-bottom: 40px;
}
.timeline-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.timeline-item {
  background: white;
  padding: 20px;
  border-left: 5px solid #007bff;
  border-radius: 8px;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.timeline-item .year {
  font-size: 1.3rem;
  font-weight: bold;
  color: #d32f2f;
}

/* Mission & Objectives */
.mission {
  padding: 80px 10%;
  background: #eef6ff;
  text-align: center;
}
.mission h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #004080;
}
.mission-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}
.mission-cards .card {
  background: white;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}
.mission-cards .card i {
  font-size: 2.2rem;
  color: #007bff;
  margin-bottom: 15px;
}
.mission-cards .card:hover {
  transform: translateY(-12px);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-text h1 { font-size: 2.3rem; }
  .about, .timeline, .mission, .team, .stats {
    padding: 50px 6%;
  }
}

/* General */


/* Hero */

.hero-text {
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  font-size: 3rem;
  margin: 0;
}
.hero-text p {
  margin-top: 8px;
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Legacy */
.legacy {
  padding: 70px 10%;
  text-align: center;
  /* max-width: 900px; */
  margin: auto;
}
.legacy h2 {
  font-size: 2.2rem;
  color: #004080;
  margin-bottom: 20px;
}
.legacy p {
  font-size: 1.05rem;
  color: #444;
  text-align: justify;
}

/* Objectives */
.objectives {
  background: #f9f9f9;
  padding: 80px 10%;
  text-align: center;
}
.objectives h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #004080;
}
.objective-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}
.objective {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: transform 0.3s;
  text-align: left;
}
.objective i {
  font-size: 1.8rem;
  color: #007bff;
  margin-bottom: 12px;
}
.objective:hover {
  transform: translateY(-10px);
}

/* Members */
.members {
  padding: 80px 10%;
  text-align: center;
}
.members h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #004080;
}
.member-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}
.member-cards .card {
  background: linear-gradient(135deg, #007bff, #004080);
  color: white;
  padding: 25px;
  border-radius: 15px;
  font-size: 1.1rem;
  font-weight: 500;
  transition: transform 0.3s, background 0.3s;
}
.member-cards .card:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #004080, #002a5c);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-text h1 { font-size: 2.3rem; }
  .legacy, .objectives, .members {
    padding: 50px 6%;
  }
}

/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* Hero Section */
.hero {
  position: relative;
  height: 65vh;
  background: url("https://images.unsplash.com/photo-1503676260728-1c00da094a0b") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}



.hero-text {
  position: relative;
  color: #fff;
  z-index: 2;
}

.hero-text h1 {
  font-size: 3rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 1.3rem;
  font-weight: 300;
}

/* Approvals Section */
.approvals {
  padding: 60px 20px;
  text-align: center;
  background: #fff;
}

.approvals h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #00205b;
}

.approval-card {
  background: #fdfdfd;
  padding: 20px;
  /* max-width: 800px; */
  margin: auto;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

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

.approval-card img {
  width: 100%;
  max-width: 600px;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

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

/* Highlights */
.highlights {
  padding: 60px 20px;
  text-align: center;
  background: #f3f7fb;
}

.highlights h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #00205b;
}

.highlight-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: auto;
}

.highlight-cards .card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.highlight-cards .card:hover {
  transform: translateY(-8px);
}

.highlight-cards i {
  font-size: 2.5rem;
  color: #004aad;
  margin-bottom: 15px;
}

.highlight-cards h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.highlight-cards p {
  font-size: 1rem;
  color: #555;
}

/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* Hero Section */



.hero-text {
  position: relative;
  color: #fff;
  z-index: 2;
}

.hero-text h1 {
  font-size: 3rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 1.3rem;
  font-weight: 300;
}

/* Disclosure Section */
.disclosure {
  padding: 60px 20px;
  text-align: center;
  background: #fff;
}

.disclosure h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #00205b;
}

.disclosure-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

.card {
  background: #fff;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

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

.card img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* General */


/* Hero */



.hero-text h1 {
  font-size: 3rem;
  margin: 0;
}
.hero-text p {
  margin-top: 10px;
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Mission */
.mission {
  padding: 70px 10%;
  text-align: center;
  /* max-width: 900px; */
  margin: auto;
}
.mission h2 {
  font-size: 2.2rem;
  color: #004080;
  margin-bottom: 20px;
}
.mission p {
  font-size: 1.05rem;
  color: #444;
  text-align: justify;
}
blockquote {
  margin-top: 30px;
  background: #f0f8ff;
  padding: 20px;
  border-left: 5px solid #007bff;
  font-style: italic;
  color: #333;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
blockquote i {
  color: #007bff;
}

/* Highlights */
.highlights {
  background: #f9f9f9;
  padding: 80px 10%;
  text-align: center;
}
.highlights h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #004080;
}
.highlight-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}
.highlight {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}
.highlight i {
  font-size: 2rem;
  color: #007bff;
  margin-bottom: 15px;
}
.highlight h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
  color: #222;
}
.highlight p {
  font-size: 1rem;
  color: #555;
}
.highlight:hover {
  transform: translateY(-10px);
}

/* Alignment Section */
.alignment {
  padding: 70px 10%;
  text-align: center;
}
.alignment h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #004080;
}
.alignment p {
  font-size: 1.05rem;
  color: #444;
  /* max-width: 850px; */
  margin: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-text h1 { font-size: 2.3rem; }
  .mission, .highlights, .alignment {
    padding: 50px 6%;
  }
}

/* General */


/* Hero Section */




.hero-text {
  position: relative;
  z-index: 2;
  animation: fadeIn 2s ease-in-out;
}

.hero-text h1 {
  font-size: 3.2rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-text p {
  margin-top: 10px;
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Vision Section */
.vision {
  padding: 70px 10%;
  /* max-width: 1000px; */
  margin: auto;
  text-align: center;
}

.vision h2 {
  font-size: 2.2rem;
  color: #004080;
  margin-bottom: 20px;
}

.vision p {
  font-size: 1.1rem;
  color: #333;
  text-align: justify;
  line-height: 1.8;
  margin-bottom: 30px;
}

blockquote {
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 600;
  color: #d32f2f;
  border-left: 5px solid #007bff;
  padding-left: 15px;
  text-align: center;
  margin: 20px auto;
}

/* Core Values */
.values {
  padding: 80px 10%;
  background: #f0f8ff;
  text-align: center;
}

.values h2 {
  font-size: 2.2rem;
  color: #004080;
  margin-bottom: 40px;
}

.value-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.value-cards .card {
  background: white;
  padding: 35px 20px;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.value-cards .card i {
  font-size: 2.5rem;
  color: #007bff;
  margin-bottom: 15px;
}

.value-cards .card h3 {
  margin-bottom: 10px;
  color: #004080;
}

.value-cards .card:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

/* Stats Section */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  padding: 70px 10%;
  gap: 30px;
  text-align: center;
  background: linear-gradient(135deg, #004080, #007bff);
  color: white;
}

.stats .stat h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: bold;
}

.stats .stat p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2.3rem;
  }
  .vision, .values, .stats {
    padding: 50px 6%;
  }
}

