/* Footer Section */
footer {
    background-color: #343a40; /* Dark background */
    color: #fff; /* White text */
    padding-top: 60px; /* Add space on top */
    padding-bottom: 40px; /* Add space at the bottom */
}

footer h5 {
    font-size: 1.2rem; /* Larger text size for headings */
    font-weight: bold;
    margin-bottom: 25px !important; /* Space between heading and list */
    color: #ffffff; /* White heading */
    text-transform: uppercase; /* Uppercase headings */
}

footer p {
    font-size: 1rem;
    line-height: 1.5;
}

footer ul {
    list-style-type: none; /* Remove default list styling */
    padding-left: 0;
}

footer ul li {
    margin-bottom: 10px; /* Space between items */
}

footer ul li a {
    color: #fff; /* White color for links */
    text-decoration: none; /* Remove underline */
    transition: color 0.3s ease;
}

footer ul li a:hover {
    color: #007bff; /* Change link color on hover */
}

/* Social Media Icons */
footer .social-links a {
    font-size: 1.5rem; /* Larger icons */
    transition: color 0.3s ease;
}

footer .social-links a:hover {
    color: #007bff; /* Change color on hover */
}

/* Form Input and Button */
footer .form-control {
    border-radius: 20px;
    padding: 12px;
    margin-bottom: 10px;
}

footer .btn-primary {
    background-color: #007bff;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
}

footer .btn-primary:hover {
    background-color: #0056b3;
}

/* Footer Bottom */
footer .row.mt-4 {
    border-top: 1px solid #ddd;
    padding-top: 20px;
    display: flex;
    justify-content: center; /* Center the content horizontally */
    align-items: center; /* Center vertically if needed */
    width: 100%; /* Ensure the row takes full width */
}

footer .row.mt-4 .col-12 {
    text-align: center; /* Ensure text inside the column is centered */
    width: 100%; /* Ensure column is taking full width */
}

footer .row.mt-4 p {
    font-size: 0.9rem;
    color: #b0b0b0;
    margin: 0; /* Remove default margin */
}

footer .row.mt-4 a {
    color: #007bff;
    text-decoration: none;
}

footer .row.mt-4 a:hover {
    text-decoration: underline;
}



/* Media Queries for Responsive Design */
@media (max-width: 768px) {
    footer .col-md-3 {
        margin-bottom: 30px; /* Add margin at bottom for smaller screens */
    }
}

