/* General Resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Header & Navbar */
.main-header {
    position: fixed;    /* Keeps the bar at the top while scrolling */
    top: 0;             /* Aligns it to the very top */
    left: 0;
    width: 100%;        /* Ensures it spans the full width of the screen */
    z-index: 1000;      /* Keeps it on top of images and other content */
    border-bottom: 2px solid #2a3a8c;
    padding: 15px 50px;
    background: #fff;   /* Solid background so content doesn't show through */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); /* Optional: adds depth when scrolling */
}

/* IMPORTANT: Add margin to the body or first section */
/* Since fixed headers are removed from the normal layout flow, */
/* you must push the content down so it isn't hidden. */
body {
    padding-top: 82px; /* Adjust this value to match the height of your header */
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo img {
    height: 50px;
}

.navbar ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.navbar a {
    text-decoration: none;
    color: #444;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

.navbar a.active, .navbar a:hover {
    color: #f26522; /* Orange highlight seen in */
}

.search-box {
    display: flex;
    border: 1px solid #2a3a8c;
    padding: 5px 10px;
    border-radius: 4px;
}

.search-box input {
    border: none;
    outline: none;
    padding: 5px;
}

/* Hero Section */
.hero-section {
    height: 600px;
    position: relative;
    background-size: cover;
    background-position: center;
    transition: background-image 1s ease-in-out; /* Smooth transition */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1); /* Light overlay to keep text readable */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.hero-text-content {
    background: rgba(255, 255, 255, 0.8);
    padding: 40px;
    border-radius: 8px;
    max-width: 800px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
}

#hero-title {
    color: #2a3a8c;
    font-size: 3rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

#hero-description {
    color: #555;
    font-size: 1.2rem;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}