/* Desktop Navigation */
.career-growth-desktop-nav {
  display: none;
  margin-bottom: 2rem;
}

.career-growth-nav-list {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  list-style: none;
  flex-wrap: wrap;
}

.career-growth-nav-item {
  flex: 0 0 auto;
}

.career-growth-nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem var(--space-4);
  background: white;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  min-height: 120px;
  min-width: 140px;
  cursor: pointer;
}

.career-growth-nav-link:hover,
.career-growth-nav-link:active,
.career-growth-nav-link.career-growth-active {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

.career-growth-nav-link i {
  font-size: 35px;
  line-height: 1.2;
  margin-bottom: var(--space-4);
  background-image: var(--bg-gradient);
  background-clip: text;
  color: transparent !important;
}

.career-growth-nav-link h5 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

/* Mobile Carousel */
.career-growth-mobile-carousel {
  margin-bottom: 2rem;
}

.career-growth-carousel-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 var(--space-4);
}

.career-growth-carousel-viewport {
  width: 100%;
  max-width: 500px;
  overflow: hidden;
  position: relative;
  border-radius: 12px;
}

.career-growth-carousel-track {
  display: flex;
  transition: transform 0.4s ease;
  width: 500%;
}

.career-growth-carousel-item {
  flex: 0 0 20%;
  text-align: center;
  padding: var(--space-4) 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.career-growth-carousel-item:hover,
.career-growth-item-active {
  background: var(--gray-50);
}

.career-growth-carousel-item i {
  font-size: 35px;
  line-height: 1;
  margin-bottom: 10px;
  display: block;
  background-image: var(--bg-gradient);
  background-clip: text;
  color: transparent !important;
}

.career-growth-carousel-item h5 {
  margin: 0;
  font-weight: 600;
  line-height: 1;
}

/* Carousel Navigation Buttons */
.career-growth-carousel-btn {
  background: var(--primary-color);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer !important;
  transition: all 0.3s ease;
  font-size: 16px;
  line-height: 1;
  margin: 0 var(--space-4);
}

.career-growth-carousel-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed !important;
  
}

/* Carousel Indicators */
.career-growth-indicators {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: var(--space-4);
}

.career-growth-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-50);
  cursor: pointer;
  transition: all 0.3s ease;
}

.career-growth-indicator:hover,
.career-growth-indicator-active {
  background: var(--gray-500);
  transform: scale(1.03);
}

