* {
    text-decoration: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    list-style: none;
}


/* Footer Wrapper */
.footer {
    width: 100%;
    background-color: var(--footer-dark);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Top Section */
.footertop {
    background-color: var(--footer-dark);
    padding: 30px 0;
    width: 100%;
    box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.4);
    border-top: 2px solid var(--dark-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.footertopinner {
    width: 70%;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* Footer Inner Items */
.InnerItem {
    width: 20%;
    min-width: 200px;
    color: var(--light-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.InnerItem h3 {
    color: white;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 5px;
}

.InnerItem h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.InnerItem li {
    margin: 10px 0;
    display: flex;
    align-items: center;
}

.InnerItem li i {
    margin-right: 8px;
    color: var(--primary-color);
}

.InnerItem a {
    text-decoration: none;
    color: var(--light-color);
    transition: color 0.3s ease;
}

.InnerItem a:hover {
    color: var(--primary-color);
}

/* Bottom Section (Fixed to bottom of page) */
.footerbottom {
    background-color: var(--primary-color);
    width: 100%;        /* ✅ Stick to the bottom */
    bottom: 0;
    left: 0;
    z-index: 999;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
}

/* Inner Bottom Content */
.footerbottominner {
    display: flex;
    width: 60%;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
}

.copyright {
    color: var(--light-color);
    margin: 10px 0;
    width: 80%;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}



/* Responsive Design */
@media (max-width: 768px) {
    .footertopinner {
        width: 90%;
    }

    .InnerItem {
        width: 45%;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .footertopinner {
        width: 95%;
        flex-direction: column;
    }

    .InnerItem {
        width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }

    .InnerItem h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .InnerItem li {
        justify-content: center;
    }

    .footerbottominner {
        width: 90%;
    }
}
