

/* =========================
   TITLE
========================= */
.section-title {
  margin-bottom: 55px;
}

.section-title span {
  display: inline-block;
  background: var(--accent-red);
  color: #fff;
  padding: 10px 22px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.section-title h2 {
  font-size: 48px;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

/* =========================
   CARD
========================= */
.stsh-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
}

/* TOP BORDER EFFECT */
.stsh-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--primary-blue),
    var(--accent-red)
  );
}

/* =========================
   HEADING
========================= */
.stsh-heading {
  margin-bottom: 30px;
}

.stsh-heading h3 {
  color: var(--primary-blue);
  font-size: 28px;
  line-height: 1.5;
  font-weight: 700;
  margin: 0;
}

/* =========================
   CAROUSEL IMAGE
========================= */
.stsh-carousel .item {
  padding: 5px;
}

.stsh-carousel .item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 20px;
  transition: all 0.4s ease;
  display: block;
}

/* =========================
   SINGLE GALLERY
========================= */
.single-gallery {
  display: flex;
  justify-content: center;
  align-items: center;
}

.single-gallery a {
  width: 50%;
  display: block;
}

.single-gallery img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  transition: all 0.4s ease;
}

/* IMAGE HOVER */
.stsh-carousel .item img:hover,
.single-gallery img:hover {
  transform: scale(1.03);
}

/* =========================
   PDF BOX
========================= */
.pdf-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.pdf-box {
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    #3548bb
  );

  color: #fff;
  padding: 30px;
  border-radius: 20px;

  display: flex;
  align-items: center;
  gap: 20px;

  text-decoration: none;
  transition: 0.4s ease;

  position: relative;
  overflow: hidden;
}

/* HOVER EFFECT */
.pdf-box:hover {
  background: linear-gradient(
    135deg,
    var(--accent-red),
    #ff3d45
  );

  transform: translateY(-5px);
  color: #fff;
}

/* ICON */
.pdf-box i {
  font-size: 40px;
  flex-shrink: 0;
}

/* TEXT */
.pdf-box span {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 600;
}

/* =========================
   OWL NAV
========================= */
.owl-nav {
  margin-top: 25px !important;
  text-align: center;
}

.owl-nav button {
  width: 50px;
  height: 50px;
  border-radius: 50% !important;
  background: var(--primary-blue) !important;
  color: #fff !important;
  font-size: 22px !important;
  margin: 0 8px;
  transition: 0.3s ease;
}

.owl-nav button:hover {
  background: var(--accent-red) !important;
}

/* REMOVE DEFAULT OUTLINE */
.owl-nav button:focus {
  outline: none;
  box-shadow: none;
}

/* =========================
   DOTS
========================= */
.owl-dots {
  margin-top: 20px;
  text-align: center;
}

.owl-dot span {
  background: #ccc !important;
  width: 12px !important;
  height: 12px !important;
}

.owl-dot.active span {
  background: var(--accent-red) !important;
}

/* =========================
   FANCYBOX IMAGE
========================= */
[data-fancybox] {
  overflow: hidden;
  border-radius: 20px;
  display: block;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {

  .stsh-card {
    padding: 30px;
  }

  .section-title h2 {
    font-size: 38px;
  }

  .stsh-heading h3 {
    font-size: 24px;
  }

  .pdf-wrapper {
    grid-template-columns: 1fr;
  }

  .single-gallery a {
    width: 75%;
  }

}

@media (max-width: 768px) {

  .stsh-section {
    padding: 60px 0;
  }

  .section-title {
    margin-bottom: 40px;
  }

  .section-title h2 {
    font-size: 30px;
  }

  .stsh-card {
    padding: 22px;
    border-radius: 18px;
  }

  .stsh-heading {
    margin-bottom: 22px;
  }

  .stsh-heading h3 {
    font-size: 20px;
    line-height: 1.5;
  }

  .stsh-carousel .item img,
  .single-gallery img {
    height: 240px;
  }

  .single-gallery a {
    width: 100%;
  }

  .pdf-box {
    padding: 22px;
    gap: 15px;
    border-radius: 16px;
  }

  .pdf-box i {
    font-size: 30px;
  }

  .pdf-box span {
    font-size: 15px;
  }

  .owl-nav button {
    width: 42px;
    height: 42px;
    font-size: 18px !important;
  }

}

@media (max-width: 480px) {

  .section-title h2 {
    font-size: 26px;
  }

  .stsh-heading h3 {
    font-size: 18px;
  }

  .stsh-carousel .item img,
  .single-gallery img {
    height: 220px;
  }

}