* {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    box-sizing: border-box; /* Added for consistent box sizing */
}

body {
    color: #e0e0e0; /* Light color for text */
}

.banner {
    width: 100%;
    height: 100vh;
    background-image: url("Images/Background2.jpg");
    background-size: cover;
    background-position: center;
}

.navbar {
    width: 85%;
    margin: auto;
    padding: 35px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 120px;
    cursor: pointer;
}

.navbar ul {
    list-style: none; /* Ensure no bullet points */
}

.navbar ul li {
    display: inline-block;
    margin: 0 20px;
    position: relative;
}

.navbar ul li a {
    text-decoration: none;
    color: #e0e0e0; /* Light color for text */
    text-transform: uppercase;
    transition: color 0.3s;
}

.navbar ul li a:hover {
    color: #489eb9; /* Change color on hover */
}

.content {
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    color: #e0e0e0; /* Light color for content */
}

.content h1 {
    font-size: 70px;
    margin-top: 80px;
}

.content p {
    margin: 20px auto;
    font-weight: 100;
    line-height: 25px;
}

.button-container {
    display: flex;
    flex-direction: column; /* Align buttons vertically */
    align-items: center; /* Center the buttons */
    margin-top: 20px;
}

button {
    width: 200px;
    padding: 15px 0;
    text-align: center;
    margin: 10px; /* Updated to 10px for spacing */
    border-radius: 8px; /* Rounded corners */
    font-weight: bold;
    border: 2px solid rgb(57, 168, 168);
    background: #444; /* Dark background for buttons */
    color: #fff; /* Light color for button text */
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background 0.3s, border 0.3s, box-shadow 0.3s;
    box-shadow: 0 0 10px rgba(57, 168, 168, 0.7); /* Initial glow effect */
}

button:hover {
    border: none;
    background: rgb(0, 255, 255); /* Change background on hover */
}

button span {
    background: rgb(0, 255, 255);
    height: 100%;
    width: 0%;
    border-radius: 8px;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    transition: width 0.5s;
}

button:hover span {
    width: 100%;
}
