/* Default styles for logo, title, and tagline */
.navbar-logo a {
    display: flex;
    align-items: center; /* Center vertically */
    text-decoration: none;
    color: #333; /* Text color for title and tagline */
}

.navbar-logo img {
    max-width: 100px; /* Adjust the max-width of the logo */
    height: auto;
    margin-right: 10px; /* Add spacing between logo and text */
}

.navbar-logo h1 {
    font-size: 1.5rem; /* Adjust the font size for the title */
    margin: 0; /* Remove margin to prevent extra spacing */
    color: #EAAD06; /* Title color */
    font-weight: bold; /* Make the title bold */
}

.navbar-logo p {
    font-size: 1rem; /* Adjust the font size for the tagline */
    margin: 0; /* Remove margin to prevent extra spacing */
    color: #EAAD06; /* Tagline color */
    font-weight: bold; /* Make the tagline bold */
}

/* Media query for responsive adjustments */
@media screen and (max-width: 768px) {
    .navbar-logo {
        text-align: center; /* Center align on smaller screens */
    }

    .navbar-logo img {
        max-width: 80px; /* Reduce logo size on smaller screens */
    }

    .navbar-logo h1 {
        font-size: 1.2rem; /* Adjust title font size for smaller screens */
    }

    .navbar-logo p {
        font-size: 0.8rem; /* Adjust tagline font size for smaller screens */
    }
}

/* Footer styles */
.footer {
    background-color: #333;
    color: #fff;
    padding: 30px 0;
    border-top: 5px solid #EAAD06; /* Attractive top border */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo img {
    max-width: 150px;
    height: auto;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s; /* Smooth color transition on hover */
}

.footer-links ul li a:hover {
    color: #EAAD06; /* Highlight color on hover */
   

}

.footer-contact p {
    margin: 0;
font-weight: bold;
}

/* Media query for responsive adjustments */
@media screen and (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
}
