/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
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: 2.0.0
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 */




.typewriter-container {
      overflow: hidden;
    }
    .typewriter-line {
      display: block;
      overflow: hidden;
      white-space: nowrap;
      border-right: 0.15em solid transparent; /* No flashing cursor */
      width: 0;
      opacity: 0;
      animation: typing 2s steps(30, end) forwards, blink-caret 0.5s step-end infinite;
    }

    /* Typing animation */
    @keyframes typing {
      0% { width: 0; opacity: 1; }
      100% { width: 100%; opacity: 1; }
    }

    /* Sequence delay for each line */
    .typewriter-line:nth-child(1) {
      animation-delay: 0s;
    }
    .typewriter-line:nth-child(2) {
      animation-delay: 1s;
    }
    .typewriter-line:nth-child(3) {
      animation-delay: 2s;
    }
    .typewriter-line:nth-child(4) {
      animation-delay: 5s;
    }