/* NEET Stats Section */
.neet-stats {
  padding: 80px 5%;
  background: linear-gradient(135deg, #0F3F63, #1F6FAF);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 600px;
}

.stats-wrapper {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}

.stats-circle-bg {
  background: linear-gradient(135deg, #6ED36F, #1F6FAF);
  border-radius: 50%;
  padding: 102px 220px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  opacity: 0;
  transform: scale(0.8);
}

.stat-row {
  display: flex;
  align-items: center;
  gap: 30px;
  opacity: 0;
  transform: translateX(-50px);
}

.stats-circle-bg .stat-row:nth-child(3),
.stats-circle-bg .stat-row:nth-child(7) {
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.stats-circle-bg .stat-row:nth-child(3) .stat-text,
.stats-circle-bg .stat-row:nth-child(7) .stat-text {
  text-align: right;
}

.stat-divider {
  height: 3px;
  background: white;
  margin: 25px 0;
  width: 150px;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
}

.stat-divider:nth-child(2) {
  margin-left: auto;
}

.stat-divider:nth-child(6) {
  margin-left: auto;
}

.stat-icon-box {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  transition: transform 0.3s ease;
}

.stat-icon-box:hover {
  transform: scale(1.1) rotate(5deg);
}

.stat-icon-box svg {
  width: 40px;
  height: 40px;
  color: #0F3F63;
}

.stat-text {
  flex: 1;
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: white;
  margin-bottom: 5px;
  font-family: 'Arial', sans-serif;
}

.stat-title {
  font-size: 18px;
  font-weight: 700;
  color: white;
  line-height: 1.3;
}

.stat-divider {
  height: 3px;
  background: white;
  margin: 25px 0;
  width: 150px;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
}

@media (max-width: 768px) {
  .neet-stats {
    padding: 60px 5%;
    min-height: auto;
  }

  .stats-circle-bg {
    padding: 40px 110px;
    border-radius: 50%;
  }

  .stat-row {
    gap: 20px;
  }

  .stat-icon-box {
    width: 60px;
    height: 60px;
  }

  .stat-icon-box svg {
    width: 30px;
    height: 30px;
  }

  .stat-number {
    font-size: 22px;
  }

  .stat-title {
    font-size: 14px;
  }

  .stat-divider {
    width: 100px;
    margin: 20px 0;
  }
}

@media (max-width: 480px) {
  .stats-circle-bg {
    padding: 30px 98px;
    border-radius: 50%;
  }

  .stat-row {
    gap: 15px;
  }

  .stat-icon-box {
    width: 50px;
    height: 50px;
  }

  .stat-icon-box svg {
    width: 24px;
    height: 24px;
  }

  .stat-number {
    font-size: 18px;
  }

  .stat-title {
    font-size: 12px;
  }

  .stat-divider {
    width: 80px;
    margin: 15px 0;
  }
}

/* Package Comparison Section */
.package-comparison {
  padding: 80px 5%;
  background: #F6F8FA;
}

.package-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 25px 60px;
  font-size: 20px;
  font-weight: 700;
  border: 3px solid #1F6FAF;
  background: white;
  color: #1F6FAF;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.tab-btn:nth-child(1) {
  animation: tabBlink1 1s ease-in-out infinite;
}

.tab-btn:nth-child(2) {
  animation: tabBlink2 1s ease-in-out infinite;
}

@keyframes tabBlink1 {
  0%, 49% {
    opacity: 1;
  }
  50%, 100% {
    opacity: 0.3;
  }
}

@keyframes tabBlink2 {
  0%, 49% {
    opacity: 0.3;
  }
  50%, 100% {
    opacity: 1;
  }
}

.tab-icon {
  width: 28px;
  height: 28px;
  position: relative;
  z-index: 1;
}

.tab-text {
  position: relative;
  z-index: 1;
}

.tab-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #1F6FAF, #0F3F63);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
  z-index: 0;
}

.tab-btn:hover::before,
.tab-btn.active::before {
  width: 300%;
  height: 300%;
}

.tab-btn:hover,
.tab-btn.active {
  color: white;
  border-color: #0F3F63;
}

.tab-btn:hover .tab-icon,
.tab-btn.active .tab-icon {
  fill: white;
}

.package-content {
  display: none;
}

.package-content.active {
  display: block;
  animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.package-header {
  text-align: center;
  margin-bottom: 30px;
  padding: 30px;
  background: linear-gradient(135deg, #0F3F63, #1F6FAF);
  border-radius: 15px;
  color: white;
}

.package-header h2 {
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: 700;
}

.package-header h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #F4C430;
  font-weight: 600;
}

.package-price {
  font-size: 18px;
  font-weight: 500;
  color: #6ED36F;
}

.table-wrapper {
  overflow-x: auto;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  margin-bottom: 30px;
}

.package-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.package-table thead {
  background: linear-gradient(135deg, #1F6FAF, #0F3F63);
  color: white;
}

.package-table th {
  padding: 20px;
  text-align: left;
  font-weight: 600;
  font-size: 16px;
}

.package-table th:first-child {
  width: 80px;
  text-align: center;
}

.package-table th:last-child {
  width: 150px;
  text-align: center;
}

.package-table tbody tr {
  border-bottom: 1px solid #e0e0e0;
  transition: background 0.3s ease;
  opacity: 1 !important;
  visibility: visible !important;
  display: table-row !important;
}

.package-table tbody tr:hover {
  background: #f8f9fa;
}

.package-table td {
  padding: 18px 20px;
  font-size: 15px;
  color: #2E2E2E !important;
  opacity: 1 !important;
  visibility: visible !important;
  display: table-cell !important;
}

.package-table td:first-child {
  text-align: center;
  font-weight: 600;
  color: #1F6FAF;
}

.package-table td:last-child {
  text-align: center;
}

.status-yes {
  color: #6ED36F;
  font-weight: 600;
  font-size: 16px;
}

.status-no {
  color: #ff4444;
  font-weight: 600;
  font-size: 16px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .package-comparison {
    padding: 50px 3%;
  }

  .package-tabs {
    flex-direction: column;
    gap: 15px;
  }

  .tab-btn {
    width: 100%;
    padding: 20px 30px;
    font-size: 16px;
  }

  .package-header {
    padding: 20px 15px;
  }

  .package-header h2 {
    font-size: 20px;
  }

  .package-header h3 {
    font-size: 18px;
  }

  .package-price {
    font-size: 14px;
  }

  .table-wrapper {
    border-radius: 10px;
    margin: 0 -15px 20px;
  }

  .package-table {
    min-width: 100%;
    font-size: 13px;
  }

  .package-table th,
  .package-table td {
    padding: 12px 10px;
    font-size: 13px;
  }

  .package-table th:first-child,
  .package-table td:first-child {
    width: 50px;
    padding: 12px 5px;
  }

  .package-table th:last-child,
  .package-table td:last-child {
    width: 100px;
  }

  .status-yes,
  .status-no {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .package-header h2 {
    font-size: 16px;
  }

  .package-header h3 {
    font-size: 16px;
  }

  .package-price {
    font-size: 13px;
  }

  .package-table th,
  .package-table td {
    padding: 10px 8px;
    font-size: 12px;
  }

  .package-table th:first-child,
  .package-table td:first-child {
    width: 40px;
    padding: 10px 3px;
  }

  .status-yes,
  .status-no {
    font-size: 13px;
  }
}
