
/*--------------------------------------------------------------
# new-hero Section
--------------------------------------------------------------*/
.new-hero {
    position: relative;
    overflow: hidden;
}

.new-hero .new-hero-wrapper {
    padding: 80px;
}

@media (max-width: 992px) {
    .new-hero .new-hero-wrapper {
        padding: 100px 0 60px;
        text-align: center;
    }
}

.new-hero .new-hero-wrapper .new-hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (max-width: 992px) {
    .new-hero .new-hero-wrapper .new-hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .new-hero .new-hero-wrapper .new-hero-content h1 {
        font-size: 2rem;
    }
}

.new-hero .new-hero-wrapper .new-hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.new-hero .new-hero-wrapper .new-hero-content .stats-row {
    display: flex;
    margin-bottom: 2rem;
}

@media (max-width: 992px) {
    .new-hero .new-hero-wrapper .new-hero-content .stats-row {
        justify-content: center;
        flex-wrap: wrap;
    }
}

.new-hero .new-hero-wrapper .new-hero-content .stats-row .stat-item {
    margin-right: 2.5rem;
}

@media (max-width: 992px) {
    .new-hero .new-hero-wrapper .new-hero-content .stats-row .stat-item {
        margin: 0 1.5rem 1rem;
    }
}

.new-hero .new-hero-wrapper .new-hero-content .stats-row .stat-item .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.new-hero .new-hero-wrapper .new-hero-content .stats-row .stat-item .stat-label {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.new-hero .new-hero-wrapper .new-hero-content .action-buttons {
    display: flex;
    gap: 15px;
}

@media (max-width: 992px) {
    .new-hero .new-hero-wrapper .new-hero-content .action-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
}

.new-hero .new-hero-wrapper .new-hero-content .action-buttons a {
    padding: 14px 28px;
    font-weight: 600;
    border-radius: 8px;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

@media (max-width: 576px) {
    .new-hero .new-hero-wrapper .new-hero-content .action-buttons a {
        width: 100%;
    }
}

.new-hero .new-hero-wrapper .new-hero-content .action-buttons .btn-primary {
    background: var(--accent-color);
    color: var(--contrast-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.new-hero .new-hero-wrapper .new-hero-content .action-buttons .btn-primary:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.new-hero .new-hero-wrapper .new-hero-content .action-buttons .btn-secondary {
    background: var(--surface-color);
    color: var(--default-color);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
}

.new-hero .new-hero-wrapper .new-hero-content .action-buttons .btn-secondary:hover {
    color: var(--heading-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.new-hero .new-hero-wrapper .new-hero-media {
    position: relative;
}

@media (max-width: 992px) {
    .new-hero .new-hero-wrapper .new-hero-media {
        margin-top: 3rem;
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
}

.new-hero .new-hero-wrapper .new-hero-media .main-image {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
}

.new-hero .new-hero-wrapper .new-hero-media .main-image:hover {
    transform: perspective(1000px) rotateY(0);
}

.new-hero .new-hero-wrapper .new-hero-media .image-overlay {
    position: absolute;
    bottom: -20px;
    right: -20px;
}

@media (max-width: 992px) {
    .new-hero .new-hero-wrapper .new-hero-media .image-overlay {
        right: 0;
    }
}

.new-hero .new-hero-wrapper .new-hero-media .image-overlay .badge-accredited {
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.new-hero .new-hero-wrapper .new-hero-media .image-overlay .badge-accredited i {
    font-size: 1.3rem;
}

.new-hero .feature-cards-wrapper {
    margin-top: -40px;
    padding-bottom: 40px;
    position: relative;
    z-index: 10;
}

.new-hero .feature-cards-wrapper .feature-card {
    background: var(--surface-color);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
}

.new-hero .feature-cards-wrapper .feature-card:hover,
.new-hero .feature-cards-wrapper .feature-card.active {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.new-hero .feature-cards-wrapper .feature-card.active {
    background: var(--surface-color);
    border-left: 4px solid var(--accent-color);
}

.new-hero .feature-cards-wrapper .feature-card.active .feature-icon {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.new-hero .feature-cards-wrapper .feature-card .feature-icon {
    width: 60px;
    height: 60px;
    background: color-mix(in srgb, var(--heading-color), transparent 90%);
    color: var(--heading-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.new-hero .feature-cards-wrapper .feature-card .feature-content {
    flex: 1;
}

.new-hero .feature-cards-wrapper .feature-card .feature-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.new-hero .feature-cards-wrapper .feature-card .feature-content p {
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin: 0;
}
