.footer-subscribe-newsletter-floating-container {
    position: relative;
    background-color: #222531;
    padding: 30px;
    border-radius: 10px;
    margin: 50px 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    /* Enhanced box shadow */
    animation: floatAnimation 3s ease-in-out infinite alternate;
    /* Animation for floating effect */
    transform-style: preserve-3d;
    /* Ensures 3D transformations are handled properly */
}

@keyframes floatAnimation {

    0%,
    100% {
        transform: translateY(0) translateZ(0);
        /* No change in transform */
        /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */
        box-shadow: 5px 5px 10px rgba(38, 38, 238, 0.5);
        /* No change in box shadow */
    }

    50% {
        transform: translateY(-10px) translateZ(0);
        /* Floating effect with translateZ(0) */
        /* box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2); */
        box-shadow: -5px -5px 10px rgba(238, 238, 238, 0.5);
        /* Enhanced box shadow */
    }
}

.footer-subscribe-newsletter-floating-container input[type="email"] {
    background-color: #222531;
    color: #f0f0f0;
}

.footer-subscribe-newsletter-floating-container input[type="email"]::placeholder {
    color: #f0f0f0;
    opacity: 0.3;
}

.footer-subscribe-newsletter-title {
    color: #3861fa;
    margin-bottom: 10px;
}

.footer-subscribe-newsletter-button {
    background-color: #486dfb;
    border-color: #486dfb;
}

.footer-subscribe-newsletter-button:hover {
    background-color: #2e46c1;
    border-color: #2e46c1;
}

/* Footer */

#emailInput{
    max-width: 250px;
}

.hr-divider {
    border-top: 1px solid #ccc;
    margin: 30px 0;
}

.footer-logo {
    max-height: 36px;
    object-fit: contain;
}

.social-icons {
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-icons .list-inline-item {
    margin-right: 10px; /* Adjust spacing between social icons */
}

.social-icons .list-inline-item a {
    color: #fff;
    font-size: 24px;
}

.social-icons .list-inline-item a:hover {
    color: #486dfb; /* Adjust hover color as needed */
}

/* Center align text in the copyright section */
.footer-row p {
    text-align: center;
}