/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 1.0.1
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/*
    Add your custom styles here
*/
/* Smooth Blinkit-style pulse effect */
.smooth-pulse {
  animation: smoothPulse 1.2s infinite ease-in-out;
  display: inline-block;
}

@keyframes smoothPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  
  }
  100% {
    transform: scale(1);
   
  }
}
/* blue text*/
.blur-word {
  display: inline-block;
  opacity: 0;
  filter: blur(6px);
  transform: translateX(-20px);
  animation: wordBlurIn 0.8s ease-out forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}
.delay-2 {
  animation-delay: 0.4s;
}
.delay-3 {
  animation-delay: 0.6s;
}

.delay-4 {
  animation-delay: 0.8s;
}
.delay-5 {
  animation-delay: 1s;
}

/* Add more delays if needed */

@keyframes wordBlurIn {
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
  }
}
/* Blur + slide in from left on page load */
.blur-on-load {
  opacity: 0;
  filter: blur(8px);
  transform: translateX(-30px);
  animation: slideInClear 1.2s ease-out forwards;
}

@keyframes slideInClear {
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
  }
}