/* Hero */
.hero-about {
  padding: 36px 0 42px;
}

.hero-about .hero-card {
  min-height: 260px;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(0, 61, 44, 0.96), rgba(0, 61, 44, 0.86)), radial-gradient(circle at left, rgba(21, 163, 98, .35), transparent 42%);
}
.hero-about .reveal.show {
  opacity: 1;
  transform: translateY(0);
}
.hero-about .hero-content {
  /* max-width: 420px; */
  width: 100%;
  min-height: 260px;
  border-radius: var(--radius);
  overflow: hidden;
  /* display: flex; */
  /* align-items: center; */
  /* justify-content: flex-start; */
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(0, 61, 44, 0.96), rgba(0, 61, 44, 0.86)), radial-gradient(circle at left, rgba(21, 163, 98, .35), transparent 42%);
  padding: 55px 65px;
}
.hero-about .hero-content::after {
    content: "";
    position: absolute;
    left: -80px;
    bottom: -90px;
    width: 270px;
    height: 270px;
    border-radius: 50%;
    border: 45px solid rgba(255, 255, 255, .05);
}
.hero-about .hero-content h1 {
  font-size: 48px;
  line-height: 1.25;
  color: #FFF;
  font-weight: 900;
  margin-bottom: 18px;
}

.hero-about .hero-content p {
  font-size: 21px;
  color: #FFF;
  font-weight: 500;
  max-width: 100%;
}

.section-title {
  font-size: 30px;
  font-weight: 900;
  color: var(--green-dark);
  margin-bottom: 35px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -13px;
  width: 58px;
  height: 3px;
  background: var(--green);
  border-radius: 30px;
}

.section-title::before {
  content: "";
  position: absolute;
  right: 68px;
  bottom: -15px;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
}

/* About */
.about-section {
  padding: 50px 0 100px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
  direction: ltr;
}

.about-image {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 500px;
  border: 1px solid var(--border);
  background-position: 50% 20%;
  width: 100%;
}
.about-image img{
  height:100%;
  width:100%
}
.about-text{
    direction: rtl;
    margin: 0 auto 0 188px;
}
.about-text p {
  color: #42564f;
  font-size: 14px;
  max-width: 620px;
  margin-bottom: 34px;
  font-weight: bolder;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px 35px;
}

.mini-feature {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 16px;
  align-items: center;
}

.mini-icon {
  width: 64px;
  height: 64px;
  border: 1px solid var(--border);
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--green);
  font-size: 27px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 61, 44, 0.05);
}

.mini-feature h3 {
  font-size: 16px;
  font-weight: 900;
  color: var(--green-dark);
  margin-bottom: 4px;
}

.mini-feature span {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  display: block;
}

/* Cards */
.mission-vision {
  padding: 50px 0 27px;
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.mv-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 34px 38px;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 24px;
  align-items: center;
  box-shadow: 0 10px 28px rgba(0, 61, 44, 0.04);
}

.circle-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: #eef8f3;
  display: grid;
  place-items: center;
  color: var(--green-dark);
  font-size: 36px;
}

.mv-card h3 {
  font-size: 25px;
  font-weight: 900;
  color: var(--green-dark);
  margin-bottom: 7px;
}

.mv-card p {
  font-size: 14px;
  color: #4b5d56;
}

.about-points {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.about-points div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--green-dark);
  font-size: 16px;
  font-weight: 800;
}

.about-points i {
  color: var(--green);
  font-size: 18px;
}

.why-section {
  padding: 0 0 42px;
}

.why-box {
  background: linear-gradient(135deg, #ffffff, #f7fbf9);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 38px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 42px;
  align-items: center;
  box-shadow: 0 10px 28px rgba(0, 61, 44, 0.04);
}

.why-content p {
  color: #4b5d56;
  font-size: 16px;
  font-weight: 500;
  margin-top: 22px;
  max-width: 480px;
}

.why-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.why-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--green-dark);
  font-size: 15px;
  font-weight: 800;
}

