﻿body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f2f2f2;
}

/* HEADER */
.header {
    background: #0b3c8d;
    color: white;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
}


/* NAV */
.nav {
    background: #1547a3;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .nav a {
        color: white;
        margin-right: 18px;
        text-decoration: none;
        font-size: 14px;
    }

/* BANNER */
.banner {
    background: url("/images/eSaral Banner_Updated.png") no-repeat center;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.banner-overlay {
    width: 100%;
    padding: 40px 20px;
}

.banner-content {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

/* LEFT TEXT */
.banner-left {
    flex: 2;
    color: white;
}

    .banner-left h1 {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .banner-left p {
        font-size: 16px;
    }

/* LOGIN BOX */
.login-box {
    flex: 1;
    background: white;
    padding: 20px;
    border-radius: 4px;
}

    .login-box h3 {
        margin-top: 0;
        color: #0b3c8d;
        text-align: center;
    }

    .login-box input,
    .login-box select {
        width: 100%;
        padding: 8px;
        margin-bottom: 10px;
        border: 1px solid #ccc;
    }

    .login-box button {
        width: 100%;
        background: #0b3c8d;
        color: white;
        border: none;
        padding: 10px;
        cursor: pointer;
    }

        .login-box button:hover {
            background: #082c66;
        }

/* SERVICES */
.services {
    max-width: 1200px;
    margin: 30px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 15px;
}

.card {
    background: white;
    padding: 18px;
    border-radius: 4px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

    .card h4 {
        color: #0b3c8d;
    }

/* FOOTER */
.footer {
    background: #0b3c8d;
    color: white;
    text-align: center;
    padding: 12px;
    font-size: 13px;
}

.bg-white {
    background-color: #fff;
    padding: 10px 10px;
}

.req {
    color: red !important;
}

.custom_banner img {
    width: 100%;
}

div#mainNavbar a {
    font-weight: 600;
    color: #0b3c8d;
    padding: 6px 20px;
}
