/* ==================== ABOUT SECTION LOGO ANIMATION ==================== */
.about-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 400px;
}

.about-logo-animated {
    width: 300px;
    height: 300px;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(14, 165, 233, 0.6));
    animation: floatAndGlow 4s ease-in-out infinite;
}

@keyframes floatAndGlow {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        filter: drop-shadow(0 0 30px rgba(14, 165, 233, 0.6));
    }

    25% {
        transform: translateY(-15px) rotate(3deg) scale(1.05);
        filter: drop-shadow(0 0 40px rgba(14, 165, 233, 0.8));
    }

    50% {
        transform: translateY(0px) rotate(0deg) scale(1);
        filter: drop-shadow(0 0 30px rgba(14, 165, 233, 0.6));
    }

    75% {
        transform: translateY(-15px) rotate(-3deg) scale(1.05);
        filter: drop-shadow(0 0 40px rgba(14, 165, 233, 0.8));
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-logo-animated {
        width: 200px;
        height: 200px;
    }

    .about-logo-container {
        min-height: 300px;
    }
}