body {
  font-family: Poppins, sans-serif;
  margin: 0;
  background: #fafaf5;
  color: #1a1a1a;
}

.about-intro {
  display: flex;
  gap: 40px;
  padding: 80px 10%;
  flex-wrap: wrap;
}

.about-intro .text {
  flex: 2;
}

.about-intro .ceo {
  flex: 1;
  text-align: center;
}

.about-intro .ceo img {
  width: 100%;
  max-width: 260px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.ceo blockquote {
  margin-top: 20px;
  font-style: italic;
  color: #3a7d44;
}


.timeline {
  position: relative;
  padding: 80px 10%;
}

.timeline h2 {
  text-align: center;
  margin-bottom: 60px;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 140px;
  bottom: 0;
  width: 4px;
  background: #f4c430;
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 40px;
  box-sizing: border-box;
}

.timeline-item .dot {
  position: absolute;
  top: 30px;
  width: 16px;
  height: 16px;
  background: #f4c430;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(244,196,48,0.7);
}

.timeline-item.left {
  left: 0;
  text-align: right;
}

.timeline-item.left .dot {
  right: -8px;
}

.timeline-item.right {
  left: 50%;
}

.timeline-item.right .dot {
  left: -8px;
}

.timeline-item .content {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 26px rgba(0,0,0,0.1);
}

@media (max-width: 900px) {
  .timeline-line {
    left: 20px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 60px;
    text-align: left;
  }

  .timeline-item.left,
  .timeline-item.right {
    left: 0;
  }

  .timeline-item .dot {
    left: 12px;
  }
}

.timeline-item {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.timeline-item.visible {
  opacity: 1;
  transform: translateY(0);
}



.gallery-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.gallery-mini img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.3s;
}

.gallery-mini img:hover {
  transform: scale(1.05);
}


/* ===== Lightbox ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 5000;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(244,196,48,0.6);
  animation: zoomIn 0.4s ease;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 3rem;
  color: #f4c430;
  cursor: pointer;
}

@keyframes zoomIn {
  from {
    transform: scale(0.7);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* ===== Timeline End ===== */
.timeline-end {
  position: relative;
  text-align: center;
  margin-top: 80px;
}

.timeline-end .end-dot {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: #3a7d44;
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(58,125,68,0.8);
  margin-bottom: 12px;
}

.timeline-end p {
  font-weight: 700;
  color: #3a7d44;
}


/* PARTNERSHIP SECTION */
.partner-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 24px;
  align-items: center;
  justify-items: center;
}

.partner-logos img {
  max-height: 150px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: 0.3s;
}

.partner-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
}


/* --------------------------------------------------
   SECTIONS
-------------------------------------------------- */
.section {
  padding: 80px 0;
}

.section-light {
  background: var(--light);
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.muted {
  color: #777;
}


/* ===== Glassmorphism About Hero ===== */
.about-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: linear-gradient(
      rgba(0, 0, 0, 0.45),
      rgba(0, 0, 0, 0.65)
    ),
    url("Images/About/about_bg2.jpg") center / cover no-repeat;
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.12), transparent 60%);
}

.about-hero-content {
  position: relative;
  max-width: 850px;
  padding: 50px 60px;
  border-radius: 22px;

  /* Glass effect */
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);

  text-align: center;
  color: #fff;
}

.about-hero-content h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.about-hero-content p {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
}

/* Subtle glow animation */
.about-hero-content {
  animation: glassGlow 6s ease-in-out infinite alternate;
}

@keyframes glassGlow {
  from {
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  }
  to {
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
  }
}

/* Mobile tweaks */
@media (max-width: 600px) {
  .about-hero-content {
    padding: 36px 28px;
  }
}

