/* Footer CSS */
.footer-default {
    padding: 50px;
    background-color: #111 !important;
    color: #ccc !important;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.footer-default a {
    color: #ccc !important;
    text-decoration: none;
    transition: 0.3s;
}

.footer-default a:hover {
    color: #6255FA !important;
}

/* Footer Shapes */
.footer-default .shape {
    position: absolute;
}

.footer-default .shape img {
    max-width: 100%;
    display: block;
}

/* Footer Decorative Shapes */
.footer-default .shape-one {
    top: -20px;
    left: -20px;
    width: 120px;
    opacity: 0.6;
}

.footer-default .shape-two {
    top: 50px;
    right: -30px;
    width: 150px;
    opacity: 0.5;
}

.footer-default .shape-three {
    bottom: -40px;
    left: 10%;
    width: 100px;
    opacity: 0.4;
}

.footer-default .shape-four {
    bottom: 20px;
    right: 15%;
    width: 150px;
    opacity: 0.5;
}

.footer-default .shape-five {
    top: 150px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    opacity: 0.3;
}

/* Ensure images scale properly */
.footer-default .shape img {
    width: 40%;
    height: auto;
    display: block;
}

.footer-logo img {
    width: 150px; /* Adjust as needed */
    height: auto;
    display: block;
    border-radius: 50%;
}

/* Widget Titles */
.footer-default .widget-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff !important;
    position: relative;
}
 
/* Footer Nav */
.footer-default .widget-nav li {
    margin-bottom: 10px;
}

.footer-default .widget-nav li a {
    font-size: 17px;
}

.footer-default .widget-nav li a:hover {
    color: #6255FA !important;
}

/* About Text */
.footer-default .footer-about-widget p {
    font-size: 17px;
    line-height: 1.8;
}

/* Social Links */
.footer-default .social-link li {
    list-style: none;
}

#list {
    margin-left: -40px !important;
}

.footer-default .social-link li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #222;
    border-radius: 50%;
    color: #fff !important;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-default .social-link{
    margin-left: -37px;
}

.footer-default .social-link li a:hover {
    background-color: #6255FA !important;
}

/* Footer Copyright */
.footer-default .footer-copyright {
    background-color: #0a0a0a !important;
    color: #ccc !important;
    padding: 15px 0;
}

.footer-default .footer-copyright .text-primary a{
    color: #6255FA !important;
}

/* Contact Info */
.footer-default .contact-info h5 {
    color: #fff !important;
    font-weight: 600;
}

.footer-default .contact-info p {
    font-size: 17px;
    margin-bottom: 0.5rem;
    color: #ccc !important;
}

/* Responsive fixes */
@media (max-width: 767.98px) {
    .footer-default .footer-widget-area {
        padding-bottom: 40px;
    }
}