/* --- About Section Core --- */
.about-section {
  padding: 80px 5%;
  background-color: #f9f9f9;
  overflow: hidden;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* --- Image Side --- */
.about-image {
  flex: 1;
  position: relative;
  width: 100%;
}

.about-image img {
  display: block;
  width: 100%;
  height: 450px; /* Fixed height for consistency */
  object-fit: cover; /* Prevents stretching */
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  background-color: #eee;
}

.image-experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #4788c6;
  color: white;
  padding: 15px 25px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(71, 136, 198, 0.3);
  z-index: 2;
}

.image-experience-badge span {
  display: block;
  font-size: 12px;
  letter-spacing: 2px;
}

.image-experience-badge strong {
  font-size: 24px;
}

/* --- Content Side --- */
.about-content {
  flex: 1;
}

.section-tag {
  color: #4788c6;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 14px;
  display: block;
  margin-bottom: 15px;
}

.about-title {
  font-size: clamp(28px, 4vw, 38px);
  color: #2c3e50;
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-title span {
  color: #4788c6;
}

.about-description {
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 16px;
}

.about-highlight {
  color: #333;
  font-size: 17px;
  border-left: 4px solid #4788c6;
  padding-left: 15px;
  margin-bottom: 25px;
}

.about-features {
  list-style: none;
  margin-bottom: 35px;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-weight: 600;
  color: #2c3e50;
}

.check-icon {
  background: #4788c6;
  color: white;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 12px;
  font-style: normal;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #4788c6;
  color: white;
  text-decoration: none;
  padding: 15px 35px;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.about-btn:hover {
  background: #35699e;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(71, 136, 198, 0.4);
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    gap: 50px;
  }

  .about-image img {
    height: 350px;
  }

  .image-experience-badge {
    right: 10px;
    bottom: 10px;
  }
}

@media (max-width: 480px) {
  .about-image img {
    height: 280px;
  }
}
