body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.navbar {
    background-color: #333;
    padding: 15px 0;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center items horizontally */
}

.container {
    width: 90%;
    max-width: 1200px; /* Max width to limit the container size */
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px; /* Size of the circle */
    width: 100px;  /* Size of the circle */
    background-color: white;
    border-radius: 50%; /* Makes the background circular */
    margin-right: 20px; /* Space between logo and text */
}

.logo img {
    max-height: 80px; /* Adjust the size of the logo inside the circle */
    max-width: 80px;  /* Ensure the logo fits well */
}

.text {
    font-size: 24px;
    color: white;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li {
    font-size: 18px;
    font-weight: bold;
}

.nav-links li a {
    color: white;
    text-decoration: none;
}

.btn {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
}

.hero {
    position: relative;
    height: 90vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(70%);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-content h1 {
    font-size: 50px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 20px;
}

.services {
    padding: 50px 20px; /* Added padding for spacing around the section */
    background-color: #f4f4f4;
    display: flex;
    justify-content: center; /* Center the service boxes horizontally */
    align-items: center; /* Center the service boxes vertically (optional) */
    flex-wrap: wrap; /* Allow the boxes to wrap on smaller screens */
}

.service-box {
    width: 300px; /* Fixed width for consistent sizing */
    padding: 20px; /* Add padding inside the service boxes */
    background-color: #fff; /* White background for contrast */
    border-radius: 8px; /* Rounded corners for service boxes */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
    text-align: left; /* Align text to the left within the service boxes */
    margin: 10px; /* Space between boxes */
}

.service-box h2 {
    font-size: 28px; /* Increase the size of the section titles */
    margin-bottom: 10px; /* Space below the section titles */
}

.service-box p {
    font-size: 16px; /* Adjust font size for paragraph text */
    line-height: 1.6; /* Improve readability with line height */
    margin-bottom: 20px; /* Space below paragraphs */
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
}
.logout-btn {
    background-color: #009688;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    width: 100%; /* To make it consistent with other buttons */
    text-align: left; /* Align text for better look */
    margin-top: 15px; /* Spacing similar to other elements */
    display: block; /* Make it behave like a block element */
}

.logout-btn:hover {
    background-color: #00796b;
}

