.offer-s1 {
  background-color: #1B3C53;
  margin-top: 10rem;
}

@media only screen and (max-width:992px) {
  .offer-s1 {
    margin-top: 4rem;
  }
}

.offer-s1 h1 {
  color: white;
  font-weight: 700;
  padding-bottom: 2rem;
  text-align: center;
  margin-bottom: 1.3rem;
  padding: 0px;
}

.offer-s1 p {
  color: white;
}

.offers-s2 .left-box {
  border: 1px solid rgba(128, 128, 128, 40%);
  padding: 1.3rem;
  border-radius: 10px;
}

@media only screen and (max-width:991px) {
  .offers-s2 .left-box .img-div {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.offers-s2 .left-box .offers-img {
  transition: all 0.5s ease-in-out;
}

.offers-s2 .left-box:hover .offers-img {
  transform: scale(1.05) rotate(-3deg);
  filter: drop-shadow(3px 5px 5px rgb(160, 160, 160));
}

.offers-s2 .content-box h3 {
  font-size: 1.2rem;
}

.offers-s2 .content-box p {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  text-align: justify;
}

.text-underline {
  text-decoration: underline;
}

.offers-s2 .content-box ul li {
  font-size: 0.9rem;
}

.offers-s2 .content-box ol li {
  font-size: 0.9rem;
}

.offers-s2 .content-box h4 {
  font-size: 1.1rem;
}

.offers-s3 .content-box {
  border: 1px solid rgba(128, 128, 128, 40%);
  padding: 1.3rem;
  border-radius: 10px;
}

.offers-s3 .content-box h3 {
  font-size: 1.2rem;
}

.offers-s3 .content-box p {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  text-align: justify;
}

.offers-s3 .content-box ul li {
  font-size: 0.9rem;
}

/* ----------  testimotial  ------------ */

.offers-s4 {
  background-color: rgb(236, 236, 236);
}

/* .offers-s4 .testimonial-container .main-box {
    position: relative;
    height: 300px;
} */

/* @media only screen and (min-width:992px) {
    .offers-s4 .testimonial-container .main-box{
        height: 50vh;
    }
} */

/* Ensure parents allow sticky positioning */
#pageWrapper,
#viewport,
#content,
section {
  overflow: visible !important;
}

.testimonial-container {
  position: -webkit-sticky !important;
  position: sticky !important;
  top: 10px;
  z-index: 100;
}

.testimonial-container h3 {
  color: black;
  text-align: center;
}

.testimonial-container .cards {
  width: fit-content;
  background-color: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0px 0px 10px -4px rgb(190, 190, 190);
  margin: 5px 0px;
}

.testimonial-container .cards h3 {
  margin: 0px;
  display: flex;
  flex-direction: column;
}

.testimonial-container .cards h3 span {
  color: rgb(255, 208, 0);
  font-size: 1rem;
  margin-right: 1rem;
}

.testimonial-container .cards h3 span:nth-child(2) {
  color: black;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.testimonial-container .cards p {
  text-align: justify;
  margin-bottom: 2rem;
}

.testimonial-container .cards p span {
  font-weight: 600;
  font-size: 1.5rem;
  margin: 0px 0.3rem;
}

.testimonial-container .animation-box {
  height: 80vh;
  overflow: hidden;
  margin-top: 1.5rem;
  border-right: 2px solid #00aeef;
}

.testimonial-container .animation-box .main-box {
  animation: move-y 50s linear infinite;
  padding: 0px 10px;
}

.testimonial-container .animation-box:hover .main-box {
  animation-play-state: paused;
}

@keyframes move-y {
  0% {
    transform: translateY(0%);
  }

  100% {
    transform: translateY(-100%);
  }
}

/* loader */
/* #loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 20s ease;
}

.hidden {
    opacity: 0;
}

.show {
    opacity: 1;
    transition: opacity 0.8s ease;
}

#loader .animation-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.truck img {
    height: 70px;
    width: 100px;
    -webkit-box-reflect: below 10px linear-gradient(to bottom, transparent, rgba(0,0,0,0.3));
    animation: truck-move 4s linear infinite;
    position: absolute;
    top: 40%;
    left: -150px;
    z-index: 9999;
}

@keyframes truck-move {
    0%   { left: -150px; }
    100% { left: 110%; }
}

.papers {
    position: absolute;
    top: 40%;
    width: 100%;
    height: 150px;
    pointer-events: none;
    overflow: visible;
}

.paper {
    position: absolute;
    width: 10px;
    height: 14px;
    opacity: 0.9;
    animation: fall 1.5s linear forwards;
}

@keyframes fall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(80px) rotate(180deg);
        opacity: 0;
    }
}

#party-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 10000;
}

.party-piece {
    position: absolute;
    width: 10px;
    height: 14px;
    opacity: 0.9;
    animation: party-fall 1.3s linear forwards;
}

@keyframes party-fall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(120px) rotate(160deg);
        opacity: 0;
    }
} */

/* -------------- party effect --------------- */

/* Fullscreen container */
/* Full-screen container */
#offer-effect {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 999999;
}

/* ----------------- BURST PIECES ----------------- */
.burst-piece {
  position: absolute;
  width: 14px;
  height: 16px;
  border-radius: 3px;
  opacity: 0.95;
  animation: burst 1s ease-out forwards;
}

@keyframes burst {
  0% {
    transform: translateY(0) scale(1) rotate(0deg);
    opacity: 1;
  }

  80% {
    transform: translate(var(--bx), var(--by)) rotate(var(--rot));
  }

  100% {
    transform: translate(var(--bx), -80vh) rotate(calc(var(--rot)+360deg));
    opacity: 0;
  }
}

/* ----------------- RAIN ----------------- */
.rain-piece {
  position: absolute;
  width: 12px;
  height: 14px;
  border-radius: 2px;
  opacity: 0.9;
  animation: rain 3s linear forwards;
}

@keyframes rain {
  0% {
    transform: translateY(-10vh) rotate(0deg);
  }

  100% {
    transform: translateY(110vh) rotate(360deg);
    opacity: 0;
  }
}

/* ----------------- SPARKLE ----------------- */
.sparkle {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: white;
  opacity: 0;
  box-shadow: 0 0 10px 4px white;
  animation: sparkleAnim 0.7s ease-out forwards;
}

@keyframes sparkleAnim {
  0% {
    transform: scale(0.2);
    opacity: 0;
  }

  50% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(0);
    opacity: 0;
  }
}