.about-hero {
  position: relative;
  width: 100%;
  height: 75vh;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

.breadcrumb {
  background: rgba(0, 0, 0, 0.4);
  padding: 10px 25px;
  border-radius: 4px;
  font-size: 16px;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: 50px;
  font-weight: 650;
}

@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
  }

  .about-text h2 {
    font-size: 32px;
  }
}

.services-section {
  padding: 150px 0;
  background: #ffffff;
}

.services-container {
  max-width: 1150px;
  margin: auto;
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

/* IMAGE */
.services-image {
  position: relative;
  width: 50%;
}

.services-image img {
  width: 100%;
  display: block;
}

/* EXPERIENCE CIRCLE */
.experience-badge {
  position: absolute;
  top: 60px;
  left: -80px;
  width: 160px;
  height: 160px;
  background: #3b63e6;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}

.services-content {
  width: 50%;
}

.services-content h2 {
  font-size: 50px;
  color: #1f2937;
  margin-bottom: 50px;
  line-height: 1.1;
}

.services-content ul {
  list-style: none;
  line-height: 1.8;
}

.services-content li {
  margin-bottom: 22px;
}

.services-content strong {
  font-size: 20px;
  font-weight: 500;
  color: #1f3cff;
  display: block;
  margin-bottom: 6px;
}

.services-content strong b {
  color: #000000;
}

.services-content p {
  font-size: 20px;
  color: #6b7280;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .services-container {
    flex-direction: column;
  }

  .services-image,
  .services-content {
    width: 100%;
  }

  .experience-badge {
    left: 20px;
    top: 20px;
  }
}

/* ===== LARGE TABLETS ===== */
@media (max-width: 1200px) {
  .services-section {
    padding: 100px 20px;
  }

  .services-content h2 {
    font-size: 42px;
  }

  .services-content p {
    font-size: 18px;
  }
}

/* ===== TABLETS ===== */
@media (max-width: 992px) {
  .about-hero {
    height: 60vh;
  }

  .hero-content h1 {
    font-size: 40px;
  }

  .services-container {
    flex-direction: column;
    gap: 40px;
  }

  .services-image,
  .services-content {
    width: 100%;
  }

  .experience-badge {
    width: 130px;
    height: 130px;
    font-size: 16px;
    left: 20px;
    top: 20px;
  }

  .services-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
  }

  .services-content strong {
    font-size: 18px;
  }

  .services-content p {
    font-size: 17px;
  }
}

@media (max-width: 576px) {
  .about-hero {
    height: 50vh;
  }

  .breadcrumb {
    font-size: 14px;
    padding: 8px 15px;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .services-section {
    padding: 70px 15px;
  }

  .experience-badge {
    width: 110px;
    height: 110px;
    font-size: 14px;
  }

  .services-content h2 {
    font-size: 28px;
    line-height: 1.3;
  }

  .services-content strong {
    font-size: 16px;
  }

  .services-content p {
    font-size: 15px;
  }
}
