* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    height: 100%;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    background-image: url("images/okaibebg.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.social-container {
    width: 100%;
    padding-bottom: 100px;
    display: flex;
    justify-content: center;
}

.social-icons {
    display: flex;
    gap: 25px;
}

/* Animation for each social icon */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.social-icons a {
    color: #0274BA;
    font-size: 44px;
    transition: color 0.3s ease;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

/* Delay each icon animation */
.social-icons a:nth-child(1) {
    animation-delay: 0.3s;
}

.social-icons a:nth-child(2) {
    animation-delay: 0.6s;
}

.social-icons a:nth-child(3) {
    animation-delay: 0.9s;
}

.social-icons a:hover {
    color: #2b97da;
}

@media (max-width: 768px) {

    .hero {
        background-image: url("images/okaibebgmobile.jpg");
        height: 100% !important;
    }
    
    .social-container {
    padding-bottom: 140px;
    }

    .social-icons {
        gap: 20px;
    }

    .social-icons a {
        font-size: 35px;
    }
}