/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #267dd5;
    color: blue;
    margin: 0;
    padding: 0;
}

/* Navbar Styles */
.header-section {
    background-color: #ffffff;
    padding: 15px 0;
}

.a3-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo img {
    height: 50px;
}

.menu-list {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.menu-list li {
    margin: 0 15px;
}

.menu-list li a {
    text-decoration: none;
    color: #171616;
    font-size: 16px;
    font-weight: bold;
    transition: color 0.3s;
}

.menu-list li a:hover {
    color: #00bfff;
}

/* Enquire Now Button */
.header-nav-btn .btn {
    background-color: #0d6efd;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s, color 0.3s;
}

.header-nav-btn .btn:hover {
    background-color: #0d6efd;
    color: white;
}
{

--bs-btn-color: #e9ecef;
}

/* Footer Styles */

footer {
   /* background-color: #004080;  Keep your blue color */
    color: white;
    text-align: center;
    padding: 15px;
    width: 100%;
    position: relative; /* Change from 'fixed' to 'relative' */
    bottom: 0;
}



main {
    flex: 1; /* Pushes the footer down */
}
.footer-section {

    color: white;
    padding: 50px 0;
}

.footer-logo img {
    width: 150px;
    margin-bottom: 15px;
}

.footer-menu {
    list-style: none;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 8px;
    display: flex;
}

.footer-menu a {
    color: white;
    text-decoration: none;
    display: flex;
}

.footer-menu a:hover {
    text-decoration: underline;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 10px;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid white;
}

.social-icons {
    margin-bottom: 10px;
}

.social-icons a {
    color: white;
    margin: 0 10px;
    font-size: 20px;
}

.social-icons a:hover {
    color: #ffcc00;
}

/* Make all footer links white */
.footer-menu a,
.footer-contact a,
.footer-bottom a {
    color: white !important;
    text-decoration: none;
    text-align: start;
    display: inline-table;
}

/* Add underline effect on hover */
.footer-menu a:hover,
.footer-contact a:hover,
.footer-bottom a:hover {
    text-decoration: underline;
    color: #ffcc00 !important; /* Optional: Change hover color */
}

/* Make social media icons white */
.social-icons a {
    color: white !important;
}

/* Change social media icon color on hover */
.social-icons a:hover {
    color: #ffcc00 !important; /* Optional: Change hover effect */
}
