/* Footer Section Styles */
.footer-section {
    background-color: #292b2c;
    color: #ffffff;
    padding: 50px 0;
    font-family: 'Helvetica Neue', sans-serif;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #292b2c;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 30px;
}

.footer-column h4 {
    color: #ffd700; /* Golden headings */
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: bold;
}

.footer-column p,
.footer-column a {
    font-size: 15px;
    line-height: 1.7;
    color: #ffffff;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #ffd700; /* Golden links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Social Media Styles with Updated Animation */
.social-media {
    margin-top: 15px;
    text-align: center;
    padding-bottom: 25px;
    color: #ffd700;
}

.social-media h5 {
    font-size: 16px;
    color: #ffd700;
    margin-bottom: 10px;
}

.social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social a {
    font-size: 25px;
    color: #3ce8ff;
    border: 2px solid #ffd700;
    width: 42px;
    height: 42px;
    line-height: 42px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    margin: 0 10px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.social a:hover {
    transform: scale(1.2) translateY(-10px);
    background-color: #ffd700;
    color: black;
    box-shadow: 0 0 25px #ffd700;
}

/* Add glow effect */
.social a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 215, 0, 0.4),
        transparent
    );
    transition: 0.5s;
}

.social a:hover::before {
    left: 100%;
}

/* Footer Bottom Section - Copyright */
.footer-bottom {
    background-color: #121010f5; /* Black background */
    color: #ffffff; /* White text */
    padding: 20px 0;
    text-align: center; /* Center the text horizontally */
    font-size: 14px;
    font-weight: bold; /* Bold text */
}

.footer-bottom p {
    margin: 0;
    padding: 0; /* Remove margins/paddings to perfect alignment */
    font-size: 16px;
    font-weight: bold;
    color: #ffffff; /* Ensure text color is white */
}

.secure-icons {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-columns {
        flex-direction: column;
        align-items: center;
    }
    .footer-bottom p {
        font-size: 14px; /* Smaller text size on mobile */
    }
    
    .footer-column {
        text-align: center;
        margin-bottom: 20px;
    }

    .social {
        justify-content: center;
    }

    .social a {
        width: 38px;
        height: 38px;
        line-height: 38px;
        font-size: 22px;
    }

    .secure-icons {
        flex-direction: column;
    }

    .footer-column p, .footer-column ul {
        font-size: 14px;
    }
}