﻿/* ================= HEADER ================= */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    font-family: 'Segoe UI', sans-serif;
}

.top-header {
    background-color: #d71920;
    padding: 6px 20px; /* reduced padding */
    display: flex;
    align-items: center; /* vertical alignment fix */
    justify-content: space-between;
    /*    border-bottom: 2px solid #d32f2f;*/
}

.header-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
    display: block;
}

.bottom-header {
    background-color: #d71920; /* closer to ABHI red */
    height: 50px;
    border-top-right-radius: 12px; /* slight curve like screenshot */
}
.logo-wrapper {
    display: flex;
    align-items: center;
    height: 50px;
}

.company-title {
    color: #d71920;
    font-size: 18px;
    margin: 10px 20px;
    font-family: 'Segoe UI', sans-serif;
}

/* ================= MAIN CONTENT ================= */

.main-content {
    padding-top: 120px; /* prevents overlap with fixed header */
    min-height: calc(100vh - 160px);
}

/* ================= FOOTER ================= */

.footer {
    background-color: #f5f5f5;
    text-align: center;
    padding: 10px;
    font-size: 12px;
    border-top: 1px solid #ddd;
}