/* Content Wrapper */
.career-growth-content-wrapper {
  background: white;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.career-growth-content-panel {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.career-growth-content-panel.career-growth-panel-active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.career-growth-content-inner {
  padding: 2rem;
}

.career-growth-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.career-growth-centered {
  max-width: 800px;
  margin: 0 auto;
}

/* Text Content */
.career-growth-text-content h3 {
  color: var(--primary-color);
  margin-bottom: var(--space-4);
  font-size: 1.5rem;
}

.career-growth-text-content p {
  margin-bottom: var(--space-4);
  color: #666;
  line-height: 1.6;
}

.career-growth-text-content h5 {
  color: #333;
  margin-bottom: var(--space-4);
  font-weight: 600;
}

/* Lists */
.career-growth-list,
.career-growth-requirements-list {
  list-style: none;
  padding: 0;
}

.career-growth-list li,
.career-growth-requirements-list li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.career-growth-list li:before,
.career-growth-requirements-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* Action Buttons */
.career-growth-actions {
  display: flex;
  gap: var(--space-4);
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.career-growth-btn-primary,
.career-growth-btn-secondary {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.career-growth-btn-primary {
  background: var(--primary-color);
  color: white;
}

.career-growth-btn-primary:hover {
  background: #2563eb;
  color: white;
  text-decoration: none;
}

.career-growth-btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.career-growth-btn-secondary:hover {
  background: var(--primary-color);
  color: white;
  text-decoration: none;
}

/* Images */
.career-growth-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Stats Grid */
.career-growth-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--space-4);
  margin-top: 1.5rem;
}

.career-growth-stat-card {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  border-left: 4px solid var(--primary-color);
}

.career-growth-stat-card i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.career-growth-stat-card h4 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin: 0.5rem 0;
}

.career-growth-stat-card p {
  margin: 0;
  color: #666;
}

/* Salary Highlight */
.career-growth-salary-highlight {
  text-align: center;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 8px;
}

.career-growth-salary-highlight h2 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.career-growth-salary-highlight h6 {
  color: #666;
  margin-bottom: var(--space-4);
}

.career-growth-salary-highlight h3 {
  color: #df451d;
  font-weight: 600;
  font-size: 2rem;
}

/* Career Progression Grid */
.career-growth-progression-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.career-growth-level-card {
  padding: 2rem;
  text-align: center;
  background: #f8f9fa;
  border-radius: 8px;
  border-top: 4px solid var(--primary-color);
}

.career-growth-salary {
  font-weight: 600;
  color: #df451d;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.career-growth-level-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
}

.career-growth-role-category {
  color: #666;
  font-weight: 600;
  margin-bottom: var(--space-4);
}

.career-growth-roles {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.career-growth-role {
  background: white;
  padding: 0.75rem var(--space-4);
  border-radius: 8px;
  color: #666;
  font-weight: 500;
  border: 1px solid #ddd;
}

/* Opportunities Grid */
.career-growth-opportunities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.career-growth-opportunity-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: white;
}

.career-growth-opportunity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.career-growth-opportunity-image {
  position: relative;
}

.career-growth-opportunity-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.career-growth-opportunity-title {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #1e3a8a, var(--primary-color));
  color: white;
  padding: 10px 15px;
  font-weight: bold;
  margin: 0;
  width: calc(100% - 2rem);
  max-width: 250px;
  text-align: center;
  border-radius: 4px;
}

.career-growth-opportunity-content {
  padding: 2rem 1.5rem 1.5rem;
}

.career-growth-opportunity-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.career-growth-opportunity-list li {
  padding: 0.25rem 0;
  color: #666;
  position: relative;
  padding-left: var(--space-4);
}

.career-growth-opportunity-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* Responsive Design */
@media (min-width: 768px) {
  .career-growth-content-grid {
    grid-template-columns: 2fr 1fr;
  }
  
  .career-growth-actions {
    flex-wrap: nowrap;
  }
}

@media (min-width: 992px) {
  .career-growth-desktop-nav {
    display: block;
  }
  
  .career-growth-mobile-carousel {
    display: none;
  }
  
  .career-growth-centered {
    grid-template-columns: 2fr 1fr;
  }
}

@media (max-width: 767px) {
  .career-growth-content-inner {
    padding: 1.5rem;
  }
  
  .career-growth-carousel-viewport {
    max-width: 350px;
  }
  
  .career-growth-carousel-item {
    padding: var(--space-4) 0.4rem;
  }

  .career-growth-carousel-btn {
    width: 40px;
    height: 40px;
    margin: 0 0.5rem;
  }
}

@media (max-width: 575px) {
  .career-growth-carousel-viewport {
    max-width: 200px;
  }
  
  .career-growth-carousel-item {
    padding: 0.8rem 0.3rem;
  }
  
  .career-growth-content-inner {
    padding: var(--space-4);
  }
  
  .career-growth-stats-grid {
    grid-template-columns: 1fr;
  }
  
  .career-growth-progression-grid {
    grid-template-columns: 1fr;
  }
  
  .career-growth-opportunities-grid {
    grid-template-columns: 1fr;
  }
}

/* Focus states for accessibility */
.career-growth-carousel-btn:focus,
.career-growth-carousel-item:focus,
.career-growth-indicator:focus,
.career-growth-nav-link:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .career-growth-carousel-track,
  .career-growth-carousel-item,
  .career-growth-carousel-btn,
  .career-growth-indicator,
  .career-growth-content-panel,
  .career-growth-nav-link {
    transition: none;
  }
}

/* Learning Format Tabs Styles */
.learning-format-tabs {
  width: 100%;
}

