/* Floating Logo Container Styling */
.floating-logo-container {
    position: fixed;
    top: 90px;
    left: 30px;
    width: 300px; /* Adjust width as needed */
    height: 110px;
    background: white;
    padding: 10px;
    border-radius: 15px; /* Rounded corners */
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.5); /* Soft shadow */
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    animation: popIn 0.5s ease-out;
}

/* Individual Logo Styling */
.floating-logo img {
    width: 150px; /* Adjust size */
    height: auto;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Glowing Effect on Hover */
.floating-logo img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 165, 0, 0.8);
}

/* Click Effect */
.floating-logo img:active {
    transform: scale(1.2);
    box-shadow: 0 0 30px rgba(255, 165, 0, 1);
}

/* Pop-in Animation */
@keyframes popIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .floating-logo-container {
        width: 160px; /* Smaller width for mobile */
        left: 10px;
        height:80px;
    }

    .floating-logo img {
        width: 70px; /* Smaller logos for mobile */
    }
}
