 i {
          
             color:rgb(228 100 12);
         }
         .icon-box {
             display: flex;
             align-items: center;
             padding: 20px;
             transition: ease-in-out 0.3s;
             box-shadow: 0px 2px 15px rgb(0 0 0 / 10%);
         }

         .title {
            width: 200px;
            height: 200px;
            margin-bottom: 10px;
            border: 2px solid rgb(228 100 12);
        }
      
  .header-scrolled nav {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
  }

  .header-scrolled span,
  .header-scrolled a {
    color: black !important;
  }
  .clip-diagonal {
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}
 .fade-up {
      animation: fadeUp 1s ease forwards;
      opacity: 0;
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .float {
      animation: float 4s ease-in-out infinite;
    }

    @keyframes float {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-10px);
      }
    }

    .progress-ring {
      animation: rotateRing 1.5s ease-out forwards;
      transform: rotate(-90deg);
    }

    @keyframes rotateRing {
      to {
        transform: rotate(0deg);
      }
    }
    .feature-card {
    display: none;
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .feature-card.show {
    display: block;
    animation: fadeUp 0.5s ease forwards;
  }

  .feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.15);
  }

  .feature-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 10px;
  }

  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(25px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .blob {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: blobMove 18s infinite alternate ease-in-out;
}

.blob-orange {
  background: #fb923c;
  top: -80px;
  left: -80px;
}

.blob-pink {
  background: #f472b6;
  bottom: -100px;
  right: -60px;
  animation-delay: 3s;
}

.blob-purple {
  background: #a78bfa;
  top: 40%;
  left: 50%;
  animation-delay: 6s;
}

@keyframes blobMove {
  0%   { transform: translate(0,0) scale(1); }
  50%  { transform: translate(60px,-40px) scale(1.1); }
  100% { transform: translate(-40px,40px) scale(0.95); }
}

/* ------------------ FEATURE CARDS ------------------ */
.feature-card {
  display: none;
  text-align: center;
  padding: 28px 18px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.feature-card.show {
  display: block;
  animation: fadeUp 0.6s ease forwards;
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0,0,0,0.18);
}

.feature-card i {
  color: #f97316;
  animation: floatIcon 4s ease-in-out infinite;
}

.feature-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-top: 10px;
}

/* ------------------ ANIMATIONS ------------------ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatIcon {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}
.client-logos {
  padding: 60px 0;
  background: #fff;
  text-align: center;
  overflow: hidden;
}

.client-logos h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 40px;
}

.client-logos h2 span {
  color: #ff6700;
}

/* Slider */
.logo-slider {
  overflow: hidden;
  position: relative;
}

.logo-track {
  display: flex;
  width: calc(200%); /* because we duplicate logos */
  animation: scroll 20s linear infinite;
}

.logo {
  flex: 0 0 auto;
  width: 150px; /* logo width */
  margin: 0 20px;
}

.logo img {
  height: 50%;       /* set all logos to the same height */
  object-fit: contain; /* maintain aspect ratio */
  transition: filter 0.3s;
}
.logo img:hover {
  filter: grayscale(0%);
}

/* Animation */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Responsive */
@media (max-width: 768px) {
  .logo {
    width: 100px;
    margin: 0 10px;
  }
  .client-logos h2 {
    font-size: 20px;
  }
}
/* ===== About Us Animations ===== */

.animate-fade-in-up {
  animation: fadeInUp 0.9s ease-out both;
}

.animate-fade-in-right {
  animation: fadeInRight 1s ease-out both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}


 .circle-wrap {
    position: relative;
    width: 420px;
    height: 420px;
  }

  .rotate-list {
    position: absolute;
    inset: 0;
    animation: rotate 16s linear infinite;
  }

  .rotate-item {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: 0 0;
    white-space: nowrap;
    font-weight: 600;
  }

  @keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }
  /* ===== Floating Card Animation ===== */
.animate-float {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-18px); }
  100% { transform: translateY(0px); }
}

/* ===== Blob Animations ===== */
.animate-blob-1 {
  animation: blob1 10s infinite ease-in-out;
}

.animate-blob-2 {
  animation: blob2 12s infinite ease-in-out;
}

@keyframes blob1 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(40px, -30px) scale(1.1);
  }
}

@keyframes blob2 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-30px, 40px) scale(1.15);
  }
}
.arc {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 20px solid transparent;
  animation: slowSpin 30s linear infinite;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}

.arc-top-right {
  border-top-color: #f97316; /* orange-500 */
  border-right-color: #fb923c; /* orange-400 */
}

