/* =========================
   ABOUT SECTION
========================= */

.about-section {
  background: #ffffff;
  padding: 110px 20px;
  position: relative;
  overflow: hidden;
}

/* Container */
.about-container {
  max-width: 1444px;
  margin: auto;
}

/* Layout */
.about-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
  flex-wrap: wrap;
}

/* =========================
   MEDIA SIDE
========================= */

.about-media {
  flex: 1 1 520px;
}

.media-wrapper {
  position: relative;
}

/* Decorative Circles */
.circle {
  position: absolute;
  border-radius: 50%;
  background: #dbeafe;
  z-index: 1;
}

.circle-top {
  width: 100px;
  height: 100px;
  top: -20px;
  left: -20px;
}

.circle-bottom {
  width: 140px;
  height: 140px;
  bottom: -25px;
  right: -25px;
}

/* Video */
.about-video {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 800px;
  height: auto;

  object-fit: cover;

  border-radius: 32px;

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);

  transition: all 0.4s ease;
}

/* Video Hover */
.media-wrapper:hover .about-video {
  transform: scale(1.02);
  box-shadow: 0 25px 60px rgba(37, 99, 235, 0.18);
}

/* =========================
   EXPERIENCE BADGE
========================= */

.experience-badge {
  position: absolute;
  bottom: 32px;
  left: 32px;

  z-index: 5;

  display: flex;
  align-items: center;
  gap: 14px;

  background: #ffffff;

  padding: 18px;

  border-radius: 18px;

  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);

  transition: 0.3s ease;
}

.media-wrapper:hover .experience-badge {
  transform: translateY(-4px);
}

.experience-number {
  width: 58px;
  height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 16px;

  background: #2563eb;
  color: #ffffff;

  font-size: 24px;
  font-weight: 800;
}

.experience-text {
  font-size: 14px;
  font-weight: 700;
  color: #334155;
  line-height: 1.4;
}

/* =========================
   CONTENT SIDE
========================= */

.about-content {
  flex: 1 1 500px;
}

/* Small Label */
.about-content h4 {
  color: #2563eb;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;

  margin-bottom: 14px;
}

/* Main Title */
.about-content h2 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.2;

  color: #0f172a;

  margin-bottom: 26px;

  letter-spacing: -1px;
}

/* Paragraph */
.about-content p {
  font-size: 16px;
  line-height: 1.8;

  color: #64748b;

  margin-bottom: 36px;
}

/* =========================
   FEATURES
========================= */

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 24px;

  margin-bottom: 42px;
}

/* Feature */
.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;

  background: #f8fafc;

  border: 1px solid #e2e8f0;

  padding: 14px 16px;

  border-radius: 16px;

  transition: all 0.3s ease;
}

/* Hover */
.feature-item:hover {
  transform: translateY(-4px);

  background: #ffffff;

  border-color: rgba(37, 99, 235, 0.18);

  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

/* Icon */
.feature-item i svg,
.feature-item svg {
  width: 20px;
  height: 20px;

  color: #22c55e;

  flex-shrink: 0;
}

/* Text */
.feature-item span {
  color: #1e293b;
  font-size: 15px;
  font-weight: 600;
}

/* =========================
   LINK BUTTON
========================= */

.about-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: #0f172a;

  text-decoration: none;

  font-size: 15px;
  font-weight: 800;

  border-bottom: 2px solid #2563eb;

  padding-bottom: 4px;

  transition: all 0.3s ease;
}

.about-link:hover {
  color: #2563eb;
  gap: 14px;
}

.about-link i {
  width: 18px;
  height: 18px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {
  .about-wrapper {
    gap: 50px;
  }

  .about-content h2 {
    font-size: 38px;
  }
}

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

  .about-wrapper {
    flex-direction: column;
  }

  .about-content h2 {
    font-size: 32px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .experience-badge {
    left: 20px;
    bottom: 20px;
    padding: 14px;
  }

  .experience-number {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}