.learning-format-tab-nav {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  background: var(--gray-50);
  border-radius: var(--rounded);
  padding: 5px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.learning-format-tab-btn {
  flex: 1;
  padding: 10px 15px;
  border: none;
  background: transparent;
  color: var(--gray-700);
  border-radius: var(--rounded);
  font-size: var(--text-sm);
  transition: all 0.3s ease;
}

.learning-format-tab-btn:hover {
  color: var(--primary-color);
  text-shadow: 0 0 1px var(--primary-color);
}

.learning-format-tab-btn.learning-format-active {
  background: var(--primary-color);
  color: var(--white);
}

.learning-format-tab-content {
  display: none;
}

.learning-format-tab-content.learning-format-tab-active {
  display: block;
}

.learning-format-duration {
  margin-bottom: var(--space-8);
}

.learning-format-note {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  gap: 8px;
}

.learning-format-note i {
  color: var(--primary-color);
}

.learning-format-sections {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 1050px;
  margin: 0 auto;
}

.learning-format-section {
  background: white;
  border: 1px solid var(--gray-300);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.learning-format-section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--space-2);
}

.learning-format-section-header i {
  font-size: var(--text-xl); 
  display: flex;
  background-image: var(--bg-gradient);
    background-clip: text;
    color: transparent;
}

