/* Footer styling */
.main-footer {
    background-color: #172b4d;
    color: #c5d0e6;
    padding-top: 60px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-column {
    margin-bottom: 30px;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 20px;
    height: auto;
}

.company-info p {
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.7;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #0d6efd;
    transform: translateY(-3px);
}

.footer-column h3 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 3px;
    background-color: #0d6efd;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #c5d0e6;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.contact-info p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-info i {
    margin-right: 15px;
    color: #0d6efd;
    font-size: 16px;
    margin-top: 3px;
}

.footer-bottom {
    background-color: #11203a;
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
    font-size: 14px;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .company-info {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .company-info {
        grid-column: span 1;
        text-align: center;
    }
    
    .footer-column h3 {
        text-align: center;
    }
    
    .footer-column h3:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .contact-info p {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-links {
        text-align: center;
    }
}

/* Add to your footer.css */
@media (max-width: 576px) {
    .main-footer {
        text-align: center;
    }
    
    .footer-logo {
        margin: 0 auto 15px;
    }
    
    .footer-column h3:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .contact-info p {
        justify-content: center;
    }
    
    .footer-links a {
        padding: 5px 0;
        display: inline-block;
    }
}