.logo-img{
    position: absolute;
    top: 12%;
    left: 8%;
    transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
span{
    color: #f2cb4d;
}
/* Fullscreen background video */
   #video-background {
    position: fixed;
    right: 0;
    bottom: 0;
    width: 100%; 
    height: 100%;
    z-index: -1;
    object-fit: cover !important;
}

/* Center the content */
.centered-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
}

/* Overlay style */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.8); /* Darken the background video */
}

h1, h3 {
    font-family: 'Arial', sans-serif;
    opacity: 0; /* Initially hidden */
    animation: fadeIn 2s forwards;
}

h1 {
    font-size: 5rem;
    animation-delay: 1s;
    animation: slideIn 2s ease-out forwards;
}

h3 {
    font-size: 1.7rem;
    animation-delay: 3s ease-in forwards;
}

.logo {
    max-width: 150px;
    margin-bottom: 20px;
    animation: fadeIn 2s forwards; 
    animation-delay: 0.5s;
}
.social-icons {
    position: fixed;
    bottom: 20px; 
    left: 50%;
    transform: translateX(-50%);
    margin-top: 60px;
    text-align: center;
    opacity: 0; /* Initially hidden */
    animation: fadeIn 3s forwards;
    /*animation-delay: 2s;  Delay for social icons */
}
.social-icons a {
    color: white;
    margin: 10px;
    font-size: 1.5rem;
}

    /* Animations for text */
    @keyframes fadeIn {
        0% {
            opacity: 0;
        }
        100% {
            opacity: 1;
        }
    }

    @keyframes slideIn {
        0% {
            transform: translateY(-30px);
            opacity: 0;
        }
        100% {
            transform: translateY(0);
            opacity: 1;
        }
    }

    /* Responsive Media Query */
@media (max-width: 768px) {
    .logo {
        max-width: 150px; /* Reduce size on tablets */
        
    }
    .logo-img{
        top: 12%;
        left: 22%;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 150px; /* Further reduce size on small phones */
        
    }
    .logo-img{
        top: 12%;
        left: 22%;
    }
}