 /* Custom CSS for video background - classes beginning with nachd- */
 .nachd-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.nachd-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

.nachd-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

/* Additional helper classes */
.h-700px {
    height: 700px;
}

.h-sm-600px {
    height: 600px;
}

.h-lg-700px {
    height: 700px;
}

@media (max-width: 576px) {
    .h-sm-600px {
        height: 600px;
    }
}

@media (min-width: 992px) {
    .h-lg-700px {
        height: 700px;
    }
}

.rounded-top-4 {
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}

.fill-body {
    fill: #fff;
}

.fill-orange {
    fill: #fd7e14;
}

.fill-primary {
    fill: #0d6efd;
}

.z-index-9 {
    z-index: 9;
}

.all-text-white {
    color: white;
}

.btn-round {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-white-shadow {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.me-7 {
    margin-right: 2rem;
}

.overflow-visible {
    overflow: visible;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.bg-dark {
    background-color: #212529;
}

.opacity-5 {
    opacity: 0.05;
}
.highlight {
    background-color: yellow;
    font-weight: bold;
    padding: 0 2px;
    border-radius: 2px;
}
