
/* Global Color Variables */
:root {
    --primary-color: #00183d; /* Sky Blue */
    --secondary-color: #f0c02b; /* Yellow */
    --accent-color: #116eef; /* Blue */
    --text-color: #333; /* Dark Gray */
    --background-color: #F8F9FA; /* Light Gray */
    --white: #FFFFFF;
}


.footer {
    background: #0B0F34;
    color: white;
    padding: 40px 20px;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-col {
    width: 18%;
    margin-bottom: 20px;
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color:var(--secondary-color);
}

.footer-logo {
    margin-bottom: 15px;
    height: auto;
    width: 100px;
}

.made-india-logo{
    height: auto;
    width: 180px;
}

.msca-logo {
    width: 229px;
    height: auto;
    margin-right: 5px;
}


.footer-bottom {
    text-align: center;
    padding: 15px;
    background: var(--primary-color);
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-col {
        width: 45%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer-row {
        flex-direction: column;
    }
    .footer-col {
        width: 100%;
        text-align: center;
    }
}
