/* Custom animation settings */
:root {
    --animate-duration: 1.2s;
}

.product-anim {
    --animate-duration: 1s;
}

.service-anim {
    --animate-duration: 1.3s;
}

.blog-anim {
    --animate-duration: 1.4s;
}

/* Initialize WOW */
.wow {
    visibility: hidden;
}

p {
  font-size: 15px !important;
}
span {
  font-size: 15px !important;
}

.fs-15 {
  font-size: 15px !important;
}

.start {
  text-align: start;
}
.center {
  text-align: center;
}
.justify {
  text-align: justify;
}

.image-hover {
  height: 400px;
  width: 400px;
}

.image-hover:hover {
  scale: 1.06;
  transition: 1s ease-in-out;
}

/* Button Start */

.custom-btn-play-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  height: 60px;
  border-radius: 10%;
  background: #ffffff;
  text-decoration: none;
  transition: all 200ms ease-in-out;
  color: #2b3a94; /* Default text color */
}

.custom-btn-play-link:hover {
  background: #2b3a94;
  color: #ffffff; /* Change text color to white */
}

.custom-btn-play-link:before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 65%;
  height: 75%;
  background: #ffffff;
  border-radius: 10%;
  animation: pulse-border 1500ms ease-out infinite;
  pointer-events: none; /* Prevents interference */
}

.custom-btn-play-link span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 16px solid var(--primary);
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
}

.custom-btn-play-link:hover span {
  border-left-color: #ffffff; /* Change arrow color to white */
}

.btn-slide {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #2b3a94;
  color: #fff;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  overflow: hidden;
  transition: 0.4s ease;
}

.btn-slide i {
  transform: translateX(-5px);
  opacity: 0;
  transition: 0.4s ease;
}

.btn-slide:hover {
  padding-right: 38px;
}

.btn-slide:hover i {
  transform: translateX(0);
  opacity: 1;
}

@keyframes pulse-border {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
