.vc-hero {
    position: relative;
    width: 100%;
    min-height: 780px;
    background-image: url('../assets/images/vakilchi-hero-main.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.vc-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.vc-hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.vc-hero-items {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    width: fit-content;
    gap: 30px;
}

.vc-hero-title {
    display: flex;
}

.vc-hero-title h1 {
    font-size: 70px;
    font-weight: 900;
}

.vc-hero-subtitle h2 {
    font-size: 50px;
    font-weight: 800;
}

.vc-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.3);
    width: fit-content;
    border-radius: 20px;
    padding: 12px;
}

.vc-buttons a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--white-color);
    width: 200px;
    height: 60px;
    border-radius: 16px;
    font-size: 20px;
    font-weight: 700;
    box-shadow: var(--button-shadow);
    transition: 0.3s ease-in-out;
    opacity: 1;
}

.vc-buttons a.btn-black {
    background: var(--text-color);
    color: var(--white-color);
}

.vc-buttons a.btn-black:hover,
.vc-buttons a.btn-white:hover {
    opacity: 0.9;
}




@media (max-width: 1400px) {
    .vc-hero {
        padding: 0 50px;
    }

    .vc-hero-title h1 {
        font-size: 60px;
    }

    .vc-hero-subtitle h2 {
        font-size: 40px;
    }
}

@media (max-width: 1200px) {
    .vc-hero {
        padding: 0 40px;
        min-height: 480px;
    }

    .vc-hero-title h1 {
        font-size: 50px;
    }

    .vc-hero-subtitle h2 {
        font-size: 34px;
    }

    .vc-buttons a {
        width: 180px;
        height: 54px;
        font-size: 18px;
    }
}

@media (max-width: 992px) {
    .vc-hero {
        padding: 0 30px;
        min-height: 400px;
    }

    .vc-hero-items {
        gap: 20px;
    }

    .vc-hero-title h1 {
        font-size: 40px;
    }

    .vc-hero-subtitle h2 {
        font-size: 26px;
    }

    .vc-buttons a {
        width: 170px;
        height: 50px;
        font-size: 18px;
    }

}

@media (max-width: 768px) {

    .vc-hero {
        background-image: url('../assets/images/vakilchi-hero-mobile.webp');
        padding: 0 10px 30px;
        min-height: 720px;
        align-items: end;
    }

    .vc-hero-items {
        gap: 20px;
        padding: 24px;
        border-radius: 24px;
        background-color: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    .vc-hero-title h1 {
        font-size: 40px;
        color: var(--white-color);
        text-align: center;
    }

    .vc-hero-subtitle h2 {
        font-size: 28px;
        color: var(--white-color);
        text-align: center;
    }

    .vc-buttons {
        gap: 8px;
        padding: 8px;
    }

    .vc-buttons a {
        width: 150px;
        height: 46px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .vc-hero {
        min-height: 580px;
    }

    .vc-hero-title h1 {
        font-size: 32px;
    }

    .vc-hero-subtitle h2 {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .vc-hero-title h1 {
        font-size: 26px;
    }

    .vc-hero-subtitle h2 {
        font-size: 22px;
    }
}

@media (max-width: 390px) {
    .vc-hero {
        padding: 0 0 20px;
    }

    .vc-hero-items {
        padding: 20px;
    }

    .vc-hero-title h1 {
        font-size: 24px;
    }

    .vc-hero-subtitle h2 {
        font-size: 20px;
    }
}


@media (max-width: 390px) {
    .vc-buttons a {
        width: 130px;
        height: 44px;
        font-size: 15px;
    }
}