        footer {
            background-color: var(--dark-color);
            color: #cbd5e1;
            padding-top: 70px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-col h4 {
            color: var(--white);
            font-size: 1.2rem;
            margin-bottom: 25px;
            position: relative;

        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            inset-inline-start: 0;
            bottom: -8px;
            width: 40px;
            height: 2px;
            background-color: var(--secondary-color);
        }

        .footer-col ul li {
            margin-bottom: 12px;
        }

        .footer-col ul li a:hover {
            color: var(--secondary-color);
            padding-right: 5px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: var(--transition);
        }

        .social-icon:hover {
            background-color: var(--primary-color);
            color: var(--white);
        }

        .copyright {
            background-color: #0f172a;
            text-align: center;
            padding: 20px;
            font-size: 0.9rem;
        }
        .a-tag-footer {
            color: inherit;
            text-decoration: none;
            transition: var(--transition);
            display: inline-block;
        }

        .a-tag-footer:hover {
            color: #ffc800;
            transform: translateX(10px);
        }
        
        
/* استایل فوتر - به این صورت اضافه کنید */
footer {
    background-color: #1e293b !important;
    color: #cbd5e1;
    padding: 70px 0 0 0 !important;
    width: 100% !important;
    margin: 0 !important;
}

/* محتوای فوتر را محدود می‌کنیم */
footer .footer-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* کپی‌رایت */
.copyright {
    background-color: #0f172a;
    text-align: center;
    padding: 20px !important;
    margin: 0 !important;
    width: 100% !important;
}