/* =========================
   FAQ SECTION STYLES
========================= */

.info-hero {
    width: 100% !important;
    height: 50vh !important;
    background: url('/images/project32.jpg') !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: cover !important;
    position: relative !important;
    background-attachment: initial !important;
}

.info-body {
  padding: 100px 20px;
}

.info-body .head {
  text-align: center;
}

.info-body .title {
  text-align: center;
}

.info-head {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.info-head h2 {
  color: #fff;
}

.info-body {
  color: #333;
  padding: 80px 20px;
  background-color: #f5f5f5;
}

.info-full .container-about {
  max-width: 1200px;
  margin: 0 auto;
}

/* Company Overview */
.info-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 60px;
}

.info-text {
  flex: 1 1 500px;
}

.info-text h2 {
  font-size: 2.5rem;
  color: var(--primary-base);
  margin-bottom: 20px;
}

.info-text p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

.info-text .btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: var(--primary-base);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.info-text .btn:hover {
  background-color: var(--primary-base);
}

.info-image {
  flex: 1 1 450px;
  text-align: center;
}

.info-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Mission & Vision */
.mission-vision {
  /* display: flex;
  flex-wrap: wrap; */
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.mission-vision .card {
  flex: 1 1 300px;
  /* flex-basis: 30%; */
  background-color: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  text-align: center;
}

.mission-vision h3 {
  color: var(--primary-base);
  margin-bottom: 15px;
}

/* Team Section */
.team-title, .stats-title {
  text-align: center;
  font-size: 2rem;
  color: var(--primary-base);
  margin: 60px 0 40px;
}

.team {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.team-member {
  flex: 1 1 220px;
  text-align: center;
}

.team-member img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.team-member h4 {
  color: var(--primary-base);
  margin-bottom: 5px;
}

.team-member p {
  font-size: 0.9rem;
  color: #555;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin: 40px 0;
  text-align: center;
}

.stat {
  display: flex;
  justify-content: start;
  align-items: center;
}

.stat .content {
  text-align: left;
}

.stat .fa-solid {
  font-size: 36px;
  color: var(--primary-base);
  margin-right: 20px;
}

.stat .count {
    color: var(--accent);
}

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

.stat p {
  font-size: 1rem;
  color: #444;
}


  /* =========================
   OUR STORY SECTION (iCARE)
========================= */
.our-story {
  padding: 80px 20px;
  background: #f7fbf9; /* soft green-white */
}

.our-story .container {
  max-width: 1100px;
  margin: auto;
  display: initial;
}

/* Title */
.story-title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary-dark); /* deep green */
  margin-bottom: 10px;
}

.story-intro {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 50px auto;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
}

/* Timeline Wrapper */
.timeline {
  position: relative;
  margin: 0 auto;
  padding-left: 30px;
  border-left: 3px solid var(--primary); /* green line */
}

/* Timeline Item */
.timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 30px;
}

/* Dot */
.timeline-item::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 10px;
  width: 18px;
  height: 18px;
  background: var(--primary);
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(47, 191, 113, 0.2);
}

/* Content Card */
.timeline-content {
  background: #ffffff;
  padding: 22px 25px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* Year */
.timeline-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

/* Text */
.timeline-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .our-story {
    padding: 100px 24px;
  }
  .story-title {
    font-size: 2rem;
  }

  .story-intro {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  .timeline {
    padding-left: 20px;
  }

  .timeline-item {
    padding-left: 25px;
  }

  .timeline-content {
    padding: 18px 20px;
  }

  .timeline-content h3 {
    font-size: 1.25rem;
  }
}
