/* Section */
.about-hero {
    background-color: #ffffff;
}

/* Heading */
.about-title {
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.2;
    color: #222;
}

/* Text */
.about-text {
    font-size: 1.1rem;
    color: #555;
    max-width: 520px;
}

/* Button */
.about-btn {
    background-color: #2a3cff;
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 500;
    text-decoration: none;
}

.about-btn:hover {
    background-color: #1f2ee6;
    color: #fff;
}

/* Image */
.about-image-wrapper {
    max-width: 520px;
    margin-left: auto;
}

.about-image {
    border-radius: 16px;
    width: 100%;
}

/* Mobile */
@media (max-width: 980px) {
    .about-title {
        font-size: 2.2rem;
        text-align: center;
    }

    .about-text {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .about-btn {
        display: block;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }

    .about-image-wrapper {
        margin: 0 auto;
    }
}
@media (max-width: 980px) {
  .about-title {
    font-size: 2.2rem;
    text-align: center;
  }

  .about-text {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .about-btn {
    display: inline-block;
    margin: 20px auto 0;
  }

  /* Optional: center container content */
  .col-lg-6 {
    text-align: center;
  }
}


/* stats section */



.stats-wrapper {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card {
    background: #fff;
    border-radius: 18px;
    padding: 25px 15px;
    text-align: center;
}

.stat-card h3 {
    font-size: 24px!important;
    font-weight: 200;
    margin-bottom: 6px;
    color: #333333;
}

.stat-card p {
    font-size: 14px;
    color: #555;
}

.stat-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 30px 20px;
  text-align: center;

  /*  Box Shadow */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}
.stat-card h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 6px;
}

.stat-card p {
  font-size: 14px;
  color: #555;
}
@media (max-width: 992px) {
  .stats-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .stats-wrapper {
    grid-template-columns: 1fr;
  }
}


/* impact section */
/* Section */
.impact-section {
    background-color: #ffffff;
}

/* Image */
.impact-image-wrapper {
    max-width: 420px;
    margin: auto;
}

.impact-image {
    border-radius: 20px;
    width: 100%;
}

/* Title */
.impact-title {
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 1.2;
}



/* Timeline list */
.impact-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* Item */
.impact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
}

