.slideshow {
  position: relative;
  height: 450px;
  overflow: hidden;
}

.slide-img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  transition: opacity 1s ease-in-out;
}

.active-slide {
  opacity: 1;
}

.workshop-section-main {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1.5rem;
}

.workship-section-main h1 {
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #ffffff;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.7);
  margin: 0;
}

.workship-section-main p {
  max-width: 900px;
  font-size: 1.1rem;
  color: #e5e7eb;
  margin-top: 0.8rem;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.65);
}


.dots {
  position: absolute;
  bottom: 12px;
  width: 100%;
  text-align: center;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 4px;
  background: #d1d5db;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.dot.active {
  background: #38bdf8;
}

.container {
  max-width: 1200px;
  margin: 2rem auto 3rem;
  padding: 0 1.5rem;
}

.section-title {
  text-align: center;
  font-size: 1.6rem;
  margin: 2rem 0 2.5rem;
  color: #ffffff;
  letter-spacing: 1px;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.6);
}

.workshop-section {
  position: relative;
}

.workshop-cards {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding: 1.5rem 0 2rem;
  scroll-behavior: smooth;
  scrollbar-width: none;
}


.workshop-cards::-webkit-scrollbar {
  display: none;
}

.workshop-box {
  background: rgba(17, 24, 39, 0.7);
  padding: 2rem;
  border-radius: 22px;
  width: 340px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border 0.35s;
  flex-shrink: 0;
}

.workshop-box:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(56, 189, 248, 0.45);
}

.workshop-box.upcoming {
  border-left: 6px solid #38bdf8;
}

.workshop-box h3 {
  font-size: 1.4rem;
  color: #fff;
  margin-top: 0;
}

.workshop-box .desc {
  color: #cbd5e1;
  margin: 1rem 0;
}

.workshop-box .date {
  color: #9ca3af;
  font-size: 0.9rem;
}

.view-link {
  display: inline-block;
  margin-top: 1rem;
  color: #38bdf8;
  text-decoration: none;
  font-weight: 600;
}

.scroll-btn {
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 0.4rem 0.8rem;
  cursor: pointer;
  border-radius: 12px;
  z-index: 20;
  transition: background 0.2s ease;
}

.scroll-btn:hover {
  background: rgba(0, 0, 0, 0.7);
}

.left-btn {
  left: 10px;
}

.right-btn {
  right: 10px;
}


.gallery {
  margin-top: 3rem;
  overflow: hidden;
}

.gallery-scroll-container {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}


.gallery-scroll-track {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  width: max-content;
}

.gallery-scroll-track img {
  height: 220px;
  width: auto;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.gallery-scroll-track img:hover {
  transform: scale(1.05);
}


.gallery h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #93c5fd;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.2rem;
}

.image-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #1f2937;
  transition: transform 0.25s;
}

.image-grid img:hover {
  transform: scale(1.04);
}


@media (max-width: 768px) {
  .workship-section-main h1 {
    font-size: 2.4rem;
  }

  .workship-section-main p {
    font-size: 1rem;
  }

  .scroll-btn {
    display: none;
  }
}

.section-banner {
  width: 100%;
  padding: 2.2rem 0;
  text-align: center;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  color: #ffffff;
  background: linear-gradient(90deg, rgba(56, 150, 245, 0.55), rgba(80, 165, 255, 0.65), rgba(56, 150, 245, 0.55));
  border-radius: 6px;
  margin: 0rem 0 4rem 0;
}
