.about-overview{
    background:#fffbe9;
    padding:8% 8%;
    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:70px;
    align-items:center;
    overflow:hidden;
}

.about-tag{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:25px;
}

.about-tag span{
    width:70px;
    height:2px;
    background:#d7a84f;
}

.about-tag p{
    color: #123327;
    font-size:14px;
    letter-spacing:3px;
    font-weight:700;
}

.about-overview h2{
    font-size:58px;
    line-height:1.15;
    color:#123327;
    margin-bottom:25px;
    font-weight:800;
}

.about-overview h2 span{
    color:#d7a84f;
}

.about-intro{
    color:#666;
    line-height:1.9;
    font-size:18px;
    margin-bottom:40px;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-bottom:40px;
}

.stat-card{
    background:#ffffff;
    border:1px solid rgba(18,51,39,.1);
    padding:25px;
    border-radius:20px;
    transition:.4s;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.stat-card:hover{
    transform:translateY(-10px);
    border-color:#d7a84f;
}

.stat-card h3{
    color:#123327;
    font-size:34px;
    margin-bottom:10px;
}

.stat-card p{
    color:#666;
}

.about-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 35px;
    background:#d7a84f;
    color:#123327;
    font-weight:700;
    border-radius:50px;
    text-decoration:none;
    transition:.4s;
}

.about-btn:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(215,168,79,.35);
}

.image-wrapper{
    position:relative;
    border-radius:30px;
    overflow:hidden;
}

.image-wrapper img{
    width:100%;
    display:block;
    border-radius:30px;
    transition:1s;
}

.image-wrapper:hover img{
    transform:scale(1.05);
}

.image-wrapper::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(
      45deg,
      rgba(18,51,39,.25),
      transparent
    );
    z-index:1;
}

.about-overview{
    animation:fadeUp 1s ease forwards;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(80px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* ================= COMPANY OVERVIEW RESPONSIVE ================= */

@media (max-width: 1100px) {
  .about-overview {
    padding: 90px 6%;
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .overview-right {
    order: -1;
  }

  .about-overview h2 {
    font-size: 46px;
  }

  .image-wrapper img {
    max-height: 520px;
    object-fit: cover;
  }
}

@media (max-width: 700px) {
  .about-overview {
    padding: 70px 5%;
  }

  .about-tag {
    justify-content: center;
  }

  .about-tag span {
    width: 45px;
  }

  .about-tag p {
    font-size: 12px;
    letter-spacing: 2px;
  }

  .about-overview h2 {
    text-align: center;
    font-size: 34px;
  }

  .about-intro {
    text-align: center;
    font-size: 16px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-card {
    text-align: center;
  }

  .about-btn {
    width: 100%;
  }

  .image-wrapper {
    border-radius: 22px;
  }

  .image-wrapper img {
    border-radius: 22px;
    max-height: 390px;
    object-fit: cover;
  }
}
