/* =========================
   SLIDER WRAPPER
========================= */
.snc-slider {
  position: relative;
  padding-top: 40px;
}

/* =========================
   OWL SAFE
========================= */
.snc-slider__track .owl-stage-outer {
  overflow: hidden !important;
}

.snc-slider__track .owl-item {
  overflow: visible !important;
}

/* =========================
   CARD (PREMIUM GLASS STYLE)
========================= */
.snc-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;

  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  transition: box-shadow 0.3s ease;
}

/* center card highlight */
.snc-slider__track .owl-item.center .snc-card {
  outline: 1px solid rgba(255, 255, 255, 0.12);
}

/* =========================
   IMAGE AREA
========================= */
.snc-card__media {
  height: 360px;

  position: relative;
  overflow: hidden;
  border-radius: 22px;

  background: radial-gradient(
      circle at 30% 20%,
      rgba(255, 200, 120, 0.12),
      transparent 60%
    ),
    linear-gradient(145deg, rgba(120, 20, 20, 0.25), rgba(10, 10, 10, 0.85));

  backdrop-filter: blur(12px);
}

/* texture overlay */
.snc-card__media::before {
  content: "";
  position: absolute;
  inset: 0;

  background: url("https://www.transparenttextures.com/patterns/noise.png");
  opacity: 0.06;
  mix-blend-mode: overlay;

  pointer-events: none;
}

/* =========================
   IMAGE
========================= */
.snc-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  border-radius: 22px;

  filter: drop-shadow(0 14px 20px rgba(0, 0, 0, 0.35));
}

/* =========================
   BADGE
========================= */
.snc-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;

  padding: 6px 12px;
  font-size: 11px;

  background: rgba(0, 0, 0, 0.55);
  color: #fff;

  border-radius: 50px;
  letter-spacing: 1px;

  z-index: 5;
}

/* =========================
   CONTENT OVERLAY
========================= */
.snc-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;

  padding: 18px;

  /* STRONGER OVERLAY FOR READABILITY */
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.95),
    rgba(0, 0, 0, 0.55),
    transparent
  );

  color: #fff;
}

/* =========================
   TITLE (HIDDEN)
========================= */
.snc-card__title {
  display: none;
}

/* =========================
   BUTTON (FIXED + PREMIUM)
========================= */
.snc-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  padding: 9px 16px;
  border-radius: 30px;

  font-size: 13px;
  font-weight: 500;

  color: #fff;
  text-decoration: none;

  /* GLASS WHITE STYLE */
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);

  backdrop-filter: blur(6px);

  /* GLOW EFFECT */
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.25);

  transition: all 0.3s ease;
}

/* arrow */
.snc-card__btn::after {
  content: "→";
  transition: transform 0.3s ease;
}

/* hover */
.snc-card__btn:hover {
  background: #fff;
  color: #000;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.45);
}

.snc-card__btn:hover::after {
  transform: translateX(6px);
}

/* =========================
   ARROWS
========================= */
.snc-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 44px;
  height: 44px;
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.12);
  border: none;

  color: #fff;
  font-size: 22px;

  cursor: pointer;
  transition: 0.3s ease;
  backdrop-filter: blur(6px);
}

.snc-nav:hover {
  background: rgba(255, 255, 255, 0.25);
}

.snc-prev {
  left: -10px;
}
.snc-next {
  right: -10px;
}

/* =========================
   DOTS
========================= */
.snc-slider__track .owl-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 25px;
}

.snc-slider__track .owl-dot span {
  width: 25px;
  height: 3px;
  background: rgba(255, 255, 255, 0.25);
  display: block;
  transition: 0.3s ease;
}

.snc-slider__track .owl-dot.active span {
  width: 45px;
  background: #fff;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .snc-card__media {
    height: 280px;
  }

  .snc-nav {
    display: none;
  }
}

/* =========================
   BACKGROUND SHAPES
========================= */
.grade-section .shape-10 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.grade-section .shape-11 {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.grade-section {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 1;
}