/* ================================
   ✅ ABOUT SECTION (Premium UI)
   Works with your same HTML
================================ */

/* === About Section Base === */
.about {
  background: var(--color-light-gray);
  /* padding: 70px 0; */
  position: relative;
  overflow: hidden;
}

/* Container inside About */
.about .container {
  max-width: 1520px;
}

/* soft background glow */
.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(124, 58, 237, 0.03) 0%,
    rgba(139, 92, 246, 0.02) 55%,
    rgba(255, 255, 255, 1) 100%
  );
  pointer-events: none;
}

/* === Heading === */
.about-heading {
  font-size: 42px;
  font-weight: 800;
  color: #1e1b4b;
  font-family: "Poppins", "Segoe UI", sans-serif;
  position: relative;
  display: inline-block;
  letter-spacing: 0.5px;
}

/* underline */
.about-heading::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;

  /* 🔹 60% visible initially */
  transform: translateX(-50%) scaleX(0.6);
  transform-origin: center;

  width: 75%; /* line thodi lambi */
  height: 4px;
  border-radius: 10px;

  background: linear-gradient(
    90deg,
    #8b5cf6,
    #6366f1,
    #a855f7
  );

  transition: transform 0.45s ease;
}

/* hover animation */
.about-heading:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.about-subtitle {
    color: #6b7280; /* Grey */
    font-size: 1.15rem;
    font-weight: 600;
    padding: 10px;
}

/* ✅ Single Premium Card (Wrap whole left+right) */
.about-item {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(139, 92, 246, 0.1);
  padding: 28px;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
}

/* Left + right alignment */
.about-left,
.about-right {
  display: flex;
  align-items: stretch;
}

/* === Left Image Card === */
.about-image-box {
  width: 100%;
  border-radius: 22px;

  overflow: hidden;
  background: #ffffff;
  /* border: 3px solid rgba(139, 92, 246, 0.35); */
  /* box-shadow: 0 18px 40px rgba(139, 92, 246, 0.22); */
  position: relative;
}

/* image */
.about-image-box img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

/* hover zoom */
.about-image-box:hover img {
  transform: scale(1.03);
}

/* === Right Content Panel (remove separate card look) === */
.about-right {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

/* Content spacing */
.about-content {
  width: 100%;
  padding: 6px 8px;
}

 .about-title {
  font-size: 14px;
  color: #374151;
  margin-bottom: 10px;
  /* line-height: 1.55; */
} 
 .about-title::after {
  content: "";
  display: block;
  width: 65%;
  /* height: 4px; 
  /* margin-top: 8px; */
  border-radius: 10px;
  /* background: linear-gradient(90deg, #7c3aed, #8b5cf6); */
}


.about-lead {
  /* background: rgba(139, 92, 246, 0.08); */
  /* border-left: 5px solid #7c3aed; */
  /* padding: 12px 14px; */
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  color: #374151;
  margin: 16px 0 18px 0;
  line-height: 1.5;
}

/* Lead icon */
.about-lead i {
  color: #7c3aed;
  margin-right: 8px;
}

/* paragraphs */
.about-content p {
  font-size: 14px;
  color: #374151;
  margin-bottom: 10px;
  line-height: 1.55;
}

/* icons in list */
.about-content p i {
  color: #7c3aed;
  margin-right: 8px;
  font-size: 15px;
}

/* hover line highlight (subtle premium) */
 /* .about-content p:hover {
   background: rgba(139, 92, 246, 0.05);
  border-radius: 10px;
  padding: 6px 8px;
  transition: 0.25s ease; 
}  */

/* === Button (Premium Outline like Image-2) === */
.about-link {
  margin-top: 14px;
}

.about-link a {
  background: #ffffff;
  border: 2px solid rgba(139, 92, 246, 0.55);
  color: #5b21b6 !important;
  font-weight: 700;
  border-radius: 14px;
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 10px 20px rgba(139, 92, 246, 0.18);
  transition: 0.25s ease;
  text-decoration: none;
}

.about-link a:hover {
  transform: translateY(-2px);
  background: #7c3aed;
  border-color: #7c3aed;
  color: #ffffff !important;
}

/* ========= Responsive ========= */
@media (max-width: 992px) {
  .about {
    padding: 50px 0;
  }

  .about-item {
    padding: 18px;
  }

  .about-image-box img {
    height: 260px;
  }

  .about-title {
    font-size: 26px;
  }

  .about-heading {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .about {
    padding: 40px 0;
  }

  .about-item {
    padding: 16px;
    border-radius: 18px;
  }

  .about-image-box {
    border-radius: 18px;
  }

  .about-image-box img {
    height: 220px;
  }

  .about-heading {
    font-size: 28px;
  }

  .about-title {
    font-size: 22px;
  }

  .about-lead {
    font-size: 14px;
    padding: 10px 12px;
  }

  .about-content p {
    font-size: 13.5px;
  }

  .about-link a {
    width: 100%;
    padding: 10px 14px;
  }
}
