.sv-hero-widget-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: var(--sv-radius-card);
    z-index: 2;
}

.sv-hero-widget-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 120px 0;
    color: #ffffff;
}

.sv-hero-widget-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.sv-hero-widget-content {
    position: relative;
    z-index: 2;
    padding: 0 var(--sv-content-padding);
    max-width: 60%;
}

.sv-hero-tagline {
    text-transform: uppercase;
    color: #fff;
    font-weight: 300;
}

.sv-hero-intro-text {
    font-size: var(--sv-font-size-sm);
    line-height: 1.5;
    font-weight: 300;
    max-width: 60%;
}

.sv-hero-counters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    margin-top: 50px;
    gap: 1rem;
}

.sv-counter-item {
    text-align: left;
}

.sv-counter-item:last-child {
    min-width: 200px;
}

.sv-counter-number {
    font-size: 4rem;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -.4rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.sv-counter-title {
    font-size: var(--sv-font-size-md);
    font-weight: 300;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Styles */
/* @media (max-width: 1024px) {
    .sv-hero-counters-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sv-hero-intro-text {
        font-size: 22px;
    }
    
    .sv-counter-number {
        font-size: 36px;
    }
} */

@media (max-width: 767px) {
    .sv-hero-widget-bg {
        padding: 80px 0;
    }

    .sv-hero-widget-content {
        max-width: 80% !important;
    }

    .sv-hero-intro-text {
        max-width: none;
        font-size: 1rem;
        margin-bottom: 0 !important;
    }
    
    .sv-hero-counters-grid {
        margin-top: 20px;
    }

    .sv-counter-number {
        font-size: 2.75rem;
    }
    
    .sv-counter-item {
        margin-bottom: 20px !important;
    }
}

/* Animation for counter numbers */
@keyframes counter-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sv-counter-number.animated {
    animation: counter-up 0.8s ease-out forwards;
}