/* General Styles */
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(to right, #87CEFA, #1E3A5F);
    color: #fff;
    overflow: hidden;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Header Banner with Navigation Menu */
.header-banner {
    width: 100%;
    background-color: #1E3A5F;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: fixed;
    top: 0;
    z-index: 10;
}

/* Logo Container Styling */
.logo-container {
    max-height: 50px;
    display: flex;
    align-items: center;
}

.logo-container img {
    max-height: 50px;
    object-fit: contain;
}

/* Navigation Menu Styling */
.navbar {
    display: flex;
}

.menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.menu li {
    margin-left: 20px;
    position: relative;
}

.menu li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.menu li a:hover {
    color: #87CEFA;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    top: 100%;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Container for Main Content */
.container {
    text-align: center;
    position: relative;
    z-index: 2;
    margin-top: 80px; /* To account for the fixed header */
}

.title {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #fff;
    animation: fadeIn 2s ease-in-out;
}

.content {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 50px;
    animation: slideUp 2s ease-in-out;
}

/* Keyframes for Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }

    .content {
        font-size: 1.2rem;
    }

    .menu li {
        margin-left: 10px;
    }

    .menu li a {
        font-size: 1rem;
    }

    .dropdown-content {
        min-width: 120px;
    }
}

.title {
    font-size: 2.5rem;
    margin-bottom: 0;
}

.subtitle {
    font-size: 1.5rem;
    margin-top: 0;
    line-height: 1.2;
}



.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #fff; /* Adjust background color as needed */
}

.logo {
    max-width: 100px; /* Adjust size as needed */
    height: auto;
}