    /* Base Styles */
:root {
  --primary-color: #FFD700; /* Gold */
  --primary-dark: #D4AF37; /* Darker Gold */
  --primary-light: #FFF8DC; /* Light Gold */
  --secondary-color: #0047AB; /* Blue */
  --secondary-dark: #00308F; /* Darker Blue */
  --secondary-light: #B0C4DE; /* Light Blue */
  --text-dark: #333333;
  --text-light: #FFFFFF;
  --text-muted: #6c757d;
  --bg-light: #FFFFFF;
  --bg-gray: #F8F9FA;
  --border-color: #E9ECEF;
  --success-color: #28a745;
  --warning-color: #ffc107;
  --danger-color: #dc3545;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

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

a {
  text-decoration: none;
  color: var(--secondary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-dark);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Hero Section */
.hero-section {
  padding: 20px 0;
  background: var(--bg-light);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 25px;
  color: var(--secondary-color);
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.hero-stat-item {
  text-align: center;
}

.hero-stat-item h3 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.hero-stat-item p {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0;
}

.hero-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mission Section */
.mission-section {
  padding: 20px 0;
  background: var(--bg-gray);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.mission-card {
  background: var(--bg-light);
  padding: 40px 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.mission-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.mission-card h3 {
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-size: 1.5rem;
}

/* Milestones Section */
.milestones-section {
  padding: 80px 0;
  background: linear-gradient(rgba(0, 71, 171, 0.9), rgba(0, 48, 143, 0.95));
  color: var(--text-light);
  margin-top: 0; /* Ensure no overlap with header */
}

.milestones-section h2 {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.milestones-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.milestone-item {
  padding: 30px 20px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.milestone-item:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-10px);
}

.milestone-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.milestone-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1;
}

.milestone-text {
  font-size: 1.1rem;
  opacity: 0.9;
}

@media (max-width: 992px) {
  .milestones-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .milestones-grid {
    grid-template-columns: 1fr;
  }

  .milestone-number {
    font-size: 2.5rem;
  }
}

/* Timeline Section */
.timeline-section {
  padding: 10px 0;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 2px;
  background: var(--primary-color);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
}

.timeline-item:nth-child(odd) {
  left: 0;
}

.timeline-item:nth-child(even) {
  left: 50%;
}

.timeline-content {
  padding: 20px;
  background: var(--bg-light);
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

.timeline-content h3 {
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.timeline-date {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 10px;
}

/* Video Container */
.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  margin: 20px 0;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Testimonials Section */
.testimonials-section {
  padding: 20px 0;
  background: var(--bg-gray);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--bg-light);
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  color: var(--secondary-color);
  margin-bottom: 5px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    order: 2;
  }

  .hero-image {
    order: 1;
    max-width: 600px;
    margin: 0 auto;
  }

  .hero-stats {
    justify-content: center;
  }

  .timeline::after {
    left: 31px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

  .timeline-item:nth-child(even) {
    left: 0;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }
}