* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* Ensure full-height backgrounds on mobile */
html, body {
    height: 100%;
    background: linear-gradient(135deg, #0f1724 0%, #1f2a44 50%, #2b3b60 100%);
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 70px;
    background: rgba(0, 0, 0, 0.55);

    display: flex;
    align-items: center;
    justify-content: space-between; /* 👈 KEY FIX */

    padding: 0 40px;
    z-index: 10;
}

/* Logo LEFT */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 55px;
}

/* Menu RIGHT */
.menu {
    display: flex;
    align-items: center;
    gap: 25px; /* clean spacing */
}

.menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}

/* CTA Button */
.cta-btn {
    background: #525bdc;
    padding: 10px 18px;
    border-radius: 4px;
    color: #000;
    font-weight: bold;
}


.cta-btn:hover {
    background: #525bdc;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    padding: 60px 0;
    min-height: calc(100vh - 70px);
    overflow: hidden;
    background: transparent; /* page background already provides gradient */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background Video */
.bg-video {
    display: block;
    width: 85%;
    max-width: 1000px;
    height: auto;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
    /* Slight enhancement to perceived contrast/clarity */
    filter: saturate(1.05) contrast(1.03) brightness(0.95);
}
.overlay-content {
    position: absolute;
    top: 12%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    width: 100%;
    pointer-events: none;
}

.overlay-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.overlay-content p {
    font-size: 18px;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .overlay-content h1 { font-size: 24px; }
    .overlay-content p { font-size: 13px; }
    .hero { padding: 30px 0; min-height: calc(100vh - 70px); }
    .bg-video { width: 95%; max-width: 640px; }
}