/* Number circle */
.impact-circle {
    min-width: 48px;
    height: 48px;
    background-color: #9BE44D;
    color: #111;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Vertical line */
.impact-item::before {
    content: "";
    position: absolute;
    left: 24px;
    top: 52px;
    width: 2px;
    height: calc(100% + 12px);
    background-color: #3f5bd8;
}

.impact-item:last-child::before {
    display: none;
}

/* Text */
.impact-text {
    font-size: 1rem;
    color: #444;
    max-width: 520px;
}

.impact-image-wrapper {
    max-width: 340px;
    /* reduce from 420px */
    margin: auto;
}

.impact-image {
    width: 100%;
    border-radius: 20px;
}

/* Mobile */
@media (max-width: 980px) {
    .impact-title {
        font-size: 2rem;
        text-align: center;
    }

    .impact-item {
        align-items: flex-start;
    }

    .impact-text {
        max-width: 100%;
    }
}

/* growth section */
.growth-section {
  background: #ffffff;
}

/* Headings */
.section-title {
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.section-subtitle {
  max-width: 720px;
  margin: auto;
  font-size: 16px;
  color: #555;
}
/* Match image & card height */
.info-card {
  height: 260px;
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Image container same height */
.image-box {
  height: 260px;
  border-radius: 18px;
  overflow: hidden;
}

/* Image crop control */
.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Tablet */
@media (max-width: 991px) {
  .info-card,
  .image-box {
    height: 230px;
  }
}

/* Mobile – stack naturally */
@media (max-width: 575px) {
  .info-card,
  .image-box {
    height: auto;
  }

  .image-box img {
    height: auto;
  }
}


/* growth milestone */

/* Section background */
.growth-timeline {
  background:var(--tertiory-color);
}

/* Timeline container */
.timeline {
  position: relative;
  max-width: 900px;
  margin: auto;
  padding: 20px 0;
}

/* Vertical line */
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  background: #cfd8dc;
  transform: translateX(-50%);
}

/* Timeline item */
.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 30px;
}

/* Left / Right positioning */
.timeline-item.left {
  left: 0;
  text-align: right;
}

.timeline-item.right {
  left: 50%;
}

/* Dot */
.timeline-item::before {
  content: "";
  position: absolute;
  top: 30px;
  width: 10px;
  height: 10px;
  background: #2563eb;
  border-radius: 50%;
  z-index: 1;
}

.timeline-item.left::before {
  right: -5px;
}

.timeline-item.right::before {
  left: -5px;
}

/* Card */
.timeline-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Year badge */
.timeline-card .year {
  display: inline-block;
  font-size: 12px;
  background: #d9f99d;
  color: #365314;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

/* Headings */
.timeline-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

/* Text */
.timeline-card p {
  font-size: 14px;
  color: #555;
}

/* Mobile view */
@media (max-width: 768px) {
  .timeline::before {
    left: 8px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 30px;
    padding-right: 15px;
    text-align: left;
    left: 0;
  }

  .timeline-item::before {
    left: 3px;
  }
}
/* Base animation state */
.timeline-item {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease-out;
}

/* When visible */
.timeline-item.show {
  opacity: 1;
  transform: translateY(0);
}

/* Left & Right subtle direction */
.timeline-item.left {
  transform: translateX(-40px);
}

.timeline-item.right {
  transform: translateX(40px);
}

.timeline-item.left.show,
.timeline-item.right.show {
  transform: translateX(0);
}
/* ===============================
   MOBILE FIX – KEEP SEO & UX SAFE
   =============================== */
@media (max-width: 768px) {

  /* Disable animation visually */
  .timeline-item {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  /* If JS adds .show, still stay static */
  .timeline-item.show {
    opacity: 1 !important;
    transform: none !important;
  }

  /* Ensure full-width stacking */
  .timeline-item.left,
  .timeline-item.right {
    width: 100%;
    left: 0;
    text-align: left;
  }
}
@media (prefers-reduced-motion: reduce) {
  .timeline-item {
    transition: none !important;
    transform: none !important;
  }
}










/*  e catgloue */
/* Section */
.catalog-section {
  padding: 80px 0;
}

/* Heading */
.catalog-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
}

.catalog-subtitle {
  text-align: center;
  margin-bottom: 30px;
}

/* Wrapper */
.flip-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  overflow: hidden;
}

/* Flipbook */
#flipbook {
  margin: auto;
}

/* Page */
#flipbook .page {
  background: #fff;
  overflow: hidden;
}

/* Image */
#flipbook img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* IMPORTANT */
}

/* Shadow */
#flipbook .page {
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Buttons */
.btn {
  margin: 5px;
}
/* COVER PAGE */
.cover-content {
  display: flex;
  height: 100%;
}

.cover-left {
  width: 50%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cover-left h2 {
  font-weight: 700;
  margin-bottom: 15px;
}

.cover-left p {
  font-size: 15px;
  line-height: 1.6;
}

.cover-right {
  width: 50%;
}

.cover-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* END PAGE */
.end-page {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.end-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.end-content p {
  margin-bottom: 20px;
}

/* MOBILE */
@media (max-width: 768px) {

  .cover-content {
    flex-direction: column;
  }

  .cover-left,
  .cover-right {
    width: 100%;
  }

  .cover-left {
    padding: 20px;
    text-align: center;
  }
}
/* Fix wide screen stretching issue */
.flip-wrapper {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

#flipbook {
    width: 100%;
}
/* Mobile optimization for end page */
@media (max-width: 480px) {

    .end-page h1 {
        font-size: 24px !important;
        line-height: 1.2;
    }

    .end-page p {
        font-size: 14px !important;
        margin-top: 8px;
    }

    .end-page .btn,
    .end-page button {
        font-size: 13px !important;
        padding: 8px 14px !important;
        border-radius: 6px;
    }

    .end-page {
        padding: 15px 10px !important;
        text-align: center;
    }
}