/*     Animation classes   */

.zoom-in-out-element {
  animation: zoom-in-zoom-out 1s ease infinite;
}

@keyframes zoom-in-zoom-out {
  0% {scale: 100%;}
  50% {scale: 105%;}
  100% {scale: 100%;}
}

.zoom-in-out-icon {
  animation: zoom-in-zoom-out-icon 1s ease infinite;
  display: inline-block;
}
@keyframes zoom-in-zoom-out-icon {
  0% {scale: 100%;}
  50% {scale: 120%;}
  100% {scale: 100%;}
}

.moveHorizontal{
  animation: moveHorizontal 1s infinite ease-in-out;
  display: inline-block;
}

@keyframes moveHorizontal {
  0%   { transform: translateX(0); }
  50%  { transform: translateX(5px); }
  100% { transform: translateX(0); }
}

/*  alternate text   */
.fade-banner {
  width: 100%;
  height: 35px;
  color: var(--bs-white);
  display: flex;
  justify-content: center;
  align-items: start;
  font-weight: 600;
  font-size: 16px;
  position: relative;
  overflow: hidden;
}

.fade-texts {
  position: relative;
  width: 100%;
  text-align: center;
  height: 35px;
}

.fade-text {
  position: absolute;
  width: 100%;
  opacity: 0;
  animation: fadeCycle 20s infinite;
}

.fade-text:nth-child(1) { animation-delay: 0s; }
.fade-text:nth-child(2) { animation-delay: 4s; }
.fade-text:nth-child(3) { animation-delay: 8s; }
.fade-text:nth-child(4) { animation-delay: 12s; }
.fade-text:nth-child(5) { animation-delay: 16s; }

@keyframes fadeCycle {
  0%   { opacity: 0; }
  5%   { opacity: 1; }
  20%  { opacity: 1; }
  25%  { opacity: 0; }
  100% { opacity: 0; }
}

/*  Marquee   */

.marquee-container {
  overflow: hidden;
  /* Add styling for container: background, borders, etc. */
}

.marquee-content {
  display: flex; /* Or inline-block for text */
  white-space: nowrap; /* Prevent text wrapping */
  animation: scroll-left 20s linear infinite;
  /* Add styling for content: font, color, etc. */
}

@keyframes scroll-left {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%); /* Adjust based on content duplication */
  }
}

.marquee-container:hover .marquee-content {
  animation-play-state: paused;
}



/*  hover  classes  */

.hover-move-right, .hover-move-top, .hover-move-bottom {transition: transform 0.3s ease, box-shadow 0.3s ease;}
.hover-move-top:hover {transform: translateY(-6px);}
.hover-move-bottom:hover {transform: translateY(6px);}
.hover-move-right:hover {transform: translateX(10px);box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);}

.hover-zoom{transition: all ease-in-out 0.4s;}
.hover-zoom:hover{transform: scale(1.05);}

.hover-primary-shadow:hover{box-shadow: 0 0 40px var(--bs-primary-bg-subtle)!important;}


/*******************      Clipping css       **************************/

.clip1{clip-path: polygon(0 0, 100% 7%, 100% 100%, 0 93%);}
.clip2{clip-path: polygon(0 0%, 100% 0, 100% 100%, 0 95%);}
.clip-right{clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);}


.wavy-bottom{
  --mask:
    radial-gradient(34.99px at 50% calc(100% - 48px),#000 99%,#0000 101%) calc(50% - 60px) 0/120px 100%,
    radial-gradient(34.99px at 50% calc(100% + 18px),#0000 99%,#000 101%) 50% calc(100% - 30px)/120px 100% repeat-x;
  -webkit-mask: var(--mask);
          mask: var(--mask);
}

.wavy-top{ --mask:
    radial-gradient(34.99px at 50% 48px,#000 99%,#0000 101%) calc(50% - 60px) 0/120px 100%,
    radial-gradient(34.99px at 50% -18px,#0000 99%,#000 101%) 50% 30px/120px 100% repeat-x;
  -webkit-mask: var(--mask);
          mask: var(--mask);}

/*      Parallax classes    */
.parallax {
    position: relative;
    min-height: 700px;
    overflow: hidden;
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.parallax-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Or object-fit: contain; */
    z-index: 1;
}

.parallax::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2;
}

.parallax > .content {
    position: relative;
    z-index: 3;
}
