.about-karan {
  padding: 90px 0;
  background: linear-gradient(180deg, #ffffff, #f6f9ff);
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* Header */
.about-header {
  text-align: center;
  margin-bottom: 60px;
}

.about-header h1 {
  font-size: 36px;
  font-weight: 700;
  color: #1e1666;
  line-height: 1.3;
  font-family: "Roboto", sans-serif;
}

.header-line {
  width: 90px;
  height: 4px;
  background: #0e0561;
  margin: 18px auto 0;
  border-radius: 4px;
}

/* Grid */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Image */
.about-image {
  border: 2px solid #053b8b;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

.about-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  transition: transform 0.4s ease;
}

.about-image:hover .about-img {
  transform: scale(1.03);
}

/* Content */
.about-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 18px;
  font-family: "Roboto", sans-serif;
}

/* Laser Benefits */
.laser-benefits {
  background: #ffffff;
  padding: 25px;
  border-radius: 16px;
  border-left: 5px solid #11043f;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.laser-benefits h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #1e1666;
}

.laser-benefits ul {
  list-style: none;
  padding: 0;
}

.laser-benefits li {
  padding-left: 28px;
  margin-bottom: 8px;
  position: relative;
}

.laser-benefits li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #2ba84a;
  font-weight: bold;
}

/* Doctor Section */
.doctor-highlight-wrap {
  margin-top: 60px;
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  padding: 40px;
  gap: 40px;
}

.doctor-highlight h3 {
  font-size: 28px;
  color: #1e1666;
  margin-bottom: 14px;
}

.doctor-highlight p {
  font-size: 16px;
  color: #555;
  margin-bottom: 18px;
}

.doctor-highlight ul li {
  margin-bottom: 10px;
}

/* Doctor Image */
.doctor-img {
  border-radius: 18px;
}

/* Responsive */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-header h1 {
    font-size: 28px;
  }

  .doctor-highlight-wrap {
    flex-direction: column;
    text-align: center;
  }
}
