

/* Section Styles */
/* Desktop Tabs Styles */
.feature-desktop-nav {
  margin-bottom: 2rem;
}

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

.feature-nav-item {
  flex: 0 0 auto;
}

.feature-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;
}

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

.feature-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;
}

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

/* Mobile Carousel Styles */
.feature-mobile-carousel {
  margin-bottom: var(--space-8);
}

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

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

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

.carousel-slide {
  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;
  
}

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

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

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

/* Navigation Buttons */
.carousel-nav {
  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);
}

.carousel-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed !important;
}

/* Carousel Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: var(--space-4);
}

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

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

/* Tab Content Styles */
.features .tab-content {
  background: white;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.features .content-section {
  padding: 2rem;
}

.features .content-section h2 {
  background-image: var(--gradient-text);
  background-clip: text;
  color: transparent !important;
}

.features .content-section ul {
  list-style: none;
  padding: 0;
}

.features .content-section ul li {
  padding: 0.5rem 0;
  position: relative;
  display: flex;
  align-items: center;
}

/* Overview */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.video-box {
  position: relative;
  width: 90%;
  max-width: 800px;
  background: #000;
}

.video-box iframe {
  width: 100%;
  height: 450px;
  display: block;
}

.close-btn {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary-color);
  color: var(--white);
  border-radius: 50%;
  font-weight: var(--font-semibold);
  cursor: pointer;
  z-index: 1001;
}

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

.features .stat-card {
  background: var(--gray-50);
  padding: 1.5rem;
  border-radius: var(--rounded);
  text-align: center;
  border-left: 4px solid var(--primary-color);
}

.features .stat-card i {
  font-size: 35px;
  background-image: var(--bg-gradient);
  background-clip: text;
  color: transparent !important;
}

.features .stat-card h4 {
  color: var(--gray-800);
}

/* Career Path */
.career-path {
  margin-top: 1.5rem;
}

.career-level {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #df451d;
}

.career-level h4 {
  color: #df451d;
  margin-bottom: var(--space-4);
}

/* Responsive Width */
.responsive-width {
  width: 100%;
}

/* Road Map */
.road-map {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  height: 100%;
  width: 100%;
  padding: 0 var(--space-4);
}

.salary-card {
  padding: 2rem 3rem;
  text-align: center;
}

.roles-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: var(--space-5);
}

.role-item {
  background-color: var(--gray-50);
  padding: 0.5rem var(--space-4);
  border-radius: var(--rounded);
  color: var(--gray-700);
  border: 1px solid var(--gray-300);
}

/* Job Gurantee Feature Card */
.feature-card {
  padding: 0 !important;
}

.feature-image {
  position: relative;
}

.feature-image img {
  border-radius: 12px 12px 0 0;
  width: 100%;
  height: auto;
}

.feature-header {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  background: var(--primary-color);
  color: var(--white);
  padding: 8px;
  width: 100%;
  max-width: 250px;
  font-weight: 600;
  border-radius: var(--rounded-lg);
}

.feature-content {
  padding: 25px 15px;
}

.feature-list li {
  color: var(--gray-700);
}

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

/* Responsive Design */
@media (max-width: 1199px) {
  /* Road Map */
  .salary-card {
    padding: var(--space-4);
  }
}

@media (max-width: 991px) {
  /* Road Map */
  .salary-card {
    padding: 0;
  }
}

@media (max-width: 767px) {
  .carousel-wrapper {
    max-width: 350px;
  }

  .carousel-slide {
    padding: var(--space-4) 0.4rem;
  }

  .carousel-slide i {
    font-size: 2rem;
  }

  .carousel-nav {
    width: 40px;
    height: 40px;
    margin: 0 0.5rem;
  }

  .features .content-section {
    padding: 1.5rem;
  }

  .fs-32 {
    font-size: 24px;
  }

  /* Job Gurantee Feature Card */
  .feature-content {
    padding: 20px 15px;
  }
}

@media (max-width: 575px) {
  .carousel-wrapper {
    max-width: 200px;
  }

  .carousel-slide {
    padding: 0.8rem 0.3rem;
  }

  .features .content-section {
    padding: 1.5rem var(--space-4);
  }

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

@media (min-width: 992px) {
  .responsive-width {
    width: 75%;
  }
}

/* Animation for tab content */
.tab-pane {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.tab-pane.active {
  opacity: 1;
  transform: translateY(0);
}

/* Touch/Swipe Support */
.carousel-track {
  touch-action: pan-y;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .carousel-track,
  .carousel-slide,
  .carousel-nav,
  .dot,
  .tab-pane {
    transition: none;
  }
}