
/* floaing video part */

    #floatingWebm {
        position: fixed;
        width: 120px;
        height: auto;
        z-index: 999;
        pointer-events: none; /* allow clicks through */
        opacity: 0.85;
        transition: transform 6s linear;
    }

    @media (max-width: 768px) {
        #floatingWebm {
            width: 80px;
        }
    }



    .hero {
    background-color: #045b91; /* Primary blue */
    color: white;
    padding: 60px 0; /* Cleaner padding */
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeIn 1s ease-in;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    width: 150px;
    height: auto;
    margin-left: 15px;
    opacity: 0.9;
    border-radius: 50%; /* Rounded for better UI */
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
}

.hero-buttons .btn {
    margin: 0 10px;
    padding: 12px 24px;
    border-radius: 50px; /* Pill-shaped for modern look */
    transition: transform 0.3s;
}

.hero-buttons .btn:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .hero-video { width: 120px; margin-left: 10px; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { margin-bottom: 10px; }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}