﻿/* General Styling */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f4f4f4;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Header Styling */
.header {
    background-color: #0056b3; /* Blue color */
    color: #fff;
    padding: 15px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    margin-bottom: 0;
}

    /* Logo Styling */
    .header .logo {
        display: flex;
        align-items: center;
    }

    .header .logo-image {
        max-width: 120px; /* Adjust size */
        height: 100px;
        margin-right: 15px;
    }

.logo .logo-name {
    font-size: 24px; /* Adjust size as needed */
    color: #fff; /* Match the header text color */
    margin-left: 15px; /* Space between logo and text */
    font-weight: bold;
    text-decoration: none;
}
.logo a {
    text-decoration: none;
    color: inherit; /* Make sure the link inherits the color from the parent */
}
.active {
    font-weight: bold;
    color: #ff9900; /* Customize the color for the active link */
    text-decoration: underline;
}

.navbar a {
    color: #000; /* Default link color */
    text-decoration: none;
}

    .navbar a:hover {
        color: #007bff; /* Change color on hover */
    }

/* Navbar Styling */
.navbar {
    display: flex;
    justify-content: flex-end;
    background-color: #004494; /* Darker blue */
    padding: 0;
}

    .navbar ul {
        list-style: none;
        display: flex;
        padding: 0;
        margin: 0;
    }

    .navbar li {
        position: relative;
    }

    .navbar a {
        color: #fff;
        text-decoration: none;
        padding: 15px 20px;
        display: block;
        text-align: center;
        transition: background-color 0.3s, transform 0.2s;
    }

        .navbar a:hover, .navbar a.active {
            background-color: #003d80;
            transform: scale(1.05);
        }

/* Dropdown Menu Styling */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1;
    top: 100%;
    left: 0;
}

    .dropdown-content a {
        color: #333;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        transition: background-color 0.3s;
    }

        .dropdown-content a:hover {
            background-color: #f1f1f1;
        }

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color: #003d80;
}

/* Main Content Styling */
.main-content {
    padding: 20px 10px;
    background-color: #fff;
    margin-top: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

/* Welcome Section */
.welcome-section {
    background: #fff;
    padding: 0;
    text-align: center;
    border-bottom: 1px solid #ddd;
    margin-top: 0;
}

    .welcome-section h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .welcome-section p {
        font-size: 18px;
        color: #555;
        line-height: 1.6;
        max-width: 800px;
        margin: 0 auto;
    }

/* Footer Styling */
.footer {
    background-color: #0056b3;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

    .footer p {
        margin: 0;
    }

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

    .footer-nav li {
        display: inline;
        margin: 0 15px;
    }

    .footer-nav a {
        color: #fff;
        text-decoration: none;
        transition: color 0.3s;
    }

        .footer-nav a:hover {
            color: #ffcb05;
            text-decoration: underline;
        }

/* Responsive Design */
@media (max-width: 768px) {
    .navbar ul {
        flex-direction: column;
        align-items: center;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
    }

    .logo img {
        max-width: 100px;
    }

    .main-content {
        padding: 40px 10px;
    }
}

@media (max-width: 480px) {
    .navbar a {
        padding: 10px;
    }

    .footer-nav li {
        display: block;
        margin: 10px 0;
    }

    .logo img {
        max-width: 80px;
    }
}
/* Active Link Styling */
.navbar a.active {
    background-color: #003d80;
    transform: scale(1.05);
}
