.hero {
    width: 100%;
    background-size: cover;
    position: relative;
    min-height: 40vh;
    padding: 100px 0 60px 0;
}

.hero h1,
.hero h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (min-width: 768px) {

    .hero h1,
    .hero h3 {
        font-size: 40px;
    }
}

.default_color {
    color: var(--color-primary);
}

.white_color {
    color: #ffffff !important;
}

.section-bg {
    background-color: #bb434d;
}

.hero.section-bg {
    background-color: #bb434d;
}

.video-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
}

.video-responsive:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.video-responsive img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img_udjust {
    width: 100%;
    height: auto;
    display: block;
}

.row.gy-5>div {
    margin-bottom: 20px;
}

/* Play button overlay effect */
.video-responsive::after {
    content: '\F5B0';
    /* Bootstrap icons play fill */
    font-family: 'bootstrap-icons';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    color: rgba(255, 255, 255, 0.8);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.video-responsive:hover::after {
    opacity: 1;
}