/* General Reset */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: white;
    color: #333; /* Dark text for contrast */
}

/* Header Styling */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color:white;
    padding: 15px 30px;
    border-top: 1px solid #cccccc; /* Thin line above the logo part */
    border-bottom: 1px solid #cccccc; 
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo img {
    height: 50px;
}

nav {
    flex: 1;
    text-align: right;
}

.menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    position: relative; 
}

.menu li {
    margin-left: 25px;
}

.menu a {
    /*text-decoration: none;
    color: #003366; /* Navy blue text for links */
    font-weight: 500;
    font-size: 16px;
    /* transition: color 0.3s ease, font-weight 0.3s ease; */
    display: block;
    color: #003366;
    text-decoration: none;
    padding: 15px 20px; /* Consistent padding for items */
    font-family: Arial, sans-serif;
    font-size: 16px;
    transition: background-color 0.3s ease;
    text-align: center;

}

.menu a:hover {
    color:white;
    background-color: #003c82; /* Darker blue */
    position: relative; /* Prevent shifting on hover */
}

/* Dropdown Menu Styling */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 100;
    background-color: #ffffff;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 10px 0;
    margin: 0;
    z-index: 1000;
    border-radius: 5px;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu li a {
    color: #333;
    padding: 10px 20px;
    font-size: 14px;
    display: block;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-menu li a:hover {
    background-color: #5a84c4;
}

/* Show Dropdown on Hover */
.dropdown:hover .dropdown-menu {
    display: block;
}


/* Main Content Styling */
main {
    text-align: center;
    padding: 80px 20px;
}

.hero h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #003366; /* Navy blue */
}

.hero p {
    font-size: 18px;
    color: #555; /* Subtle gray for secondary text */
}
