.about {
  padding: 30px 0;
  background: var(--bg);
}

/* IMPORTANT */
/* Global heading classes ko touch mat karo */

.section-tag {
  display: block;
  padding: 8px 20px;
  background: #dbeafe;
  color: var(--primary);
  border-radius: 30px;
  font-weight: 600;
  margin-bottom: 18px;
  text-align: center;
  /* width: max-content; */
}
.about-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.about-text {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 18px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 35px 0;
}

.feature-card {
  display: flex;
  gap: 15px;
  padding: 20px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: 0.3s;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.feature-card i {
  color: var(--primary);
  font-size: 24px;
  flex-shrink: 0;
}

.feature-card h4 {
  margin-bottom: 6px;
  color: var(--text);
}

.feature-card p {
  margin: 0;
  color: var(--text-light);
  font-size: 14px;
}

.about-image {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 100%;
  max-width: 450px;
}

.experience-card {
  position: absolute;
  right: 10px;
  bottom: 20px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  padding: 22px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.experience-card h3 {
  color: var(--primary);
  font-size: 32px;
}

.experience-card span {
  color: var(--text-light);
}

@media (max-width: 992px) {
  .about {
    padding: 70px 0;
  }

  .about-heading {
    margin-bottom: 40px;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .about-content {
    text-align: center;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .experience-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 20px auto 0;
    width: max-content;
  }
}

@media (max-width: 576px) {
  .feature-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-image img {
    max-width: 300px;
  }
}
