.amra-footer {
    background: var(--secondary-color);
    color: #fff;
    padding: 60px 30px 30px;
}
.amra-footer-widgets {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}
.amra-widget-title {
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}
.amra-widget-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-menu li {
    margin-bottom: 10px;
}
.footer-menu a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-menu a:hover {
    color: var(--primary-color);
}
.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}
.contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.contact-info i {
    margin-left: 10px;
    color: var(--primary-color);
}
.social-links {
    display: flex;
    gap: 15px;
}
.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}
.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    color: #fff;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
}
.copyright p {
    margin: 0;
    color: #ecf0f1;
    font-size: 14px;
}
.namads {
    display: flex;
    gap: 10px;
}
.namad {
    width: 100px;
    height:100px;
    background-color: #fff;
    border-radius: 1000px;
    object-fit: cover;
    padding: 10px;
}
/* Mobile Footer Menu */
.mobile-footer-wrapper {
    display: none;
    position: fixed;
    bottom: 10px;
    right:0;
    z-index: 1000;
    width: 100%;
}
.mobile-footer-menu {
    background: var(--secondary-color);
    padding: 10px 0;
    width: 90%;
    border-radius: 15px;
    margin: 0 auto;
}

.mobile-footer-menu .menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    gap: 5px;
}

.mobile-footer-menu .menu-item i {
    font-size: 20px;
}

@media (max-width: 991px) {
    .amra-footer-widgets {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .amra-footer-widgets {
        grid-template-columns: 1fr;
    }

    .mobile-footer-menu {
        display: flex;
        justify-content: space-around;
    }

    .mobile-footer-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .amra-footer {
        padding-bottom: 80px;
		margin-top: 30px;
    }
}