
.wrap {
  font-family: 'Segoe UI', sans-serif;
   font-size: 18px;
}

.nav-tabs {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  border-bottom: 2px solid #ccc;
}

.nav-tabs a {
  padding: 10px 15px;
  text-decoration: none;
  border-radius: 20px;
  font-weight: 600;
  color: #999;
  border: 1px solid transparent;
}

.nav-tabs a.active {
  color: #0073aa;
  background-color: #f1f1f1;
  border-color: #0073aa;
}

.tab-content {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

iframe {
  /* width: 418px;
  height: 0px; */
  border: none;
}

.btn {
  background: linear-gradient(90deg, #667eea, #21d4fd);
  padding: 10px 20px;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  display: block;               /* ✅ block banaya */
  width: fit-content;           /* ✅ content ke size tak hi */
  margin: 20px auto 0 auto;     /* ✅ center me align with auto */
  text-align: center;
}


.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1;
  min-width: 220px;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 15px;
  background: #fafafa;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}


.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: stretch; /* ✔️ important: saari cards same height hongi */
}

.card {
  flex: 1;
  min-width: 220px;
  min-height: 230px;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  background: #fafafa;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  line-height: 1.6;
  font-size: 16px;
  color: #333;
}

.card b {
  font-size: 18px;
  color: #111;
  margin-bottom: 8px;
  display: inline-block;
}

.card ul {
  padding-left: 20px;
  margin: 0;
}

.card ul li {
  list-style: disc;
  margin-bottom: 6px;
}
.tab-content ol li {
  font-size: 20px;
  line-height: 1.8;
  color: #333; /* optional - text color */
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: stretch;
}
.card {
  flex: 1;
  min-width: 240px;
  max-width: 300px;
  background: #fff;
  border: 1px solid #ccc;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  min-height: 300px;
}
.card b {
  font-size: 20px;
  margin-bottom: 10px;
}
.card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}
.card ul li {
  margin: 6px 0;
}

