
      
        .footer {
            background-color: #111827 !important;
            color: #f9fafb;
            padding: 4rem 2rem 2rem;
            background:url(../img/footer.png);
        }
        
        .footer-container {
            /* max-width: 1200px; */
            /* margin: 0 auto */
            justify-content: center;
        }
        
        .footer-top {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: space-between;
            margin-bottom: 3rem;
        }
        
        .footer-column {
            flex: 1;
            /* min-width: 100px; */
        }
        
        .brand-column {
            flex: 1.5;
            min-width: 300px;
        }
        
        .footer-logo {
            display: flex;
            /* align-items: center; */
            margin-bottom: 1.5rem;
        }
        
        .footer-logo-icon {
            background-color: #4f46e5;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            margin-right: 10px;
        }
        
        .footer-logo-text {
            font-size: 1.5rem;
            font-weight: 700;
        }
        
        .footer-description {
            color: #9ca3af;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }
        
        .social-link {
            background-color: #1f2937;
            color: #f9fafb;
            width: 36px;
            height: 36px;
            border-radius: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .social-link:hover {
            background-color: #d73122;
            color: white;
            transform: translateY(-3px);
        }
        
        .footer-heading {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 1.25rem;
            color: #f9fafb;
        }
        
        .footer-linksss {
            list-style: none;
            margin-left: -30px;
            
        }
        
        .footer-link {
            margin-bottom: 0.75rem;
        }
        
        .footer-link a {
            color: #9ca3af;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 0.9rem;
            font-size: 15px;
        }
        
        .footer-link a:hover {
            color:#d73122;
        }
        
        .divider {
            height: 1px;
            background-color: #374151;
            margin: 2rem 0;
        }
        
        .footer-bottom {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            color: #9ca3af;
            font-size: 0.875rem;
        }
        
        .footer-bottom-links {
            display: flex;
            gap: 1.5rem;
        }
        
        .footer-bottom-links a {
            color: #9ca3af;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-bottom-links a:hover {
            color:#d73122;
        }
        
        .newsletter-form {
            display: flex;
            margin-top: 1rem;
        }
        
        .newsletter-input {
            background-color: #1f2937;
            border: 1px solid #374151;
            color: #f9fafb;
            padding: 0.75rem 1rem;
            border-radius: 6px 0 0 6px;
            flex-grow: 1;
            outline: none;
            transition: border-color 0.3s ease;
        }
        
        .newsletter-input:focus {
            border-color: #4f46e5;
        }
        
        .newsletter-button {
            background-color: #4f46e5;
            color: #f9fafb;
            border: none;
            padding: 0.75rem 1rem;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            font-weight: 500;
            transition: background-color 0.3s ease;
        }
        
        .newsletter-button:hover {
            background-color: #4338ca;
        }
        
        /* Responsive footer */
        @media screen and (max-width: 768px) {
            .footer-top {
                flex-direction: column;
            }
            
            .footer-column, .brand-column {
                flex: 1 1 100%;
            }
            
            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
            
            .footer-bottom-links {
                justify-content: center;
                flex-wrap: wrap;
            }
        }