/* footer.css */

footer {
    width: 100%;
    max-width: 100%;
    margin-top: 2rem; 
    padding: 2rem 0;
    background-color: #f5f5f5;
    border-top: 3px solid #0099ff;
    color: #333;
    text-align: center;
    box-sizing: border-box;
}

.footer-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem; 
    gap: 0.75rem; 
}

.footer-banner-text {
    font-size: 1.4rem;
    color: #333;
    font-weight: 500;
}

.footer-banner-image {
    height: 30px; 
    width: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr; 
    gap: 2rem;
    padding: 0 1rem;
}

.footer-section {
    text-align: left;
}

.footer-section h3 {
    color: #0099ff;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #0099ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #40fe2a;
}

.footer-built {
    font-size: 1.3rem;
    color: #888;
    text-align: center;
    padding-top: 1.5rem;
    margin-top: 2rem;
}

.footer-built strong {
    color: #000;
}

.footer-built a {
    color: #0099ff;
}

.footer-built a:hover {
    color: #40fe2a;
}

.footer-bottom {
    width: 100%;
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #ddd;
    margin-top: 2rem;
    font-size: 1.4rem;
}

/* Responsive Design */
@media (max-width: 768px) {
	
	.footer-banner {
        margin-bottom: 1.5rem;
    }
    
    .footer-banner-text {
        font-size: 1.2rem;
    }
    
    .footer-banner-image {
        height: 30px;
    }
	
    .footer-content {
        grid-template-columns: 1fr;
    }
}