.arc-bottom-right {
  border-right-color: #f97316; /* orange-500 */
  border-bottom-color: #fdba74; /* orange-300 */
}

.arc-bottom-left {
  border-bottom-color: #f97316; /* orange-500 */
  border-left-color: #fcd34d; /* orange-200 */
}

.arc-top-left {
  border-left-color: #f97316; /* orange-500 */
  border-top-color: #ffedd5; /* orange-100 */
}

@keyframes slowSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Cards */
.benefit-card {
  position: absolute;
  width: 260px;
  background: white;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
  font-size: 15px;
  line-height: 1.6;
  pointer-events: auto;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.benefit-card:hover {
  box-shadow: 0 28px 60px rgba(0,0,0,.2);
}

.badge {
  position: absolute;
  top: -14px;
  left: -14px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: white;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,.2);
}
/* Card */
.zv-pricing-card {
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
  overflow: hidden;
  text-align: center;
  transform: translateY(40px);
  opacity: 0;
  transition: all .6s ease;
}

.zv-pricing-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 30px 70px rgba(249,115,22,.35);
}

/* Featured */
.zv-pricing-featured {
  transform: scale(1.06);
}

/* Header */
.zv-pricing-head {
  padding: 40px 20px 55px;
  color: #fff;
  border-bottom-left-radius: 60% 30%;
  border-bottom-right-radius: 60% 30%;
}

.zv-pricing-head h3 {
  font-size: 22px;
  font-weight: 700;
}

.zv-pricing-head span {
  font-size: 12px;
  opacity: .85;
}

.zv-price {
  font-size: 42px;
  font-weight: 800;
  margin-top: 10px;
}

.zv-price-alt {
  font-size: 26px;
  color: #f97316;
}

/* Body */
.zv-pricing-body {
  padding: 30px;
  text-align: left;
  font-size: 15px;
}

.zv-pricing-body li {
  margin-bottom: 12px;
  color: #374151;
}

/* Buttons */
.zv-btn-primary {
  background: #f97316;
  color: #fff;
  padding: 12px 30px;
  border-radius: 999px;
  font-weight: 600;
  margin-bottom: 30px;
}

.zv-btn-primary:hover {
  background: #ea580c;
}

.zv-btn-outline {
  border: 2px solid #f97316;
  color: #f97316;
  padding: 12px 30px;
  border-radius: 999px;
  font-weight: 600;
  margin-bottom: 30px;
}

/* Scroll Reveal */
.zv-pricing-reveal.zv-active {
  opacity: 1;
  transform: translateY(0);
}

.zv-delay-1 { transition-delay: .1s; }
.zv-delay-2 { transition-delay: .3s; }
.zv-delay-3 { transition-delay: .5s; }
/* === HOVER EFFECTS === */
.zv-pricing-card {
  transition: 
    transform .45s cubic-bezier(.4,0,.2,1),
    box-shadow .45s ease;
}

.zv-pricing-card:hover {
  transform: translateY(-14px) scale(1.04);
  box-shadow:
    0 40px 90px rgba(249,115,22,.35),
    0 10px 30px rgba(0,0,0,.15);
}

/* Header expansion on hover */
.zv-pricing-card:hover .zv-pricing-head {
  border-bottom-left-radius: 65% 35%;
  border-bottom-right-radius: 65% 35%;
  transition: border-radius .45s ease;
}

/* Button pulse */
.zv-pricing-card:hover .zv-btn-primary,
.zv-pricing-card:hover .zv-btn-outline {
  animation: zv-btn-pulse 1.4s infinite;
}

@keyframes zv-btn-pulse {
  0% { box-shadow: 0 0 0 0 rgba(249,115,22,.5); }
  70% { box-shadow: 0 0 0 14px rgba(249,115,22,0); }
  100% { box-shadow: 0 0 0 0 rgba(249,115,22,0); }
}
/* === SCROLL EFFECT STATES === */
.zv-pricing-reveal {
  opacity: 0;
  transform: translateY(60px) scale(.96);
  transition:
    opacity .8s ease,
    transform .8s cubic-bezier(.4,0,.2,1);
}

.zv-pricing-reveal.zv-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Featured card emphasis on reveal */
.zv-pricing-featured.zv-active {
  transform: translateY(0) scale(1.08);
}

@media (max-width: 767px) {
  .zv-pricing-featured {
    transform: scale(1);
  }
  /* Featured card emphasis on reveal */
.zv-pricing-featured.zv-active {
  transform: translateY(0) scale(1);
}

}