/* Footer Styling */
.footer {
    background-color: #004771;
    color: white;
    padding: 50px 0;
}

.footer-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #7CFC00;
}

.footer-text {
    font-size: 16px;
    color: #ddd;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    text-decoration: none;
    color: white;
    transition: all 0.3s ease-in-out;
}

.footer-links a:hover {
    color: #7CFC00;
    padding-left: 5px;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
    font-size: 20px;
    color: white;
    transition: all 0.3s ease-in-out;
}

.social-icons a:hover {
    color: #7CFC00;
    transform: scale(1.2);
}

/* Copyright Section */
.footer-bottom {
    background-color: #00345b;
    padding: 15px 0;
    font-size: 14px;
    margin-top: 20px;
}

.NTech-brand img {
    height: 50px;
    width: auto;
}