.workshop-highlight {
background:
    linear-gradient(90deg, rgba(255, 204, 102, 0.08), transparent 25%),
    linear-gradient(270deg, rgba(255, 204, 102, 0.08), transparent 25%),
    #020617;
padding: 30px 30px 80px;
  color: #ffffff;
  text-align: center;

}

#highlight {
  text-align: center;
}

.workshop-content {
  max-width: 900px;
  margin: auto;
  text-align:justify;
}

.workshop-highlight h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 700;
}

.workshop-highlight p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 15px;
  opacity: 0.95;
}

/* ================= Testimonials ================= */
.wrk {
   background:
    radial-gradient(1200px circle at 10% 20%, rgba(91, 33, 182, 0.25), transparent 40%),
    radial-gradient(1000px circle at 90% 30%, rgba(14, 165, 233, 0.18), transparent 45%),
    radial-gradient(800px circle at 50% 80%, rgba(255, 204, 102, 0.12), transparent 40%),
    linear-gradient(135deg, #020617, #020617, #020617);
  padding: 80px 20px;
    border-radius: 16px;
}

.testimonial-slider {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.testimonial-card {
  min-width: 300px;
background: linear-gradient(
    90deg,
    #0f4c81,   /* dark tech blue */
    #d97706    /* burnt orange */
  );
  padding: 25px;
  border-radius: 16px;
  color: #ddd;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.6;
}

.testimonial-card h4 {
  margin-top: 15px;
  font-size: 14px;
  color: #f5c542;
 }
 
 
 /* ================= Common Section ================= */
.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: orange;
}


/* ===== Gallery Section ===== */
.stacked-gallery {
  background: #0b0b0b;
  padding: 90px 20px;
  text-align: center;
}

.section-title.dark {
  color: #ffcc66;
  font-size: 34px;
  margin-bottom: 50px;
}

/* ===== Wrapper ===== */
.gallery-wrapper {
  position: relative;
  max-width: 900px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== Track ===== */
.gallery-track {
  position: relative;
  width: 100%;
  height: 380px;
}

/* ===== Images ===== */
.gallery-img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 260px;
  height: 360px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.45);
  transform: translate(-50%, -50%) scale(0.85);
  opacity: 0;
  transition: all 0.5s ease;
  
}

/* Center image */
.gallery-img.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  z-index: 3;
}

/* Left image */
.gallery-img.prev {
  opacity: 0.6;
  transform: translate(-150%, -50%) scale(0.85);
  z-index: 2;
}

/* Right image */
.gallery-img.next {
  opacity: 0.6;
  transform: translate(50%, -50%) scale(0.85);
  z-index: 2;
}

/* ===== Navigation ===== */
.nav-btn {
  position: absolute;
  background: rgba(255,255,255,0.08);
  border: none;
  color: #fff;
  font-size: 22px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background 0.3s;
  z-index: 10;
}

.nav-btn:hover {
  background: rgba(255,255,255,0.18);
}

.nav-btn.left { left: -60px; }
.nav-btn.right { right: -60px; }

/* ===== Mobile ===== */
@media (max-width: 768px) {
  .gallery-img {
    width: 220px;
    height: 300px;
  }

  .nav-btn.left { left: 10px; }
  .nav-btn.right { right: 10px; }
}


/* ===== Workshop Header ===== */
.workshop-header {
  text-align: center;
  margin-bottom: 50px;
  
}


.workshop-header h2 {
  font-size: 38px;
  font-weight: 800;
  color: #ffffff;
}

/* ===== Row Layout ===== */
.workshop-row {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr;
  gap: 50px;
  align-items: center;
}

.workshop-row {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr;
  gap: 50px;
  align-items: center;
}

/* LEFT TEXT */
.workshop-text {
  color: #e6e6e6;
  font-size: 18px;
  line-height: 1.7;
  text-align: justify;
}

/* RIGHT GALLERY */
.workshop-gallery {
  text-align: center;
}

@media (max-width: 992px) {
  .workshop-row {
    grid-template-columns: 1fr;
  }

  .workshop-text {
    text-align: left;
  }
}


/* ===== Main Workshop Heading ===== */
.workshop-main-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;               /* ⬅️ REMOVE TOP GAP */
  padding-top: 0;         /* ⬅️ NO PUSH DOWN */
  margin-bottom: 20px;
}

