<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
  }

  .slider-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease-in-out;
  }

  .slide {
    background: #2f2d52;
    border-radius: 16px;
    height: 320px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    width: calc(100% - 24px); /* 1 slide by default (mobile) */
  }

  @media (min-width: 768px) {
    .slide {
      width: calc((100% - 24px) / 2); /* 2 slides on tablets */
    }
  }

  @media (min-width: 1024px) {
    .slide {
      width: calc((100% - 48px) / 3); /* 3 slides on desktop */
    }
  }

  .gradient {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(to top, rgba(255, 22, 64, 0.7), transparent);
  transition: height 0.4s ease;
  z-index: 0;
}

  
  .slide:hover .gradient {
    height: 100%;
  }

  .slide-content {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    transition: all 0.4s ease;
    z-index: 2;
  }

  .slide:hover .slide-content {
    bottom:15%;
  }

  .slide-icon-title {
    font-weight: bold;
    font-size: 26px;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  }

  .slide p {
    opacity: 0;
    margin-top: 8px;
    font-size: 0.9rem;
    transition: opacity 0.4s ease;
    color: white;
    margin-bottom: 30px;
  }

  .slide:hover p {
    opacity: 1;
  }

  .slide a {
  opacity: 0;
  
  padding: 8px 16px;
  border: none;
  border-radius: 50px;
  background-color: white;
  color: black;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transform: scale(0.95);
  transition: opacity 0.4s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.slide:hover a {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.slide a:hover {
  background-color: #ff1640;
  color: white !important;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 22, 64, 0.3);
}
section.mobile-slider {
    padding-bottom: 0px !important;
}
a.shake-link {
    display: inline-block;
    padding: 10px 20px;
    font-size: 14px;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
  }
.slide i{
  padding-left: 4px;
}
  /* Hover effect â€” color only */
  a.shake-link:hover {
    background-color: #ff0042;
  }
/* Hide FA icon by default (visible initially) */
</pre></body></html>