:root {
  --primary-green: #4c956c;
  --dark-green: #2c5f2d;
  --gold: #d4a373;
  --light-bg: #f0f7f4;
  --alert-red: #d90429;
  --orange: #fb8500;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Who We Are Section */
.who-we-are {
  padding: 60px 0;
  background-color: #fff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-image img {
  width: 100%;
  border-radius: 10px;
}

.section-title {
  color: var(--dark-green);
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero-content p {
  margin-bottom: 15px;
  color: #555;
}

.btn-video {
  background: var(--primary-green);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Our Journey */
.our-journey {
  background-color: #fef9ef;
  padding: 80px 0;
  text-align: center;
}

.section-title-center {
  color: var(--dark-green);
  font-size: 2.2rem;
  margin-bottom: 40px;
}

.timeline-container {
  position: relative;
  margin-bottom: 50px;
}

.timeline-line {
  height: 12px;
  background: #ffd8a8;
  border-radius: 10px;
  width: 80%;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 10%;
  z-index: 1;
}

.timeline-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  position: relative;
  z-index: 2;
}

.icon-gold {
  font-size: 2.5rem;
  color: var(--orange);
  background: #fef9ef;
  padding: 10px;
}

.journey-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.stat-card {
  padding: 20px;
}

.stat-card i {
  font-size: 2rem;
  color: var(--orange);
  margin-bottom: 10px;
}

.journey-footer {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 60px;
  text-align: left;
  background: #fff;
  padding: 30px;
  border-radius: 15px;
}

.journey-img img {
  width: 300px;
  border-radius: 10px;
}

/* What We Believe */
.what-we-believe {
  padding: 80px 0;
  background: #e9f5ed;
  text-align: center;
}

.belief-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 25px;
  margin-top: 50px;
}

.belief-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  border: 2px solid var(--gold);
}

.belief-card.highlight {
  background: #fdf7e7;
}

.card-img-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 3px solid var(--gold);
}

.card-img-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Scroll Down Icon */
.scroll-down {
  margin: 30px auto;
  color: var(--primary-green);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
  cursor: pointer;
  width: fit-content;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

footer {
  padding: 40px 0;
  text-align: center;
  background: #e9f5ed;
}

.social-links-bottom a {
  font-size: 1.8rem;
  margin: 0 15px;
  color: #333;
}
/* // Responsive Styles */
@media (max-width: 576px) {
  
  /* Who We Are Section */
  .who-we-are {
    padding: 40px 0;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .hero-image {
    order: -1; /* Moved image above the content on mobile devices */
  }
  
  .hero-image img {
    max-height: 250px;
    object-fit: cover;
  }
  
  .section-title {
    font-size: 1.8rem;
    text-align: center;
  }
  
  .hero-content p {
    font-size: 0.95rem;
    text-align: center;
  }
  
  .btn-video {
    margin: 0 auto;
    justify-content: center;
    width: fit-content;
  }
  
  /* Our Journey Section */
  .our-journey {
    padding: 50px 0;
  }
  
  .section-title-center {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }
  
  .timeline-container {
    overflow-x: auto;
    padding-bottom: 15px;
  }
  
  .timeline-line {
    display: none; /* Hiding line on mobile devices, using cards stacking instead */
  }
  
  .timeline-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .timeline-grid > div {
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }
  
  .icon-gold {
    font-size: 2rem;
  }
  
  .journey-stats {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .stat-card {
    padding: 15px;
    background: white;
    border-radius: 12px;
  }
  
  .journey-footer {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    margin-top: 30px;
    padding: 20px;
  }
  
  .journey-img img {
    width: 100%;
    max-width: 250px;
  }
  
  .journey-footer p {
    font-size: 0.9rem;
  }
  
  /* What We Believe Section */
  .what-we-believe {
    padding: 50px 0;
  }
  
  .belief-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }
  
  .belief-card {
    padding: 20px;
  }
  
  .belief-card h3 {
    font-size: 1.3rem;
  }
  
  .belief-card p {
    font-size: 0.9rem;
  }
  
  .card-img-circle {
    width: 60px;
    height: 60px;
  }
  
  /* Scroll Down */
  .scroll-down {
    font-size: 1.2rem;
    margin: 20px auto;
  }
  
  /* Footer */
  footer {
    padding: 30px 20px;
  }
  
  footer p {
    font-size: 0.85rem;
  }
  
  .social-links-bottom a {
    font-size: 1.5rem;
    margin: 0 12px;
  }
}