/* ===== ACTIVE NAV LINK ===== */
.active-nav {
  color: var(--orange) !important;
  font-weight: 700 !important;
}

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 120px 0 80px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.neet-ug-hero {
  background: linear-gradient(135deg, #0A58CA 0%, #0847a8 50%, #063a8a 100%);
}
.neet-pg-hero {
  background: linear-gradient(135deg, #1a237e 0%, #283593 50%, #3949ab 100%);
}
.page-hero::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(255,255,255,0.05); pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 760px; }
.page-hero-text h1 { font-size: clamp(30px, 4vw, 50px); font-weight: 800; line-height: 1.2; margin-bottom: 20px; }
.page-hero-text p { font-size: 17px; opacity: 0.9; margin-bottom: 32px; max-width: 600px; }

/* ===== NEET COURSES SECTION ===== */
.neet-courses-section { padding: 80px 0; background: var(--gray); }
.neet-course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.neet-course-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  transition: all 0.3s;
  cursor: pointer;
}
.neet-course-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.ncc-header {
  padding: 28px 24px 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.ug-color { background: linear-gradient(135deg, #0A58CA, #0847a8); }
.pg-color { background: linear-gradient(135deg, #1a237e, #3949ab); }

.ncc-icon { font-size: 44px; }
.ncc-tag {
  background: rgba(255,255,255,0.25); color: #fff;
  font-size: 11px; font-weight: 700; padding: 4px 12px;
  border-radius: 50px; border: 1px solid rgba(255,255,255,0.4);
}
.ncc-body { padding: 24px; }
.ncc-body h3 { font-size: 26px; font-weight: 800; color: var(--primary); margin-bottom: 4px; }
.ncc-full { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; font-weight: 500; }
.ncc-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; line-height: 1.6; }
.ncc-points { margin-bottom: 20px; }
.ncc-points li { font-size: 13px; color: var(--text); padding: 4px 0; }

/* ===== PROCESS SECTION ===== */
.neet-process-section { padding: 80px 0; background: var(--primary); color: #fff; }
.neet-pg-page .neet-process-section { background: #1a237e; }
.neet-process-section .section-badge { background: rgba(255,255,255,0.15); color: #fff; }
.neet-process-section .section-header h2 { color: #fff; }
.neet-process-section .section-header p { color: rgba(255,255,255,0.8); }

.process-cards {
  display: flex; align-items: flex-start; justify-content: center;
  gap: 16px; flex-wrap: wrap;
}
.process-card {
  background: rgba(255,255,255,0.1); border-radius: var(--radius);
  padding: 28px 24px; text-align: center; max-width: 210px;
  border: 1px solid rgba(255,255,255,0.15);
}
.process-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 10px; color: #fff; }
.process-card p { font-size: 13px; opacity: 0.85; color: rgba(255,255,255,0.85); }
.pc-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--orange); color: #fff; font-size: 22px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.pg-process { background: rgba(255,255,255,0.1); }
.pg-num { background: #fff; color: #3949ab; }
.pc-arrow { font-size: 28px; color: rgba(255,255,255,0.35); margin-top: 28px; }

/* ===== BRANCHES SECTION ===== */
.branches-section { padding: 80px 0; background: #fff; }
.branches-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.branch-group { }
.branch-title {
  font-size: 16px; font-weight: 700; padding: 8px 18px;
  border-radius: 8px; display: inline-block; margin-bottom: 20px;
}
.md-title { background: #e8eaf6; color: #3949ab; }
.ms-title { background: #e8f0fe; color: var(--primary); }
.branch-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.branch-tags span {
  background: var(--gray); color: var(--text);
  font-size: 13px; font-weight: 500; padding: 6px 14px;
  border-radius: 50px; border: 1px solid var(--gray-2);
  transition: all 0.2s;
}
.branch-tags span:hover { background: var(--primary-light); color: var(--primary); border-color: var(--primary); }

/* ===== FAQ SECTION ===== */
.faq-section { padding: 80px 0; background: var(--gray); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.faq-q {
  width: 100%; text-align: left; padding: 18px 24px;
  background: none; border: none; cursor: pointer;
  font-size: 15px; font-weight: 600; color: var(--text);
  display: flex; justify-content: space-between; align-items: center;
  font-family: inherit; transition: background 0.2s;
}
.faq-q:hover { background: var(--primary-light); color: var(--primary); }
.faq-q span { font-size: 20px; font-weight: 400; color: var(--primary); flex-shrink: 0; margin-left: 12px; }
.faq-a {
  display: none; padding: 0 24px 18px;
  font-size: 14px; color: var(--text-muted); line-height: 1.7;
}
.faq-a.open { display: block; }

/* ===== NEET CONTACT ===== */
.neet-contact { padding: 80px 0; background: #fff; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .neet-course-grid { grid-template-columns: 1fr; }
  .branches-grid { grid-template-columns: 1fr; }
  .process-cards { flex-direction: column; align-items: center; }
  .pc-arrow { transform: rotate(90deg); margin: 0; }
  .page-hero { padding: 100px 0 60px; }
}
