.about-3col-wrap{
  display: grid;
  grid-template-columns: 311px 358px 1fr;
  gap: 31px;
  align-items: start;
}
.about-stats-box{
  background: linear-gradient(185deg, var(--uicolor) 49%, var(--uicolor2) 130%);
  padding: 40px 35px;
  border-radius: 15px;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-stats-pattern{
  width: 100%;
  max-width: 240px;
}

.about-stats-pattern svg{
  width: 100%;
  height: auto;
  display: block;
}

.about-stats-pattern svg path {
    fill: white;
}

.about-stats-number{
  margin-top: 30px;
  font-size: 76px;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  letter-spacing: -1px;
}

.about-stats-title{
  margin-top: -100px;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.6;
  color: #fff;
}
.about-mid-card{
  width: 100%;
}

.about-mid-card {
    overflow: hidden;
    padding-bottom: 80px;
    position: relative;
}

.about-mid-image{
  width: 100%;
  overflow: hidden;
}

.about-mid-image img, .about-mid-image .yc-lazy-media{border-radius: 15px;}

.about-mid-title{
  margin-top: 20px;
  font-size: 27px;
  font-weight: 600;
  line-height: 1.05;
  color: #111;
}

.about-mid-decor{
  margin-top: 25px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #8a7b5e;
  font-size: 18px;
}

.about-mid-decor .dot{
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  display: inline-block;
  opacity: .7;
}

.about-mid-decor .star{
  display: inline-block;
  transform: translateY(-1px);
}

/* ---------- Right (Content) ---------- */
.about-content{
  padding-top: 6px;
}

.about-content .fsurl-btn {
    max-width: max-content;
}

.about-before-title{
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #8a7b5e;
  margin-bottom: 14px;
}

.ass-tit{
  font-size: 58px;
  font-weight: 900;
  line-height: 1.05;
  color: #111;
  margin: 0 0 18px;
}

.about-desc{
  max-width: 640px;
  font-size: 16px;
  line-height: 1.9;
  color: #6f6f6f;
  margin-bottom: 26px;
}

.about-features-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 26px;
  margin: 29px 0 50px;
  max-width: 560px;
}

.about-feature{
  display: flex;
  align-items: center;
  gap: 14px;
}

.about-feature-icon{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #f1f1f1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #8a7b5e;
}

.about-feature-icon svg,
.about-feature-icon i{
  font-size: 18px;
  width: 20px;
  height: 20px;
  color: var(--uicolor);
}

.about-feature-icon svg path {
    fill: var(--uicolor);
}

.about-feature-label{
  font-size: 17px;
  font-weight: 600;
  color: #111;
}

 

.about-cta-btn a:hover,
a.about-cta-btn:hover{
  filter: brightness(.95);
}

/* لو عندك أيقونة سهم/بوكس يمين زي الصورة */
.about-cta-btn .btn-icon-wrap,
.about-cta-btn i{
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Responsive ---------- */
@media (max-width: 1200px){
  .about-3col-wrap{
    grid-template-columns: 280px 380px 1fr;
    gap: 35px;
  }

  .ass-tit{ font-size: 46px; }
  .about-mid-title{ font-size: 36px; }
  .about-stats-number{ font-size: 80px; }
  .about-stats-title{ font-size: 40px; }
}

@media (max-width: 992px){
  .about-3col-wrap{
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-stats-box{
    min-height: auto;
  }

  .about-features-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 100%;
  }

  .ass-tit{ font-size: 42px; }
}

@media (max-width: 576px){
  .about-features-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 29px 0 30px;
    gap: 16px 19px;
  }

  .ass-tit{ font-size: 34px; }
  .about-mid-title{ font-size: 30px; }
  .about-stats-number{ font-size: 64px; }
}


.owl-dot {
    width: 10px;
    height: 10px;
    background: var(--uicolor);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.owl-dot.active::after {
  content:'';
  width: 12px;
  height: 12px;
  position: absolute;
  border: 1px solid var(--uicolor);
  border-radius: 50%;
}

.owl-dots {
    display: flex;
    position: absolute;
    gap: 10px;
    bottom: 23px;
    right: 3px;
}