    /* Footer Styles */
.footer {
    background-color: #0d1b2a;
    color: #f9fafb;
    padding: 80px 0 0;
}

.footer-logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #4361ee;
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: #4361ee;
    border-radius: 3px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}
ul.footer-links li {
    list-style: none;
}
	ul.footer-links  {
   padding:0;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links a i {
    margin-right: 0.5rem;
    font-size: 0.75rem;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    margin-top: 4rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.btn-primary {
    background-color: #4361ee;
    border-color: #4361ee;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #3a56d4;
    border-color: #3a56d4;
    transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .footer {
        padding: 60px 0 0;
    }
}

@media (max-width: 767.98px) {
    .footer {
        padding: 50px 0 0;
    }
    
    .footer-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
    }
    
    .footer-bottom {
        padding: 1.25rem 0;
        margin-top: 3rem;
    }
}

@media (max-width: 575.98px) {
    .footer {
        padding: 40px 0 0;
    }
    
    .footer-logo {
        font-size: 1.5rem;
    }
    
    .social-links {
        gap: 0.75rem;
    }
    
    .footer-bottom {
        padding: 1rem 0;
        margin-top: 2.5rem;
    }
}
