/* --- HERO 1 AREA STYLES RESTORED --- */
.hero1-area {
    height: 780px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hero1-area {
        height: 1000px;
    }
}

@media (max-width: 767px) {
    .hero1-area {
        height: auto;
        /* Let it grow for mobile */
        min-height: 1000px;
    }
}

.hero1-area .main-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* Behind everything */
}

.hero1-area .main-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.hero1-content {
    position: relative;
    z-index: 10;
    /* Above image */
    padding-top: 150px;
    height: 100%;
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .hero1-content {
        padding-top: 100px;
        padding-bottom: 50px;
    }
}

.hero1-heading {
    position: relative;
    z-index: 10;
}

.hero1-heading h1 {
    font-size: 60px;
    /* Guessing based on original */
    font-weight: 700;
    line-height: 1.2;
    color: var(--vtc-text-title1);
    /* Try to match original var */
    margin-bottom: 20px;
}

.hero1-heading p {
    font-size: 18px;
    color: var(--vtc-text-body1);
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .hero1-heading h1 {
        font-size: 36px;
    }
}