/* ============================= */
/* FOOTER SECTION */
/* ============================= */
.footer-section {
    position: relative;
    height: 100vh;
    /*display: flex;*/
    justify-content: center;
    /*align-items: center;*/
    overflow: hidden;
}
  
/* BACKGROUND VIDEO */
.footer-section video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -2;
    opacity: 0;
    transition: opacity 1.5s ease;
}

/* GRADIENT OVERLAY */
.footer-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgb(187 182 195 / 25%), transparent 60%), linear-gradient(to bottom, rgb(0 23 24 / 89%), rgba(0, 0, 0, 0.85));
    z-index: -1;
}
  