/* Full page video container */
.video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* Video fully covers screen */
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Dark layer on video */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* Center content */
.content-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    color: #fff;
    padding: 20px 40px;
}

/* Company name */
.title {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: 2px;
}

/* "Coming Soon" animation */
.coming {
    font-size: 32px;
    font-weight: 600;
    margin-top: 10px;
    animation: fade 2s infinite;
}

@keyframes fade {
    0% { opacity: 0.3; }
    50% { opacity: 1; }
    100% { opacity: 0.3; }
}

/* Contact info */
.contact {
    margin-top: 25px;
    font-size: 18px;
}

.contact a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .title {
        font-size: 32px;
    }
    .coming {
        font-size: 24px;
    }
    .contact {
        font-size: 16px;
    }
}