.learning-format-section-subtitle {
  font-size: var(--text-xs);
  color: var(--gray-500);
  font-weight: var(--font-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: var(--space-2);
}

.learning-format-section p {
  margin: 0;
}

/* Schedule Layout for Flexible and Self-Paced */
.learning-format-schedule {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 2rem;
  max-width: 1030px;
  margin: 0 auto;
}

.learning-format-schedule-column .learning-format-title {
  text-align: center;
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid var(--gray-300);
}

/* Responsive Design */
@media (max-width: 768px) {
  .learning-format-schedule {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .learning-format-tab-nav {
    max-width: 100%;
    margin-bottom: 1.5rem;
  }

  .learning-format-note {
    align-items: unset;
  }

  .learning-format-section {
    padding: var(--space-4);
  }
}

@media (max-width: 576px) {
  .learning-format-tab-btn {
    padding: 8px 12px;
  }
}


/* Curriculum Vertical Tabs Styles */
.curriculum-container,
.career-growth-container {
  display: flex;
  gap: var(--space-8);
}

.curriculum-sidebar,
.career-growth-sidebar {
  flex: 0 0 350px; 
  border-radius: var(--rounded-lg);
  height: fit-content;
}

.curriculum-tabs,
.career-growth-tabs {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.curriculum-tab,
.career-growth-tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: var(--space-3) var(--space-4);
  background: transparent;
  border: none;
  border-radius: var(--rounded);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  position: relative;
  font-weight: var(--font-semibold);
}

.curriculum-tab:hover,
.career-growth:hover,
.curriculum-tab.curriculum-tab-active,
.career-growth-tab.career-growth-tab-active {
  background: var(--gray-50);
}

.curriculum-notification, .career-growth-notification {
   
    color: var(--secondary-color);
    font-size: 20px;
   
}
.curriculum-hidden,
.career-growth-hidden {
  display: none;
}

.curriculum-actions {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
}

.curriculum-content,
.career-growth-content {
  flex: 1;
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.curriculum-content-panel,
.career-growth-content {
  display: none;
}

.curriculum-content-panel.curriculum-content-active,
.career-growth-content.career-growth-content-active {
  display: block;
  width: 100%;
}

.curriculum-header,
.career-growth-header {
  margin-bottom: 1.5rem;
}

.curriculum-header h4,
.career-growth-header h4 {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
}

.curriculum-badge, .career-growth-badge {
    background: #28a745;
    color: var(--white);
    border-radius: var(--rounded-sm);
    font-size: 16px;
    line-height: var(--leading-base);
    font-weight: var(--font-semibold);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 25px;
    margin-top: -10px;
}

.curriculum-description,
.career-growth-description {
  margin-bottom: 2rem;
}

.curriculum-section,
.career-growth-section {
  margin-bottom: var(--space-8);
}

.curriculum-section:last-child,
.career-growth-section:last-child {
  margin-bottom: 0;
}

.curriculum-checklist,
.career-growth-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.curriculum-checklist li,
.career-growth-checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
}

.curriculum-checklist i,
.career-growth-checklist i {
  color: var(--primary-color);
}

.curriculum-tags,
.career-growth-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.curriculum-tag,
.career-growth-tag {
  background: var(--gray-50);
  color: var(--primary-color);
  padding: 0.5rem var(--space-4);
  border-radius: var(--rounded-lg);
  font-size: var(--text-sm);
  border: 1px solid var(--gray-300);
}

/* Desktop/Mobile Layout Control */
.curriculum-desktop-only,
.career-growth-desktop-only {
  display: flex;
}

.curriculum-mobile-accordion,
.career-growth-mobile-accordion {
  display: none;
}

@media (max-width: 991px) {
  .curriculum-desktop-only,
  .career-growth-desktop-only {
    display: none;
  }

  .curriculum-mobile-accordion,
  .career-growth-mobile-accordion {
    display: block;
  }

  .curriculum-container,
  .career-growth-container {
    flex-direction: column;
    gap: 0;
  }
}

/* Mobile Accordion Styles */
.curriculum-accordion-item,
.career-growth-accordion-item {
  margin-bottom: 0.5rem;
}

.curriculum-accordion-header,
.career-growth-accordion-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: var(--space-4);
  background: white;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  font-weight: var(--font-semibold);
}

.curriculum-accordion-active,
.career-growth-accordion-active {
  background: var(--primary-color);
  color: var(--white);
  border-bottom: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.curriculum-accordion-icon,
.career-growth-accordion-icon {
  margin-left: auto;
  transition: transform 0.3s ease;
}

.curriculum-accordion-header.curriculum-accordion-active .curriculum-accordion-icon,
.career-growth-accordion-header.career-growth-accordion-active .career-growth-accordion-icon {
  transform: rotate(180deg);
}

.curriculum-accordion-content,
.career-growth-accordion-content {
  display: none;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-top: none;
  border-radius: 0 0 8px 8px;
  padding: var(--space-4);
  margin-bottom: 0.5rem;
}

.curriculum-accordion-content.curriculum-accordion-open,
.career-growth-accordion-content.career-growth-accordion-open {
  display: block;
}

.curriculum-hidden-mobile,
.career-growth-hidden-mobile {
  display: none;
}

.curriculum-mobile-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: var(--space-4);
}

/* Mobile Accordion Styles */
@media (max-width: 991px) {
  .curriculum-sidebar,
  .career-growth-sidebar {
    display: none;
  }

  .curriculum-content,
  .career-growth-content {
    display: none;
  }

  .curriculum-container,
  .career-growth-container {
    flex-direction: column;
    gap: 0;
  }

  .curriculum-sidebar,
  .career-growth-sidebar {
    flex: none;
    background: transparent;
    padding: 0;
    border-radius: 0;
  }

  .curriculum-tabs,
  .career-growth-tabs {
    display: block;
  }

  .curriculum-tab,
  .career-growth-tab {
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    margin-bottom: 0.5rem;
    padding: var(--space-4);
    position: relative;
  }

  .curriculum-tab::after,
  .career-growth-tab::after {
    content: "\F282";
    font-family: "bootstrap-icons";
    position: absolute;
    right: var(--space-4);
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
  }

  .curriculum-tab.curriculum-tab-active::after,
  .career-growth-tab.career-growth-tab-active::after {
    transform: translateY(-50%) rotate(180deg);
  }

  .curriculum-content,
  .career-growth-content {
    padding: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
  }

  .curriculum-content-panel,
  .career-growth-content {
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-top: none;
    border-radius: 0 0 8px 8px;
    padding: 1.5rem;
    margin-bottom: 0.5rem;
    margin-top: -0.5rem;
  }

  .curriculum-actions {
    flex-direction: row;
    margin-top: var(--space-4);
  }

  .curriculum-hidden,
  .career-growth-hidden {
    display: flex;
  }
}

@media (max-width: 576px) {
  .curriculum-actions {
    flex-direction: column;
  }

  .curriculum-header h3,
  .career-growth-header h3 {
    font-size: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .curriculum-tags,
  .career-growth-tags {
    gap: 0.25rem;
  }

  .curriculum-tag,
  .career-growth-tag {
    padding: 0.4rem 0.8rem;
  }
}

/* Projects Section Styles */
.projects-swiper {
  width: 100%;
}

.projects-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.project-card {
  background: var(--gray-50);
  border-radius: 12px;
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--gray-300);
}

.project-number {
  display: inline-block;
  font-size: var(--text-xs);
  color: var(--gray-500);
  margin-bottom: 0.5rem;
}

.project-description {
  margin: 0;
}

/* Swiper Customization */
.projects-pagination {
  bottom: 20px !important;
}

.projects-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #ddd;
  opacity: 1;
  margin: 0 6px;
  transition: all 0.3s ease;
}

