/*Blog header css style*/

 /* Footer */
 
 .ftbox ul li a{
	 text-decoration:none;
 }
 
        .footer {
            background: black;
            padding: 4rem 0;
        }

        .footer-grid {
            display: grid;
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .footer-brand {
            margin-bottom: 1.5rem;
        }

        .footer-logo {
            font-size: 1.875rem;
            font-weight: bold;
            color: white;
            margin-bottom: 0.5rem;
        }

        .footer-tagline {
            color: #d1d5db;
            font-size: 1.125rem;
        }

        .footer-contact {
            margin-top: 1.5rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: #d1d5db;
            margin-bottom: 0.75rem;
            text-decoration: none;
            transition: color 0.2s;
        }

            .contact-item:hover {
                color: white;
            }

        .contact-icon {
            width: 1.25rem;
            height: 1.25rem;
            color: #E30613;
        }

        .footer-section {
            margin-bottom: 2rem;
        }

        .footer-section-title {
            color: white;
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .footer-links {
            list-style: none;
        }

            .footer-links li {
                margin-bottom: 0.5rem;
            }

            .footer-links a {
                color: #d1d5db;
                text-decoration: none;
                transition: color 0.2s;
            }

                .footer-links a:hover {
                    color: white;
                }

        .footer-bottom {
            border-top: 1px solid #374151;
            padding-top: 2rem;
        }

        .footer-bottom-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        .footer-copyright {
            color: #9ca3af;
            font-size: 0.875rem;
        }

        .footer-social {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .social-icon {
            color: #9ca3af;
            text-decoration: none;
            transition: color 0.2s;
        }

            .social-icon:hover {
                color: white;
            }

        .footer-legal {
            color: #9ca3af;
            font-size: 0.875rem;
        }

            .footer-legal a {
                color: #9ca3af;
                text-decoration: none;
                margin-right: 1rem;
                transition: color 0.2s;
            }

                .footer-legal a:hover {
                    color: white;
                }

        @media (min-width: 1024px) {
            .footer-grid {
                grid-template-columns: 2fr 1fr 1fr;
            }

            .footer-bottom-content {
                flex-direction: row;
                justify-content: space-between;
            }
        }