.hero-5 {
  padding: 150px 0px;
}

.hero-5 .hero-content {
  margin-bottom: 0px;
}

.hero-5 .hero-content p {
  max-width: 800px;
  margin: 30px auto 0px;
}

.build-industries-content-style-2 .build-industries-box {
  margin-top: 30px;
}

.faq-left-content .faq-bottom-area {
  padding: 45px 20px;
}

/* Astagees */
.hover-line {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding-bottom: 6px;
  color: #177f80;
  font-weight: 600;
  cursor: pointer;
}

.hover-line::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: currentColor;
  transition: width 0.3s ease;
}

.hover-line:hover::after {
  width: 100%;
}

.hover-line i {
  font-size: 16px;
}

.hover-line .fa-arrow-right {
  transition: transform 0.3s ease;
}

.hover-line:hover .fa-arrow-right {
  transform: translateX(4px);
}

.line {
  width: 100px;
  height: 3px;
  background-color: var(--theme);
  margin: 10px 0px;
}

/* =============================================
   Our Story Popup
============================================= */

.our-story-box {
  width: calc(100% - 40px);
  max-width: 1065px;
  max-height: calc(100vh - 80px);
  padding: 35px 45px 28px;
  background: #ffffff;
  border-radius: 16px;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.20);
  color: #10222b;
}

/* Close */

.our-story-close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #596467;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.our-story-close:hover {
  color: #006f74;
  transform: rotate(90deg);
}

/* Header */
.our-story-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}

.our-story-header-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e6f3f2;
  color: #147f80;
  font-size: 18px;
}

.our-story-header-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.our-story-title {
  margin: 0;
  color: #132629;
  font-size: 25px;
  line-height: 1.2;
  font-weight: 600;
}

.our-story-title-line {
  width: 46px;
  height: 3px;
  margin-top: 8px;
  background: #147f80;
  border-radius: 3px;
}

/* Body */
.our-story-body {
  display: flex;
  align-items: center;
  gap: 26px;
}

/* Left Timeline */
.our-story-left {
  width: 66%;
  position: relative;
}

.our-story-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding-bottom: 18px;
}

.our-story-item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 37px;
  bottom: 0;
  width: 1px;
  border-left: 2px dashed #d9e2e1;
}

.our-story-item-icon {
  position: relative;
  z-index: 2;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #edf7f6;
  color: #157c7d;
  font-size: 14px;
}

.our-story-item-content {
  padding-top: 1px;
  padding-right: 4px;
}

.our-story-item-content p {
  margin: 0;
  color: #3f4f54;
  /* font-size: 11.5px; */
  line-height: 1.55;
  font-weight: 400;
}

.our-story-item-highlight .our-story-item-content p {
  color: #177878;
  font-weight: 500;
}

.our-story-item-highlight .our-story-item-icon {
  background: #e9f6f4;
  color: #147f80;
}

.our-story-item-highlight strong {
  color: #147f80;
  font-weight: 600;
}

/* Right Image */

.our-story-right {
  width: 34%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.our-story-image-wrap {
  width: 100%;
  max-width: 245px;
}

.our-story-right img {
  width: 100%;
  height: auto;
  display: block;
}

/* =============================================
   Responsive
============================================= */

@media (max-width: 991px) {

  .our-story-box {
    max-width: 760px;
    padding: 28px;
  }

  .our-story-body {
    gap: 20px;
  }

  .our-story-left {
    width: 68%;
  }

  .our-story-right {
    width: 32%;
  }

  .our-story-item-content p {
    font-size: 11px;
  }

  .our-story-title {
    font-size: 23px;
  }
}

@media (max-width: 767px) {

  .our-story-box {
    width: 92%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 25px 22px;
  }

  .our-story-body {
    flex-direction: column;
    align-items: stretch;
  }

  .our-story-left,
  .our-story-right {
    width: 100%;
  }

  .our-story-right {
    justify-content: center;
    margin-top: 5px;
  }

  .our-story-image-wrap {
    max-width: 190px;
  }

  .our-story-title {
    font-size: 21px;
  }

  .our-story-item-content p {
    font-size: 13px;
    line-height: 1.6;
  }

  .our-story-item {
    padding-bottom: 20px;
  }
}

@media (max-width: 575px) {

  .our-story-box {
    padding: 22px 18px;
  }

  .our-story-header {
    margin-bottom: 22px;
  }

  .our-story-header-icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .our-story-title {
    font-size: 19px;
  }

  .our-story-item-icon {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    font-size: 12px;
  }

  .our-story-item:not(:last-child)::before {
    left: 17px;
  }

  .our-story-item-content p {
    font-size: 12px;
  }

  .our-story-right {
    display: none;
  }
}


/* Checklist */
.purpose-checklist {
  display: flex;
  flex-direction: column;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  padding-bottom: 18px;
}

.checklist-item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 34px;
  bottom: 0;
  width: 1px;
  border-left: 3px dashed #828786;
}

.checklist-item .icon-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e7f0ee;
  color: #1c6e63;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

.checklist-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #4a4a4a;
}

.checklist-item p strong {
  color: #16211f;
}

/* Quote */
.purpose-quote {
  display: flex;
  align-items: center;
  gap: 20px;
}

.purpose-quote p {
  margin: 0;
  font-style: italic;
  font-weight: 600;
  color: #1c6e63;
  white-space: nowrap;
  font-size: 18px;
}

.purpose-quote .quote-line {
  flex: 1;
  height: 1px;
  background: #c9d3d1;
}