/* CSS Styling */
.footer {
    color: #f0ba48;
    padding: 20px 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media(max-width: 600px) {
    .footer-container {
        display: inline-block;
    }
}

.footer-card {
    background: #2f2f2f1f;
    border-radius: 30px !important;
    border: 1px solid #f0ba48;
    box-shadow: 67.1px 62.5px 125px -25px rgb(9 9 14/86%),16.2px 37.5px 75px -37.5px rgb(6 12 34/27%);
}

.footer-icon {
    margin-top: 6px;
    margin-left: 1px;
}

.footer-column {
    flex: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-size: 18px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin-block-start: 1em;
    margin-block-end: 1em;
}

.footer-links li {
    margin-bottom: 5px;
}

.footer-links a {
    color: #f0ba48;
    text-decoration: none;
}

.footer-links a:hover {
    color: #f09d27;
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(24, 24, 24, 0.8);
}

.footer-center {
    text-align: center;
}

.footer-logo img {
    max-width: 200px;
}

@media (max-width: 768px) {
    .footer-logo img {
        padding-top: 10px;
    }
}

.footer-social-media {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.social-box {
    display: flex; /* Change to 'flex' to enable flexbox */
    align-items: center; /* Vertically center the icon */
    justify-content: center; /* Horizontally center the icon */
    width: 40px;
    height: 40px;
    border-radius: 35%;
    color: #f0ba48;
    margin: 0 5px;
    font-size: 20px;
    transition: background-color 0.3s ease;
    background-color: #29292985;
}

.social-box:hover {
    color: #f09d27;
    background-color: #292929d9;
}

.footer-rights {
    margin-top: 10px;
    font-size: 14px;
    color: #bbb;
}

@media (max-width: 768px) {
    .footer-rights {
        margin-bottom: 10px;
    }
}

.footer-contact {
    margin-block-start: 1em;
    margin-block-end: 1em;
}

.footer-contact p {
    margin-bottom: 5px;
}

.footer-contact a {
    color: #f0ba48;
    text-decoration: none;
}

.footer-contact a:hover {
    color: #f09d27;
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(24, 24, 24, 0.8);
}
