@import "tailwindcss";
@theme {
  --color-mint-500: oklch(0.72 0.11 178);
}
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

@keyframes gradient-x {
    0%, 100% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
  }

  .animate-gradient-x {
    background-size: 200% 200%;
    animation: gradient-x 10s ease infinite;
  }

  /* Background gradient animation like river waves */
.bg-gradient-animate {
  background: linear-gradient(-45deg, #0B1120, #1f2937, #0B1120, #1f2937);
  background-size: 400% 400%;
  animation: gradientFlow 30s ease infinite;
}

@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Text Gradient Animation */
.text-gradient {
  background: linear-gradient(90deg, #00F260, #0575E6, #00F260);
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: shimmerText 5s linear infinite;
}

@keyframes shimmerText {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: -200% center;
  }
}

/* Button Gradient */
.btn-gradient {
  background: linear-gradient(135deg, #0575E6, #00F260);
  color: #fff;
  transition: all 0.3s ease-in-out;
}

.btn-gradient:hover {
  background: linear-gradient(135deg, #00F260, #0575E6);
  transform: scale(1.05);
}

   /* hero section */
   
  @keyframes twinkle {
    0% { opacity: 0.2; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1.2); }
  }
   @keyframes typing {
    from { width: 0 }
    to { width: 100% }
  }

  @keyframes blink {
    50% { border-color: transparent }
  }

  .typing-text {
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid white;
    animation:
      typing 5s steps(40, end) infinite,
      blink 0.75s step-end infinite;
    width: 0;
  }

  /* Delay + reset for loop */
  @keyframes typingLoop {
    0% { width: 0 }
    30%, 70% { width: 21ch }  /* Fix: Enough for full "Best Group Buy SEO Tools" */
    100% { width: 0 }
  }
  @keyframes blink {
    50% { border-color: transparent }
  }

  .loop-typing {
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid #fff;
    animation:
      typingLoop 6s steps(26, end) infinite,
      blink 0.75s step-end infinite;
  }

  .text-gradient {
    background: linear-gradient(to right, #0B1120, #9333ea, #facc15);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  /* bg-[#0B1120] */
  .gradient-animate {
    background: linear-gradient(270deg, #0b1120, #3b82f6, #9333ea, #facc15);
    background-size: 800% 800%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: waveGradient 10s ease infinite;
  }

  @keyframes waveGradient {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  /* heder buuton */
  .btn-gradient {
    background: linear-gradient(45deg, #22c55e, #3b82f6, #facc15);
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
    color: white;
    border: none;
  }

  .btn-gradient:hover {
    background-position: right center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  }

  @keyframes gradientShift {
    0% { background-position: left center; }
    50% { background-position: right center; }
    100% { background-position: left center; }
  }
  /* Top SEO Tools Service Provider In Bangladesh */
  .bg-animate {
    background: linear-gradient(-45deg, #0B1120, #1e293b, #0B1120, #334155);
    background-size: 400% 400%;
    animation: bgMove 15s ease infinite;
  }

  @keyframes bgMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }

  /* Text gradient animation */
  .text-animate-gradient {
    background: linear-gradient(270deg, #22c55e, #3b82f6, #facc15);
    background-size: 200% 200%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: textShift 5s ease-in-out infinite;
  }

  @keyframes textShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }

  /* card section */
  @keyframes borderGradient {
  0% {
    border-color: #16a34a;
  }
  33% {
    border-color: #eab308;
  }
  66% {
    border-color: #3b82f6;
  }
  100% {
    border-color: #16a34a;
  }
}
.animate-borderGradient {
  animation: borderGradient 6s linear infinite;
}

/* tabel price */
@keyframes gradient-x {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }

  .animate-gradient-x {
    background-size: 200% 200%;
    animation: gradient-x 4s ease infinite;
  }

  /* table list css */
  .custom-scroll::-webkit-scrollbar {
    width: 6px;
  }

  .custom-scroll::-webkit-scrollbar-thumb {
    background: #4ade80; /* green-400 */
    border-radius: 10px;
  }

  .custom-scroll::-webkit-scrollbar-track {
    background: transparent;
  }

  /* single tools css */
  @keyframes shimmer {
  0% {
    background-position: -500% 0;
  }
  100% {
    background-position: 500% 0;
  }
}
.animate-text-shimmer {
  background-size: 200% auto;
  animation: shimmer 6s linear infinite;
}
.animate-pulse-slow {
  animation: pulse 12s ease-in-out infinite;
}

  @keyframes float {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-10px) scale(1.1);
    opacity: 1;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.7;
  }
}
.animate-float {
  animation: float 5s ease-in-out infinite;
}
.animate-text-shimmer {
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
}
@keyframes shimmer {
  0% {
    background-position: 200% center;
  }
  100% {
    background-position: -200% center;
  }
}

/* single tools section */
@keyframes gradient-border {
  0% { border-color: #00ff00; }
  50% { border-color: #ffff00; }
  100% { border-color: #00bfff; }
}
.animate-border {
  animation: gradient-border 4s ease infinite;
}


   /* single tools content */
   @keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.animate-gradient {
    background-size: 200% 200%;
    animation: gradientMove 12s ease infinite;
}

@keyframes textGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.animate-text {
    background-size: 200% 200%;
    animation: textGradient 6s ease infinite;
}
  /* facebook review */
  @keyframes slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.animate-slide {
  animation: slide 25s linear infinite;
}
/* facebook and telegram button */
@keyframes borderPulse {
  0% {
    border-color: #00bcd4;
  }
  50% {
    border-color: transparent;
  }
  100% {
    border-color: #00bcd4;
  }
}

/* payment image */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.animate-gradient-slow {
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
}

/* foter section */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.animate-gradient-slow {
  background-size: 200% 200%;
  animation: gradientShift 10s ease infinite;
}

@keyframes textGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.animate-text {
  background-size: 200% 200%;
  animation: textGradient 5s ease infinite;
}

/* abiut us */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.animate-gradient-slow {
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
}

@keyframes textGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.animate-text-gradient {
  background-size: 200% 200%;
  animation: textGradient 8s ease infinite;
}

/* blog css */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.animate-gradient-slow {
  background-size: 400% 400%;
  animation: gradientShift 20s ease infinite;
}

/* Border animation for cards */
@keyframes borderAnim {
  0% { border-color: #0f2027; }
  50% { border-color: #03a9f4; }
  100% { border-color: #0f2027; }
}
.animate-border {
  animation: borderAnim 4s ease-in-out infinite;
}

/* Border animation for button */
@keyframes borderButtonAnim {
  0% { border-color: transparent; }
  50% { border-color: #fff; }
  100% { border-color: transparent; }
}
.animate-border-button {
  animation: borderButtonAnim 3s ease-in-out infinite;
}

/* vidiq blog */

  