.unique-section {
  text-align: center;
  padding: 80px 24px;
  background: linear-gradient(to right, #f5f7ff, #eae8ff);
  font-family: "Segoe UI", sans-serif;
}

.badge {
  display: inline-block;
  background-color: #ece7ff;
  color: #4a34c2;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 40px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 25px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}

.heading {
  font-size: 2.8rem;
  color: #2e1a7f;
  margin-bottom: 16px;
  font-weight: 800;
  letter-spacing: -0.8px;
}

.subheading {
  font-size: 1.2rem;
  color: #5c5c5c;
  margin-bottom: 60px;
  font-weight: 500;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.comparison-box {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1080px;
  margin: 0 auto;
}

.column {
  background-color: #ffffff;
  color: #333;
  border-radius: 24px;
  padding: 40px 45px;
  box-shadow: 0 10px 40px rgba(69, 38, 168, 0.08);
  flex: 1;
  min-width: 280px;
  max-width: 400px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.column:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 32px rgba(69, 38, 168, 0.15);
}

.column h3 {
  font-size: 1.2rem;
  color: #4526a8;
  margin-bottom: 26px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 8px 18px;
}

.mishram_media_heading {
  display: inline-block;
  font-size: 1rem;
  background-color: #f3f0ff;
  color: #4526a8;
  padding: 8px 18px;
  /* margin-bottom: 24px; */
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 700;
  box-shadow: 0 6px 14px rgba(69, 38, 168, 0.12);
  transition: all 0.25s ease-in-out;
}

.others_heading {
  display: inline-block;
  font-size: 1rem;
  background-color: #fdf4fd;
  color: #4526a8;
  padding: 8px 18px;
  /* margin-bottom: 24px; */
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 500;
  box-shadow: 0 6px 14px rgba(69, 38, 168, 0.12);
  transition: all 0.25s ease-in-out;
}
.mishram_media_heading:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 22px rgba(69, 38, 168, 0.2);
}

.mishram_media_ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  font-weight: 500;
}

.column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.column ul li {
  font-size: 1rem;
  color: #444;
  margin-bottom: 18px;
  line-height: 1.7;
  display: flex;
  align-items: center;
  transition: all 0.2s ease-in-out;
}

.column ul li:hover {
  color: #2e1a7f;
  transform: translateX(5px);
}

.column.others li::before {
  content: "✕";
  color: #ff4d4f;
  margin-right: 12px;
  font-weight: bold;
  font-size: 1.2rem;
}

.column.us li::before {
  content: "✔";
  color: #2ecc71;
  margin-right: 12px;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .heading {
    font-size: 2.2rem;
  }

  .subheading {
    font-size: 1.05rem;
  }

  .comparison-box {
    flex-direction: column;
    gap: 30px;
  }

  .column {
    padding: 30px 28px;
  }
}

/* chat with our experts */

.chat-button {
  display: inline-block;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  background-color: #5a2ec3;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(90, 46, 195, 0.2);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  font-family: "Segoe UI", sans-serif;
  margin-top: 30px;
}

.chat-button:hover {
  background-color: #4526a8;
  box-shadow: 0 10px 24px rgba(90, 46, 195, 0.3);
}

.chat-button .chat-link {
  display: inline-block;
  margin-left: 8px;
  color: white;
  text-decoration: underline;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.3s ease;
}

.chat-button .chat-link:hover {
  color: #ffdc3d;
}
