/* Hero Modern Styles */
.hero-modern {
    padding: 50px 0 60px;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.hero-content-wrapper {
    padding-right: 30px;
    position: relative;
    z-index: 5;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: #ebf3f8;
    padding: 5px 15px 5px 5px;
    border-radius: 50px;
    font-size: 14px;
    color: #0e6a9f;
    margin-bottom: 25px;
    font-weight: 500;
}

.hero-badge .badge-text {
    background: var(--color-two);
    color: #fff;
    padding: 2px 10px;
    border-radius: 20px;
    margin-right: 10px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.hero-title {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 800;
    color: var(--color-two);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-five);
    margin-bottom: 35px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    position: relative;
    z-index: 5;
}

/* Removed custom button styles in favor of template classes */

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatars {
    display: flex;
}

.avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid #fff;
    margin-left: -15px;
    object-fit: cover;
}

.avatars img:first-child {
    margin-left: 0;
}

.proof-text {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    line-height: 1.2;
}

.proof-text strong {
    color: var(--color-two);
    font-weight: 700;
    font-size: 16px;
}

.proof-text span {
    color: var(--color-five);
}

.hero-image-wrapper {
    position: relative;
    padding: 20px;
    background: var(--color-four);
    border-radius: 30px;
}

.main-hero-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.hero-logos {
    margin-top: 60px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    border-top: 1px solid var(--color-four);
    padding-top: 40px;
}

.hero-logos img {
    max-height: 80px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.hero-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 40px;
    }
    .hero-image-wrapper {
        margin-top: 50px;
    }
    .hero-logos {
        justify-content: center;
    }
}

/* Hero Slider Navigation */
.hero-image-wrapper .hero_slider-prev,
.hero-image-wrapper .hero_slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-image-wrapper .hero_slider-prev:hover,
.hero-image-wrapper .hero_slider-next:hover {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.hero-image-wrapper .hero_slider-prev {
    left: 30px;
}

.hero-image-wrapper .hero_slider-next {
    right: 30px;
}

.hero-image-wrapper .hero_slider-prev img,
.hero-image-wrapper .hero_slider-next img {
    width: 20px;
    height: auto;
}

/* Mobile Responsive Adjustments for Hero Actions */
@media (max-width: 767px) {
    .hero-actions {
        flex-wrap: wrap;
    }
    
    .hero-actions .btn-style-one,
    .hero-actions .btn-style-two {
        font-size: 14px !important;
        padding: 12px 25px !important;
       
    }
    
    .hero-actions .btn-style-one .btn-wrap,
    .hero-actions .btn-style-two .btn-wrap {
        width: 100%;
    }
}
