body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5faff;
    color: #00334e;
}

header {
    text-align: center;
    padding: 2rem 1rem 1rem;
}

.logo {
    max-width: 120px;
    height: auto;
    display: block;
    margin: 0 auto 1rem;
    box-shadow: 0 0 20px rgba(0, 140, 255, 0.5);
    transition: transform 0.4s ease, box-shadow 0.4s ease, opacity 1s ease;
    opacity: 0;
    animation: logoFadeIn 1.2s ease forwards;
}

.logo:hover {
    transform: scale(1.08);
    box-shadow: 0 0 30px rgba(0, 174, 255, 0.8);
}

h1 {
    margin: 0.5rem 0 0.2rem;
    font-size: 2rem;
}

.tagline {
    font-size: 1.5rem;
    color: #005c8d;
}

.services-container {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.service-box {
    background: #ffffff;
    border: 2px solid #cde9f9;
    margin-bottom: 1rem;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.service-box h2 {
    margin: 0 0 0.5rem;
}

.service-box .demo {
    display: none;
    margin-top: 0.5rem;
    color: #666;
}

.service-box.expanded {
    background-color: #e6f7ff;
}

.service-box.expanded .demo {
    display: block;
}

footer {
    text-align: center;
    padding: 1rem;
    background-color: #00334e;
    color: white;
    margin-top: 3rem;
}

/* 🔁 Background Video */
#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100vw;
    min-height: 100vh;
    object-fit: cover;
    z-index: -1;
    opacity: 1;
    transform: scale(1);
}

/* ✨ Logo Fade In Animation */
@keyframes logoFadeIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* 🎬 Splash Screen Styling */
#splash-screen {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: black;
}

#splash-video {
    width: 100vw;
    height: 100vh;
    object-fit: contain; /* 👈 This fixes the zoom */
    background-color: black; /* Optional: fills gaps on sides */
}