/* Low NEET Score Options Page Styles */

/* Intro Section */
.low-score-intro {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.intro-content {
  display: flex;
  gap: 40px;
  align-items: center;
}

.intro-text {
  flex: 1;
}

.intro-text p {
  margin-bottom: 20px;
  color: #666;
}

.key-points {
  margin-top: 30px;
}

.point {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.point:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.point-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--light-text);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.point-text h3 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.intro-image {
  flex: 1;
}

.intro-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

/* Options Sections */
.options-section {
  padding: 80px 0;
}

.options-section:nth-child(even) {
  background-color: var(--light-bg);
}

.option-card {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.option-header {
  background-color: var(--primary-color);
  color: var(--light-text);
  padding: 25px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.option-icon {
  width: 60px;
  height: 60px;
  background-color: #fff;
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.option-header h2 {
  margin: 0;
  font-size: 1.8rem;
}

.option-content {
  padding: 30px;
}

.option-intro {
  margin-bottom: 30px;
  color: #666;
  font-size: 1.1rem;
}

.option-steps {
  margin-bottom: 30px;
}

.step {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--border-color);
}

.step:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.step h3 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.option-quote {
  background-color: var(--light-bg);
  padding: 25px;
  border-radius: 10px;
  position: relative;
  margin-top: 40px;
}

.option-quote i {
  font-size: 2rem;
  color: var(--primary-color);
  opacity: 0.2;
  position: absolute;
  top: 15px;
  left: 15px;
}

.option-quote blockquote {
  font-style: italic;
  font-size: 1.2rem;
  margin-bottom: 15px;
  padding-left: 30px;
}

.quote-author {
  text-align: right;
  font-weight: 600;
  color: var(--primary-color);
}

/* Private Colleges Table */
.private-colleges-table {
  margin-top: 30px;
}

.private-colleges-table h3 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.table-container {
  overflow-x: auto;
  margin-bottom: 15px;
}

.private-colleges-table table {
  width: 100%;
  border-collapse: collapse;
  box-shadow: var(--shadow);
  border-radius: 10px;
  overflow: hidden;
}

.private-colleges-table th,
.private-colleges-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.private-colleges-table th {
  background-color: var(--primary-color);
  color: var(--light-text);
  font-weight: 600;
}

.private-colleges-table tr:nth-child(even) {
  background-color: var(--light-bg);
}

.private-colleges-table tr:hover {
  background-color: rgba(0, 112, 192, 0.05);
}

.table-note {
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
}

/* Study Abroad Section */
.study-abroad-comparison {
  margin-top: 30px;
  margin-bottom: 30px;
}

.study-abroad-comparison h3 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.countries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.country-card {
  background-color: var(--light-bg);
  border-radius: 10px;
  padding: 20px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.country-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.country-flag {
  width: 80px;
  height: 50px;
  margin-bottom: 15px;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.country-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.country-card h4 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.country-card ul {
  list-style: none;
  padding: 0;
}

.country-card ul li {
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.fmge-info {
  background-color: #fff4e5;
  border-left: 4px solid #ffa500;
  padding: 20px;
  border-radius: 0 10px 10px 0;
  margin-top: 30px;
}

.fmge-info h3 {
  font-size: 1.3rem;
  color: #e67e00;
  margin-bottom: 15px;
}

.fmge-info ul {
  padding-left: 20px;
}

.fmge-info ul li {
  margin-bottom: 10px;
}

/* Alternative Fields Section */
.alternative-fields-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.field-card {
  background-color: var(--light-bg);
  border-radius: 10px;
  padding: 25px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.field-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.field-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: var(--light-text);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.field-card h3 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.field-card p {
  margin-bottom: 15px;
  color: #666;
}

.field-card ul {
  list-style: none;
  padding: 0;
  background-color: #fff;
  border-radius: 8px;
  padding: 15px;
}

.field-card ul li {
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.alternative-paths {
  margin-top: 40px;
}

.alternative-paths h3 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.paths-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.path-item {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.path-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.path-item h4 {
  font-size: 1.1rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

/* Guidance Section */
.guidance-cta {
  background-color: var(--light-bg);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  margin-top: 30px;
}

.guidance-cta h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.guidance-cta p {
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Success Stories Section */
.success-stories {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.stories-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding: 20px 0;
  margin: -20px 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Firefox */
}

.stories-slider::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge */
}

.story-card {
  flex: 0 0 calc(33.333% - 20px);
  min-width: 300px;
  background-color: #fff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
}

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.story-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 3px solid var(--primary-color);
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-content {
  text-align: center;
}

.story-content h3 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.story-meta {
  font-size: 0.9rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-weight: 600;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  background-color: rgba(0, 112, 192, 0.05);
}

.faq-question h3 {
  font-size: 1.1rem;
  color: var(--primary-color);
  margin: 0;
}

.faq-toggle {
  color: var(--primary-color);
  transition: var(--transition);
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px;
  max-height: 1000px;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(rgba(0, 112, 192, 0.9), rgba(0, 112, 192, 0.9)),
    url("https://via.placeholder.com/1920x500?text=Medical+Education") no-repeat center center / cover;
  color: var(--light-text);
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 30px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .intro-content {
    flex-direction: column;
  }

  .intro-image {
    order: -1;
    margin-bottom: 30px;
  }

  .option-header {
    padding: 20px;
  }

  .option-header h2 {
    font-size: 1.5rem;
  }

  .option-content {
    padding: 20px;
  }

  .alternative-fields-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }

  .story-card {
    flex: 0 0 calc(50% - 15px);
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .key-points {
    flex-direction: column;
  }

  .countries-grid {
    grid-template-columns: 1fr;
  }

  .alternative-fields-grid {
    grid-template-columns: 1fr;
  }

  .paths-grid {
    grid-template-columns: 1fr;
  }

  .story-card {
    flex: 0 0 calc(100% - 30px);
  }

  .cta-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .option-header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .private-colleges-table th,
  .private-colleges-table td {
    padding: 10px 8px;
    font-size: 0.85rem;
  }

  .cta-content h2 {
    font-size: 1.8rem;
  }

  .cta-content p {
    font-size: 1rem;
  }
}

