.about-section {
  max-width: 1300px;
  margin: 40px auto;
  padding: 0 20px;
}

/* Title */
.about-section h2 {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  color: #c0392b;
  margin-bottom: 25px;
  font-family: "Poppins", sans-serif;
}

/* ✅ Top Tab Menu */
.about-tabs {
  display: flex;
  gap: 15px; /* टैब्स के बीच का अंतर थोड़ा बढ़ाया गया */
  margin-bottom: 25px;
  overflow-x: auto;
  padding: 5px 0;
  justify-content: center; /* टैब्स को बीच में लाना */
  flex-wrap: wrap; /* मोबाइल पर नीचे की लाइन में जाएं */
}

.about-tabs a {
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  background: #fff;
  border-radius: 6px;
  border: 1px solid #ddd;
  color: #222;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.3s ease;
}

.about-tabs a:hover {
  background: #f8d7a4; /* हल्का सुनहरा hover */
  border-color: #f39c12;
  color: #000;
  transform: translateY(-2px);
}

.about-tabs .active {
  background: #f39c12;
  color: #fff;
  border-color: #f39c12;
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}


/* ✅ Two Column Layout */
.about-container {
  display: flex;
  gap: 20px;
}

/* Left Content */
.about-content {
  width: 70%;
  background: #fff;
  border-radius: 10px;
  padding: 25px 30px;
  box-shadow: 0 5px 18px rgba(0,0,0,0.08);
  border: 1px solid #eee;
}

.about-content h3 {
  font-size: 22px;
  color: #c0392b;
  margin-bottom: 12px;
  font-weight: 700;
}

.about-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
}

/* ✅ Right space (optional image or blank) */
.about-image {
  width: 30%;
}

/* responsive */
@media(max-width: 768px) {
  .about-container {
    flex-direction: column;
  }

  .about-content, .about-image {
    width: 100%;
  }
}
/* ✅ Right Ads Box */
.ads-box {
  width: 40%;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 5px 18px rgba(0,0,0,0.08);
  height: fit-content;
}

.ads-box h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #c0392b;
}

/* Ad card */
.ad-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 15px;
  text-align: center;
  background: #fafafa;
}

.ad-card img {
  width: 100%;
  border-radius: 6px;
}

.ad-card p {
  font-size: 14px;
  margin-top: 8px;
  color: #555;
  font-weight: 600;
}

/* ✅ Mobile Adjust */
@media(max-width: 768px){
  .ads-box{
    width:100%;
  }
}
.read-btn {
  background:blue;
  color: #fff;
  padding: 10px 20px;
  border: none;
  font-size: 14px;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 10px;
  transition: 0.3s;
}

.read-btn:hover {
  background: #e74c3c;
}
