/* Single Line Footer */
footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #1C396E;
    color: #ecf0f1;
    padding: 12px 0;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center; /* Center the text content */
}

/* Footer Container */
.footer-container {
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center; /* Center the content horizontally */
    align-items: center; /* Center the content vertically */
    width: 100%;
}

/* Paragraph within Footer Container */
.footer-container p {
    margin: 0;
}

/* Footer Links */
.footer-links {
    display: flex;
    gap: 15px;
    justify-content: center; /* Center the links horizontally */
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3498db !important;
    text-decoration: underline !important;
}
.copy-right{
    margin-right: 50px!important;
}

/* Powered Section */
.powered {
    color: #ecf0f1;
    margin-left: 50px !important;
}

.powered a {
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.powered a:hover {
    color: #3498db !important;
    text-decoration: underline !important;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 8px;
        text-align: center; /* Center the text for small screens */
    }
    
    .footer-links {
        gap: 10px;
    }
}
