.tut-tabs .tut-link {
  font-size: 18px;
  color: #333;
  padding: 10px 15px;
  text-decoration: none;
}

.tut-tabs .tut-link.active {
  color: #ff9800;
  font-weight: bold;
  border-bottom: 2px solid #ff9800;
  text-decoration: none;
}

.tutorials-container {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

.tutorials-slider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 15px;
  padding: 10px 0;
  scrollbar-width: none; /* Hide scrollbar for Firefox */
}

.tutorials-slider::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Chrome, Safari */
}

.tutorials-card {
  min-width: 300px;
  flex: 0 0 auto;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  height: 300px;
  background: #fff;
}

.tutorials-btn-wrapper {
  text-align: center;
  margin-top: 15px;
}

.tutorials-scroll-btn {
  background: #ff9800;
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 16px;
  margin: 0 10px;
  transition: 0.3s;
}

.tutorials-scroll-btn:hover {
  background: #e68900;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .tutorials-scroll-btn {
      padding: 8px 12px;
      font-size: 14px;
  }
  .tutorials-card {
      min-width: 250px;
  }
}
.jumbotron {
  height: 100vh;
}

.accordion-container {
  padding: 40px 0;
}
.accordion img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .accordion img {
    margin-bottom: 20px; /* Adds spacing when stacked */
  }
}
.tutorials-nav{
  gap: 13px;
}

