.hero-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: auto;
    background-image: url('../../images/img/hero.webp');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: left;
    padding: var(--container-padding);
    position: relative;
    background-color : rgba(0, 0, 0, 0.5);
}


.hero-left-content-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: var(--space-lg);
}

.hero-small-heading {
    font-size: calc(var(--mini-text) - 2px);
    color: var(--super-light-blue-bg);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 500;
    word-spacing: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 2px 5px;

}

.hero-small-heading::after {
    content: "";
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--super-light-blue-bg);
}

.hero-main-heading {
    font-size: var(--small-head);
    font-weight: 500;
    line-height: 1.2;
}

.hero-main-heading span {
    color: var(--super-light-blue-bg);
    font-weight: 700;

}



.hero-description {
    font-size: var(--small-para);
    line-height: 1.6;
    color: var(--dark-white);
    max-width: 80%;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.hero-cta a {
    min-width: clamp(120px, 20vw, 200px);
    white-space: nowrap;
    text-align: center;
}



@media (max-width: 768px) {
    .hero-left-content-container {
        width: 100%;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: var(--space-md);
    }
.hero-container{
    background-image: url('../../images/img/hero-mobile.webp');
}
    .hero-seperator {
        display: block;
        align-self: center;
        background-position: center;
        width: min(100%, 400px);
    }

    .hero-small-heading {
        word-spacing: 5px;
        justify-content: center;

    }

    .hero-small-heading::before {
        content: "";
        display: block;
        width: 20px;
        height: 2px;
        background-color: var(--super-light-blue-bg);
    }

    .hero-small-heading::after {
        content: "";
        display: block;
        width: 20px;
        height: 2px;
        background-color: var(--super-light-blue-bg);
    }
}

@media (max-width: 576px) {
    .hero-cta {
        flex-direction: column;
        gap: var(--space-sm);
        width: 100%;
        position: relative;
    }
    .hero-description {
        max-width: 100%;
    }

    .hero-left-content-container {
        gap: var(--space-sm);
    }

    .hero-cta .blue-btn, .hero-cta .trans-btn {
        width: 100%;
    }

    .hero-small-heading::before {
        display: none;
    }

    .hero-small-heading::after {
        display: none;
    }
}