@charset "UTF-8";

/*
Theme Name:naz
Theme URI: https://wordpress.org/themes/naz/
Author: the WordPress team
Author URI: https://wordpress.org/
Description:naz is a blank canvas for your ideas and it nazes the block editor your best brush. With new block patterns, which allow you to create a beautiful layout in a matter of seconds, this theme’s soft colors and eye-catching — yet timeless — design will let your work shine. Take it for a spin! See hownaz elevates your portfolio, business website, or personal blog.
Requires at least: 5.3
Tested up to: 6.6
Requires PHP: 5.6
Version: 2.3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:naz
Tags: one-column, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready, blog, portfolio

naz WordPress Theme, (C) 2020 WordPress.org */


.stats-wrapper {
    display: flex;
    gap: 20px;
}

.stat-card {
    flex: 1;
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
	margin:1rem 0;
}

.stat-card .icon {
    font-size: 24px;
    margin-bottom: 10px;
}

.icon.red {
    color: #e74c3c;
}

.icon.green {
    color: #27ae60;
}

.stat-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin: 5px 0;
    color: #222;
}

.stat-card p {
    font-size: 14px;
    color: #777;
    margin: 0;
}


.features-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 14px 18px;
    border-radius: 12px;
}

.feature-item .icon {
    color: #27ae60;
    font-size: 18px;
    flex-shrink: 0;
}

.feature-item p {
    margin: 0;
    font-size: 15px;
    color: #333;
}

.hero-anim {
  position: relative;
  height: 150px; /* adjust based on your design */
  overflow: hidden;
}
.hero-anim {
  position: relative;
  height: 200px; /* adjust based on your font size */
  overflow: hidden;
}

.anim-line {
  position: absolute;
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  animation: textLoop 9s infinite;
}

/* stagger each line */
.anim-line:nth-child(1) {
  animation-delay: 0s;
}
.anim-line:nth-child(2) {
  animation-delay: 3s;
}
.anim-line:nth-child(3) {
  animation-delay: 6s;
}

@keyframes textLoop {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  8% {
    opacity: 1;
    transform: translateY(0);
  }
  25% {
    opacity: 1;
    transform: translateY(0);
  }
  33% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}