/* Reset some basic styles */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Background Container */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Background Image */
.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Video Background */
.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

#background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0; /* Start hidden */
    transition: opacity 1s ease-in-out;
}

/* Centered Text */
.content {
    position: absolute;
    top: 0px;
    left: 50px;
    color: #fff;
    z-index: 2;
}

/* Logo at Bottom */
.logo-container {
    position: absolute;
    bottom: 30px; /* Adjust distance from bottom as needed */
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
}

.logo {
    width: 60px;
    height: auto;
}

/* Text Styling */
.company-name {
    font-family: "Bebas Neue", sans-serif;
    font-size: 60px;
    font-weight: normal;
    color: white;
}

/* Hide elements initially */
.hidden {
    display: none;
}

/* for smaller devices */
@media only screen and (max-width: 700px)  {
    .company-name {
        font-size: 40px;
    }
    .logo {
        width: 50px;
        height: auto;
    }
    .content {
        left: 30px;
    }
}