.why-item i {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #eef8f3;
  display: grid;
  place-items: center;
  color: var(--green);
  font-size: 19px;
  flex-shrink: 0;
}
/* Steps */
.steps-section {
  padding: 50px 0 100px;
}

.steps-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
}

.step-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  min-height: 170px;
  padding: 24px 18px;
  position: relative;
  box-shadow: 0 10px 28px rgba(0, 61, 44, 0.035);
}

.step-card:not(:last-child)::after {
  /* content: "\f060"; */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: -16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--green);
  font-size: 18px;
  z-index: 2;
}

.step-num {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #eef8f3;
  color: var(--green-dark);
  display: grid;
  place-items: center;
  font-weight: 900;
}

.step-card i {
  font-size: 31px;
  color: var(--green-dark);
  margin-bottom: 12px;
  display: block;
}

.step-card h3 {
  font-size: 16px;
  font-weight: 900;
  color: var(--green-dark);
  margin-bottom: 5px;
}

.step-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

/* CTA */
.cta-section {
  padding: 0 0 80px;
}

.cta-box {
  background:
    linear-gradient(90deg, rgba(0, 61, 44, 1), rgba(0, 61, 44, 0.92)),
    url("cta-car.jpg") center/cover no-repeat;
  border-radius: 12px;
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 35px 48px;
  color: #fff;
  overflow: hidden;
}

.cta-box h2 {
  font-size: 30px;
  font-weight: 900;
  margin-bottom: 4px;
}

.cta-box p {
  font-size: 18px;
  opacity: 0.95;
  font-weight: 600;
}

.cta-btn {
  background: #fff;
  color: var(--green-dark);
  min-width: 205px;
  height: 54px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 900;
  transition: 0.25s;
}

.cta-btn:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero-about .container {
    width: 100%;
    max-width: 100%;
    padding-inline: 0;
    margin: auto;
  }
    .about-section .container {
        width: 100%;
        max-width: 100%;
        padding-inline: 0;
        margin: auto;
    }
  .mission-vision .container{
          width: 100%;
        max-width: 100%;
        padding-inline: 0;
        margin: auto;
  }
      .steps-section .container {
        width: 100%;
        max-width: 100%;
        padding-inline: 0;
        margin: auto;
    }
      .steps-section .section-title{
        margin: 0;
        padding: 0 20px;
    }
   .steps-section .section-title::before {right: 90px;}
  .steps-section  .section-title::after {
    right: 23px;
}
  .why-box {
    grid-template-columns: 1fr;
    padding: 26px 20px;
  }

  .why-list {
    grid-template-columns: 1fr;
  }
  .about-grid{
        grid-template-columns: 1fr;
        height: 200px;
  }
  .about-image{
        border-radius: 0;
        height: auto;
        min-height: 200px;
  }
   .about-image img{

height: 100%;

width: 100%;

}
  .about-section .about-text {
    margin: 0;
    padding: 0 20px;
}
    .about-section .section-title{
      font-size: 26px;
    }
  .about-section .about-points span{
     font-size: 14px;
  }
  .mv-grid {
    grid-template-columns: repeat(1, 1fr);
    padding: 0 20px;
}
  .cta-box {

    padding: 20px 40x;
    flex-direction:column

}
  .steps-grid {
    grid-template-columns: repeat(1, 1fr) !important;
}
  .steps-section .steps-grid {
  margin: 60px auto 0px auto;
  width: 90%;
  }
    .steps-grid .step-card {
    width: 100%;
  }
      .cta-section .cta-box {
        margin: 40px auto;
        border-radius:0;
        width: 100%;
    }
  .cta-section .cta-box a{
    padding: 0 14px;
    font-size: 14px;
    height: 43px;
    min-width: auto;
  }
  .mv-card {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.mv-card .circle-icon + div{
  text-align:center
}
  .hero-about .hero-content{
        padding: 40px 65px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border-radius: 0;
  }
    .hero-about .hero-content h1 {
    font-size: 30px;
    font-weight:bolder
}
  .hero-about .hero-content p {
    font-size: 14px;
    font-weight:bolder
}
  .about-section {
    padding: 80px 0 380px;
}
  .steps-section {
}
}
