        /* --- Footer section --- */
footer {
    background: linear-gradient(135deg, #003d80, #0056b3);
    color: #fff;
    padding: 50px 20px 20px;
    font-family: Arial, sans-serif;
    position: relative;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: auto;
    gap: 30px;
}

.footer-col {
    flex: 1 1 250px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 15px;
    border-left: 4px solid #ffcc00;
    padding-left: 8px;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
    color: #ddd;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #ffcc00;
    padding-left: 5px;
}

/* Social Icons */
.footer-social {
    margin-top: 15px;
}

.footer-social a {
    display: inline-block;
    margin-right: 10px;
    font-size: 18px;
    background: #fff;
    color: #0056b3;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #ffcc00;
    color: #000;
    transform: translateY(-3px);
}

/* Bottom Bar */
.footer-bottom {
    text-align: center;
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.3);
    font-size: 14px;
    color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-col {
        margin-bottom: 20px;
    }
    .footer-social a {
        margin: 5px;
    }
}


/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-col {
        margin-bottom: 20px;
    }
    .footer-social a


          /* ---end of  Footer section --- */