/* Choose Us Box Icons Styling */
.choose-us-box-3 .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 12px;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 15px;
  position: relative;
  border: 2px solid transparent;
}

.choose-us-box-3 .icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: inherit;
  opacity: 0.1;
  z-index: -1;
}

.choose-us-box-3 .icon i {
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: inline-block;
  line-height: 1;
}

.choose-us-box-3:hover .icon {
  transform: translateY(-8px) scale(1.15);
  border-color: currentColor;
}

.choose-us-box-3:hover .icon i {
  transform: scale(1.2) rotate(-5deg);
}

/* Icon Promise - Handshake - Primary Coral */
.icon-promise {
  background: linear-gradient(135deg, rgba(253, 100, 66, 0.2) 0%, rgba(253, 100, 66, 0.08) 100%);
  color: #fd6442;
  border-color: rgba(253, 100, 66, 0.4);
}

.choose-us-box-3:hover .icon-promise {
  background: linear-gradient(135deg, #fd6442 0%, rgba(253, 100, 66, 0.85) 100%);
  color: #fff;
  box-shadow: 0 12px 24px rgba(253, 100, 66, 0.3);
}

/* Icon Gift - What You Get - Accent */
.icon-gift {
  background: linear-gradient(135deg, rgba(253, 100, 66, 0.15) 0%, rgba(253, 100, 66, 0.05) 100%);
  color: #fd6442;
  border-color: rgba(253, 100, 66, 0.3);
}

.choose-us-box-3:hover .icon-gift {
  background: linear-gradient(135deg, rgba(253, 100, 66, 0.35) 0%, rgba(253, 100, 66, 0.15) 100%);
  color: #fd6442;
  box-shadow: 0 12px 24px rgba(253, 100, 66, 0.2);
}

/* Icon Star - Why Different - Primary */
.icon-star {
  background: linear-gradient(135deg, rgba(253, 100, 66, 0.15) 0%, rgba(253, 100, 66, 0.05) 100%);
  color: #fd6442;
  border-color: rgba(253, 100, 66, 0.3);
}

.choose-us-box-3:hover .icon-star {
  background: linear-gradient(135deg, rgba(253, 100, 66, 0.35) 0%, rgba(253, 100, 66, 0.15) 100%);
  color: #fd6442;
  box-shadow: 0 12px 24px rgba(253, 100, 66, 0.2);
}

/* Icon Shield - Zero Risk - Primary */
.icon-shield {
  background: linear-gradient(135deg, rgba(253, 100, 66, 0.15) 0%, rgba(253, 100, 66, 0.05) 100%);
  color: #fd6442;
  border-color: rgba(253, 100, 66, 0.3);
}

.choose-us-box-3:hover .icon-shield {
  background: linear-gradient(135deg, rgba(253, 100, 66, 0.35) 0%, rgba(253, 100, 66, 0.15) 100%);
  color: #fd6442;
  box-shadow: 0 12px 24px rgba(253, 100, 66, 0.2);
}

/* Image Marquee Slider Styles */
.marquee-section-two {
  overflow: hidden;
  padding: 0px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.marquee-two {
  display: flex;
  overflow: hidden;
  user-select: none;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.marquee-group {
  display: flex;
  gap: 60px;
  animation: scroll 45s linear infinite;
  padding: 15px 50px;
  align-items: center;
  justify-content: center;
}

.marquee-group .image-slide {
  flex: 0 0 auto;
  width: auto;
  max-width: 140px;
  height: 100px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border: 1px solid #e8e8e8;
}

.marquee-group .image-slide:hover {
  transform: translateY(-8px) scale(1.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  border-color: #ddd;
}

.marquee-group .image-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.marquee-group .image-slide:hover img {
  transform: scale(1.1);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  99% {
    transform: translateX(calc(-100% - 60px));
  }
  100% {
    transform: translateX(0);
  }
}

/* Pause animation on hover */
.marquee-two:hover .marquee-group {
  animation-play-state: paused;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .marquee-group {
    gap: 50px;
    padding: 25px 35px;
  }

  .marquee-group .image-slide {
    max-width: 140px;
    height: 100px;
    padding: 10px;
  }
}

@media (max-width: 768px) {
  .marquee-section-two {
    padding: 0px 0;
  }

  .marquee-group {
    gap: 35px;
    padding: 20px 25px;
  }

  .marquee-group .image-slide {
    max-width: 115px;
    height: 80px;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
}

@media (max-width: 480px) {
  .marquee-section-two {
    padding: 0px 0;
  }

  .marquee-group {
    gap: 25px;
    padding: 15px 15px;
  }

  .marquee-group .image-slide {
    max-width: 130px;
    height: 95px;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  }

  .marquee-group .image-slide:hover {
    transform: translateY(-5px) scale(1.05);
  }
}

/*===========================
Start Enterprise Solutions Grid
============================*/
.enterprise-solutions-section {
  position: relative;
  overflow: hidden;
}

.section-subtitle {
  margin-top: 15px !important;
  display: block;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

@media (max-width: 1199.98px) {
  .solutions-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 767.98px) {
  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.solution-card {
  position: relative;
  height: 100%;
  transition: all 0.5s ease;
  transform: translateY(0);
  animation-fill-mode: both;
}

.solution-card:hover {
  transform: translateY(-10px);
}

.card-inner {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 40px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
}

.card-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(252, 219, 102, 0.2), transparent);
  transition: left 0.5s ease;
}

.solution-card:hover .card-inner::before {
  left: 100%;
}

.solution-card:hover .card-inner {
  background: rgba(252, 219, 102, 0.1);
  border-color: rgba(252, 219, 102, 0.3);
  box-shadow: 0 10px 40px rgba(252, 219, 102, 0.15);
}

.card-header {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}

.icon-box {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(252, 219, 102, 0.2), rgba(252, 219, 102, 0.05));
  border: 2px solid rgba(252, 219, 102, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--theme-color1);
  transition: all 0.5s ease;
}

.solution-card:hover .icon-box {
  background: linear-gradient(135deg, var(--theme-color1), rgba(252, 219, 102, 0.4));
  border-color: var(--theme-color1);
  transform: scale(1.1) rotateY(360deg);
}

.card-content {
  flex: 1;
  position: relative;
  z-index: 2;
}

.card-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--theme-color-white);
  margin-bottom: 12px;
  font-family: var(--heading-font-family);
  line-height: 1.3;
}

.card-content > p {
  font-size: 14px;
  color: #a1a1a1;
  margin-bottom: 20px;
  line-height: 1.6;
}

.solution-items {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.solution-items li {
  font-size: 13px;
  color: #c0c0c0;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  line-height: 1.5;
}

.solution-items li i {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(252, 219, 102, 0.2);
  color: var(--theme-color1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  flex-shrink: 0;
  font-size: 10px;
}

.explore-link {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--theme-color1);
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  position: relative;
  z-index: 2;
}

.explore-link i {
  margin-left: 8px;
  font-size: 12px;
  transition: all 0.3s ease;
}

.explore-link:hover {
  color: var(--theme-color-white);
  border-bottom-color: var(--theme-color1);
}

.explore-link:hover i {
  transform: translateX(3px);
}

/* Animation delays for fade-in effect */
.wow {
  visibility: hidden;
}

.wow.fadeInUp {
  animation-name: fadeInUp;
  animation-duration: 1s;
  animation-timing-function: ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 575.98px) {
  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .card-inner {
    padding: 30px 20px;
  }

  .card-title {
    font-size: 18px;
  }

  .icon-box {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .solution-items li {
    font-size: 12px;
  }
}

/*===========================
End Enterprise Solutions Grid
============================*/
/*===========================
Work Image Modal Overlay
============================*/
.work-img {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.work-img.overlay-anim {
  transition: all 0.4s ease;
}

.work-overlay-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(253, 100, 66, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 10;
  font-size: 28px;
  color: #fff;
}

.work-img:hover .work-overlay-icon {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.work-img:hover {
  transform: scale(1.05);
}

/* Fancybox customization for work images */
.fancybox__container {
  background: rgba(0, 0, 0, 0.95);
}

.fancybox__button {
  background: none;
  border: none;
}

.fancybox__button--close {
  color: #fd6442;
  font-size: 28px;
}

.fancybox__button:hover {
  color: #fe7d5f;
}

.fancybox__caption {
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 15px;
}
.work-img {
  width: 600px;
  height: 460px;
  object-fit: cover; /* keeps image from stretching */
}

/*===========================
End Work Image Modal Overlay
============================*/