.why-karan {
  padding: 90px 20px;
  background: linear-gradient(180deg, #ffffff, #f5f9ff);
}

.why-container {
  max-width: 1200px;
  margin: auto;
}

.why-header {
  text-align: center;
  margin-bottom: 60px;
}

.why-header h2 {
  font-size: 34px;
  font-weight: 700;
  color: #1e1666;
  font-family: "Roboto", sans-serif;
}

.underline {
  width: 80px;
  height: 4px;
  background: #680368;
  margin: 15px auto 0;
  border-radius: 5px;
}

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

/* Left */
.why-list {
  list-style: none;
  padding: 0;
  font-family: "Roboto", sans-serif;
}

.why-list li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 18px;
  font-size: 17px;
  color: #333;
}

.why-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #2ba84a;
  font-weight: bold;
  font-size: 18px;
}

.why-list small {
  display: block;
  color: #666;
  margin-top: 4px;
}

/* Right Highlight */
.why-highlight {
  background: #ffffff;
  border-left: 6px solid #1e1666;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  animation: fadeUp 1.2s ease forwards;
}

.why-highlight h3 {
  font-size: 22px;
  color: #1e1666;
  margin-bottom: 15px;
  font-family: "Roboto", sans-serif;
}

.why-highlight p {
  color: #444;
  line-height: 1.7;
  font-family: "Roboto", sans-serif;
}

.why-highlight blockquote {
  margin-top: 20px;
  font-style: italic;
  font-weight: 600;
  color: purple;
  padding-left: 15px;
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .why-header h2 {
    font-size: 28px;
  }
}