.projects-pagination .swiper-pagination-bullet-active {
  background: var(--primary-color);
  transform: scale(1.2);
}

.projects-next,
.projects-prev {
  color: var(--primary-color);
  background: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.projects-next:hover,
.projects-prev:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: scale(1.1);
}

.projects-next::after,
.projects-prev::after {
  font-size: 16px;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .project-card {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .project-card {
    padding: 1.25rem;
  }

  .projects-next,
  .projects-prev {
    width: 36px;
    height: 36px;
  }

  .projects-next::after,
  .projects-prev::after {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .project-card {
    padding: var(--space-4);
  }

  .projects-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 4px;
  }
}

/* Job Placement Section Styles */
.job-placement-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.job-placement-image {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.job-placement-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-4);
}

/* Job Modal Styles */
.job-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 20px;
  backdrop-filter: blur(4px);
}

.job-modal-overlay.active {
  display: flex;
}

.job-modal {
  background: var(--white);
  border-radius: 12px;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.job-modal-header {
  padding: 2rem 2rem var(--space-4);
  border-bottom: 1px solid var(--gray-300);
}

.job-modal-header h3 {
  font-size: 20px;
  margin: 0 0 0.5rem;
}

.job-level {
  margin: 0;
}

.job-modal-content {
  padding: 2rem;
}

.job-description {
  margin-bottom: 2rem;
}

.job-description p {
  margin: 0;
}

.job-section {
  margin-bottom: 2rem;
}

.job-section:last-child {
  margin-bottom: 0;
}

.job-section h4 {
  font-size: 18px;
  margin-bottom: var(--space-4);
}

.job-list {
  padding-left: 1.125rem;
  margin: 0;
}

.job-list li {
  margin-bottom: 0.75rem;
}

.job-list li:last-child {
  margin-bottom: 0;
}

.job-modal-footer {
  padding: var(--space-4) 2rem 2rem;
  display: flex;
  justify-content: flex-end;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .job-placement-content {
    gap: 2rem;
  }

  .job-placement-content .job-placement-image img {
    width: 100%;
    height: auto;
  }

  .job-placement-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .job-placement-content {
    grid-template-columns: 1fr;
    margin-bottom: 2rem;
  }

  .job-placement-features {
    grid-template-columns: 1fr;
  }

  .job-modal {
    margin: 10px;
    max-height: 85vh;
  }

  .job-modal-header,
  .job-modal-content {
    padding: 1.5rem;
  }

  .job-modal-footer {
    padding: var(--space-4) 1.5rem 1.5rem;
  }
}

@media (max-width: 576px) {
  .job-modal-header h3 {
    font-size: 18px;
  }

  .job-level {
    font-size: 14px;
  }

  .job-modal-header,
  .job-modal-content {
    padding: 1.25rem;
  }

  .job-modal-footer {
    padding: var(--space-4) 1.25rem 1.25rem;
  }
}

/* Modal scroll styling */
.job-modal::-webkit-scrollbar {
  width: 6px;
}

.job-modal::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.job-modal::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}

.job-modal::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/* Mentorship Section Styles */
.mentorship-description {
  max-width: 800px;
  margin: 0 auto;
}

.mentorship-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-8);
}

.mentorship-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 12px;
  padding: var(--space-4);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.mentorship-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--gray-700);
}

.mentorship-card p {
  margin: 0;
}

.mentorship-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mentorship-benefits li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.25rem 0;
}

.mentorship-benefits li:first-child {
  padding-top: 0;
}

.mentorship-benefits li:last-child {
  padding-bottom: 0;
}

.mentorship-benefits i {
  color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .mentorship-cards {
    gap: 1.5rem;
  }

  .mentorship-card {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .mentorship-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 576px) {
  .mentorship-card {
    padding: 1.25rem;
  }
}