/* Existing styles */
.nav-trigger {
  cursor: pointer;
}

.hamburger-line {
  width: 30px;
  height: 3px;
  background: #fff;
  margin: 5px 0;
  transition: 0.4s;
}
.nav-trigger.open .top {
  transform: rotate(-45deg) translate(-5px, 6px);
}
.nav-trigger.open .middle {
  opacity: 0;
}
.nav-trigger.open .bottom {
  transform: rotate(45deg) translate(-11px, -12px);
}
.menu-wrapper.active {
  display: block !important;
}
body.menu-open {
  overflow: hidden;
}

.animate-fade-in, .animate-zoom, .animate-fly-in, .animate-slide-left, .animate-slide-right, .animate-slide-up, .animate-rotate, .animate-bounce {
  opacity: 0;
}
section {
  padding: 100px 10px;
  text-align: center;
}
/* Accordion Styles */
.accordion-wrapper {
  max-width: 800px;
  margin: 0 auto;
}
.accordion-item {
  margin-bottom: 20px;
  border-bottom: 1px solid #ccc;
}
.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  cursor: pointer;
  background: #30742a;
  color: #fff;
}
.accordion-header h4 {
  margin: 0;
  font-size: 24px;
}
.accordion-icon {
  width: 20px;
  height: 20px;
  background: url('image/arrow.svg') no-repeat center;
  transition: transform 0.3s ease;
}
.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  transition: max-height 0.3s ease;
  background: #fff;
  color: #333;
}
.accordion-content p {
  padding: 15px 0;
}

/* Tabs Styles */
.tabs-wrapper {
  max-width: 800px;
  margin: 0 auto;
}
.tabs-menu {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}
.tab-link {
  padding: 10px 20px;
  cursor: pointer;
  background: #333;
  color: #fff;
  border-radius: 5px;
  transition: background 0.3s;
}
.tab-link.active {
  background: #30742a;
}
.tab-pane {
  display: none;
  text-align: center;
}
.tab-pane.active {
  display: block;
}
.tab-image {
  max-width: 400px;
  margin: 0 auto 20px;
}

/* Timeline Styles */
.timeline-wrapper {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.timeline-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: #30742a;
  transform: translateX(-50%);
}
.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
}
.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}
.timeline-date {
  width: 100px;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
.timeline-content {
  flex: 1;
  padding: 20px;
  background: #1a1a3d;
  color: #fff;
 
  border-radius: 5px;
  margin: 0 20px;
}
.timeline-item::before {
  content: '';
  width: 20px;
  height: 20px;
  background: #30742a;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
   opacity: 0.4;
}

/* General Section Styles */
.story-content, .vision-content, .behind-scenes-content {
  display: flex;
  gap: 20px;
  align-items: center;
}
.story-image, .vision-image, .behind-scenes-image {
  max-width: 400px;
}
.vision-text h3 {
  margin-top: 20px;
}
.community-stats {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}
.stat-item {
  text-align: center;
}
.stat-item h3 {
  font-size: 36px;
  margin-bottom: 10px;
}

/* Responsive Adjustments */
@media screen and (max-width: 767px) {
  .story-content, .vision-content, .behind-scenes-content {
    flex-direction: column;
  }
  .story-image, .vision-image, .behind-scenes-image {
    max-width: 100%;
  }
  .timeline-wrapper::before {
    left: 20px;
  }
  .timeline-item {
    flex-direction: column;
    text-align: left;
  }
  .timeline-item:nth-child(even) {
    flex-direction: column;
  }
  .timeline-date {
    text-align: left;
    margin-bottom: 10px;
  }
  .timeline-content {
    margin: 0;
  }
  .timeline-item::before {
    left: 16px;
  }
  .hero-content-block img {
    width: 110%;
}
.community-stats {
  flex-direction: column;
  align-items: center;
}
.stat-item {
  margin-bottom: 20px;
}
}