
/* Cubic 3d Button code start */
.cubic-3d-button {
    position: relative;
    width: 240px;
    height: 64px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    border: none;
    cursor: pointer;
    background-color: #007bff;
    border-radius: 8px;
    overflow: hidden;
  }

  .cubic-3d-button span {
    position: absolute;
    width: 100%;
    text-align: center;
    top: 50%;
    left: 0;
    transform: translateY(-50%) rotateX(0deg);
    opacity: 1;
    transition: transform 0.55s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.35s linear 0.2s;
    backface-visibility: hidden;
  }

  .cubic-3d-button .text-hover {
    transform: translateY(100%) rotateX(90deg);
    opacity: 0;
  }

  .cubic-3d-button:hover .text-original {
    transform: translateY(-100%) rotateX(-90deg);
    opacity: 0;
  }

  .cubic-3d-button:hover .text-hover {
    transform: translateY(-50%) rotateX(0deg);
    opacity: 1;
  }

/* Cubic 3d Button code end */



/* Animated Heading Fade-Up Effect code start */
.animated-heading .fade-up {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUpAnimation 0.6s forwards;
}
.animated-heading .fade-up:nth-child(1) { animation-delay: 0.1s; }
.animated-heading .fade-up:nth-child(2) { animation-delay: 0.35s; }
.animated-heading .fade-up:nth-child(3) { animation-delay: 0.6s; }
.animated-heading .fade-up:nth-child(4) { animation-delay: 0.85s; }
.animated-heading .fade-up:nth-child(5) { animation-delay: 1.1s; }
.animated-heading .fade-up {
  margin-right: 0.15em;
}
@keyframes fadeUpAnimation {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animated Heading Fade-Up Effect code end */



/* Animation : Undersline left to right smooth - start */

.animated-underline {
    position: relative;
    display: inline-block;
    font-weight: bold;
    cursor: pointer;
}

.animated-underline::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #000;
    transition: width 0.3s ease;
}

a:hover .animated-underline::after {
    width: 100%;
}
/* Animation : Undersline left to right smooth - end */

/* Related button Animation code start*/

.related-btn::after {
  transform: translateY(-50%) translateX(0); /* original center */
  transition: transform 0.3s ease-in-out;
}

.related-btn:hover::after {
  transform: translateY(-55%) translateX(6px); /* move slightly up and right */
}

/* Related button Animation code end*/


/*Fade up Animations code start*/
    .fadeup-heading-anime {
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUpSmooth 0.8s ease-out forwards;
      color: #333;
    }
    
    .fadeup-paragraph-anime {
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUpSmooth 1s ease-out forwards;
    }

    @keyframes fadeUpSmooth {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

/*Fade up Animations code end*/



/*Banners Animations code start*/

.sru-banners {
      opacity: 0;
      transform: scale(0.95);
      animation: bannerZoomFade 1s ease-out forwards;
    }

    @keyframes bannerZoomFade {
      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    .sru-desktop-banner {
      max-width: 100%;
      display: none;
    }

    .sru-mobile-banner {
      max-width: 100%;
      display: none;
    }

    @media (min-width: 768px) {
      .sru-desktop-banner {
        display: block;
      }
    }

    @media (max-width: 767px) {
      .sru-mobile-banner {
        display: block;
      }
    }
    
/*Banners Animations code end*/
