.aboutus {
  padding: 55px 5%;
  background: #ffffff;
}

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

/* LEFT IMAGES */
.about-images {
  position: relative;
}

.about-image {
  border-radius: 10px;
  overflow: hidden;
}

.about-image.large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-image.small {
  margin-top: -75px; /* 🔑 pulls image upward */
}

.about-experience {
  padding: 18px 16px;
  min-height: 144px;
  text-align: center;
}

.about-bottom-row {
  display: grid;              /* ✅ REQUIRED */
  grid-template-columns: 0.9fr 1.1fr; 
  gap: 14px;
  margin-top: 14px;
  align-items: start; 
}

.about-image.small img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.about-experience {
  background: #d71920;
  color: #fff;
  border-radius: 10px;
  padding: 18px 16px;
  min-height: 120px;  
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.about-experience h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 6px;
}

.about-experience p {
  font-size: 14px;
  line-height: 1.4;
}

/* RIGHT CONTENT */
.about-badge {
  display: inline-block;
  padding: 6px 14px;
  background: #ffe5e5;
  color: #d71920;
  font-size: 16px;
  font-weight: 500;
  border-radius: 6px;
  margin-bottom: 10px;
}

.about-content h2 {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 35px;
  color: #111;
}

.about-content p {
  font-size: 15px;
  font-weight: 400;
  color: #555;
  line-height: 1.7;
  margin-top: 1rem;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  background: #FFB000;
  color: #fff;
  padding: 12px 22px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 4px;
  text-decoration: none;
}

.about-btn:hover {
  opacity: 0.9;
  background: rgba(255, 176, 0, 0.7);
  color: white;
}

.about-content h1 {
  font-size: 30px;
  font-weight: 600;
  line-height: 45px;
}

@media (max-width: 1019px) {
  .about-section {
    padding: 55px 20px;
  }

  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* CONTENT FIRST */
  .about-content {
    order: 1;
    text-align: center;
  }

  .about-images {
    order: 2;
  }

  .about-image.small {
    margin-top: -57px;
  }

  .about-image.small img {
    height: 210px;
  }

  .about-badge {
    font-size: 15px;
    font-weight: 400;
    margin: 0 auto 10px;
  }

  .about-content h2 {
    font-size: 30px;
    line-height: 1.25;
    margin-bottom: 16px;
    font-weight: 700;
  }

  .about-content p {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.6;
  }

  .about-btn {
    margin: 20px auto 0;
    font-size: 12px;
  }

  /* EXPERIENCE CARD FULL WIDTH */
  .about-experience {
    text-align: center;
    padding: 28px 20px;
  }

  .about-experience h3 {
    font-size: 25px;
  }

  .about-content h1 {
    font-size: 25px;
    font-weight: 700;
    line-height: 40px;
  }

  .aboutus {
    padding: 30px 5%;
  }
}

