/* Purana pura footer CSS replace kar dein isse */
.footer {
    background: #0e1422!important;
    width: 100%;
    padding: 60px 0 20px 0;
    color: #e9e9e9;
    font-family: sans-serif;
    float: left;
}

/* Container jo content ko beech mein rakhega */
.page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Flexbox Layout: Boxes ko ek line mein laane ke liye */
.footer-top-con {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer_grid {
    flex: 1; /* Equal space lega */
    min-width: 250px; /* Mobile par width manage karega */
}

/* Logo column thoda bada */
.footer_grid.size_40 { flex: 1.5; }

/* Titles */
.footer_title h2 {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #fff;
}

.footer_title line {
    display: block;
    width: 40px;
    height: 2px;
    background: #ffb400; /* Logistics Yellow */
    margin-bottom: 20px;
    border: none;
}

/* Links Styling */
.footer_link_box {
    display: flex;
    flex-direction: column;
}

.footer_link_box a {
    color: #b0b0b0;
    text-decoration: none;
    padding: 8px 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    transition: 0.3s;
}

.footer_link_box a i {
    margin-right: 10px;
    color: #ffb400;
    font-size: 12px;
}

.footer_link_box a:hover {
    color: #fff;
    padding-left: 5px;
}

/* Social Icons */
.social_link {
    display: flex !important;
    flex-direction: row !important;
    gap: 10px;
    margin-top: 20px;
}

.social_link a {
    width: 35px;
    height: 35px;
    background: #1d263a;
    border-radius: 4px;
    justify-content: center;
    padding: 0 !important;
}

.social_link a:hover {
    background: #ffb400;
    color: #000 !important;
}

/* Bottom Footer */
.footer-bottom-con {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #21293d;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Security Compliance Image */
.footer_link_box.image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-top-con {
        flex-direction: column;
    }
    .footer-bottom-con {
        flex-direction: column;
        text-align: center;
    }
}