/* NEET Page Specific Styles */
.neet-hero {
  background: linear-gradient(rgba(106, 79, 207, 0.8), rgba(106, 79, 207, 0.9)), url('../img/back2.jpg') no-repeat center center/cover;
  padding: 100px 20px;
  color: white;
  text-align: center;
}

.neet-hero .hero-text {
  max-width: 800px;
  margin: 0 auto;
}

.neet-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.neet-hero .highlight {
  color: #fff;
  border-bottom: 2px solid #fff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-card {
  background: white;
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: #f0e9ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6a4fcf;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.pricing-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  position: relative;
  text-align: center;
}

.pricing-card.highlight-card {
  border: 2px solid #6a4fcf;
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: #6a4fcf;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

.price {
  font-size: 2rem;
  font-weight: bold;
  color: #6a4fcf;
  margin: 20px 0;
}

.price span {
  font-size: 1rem;
  color: #666;
}




/* table css */
.styled-syllabus-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  font-size: 1rem;
}

.styled-syllabus-table th,
.styled-syllabus-table td {
  padding: 12px 16px;
  text-align: left;
  border: 1px solid #ddd;
}

.styled-syllabus-table thead th {
  background-color: #6a4fcf; /* your brand color */
  color: white;
  font-weight: bold;
  font-size: 1rem;
}

.styled-syllabus-table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

.syllabus-title {
  font-size: 1.4rem;
  color: #6a4fcf;
  margin-bottom: 1rem;
}