.workshop-main-heading h1 {
  position: relative;
  display: inline-block;
  font-size: 42px;
  font-weight: 800;
  letter-spacing: 1px;
  padding-bottom: 18px;

  /* Gradient text */
  background: linear-gradient(
    90deg,
    #38bdf8,   /* blue */
    #d97706    /* darker orange */
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}


.workshop-main-heading h1 span {
  color: #ffcc66;
}


.workshop-main-heading h1::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 70%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffcc66, transparent);
  box-shadow: 0 0 8px #ffcc66, 0 0 18px rgba(255, 204, 102, 0.6);
}



@media (max-width: 560px) {

  /* ---------- MAIN SECTION ---------- */
  .workshop-highlight {
    padding: 14px 6px 32px;   /* tighter overall spacing */
  }

  /* ---------- MAIN HEADING ---------- */
  .workshop-main-heading {
    margin-bottom: 2px;      /* reduce section gap */
  }

  .workshop-main-heading h1 {
    font-size: 18px;         /* 👈 smaller heading */
    line-height: 1.15;
    padding-bottom: 6px;
    margin-bottom: 0;        /* remove extra margin */
    margin-top: 0px;
  }

  .workshop-main-heading h1::after {
    width: 50%;
  }

  /* ---------- NEXT SECTION ---------- */
  .ctv-workshop {
    padding-top: 4px;        /* minimal gap */
    margin-top: 0;
  }

  /* ---------- LEFT TEXT SECTION ---------- */
  .ctv-left h2 {
    font-size: 15px !important;
    line-height: 1.2;
    margin-bottom: 6px;
  }

  .ctv-left p {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 8px;
  }

  .perks {
    margin-top: 6px;
  }

  .perks li {
    font-size: 14px;
    margin-bottom: 4px;
  }

  /* ---------- BUTTONS ---------- */
  .ctv-lefts {
    margin-top: 8px;
  }

  .cta-btn,
  .cta-btn1 {
    font-size: 12.5px;
    padding: 8px 0;
  }

  /* ---------- CARDS ---------- */
  .ctv-cards {
    margin-top: 12px;
  }

  .ctv-card {
    padding: 14px;
  }

  .ctv-card h3 {
    font-size: 14px;
    margin-bottom: 4px;
  }

  .ctv-card p {
    font-size: 13px;
    line-height: 1.3;
  }

  /* ---------- WORKSHOP ROW ---------- */
  .workshop-row {
    margin-top: 14px;
  }

  .workshop-text p{
    font-size: 14px;
    line-height: 1.4;
    text-align:justify;
  }
  /* Reduce workshop-row heading size */
.workshop-text h2 {
  font-size: 18px;      /* reduced */
  line-height: 1.25;
  margin-bottom: 6px;  /* tighter spacing */
}
  
  /* ---------- GALLERY ---------- */
  .gallery-track {
    height: 210px;
  }

  .gallery-img {
    width: 150px;
    height: 200px;
  }

  .nav-btn {
    width: 30px;
    height: 30px;
    font-size: 15px;
  }

  /* ---------- TESTIMONIALS ---------- */
  .section-title {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .testimonial-card {
    min-width: 200px;
    padding: 12px;
  }

  .testimonial-card p {
    font-size: 14px;
    line-height: 1.35;
  }

  .testimonial-card h4 {
    font-size: 14px;
    margin-top: 8px;
  }
}

@media (max-width: 360px) {

  /* Kill excess vertical padding */
  .wrk {
    padding-top: 10px !important;
    padding-bottom: 18px !important;
  }

  /* Remove any top margin above heading */
  .workshop-main-heading {
    margin-top: 0 !important;
    margin-bottom: 4px !important;
  }

  /* Remove browser default heading margins */
  .workshop-main-heading h1 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  /* Tighten row spacing */
  .workshop-row {
    margin-top: 6px !important;
  }

  /* Tighten workshop text heading */
  .workshop-text h2 {
    margin-top: 0 !important;
    margin-bottom: 10px !important;
    font-size:20px;
  }
}


.static-gallery {
  display: flex;
  gap: 15px;
}

.static-gallery img {
  width: 100%;
  max-width: 32%;
  border-radius: 10px;
  object-fit: fit-content;
}
.static-gallery1 {
  display: flex;
  gap: 15px;
}

.static-gallery1 img {
  width: 100%;
  max-width: 32%;
  border-radius: 10px;
  object-fit: cover;
}

/* Mobile view */
@media (max-width: 768px) {
  .static-gallery {
    flex-direction: column;
  }

  .static-gallery img {
    width: 100%;
    max-width: 100%;
    height: 220px;          /* adjust if needed */
    object-fit: cover;
  }
   .static-gallery1 {
    flex-direction: column;
  }

  .static-gallery1 img {
    width: 100%;
    max-width: 100%;
    height: 220px;          /* adjust if needed */
    object-fit: cover;
  }
}


























