
/* Gradient Animation for Button */
@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes glowPulse {
  0% {
    box-shadow: 0 4px 15px rgba(2, 16, 36, 0.3), 0 0 20px rgba(61, 107, 142, 0);
  }
  50% {
    box-shadow: 0 4px 15px rgba(2, 16, 36, 0.3), 0 0 30px rgba(125, 170, 202, 0.4);
  }
  100% {
    box-shadow: 0 4px 15px rgba(2, 16, 36, 0.3), 0 0 20px rgba(61, 107, 142, 0);
  }
}

@keyframes floatUp {
  0% {
    transform: translateY(0px) rotateX(0deg) rotateY(0deg);
  }
  50% {
    transform: translateY(-15px) rotateX(2deg) rotateY(2deg);
  }
  100% {
    transform: translateY(0px) rotateX(0deg) rotateY(0deg);
  }
}

@keyframes dynamicShadow {
  0% {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
  100% {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
}

@keyframes iconTilt {
  0% {
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) scale(1);
  }
  50% {
    transform: perspective(1000px) rotateX(5deg) rotateY(5deg) scale(1.1);
  }
  100% {
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) scale(1);
  }
}

.chooseus-section {
  padding: 145px 0px;
  position: relative;
}

.chooseus-block-one .inner-box {
  position: relative;
  display: block;
  background: #FFFFFF;
  padding: 35px 25px;
  border-radius: 12px;
  border: 1px solid rgba(15, 24, 29, 0.1);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 2px 8px rgba(15, 24, 29, 0.08), 0 0 1px rgba(125, 170, 202, 0.1);
  transform: translateZ(0);
  will-change: transform, box-shadow;
}

.chooseus-block-one .inner-box:hover {
  transform: translateY(-16px) scale(1.02) perspective(1000px) rotateX(2deg);
  box-shadow: 0 20px 45px rgba(15, 24, 29, 0.2), 0 8px 20px rgba(125, 170, 202, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  border-color: rgba(62, 107, 142, 0.25);
  background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.95) 100%);
}

.chooseus-block-one .inner-box .icon-box {
  position: relative;
  display: inline-block;
  margin-bottom: 22px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 30px;
  background: linear-gradient(135deg, rgba(61, 107, 142, 0.05) 0%, rgba(125, 170, 202, 0.05) 100%);
  border-radius: 16px;
  border: 1px solid rgba(125, 170, 202, 0.15);
  animation: floatUp 3.5s ease-in-out infinite;
  filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.15));
}

.chooseus-block-one .inner-box .icon-box img {
  display: block;
  height: 80px;
  width: 80px;
  object-fit: contain;
  animation: dynamicShadow 3.5s ease-in-out infinite;
}

.chooseus-block-one .inner-box:hover .icon-box {
  transform: scale(1.15) perspective(1000px) rotateX(8deg) rotateY(8deg);
  background: linear-gradient(135deg, rgba(61, 107, 142, 0.12) 0%, rgba(125, 170, 202, 0.12) 100%);
  border-color: rgba(125, 170, 202, 0.3);
  animation: none;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.25));
}

.chooseus-block-one .inner-box:hover .icon-box img {
  animation: iconTilt 0.6s ease-in-out infinite;
}

.chooseus-block-one .inner-box h3 {
  display: block;
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--main-color);
}

.chooseus-block-one .inner-box h3 a {
  display: inline-block;
  color: var(--main-color);
  transition: all 0.3s ease;
}

.chooseus-block-one .inner-box h3 a:hover {
  color: var(--secondary-color);
}

.chooseus-block-one .inner-box p {
  margin-bottom: 20px;
  color: #666666;
  line-height: 1.6;
}

/* Dynamic Gradient Button with Animation */
.chooseus-block-one .inner-box .link-btn a {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  border-radius: 9999px;
  background: linear-gradient(to right, #101c38, #295396, #101c38);
  background-size: 200% auto;
  background-position: left center;
  color: #FFFFFF;
  font-weight: 600;
  transition: all 0.4s ease;
  text-decoration: none;
}

.chooseus-block-one .inner-box .link-btn a:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(41, 83, 150, 0.4);
}

.chooseus-block-one .inner-box .link-btn a span {
  display: inline-block;
  transition: all 300ms ease;
  padding-right: 0;
}

.chooseus-block-one .inner-box .link-btn a span::before {
  display: none;
  content: none;
}

.chooseus-block-one .inner-box .link-btn a i {
  margin-left: 8px;
  transition: transform 0.3s ease;
  display: inline-block;
  font-size: 14px;
}

.chooseus-block-one .inner-box .link-btn a:hover i {
  transform: translateX(4px);
}

.chooseus-section .pattern-layer{
  position: absolute;
  top: -150px;
  right: -30px;
  width: 355px;
  height: 376px;
  background-repeat: no-repeat;
  -webkit-animation: zoom-fade 7s infinite linear;
  animation: zoom-fade 7s infinite linear;
}

























