.techno-hero {
    position: relative;
    height: 100vh;
    background-image: url("/uploads/images/welcome_page/banner/banner.jpg"); /* put your image here */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.techno-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.55) 45%,
        rgba(0, 0, 0, 0.15) 100%
    );
}

.hero-overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-tag {
    display: inline-block;
    color: #f7931e;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    color: #d1d1d1;
    font-size: 1.05rem;
    max-width: 520px;
}

.hero-buttons .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-buttons .btn-primary {
    background-color: #f7931e;
    border-color: #f7931e;
}

.hero-buttons .btn-primary:hover {
    background-color: #d97f0f;
    border-color: #d97f0f;
}

.hero-buttons .btn-outline-light:hover {
    background-color: #ffffff;
    color: #000;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.4rem;
    }

    .techno-hero {
        height: 65vh;
    }
}
