.toshi-slider-section {
      margin-top: 0; /* override any top margin */
      width: 100%;
      height: 100vh;
      overflow: hidden;
    }

    .toshi-slider-slide {
      padding-top: 0;
      height: 100vh;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      position: relative;
    }

    .toshi-slider-overlay {
      /* background: rgba(0, 0, 0, 0.4); */
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }

    .toshi-slider-content {
      color: #fff;
      max-width: 850px;
    }

    .toshi-slider-content h2 {
      font-size: 2.5rem;
      color: #FFCC00;
      margin-bottom: 20px;
      font-weight: 700;
    }

    .toshi-slider-content p {
      font-size: 1.1rem;
      margin-bottom: 30px;
      line-height: 1.6;
    }

    .toshi-slider-btn {
      display: inline-block;
      background-color: #fff;
      color: #373435;
      padding: 12px 30px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .toshi-slider-btn:hover {
      background-color: #373435;
      color: #FFCC00;
      border-color: solid 1px #FFCC00;
    }
    
:root {
  --wp-bg: #363435;
  --wp-bg-light: #4a4849;
  --wp-bg-dark: #2b292a;
  --wp-accent: #f5b942;
  --wp-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.why-popular {
  background: var(--wp-bg);
  padding: 60px 20px;
  color: #fff;
  text-align: center;
}

.why-popular .wp-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  background: var(--wp-bg-dark);
  border-radius: 20px;
  backdrop-filter: blur(6px);
  box-shadow: var(--wp-shadow);
  overflow: hidden;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-popular .wp-wrap:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(245, 185, 66, 0.3);
}

/* Animated Border */
.why-popular .wp-wrap::before {
  content: "";
  position: absolute;
  inset: -2px; /* border area */
  border-radius: 20px;
  padding: 2px;
  background: conic-gradient(
    from 0deg,
    var(--wp-accent),
    transparent 90deg,
    var(--wp-accent) 180deg,
    transparent 270deg,
    var(--wp-accent) 360deg
  );
  -webkit-mask: 
    linear-gradient(#000 0 0) content-box, 
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  animation: spin-border 4s linear infinite;
  z-index: -1;
}

@keyframes spin-border {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.why-popular h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--wp-accent);
  letter-spacing: 1px;
}

.why-popular p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e2e2e2;
  margin-bottom: 0;
}
