.intro-section-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 86vh;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    box-sizing: border-box;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-video video {
    object-fit: cover;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0.5;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 3;
    color: white;
    text-align: center;
    padding: 0 1rem;
}

@media (max-width: 767px) {
    .hero-content {

    }
    .hero-content p,
    .hero-content h1 {
        margin-bottom: 2px;
    }
    a.btn.btn-primary,
    a.btn.btn-secondary {
        margin: 2px;
        padding-block: 2px;
    }
}

.hero-content h1 {
    /* font-size: 2rem; */
    margin-bottom: 1rem;
}

.hero-content p {
    /* font-size: 1.2rem; */
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media(min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    color: white;
    border: 1px solid white;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-primary {
    background: #1E3A8A;
    border: none;
}

.btn-primary:hover {
    background: #3B82F6;
    color: #b5862c;
}

.btn-secondary {
    background: transparent;
    border: 1px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #1E3A8A;
}