.elementor-25713 .elementor-element.elementor-element-47c660a{--display:flex;}/* Start custom CSS for html, class: .elementor-element-2f1598e */.video-container {
  width: 100%;
  margin: 0 auto;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* יחס 16:9 */
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
/* =====================================================
   NIRMAKO - קריאה מומלצת Hero Section CSS
   גרסה: 1.0
   תואם ל-Elementor ולסגנון עמוד ה-KPI
   ===================================================== */

/* ===== FONT IMPORT ===== */
@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@400;600;700&display=swap');

/* ===== HERO CONTAINER ===== */
.nr-reading-hero {
    font-family: 'Assistant', 'Segoe UI', Arial, sans-serif;
    direction: rtl;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 20px;
    border-radius: 20px;
    margin: 40px auto;
    max-width: 1200px;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.35);
    position: relative;
    overflow: hidden;
}

/* Decorative backgrounds */
.nr-reading-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.nr-reading-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -30%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
    pointer-events: none;
}

/* ===== HERO CONTENT ===== */
.nr-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.nr-hero-icon {
    font-size: 4em;
    margin-bottom: 20px;
    display: block;
    animation: nr-float 3s ease-in-out infinite;
}

@keyframes nr-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.nr-hero-title {
    font-size: 3em;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 15px 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.15);
    line-height: 1.2;
}

.nr-hero-subtitle {
    font-size: 1.4em;
    font-weight: 400;
    color: rgba(255,255,255,0.9);
    margin: 0 auto 30px;
    max-width: 700px;
    line-height: 1.6;
}

.nr-hero-divider {
    width: 80px;
    height: 4px;
    background: rgba(255,255,255,0.5);
    margin: 0 auto 30px;
    border-radius: 2px;
}

/* ===== READING CARDS ===== */
.nr-reading-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.nr-reading-card {
    background: rgba(255,255,255,0.95);
    border-radius: 15px;
    padding: 25px;
    text-align: right;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-decoration: none;
    display: block;
    position: relative;
    overflow: hidden;
}

.nr-reading-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    transition: width 0.3s ease;
}

.nr-reading-card:hover,
.nr-reading-card:focus {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.nr-reading-card:hover::before,
.nr-reading-card:focus::before {
    width: 8px;
}

.nr-reading-card:focus {
    outline: 3px solid #667eea;
    outline-offset: 2px;
}

/* ===== CARD ELEMENTS ===== */
.nr-card-category {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 600;
    margin-bottom: 12px;
}

/* Category Color Variants */
.nr-card-category.strategy { background: linear-gradient(135deg, #667eea, #764ba2); }
.nr-card-category.tool { background: linear-gradient(135deg, #27ae60, #2ecc71); }
.nr-card-category.consulting { background: linear-gradient(135deg, #e67e22, #f39c12); }
.nr-card-category.system { background: linear-gradient(135deg, #3498db, #2980b9); }
.nr-card-category.guide { background: linear-gradient(135deg, #e74c3c, #c0392b); }

.nr-card-title {
    font-size: 1.3em;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.nr-card-description {
    font-size: 1em;
    color: #7f8c8d;
    margin: 0 0 15px 0;
    line-height: 1.5;
}

.nr-card-arrow {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    color: #667eea;
    font-weight: 600;
    font-size: 0.95em;
    transition: gap 0.3s ease;
}

.nr-reading-card:hover .nr-card-arrow {
    gap: 15px;
}

/* ===== CTA BUTTON ===== */
.nr-hero-cta {
    display: inline-block;
    background: rgba(255,255,255,0.95);
    color: #667eea;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 700;
    margin-top: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.nr-hero-cta:hover,
.nr-hero-cta:focus {
    background: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
    color: #764ba2;
}

.nr-hero-cta:focus {
    outline: 3px solid #ffffff;
    outline-offset: 3px;
}

/* ===== STATS SECTION ===== */
.nr-stats-row {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.nr-stat-item {
    text-align: center;
}

.nr-stat-number {
    font-size: 2.5em;
    font-weight: 700;
    color: #ffffff;
    display: block;
    line-height: 1;
}

.nr-stat-label {
    font-size: 1em;
    color: rgba(255,255,255,0.8);
    margin-top: 5px;
}

/* ===== ALTERNATIVE COLOR SCHEMES ===== */

/* Sunset Theme */
.nr-reading-hero.theme-sunset {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 15px 40px rgba(245, 87, 108, 0.35);
}

/* Ocean Theme */
.nr-reading-hero.theme-ocean {
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    box-shadow: 0 15px 40px rgba(52, 152, 219, 0.35);
}

/* Forest Theme */
.nr-reading-hero.theme-forest {
    background: linear-gradient(135deg, #27ae60 0%, #1e8449 100%);
    box-shadow: 0 15px 40px rgba(39, 174, 96, 0.35);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .nr-reading-hero {
        margin: 30px 20px;
        max-width: calc(100% - 40px);
    }
}

@media (max-width: 768px) {
    .nr-reading-hero {
        padding: 40px 15px;
        margin: 20px 10px;
        border-radius: 15px;
    }
    
    .nr-hero-title {
        font-size: 2em;
    }
    
    .nr-hero-subtitle {
        font-size: 1.1em;
    }
    
    .nr-hero-icon {
        font-size: 3em;
    }
    
    .nr-reading-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .nr-stats-row {
        gap: 30px;
    }
    
    .nr-stat-number {
        font-size: 2em;
    }
}

@media (max-width: 480px) {
    .nr-reading-hero {
        padding: 30px 12px;
        margin: 15px 5px;
    }
    
    .nr-hero-title {
        font-size: 1.7em;
    }
    
    .nr-hero-subtitle {
        font-size: 1em;
    }
    
    .nr-reading-card {
        padding: 20px;
    }
    
    .nr-card-title {
        font-size: 1.15em;
    }
    
    .nr-hero-cta {
        padding: 12px 30px;
        font-size: 1em;
    }
    
    .nr-stats-row {
        gap: 20px;
    }
    
    .nr-stat-number {
        font-size: 1.8em;
    }
    
    .nr-stat-label {
        font-size: 0.9em;
    }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    .nr-hero-icon {
        animation: none;
    }
    
    .nr-reading-card,
    .nr-hero-cta {
        transition: none;
    }
}

/* ===== HIGH CONTRAST MODE ===== */
@media (prefers-contrast: high) {
    .nr-reading-card {
        border: 2px solid #2c3e50;
    }
    
    .nr-hero-cta {
        border: 2px solid #667eea;
    }
}

/* ===== ELEMENTOR COMPATIBILITY ===== */
.elementor-section .nr-reading-hero {
    margin: 40px auto;
}

.elementor-widget .nr-reading-hero {
    margin: 20px auto;
}

.elementor-container .nr-reading-hero {
    max-width: 100%;
}/* End custom CSS */