@import "reset.css";
@import "fonts.css";
@import "colors.css";
@import "flex.css";
@import "navigation.css";
@import "banner.css";
@import "about.css";
@import "features.css";
@import "testimonial.css";
@import "gallery.css";
@import "timeline.css";
@import "map.css";
@import "partners.css";
@import "aboutcare.css";
@import "contact.css";
@import "faq.css";

.header {
    display: flex;
    align-items: center; /* Align items (logo and links) on the same vertical line */
    justify-content: space-between; /* Space between the logo and the menu */
    padding: 10px 20px;
}

.logo img {
    display: block;
}

.menu {
    list-style: none;
    display: flex; /* Arrange links in a row */
    justify-content: flex-end; /* Align links to the far right */
    align-items: center; /* Align the links vertically */
    padding: 0;
    margin: 0;
}

.menu li {
    margin: 0 15px; /* Add horizontal spacing between links */
}

.menu a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    transition: color 0.3s;
}

.menu a:hover {
    color: #ffd700; /* Change link color on hover */
}
