/* BASE */
body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: #f5f7fa;
    color: #1f2937;
}

a { text-decoration: none; }

/* NAVBAR */
.main-navbar {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 14px 0;
}

.brand-title {
    font-weight: 600;
    font-size: 15px;
}

.brand-subtitle {
    font-size: 13px;
    color: #6b7280;
}

.navbar-nav .nav-link {
    color: #374151;
    font-weight: 500;
    padding: 6px 14px;
}

.navbar-nav .nav-link:hover {
    color: #dc2626;
}

/* HERO */
.hero-section {
    background: linear-gradient(135deg, #eef2ff, #f8fafc);
    padding: 70px 0;
}

.hero-box {
    background: #ffffff;
    border-radius: 18px;
    padding: 40px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

.section-title {
    font-weight: 600;
}

/* TENDER CARD */
.tender-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    height: 100%;
}

.tender-card p {
    font-size: 14px;
    color: #6b7280;
}

.tender-tags span {
    display: block;
    font-size: 12px;
}

.status-open {
    color: #16a34a;
}

/* LOGIN */
.login-box {
    background: #f9fafb;
    border-radius: 16px;
    padding: 30px;
}

/* PROCESS SECTION */
.process-section {
    padding: 70px 0;
    background: #ffffff;
}

.process-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 35px 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.process-card img {
    height: 58px;
    margin-bottom: 20px;
}

/* BUTTON */
.btn-danger {
    background: #dc2626;
    border: none;
}

.btn-danger:hover {
    background: #b91c1c;
}

/* FOOTER */
.footer {
    background: #111827;
    color: #9ca3af;
    padding: 32px 0;
    font-size: 14px;
}

.footer a {
    color: #9ca3af;
    margin-left: 14px;
}

.footer a:hover {
    color: #ffffff;
}

.footer hr {
    border-color: #1f2937;
    margin: 20px 0;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .navbar-brand {
        width: 100%;
        justify-content: center;
        margin-bottom: 6px;
    }

    .navbar-nav {
        justify-content: center;
        width: 100%;
    }
}


/* PAGE HEADER */
.page-header {
    background: linear-gradient(135deg, #eef2ff, #f8fafc);
    padding: 50px 0;
}

.page-header h2 {
    font-weight: 600;
}

.page-header p {
    color: #6b7280;
}

/* FORM SECTION */
.form-section {
    padding: 0px 0 60px 0;
}

.form-box {
    background: #ffffff;
    border-radius: 18px;
    padding: 40px;
    max-width: 900px;
    margin: auto;
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

.form-label {
    font-size: 14px;
    font-weight: 500;
}

.form-control {
    border-radius: 8px;
    padding: 10px 12px;
}

.form-control:focus {
    border-color: #dc2626;
    box-shadow: none;
}

/* CONTENT SECTION */
.content-section {
    padding: 0px 0 60px 0;
    background: #f5f7fa;
}

.content-box {
    background: #ffffff;
    border-radius: 18px;
    padding: 45px;
    max-width: 900px;
    margin: auto;
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

.content-box p {
    color: #374151;
    line-height: 1.7;
    margin-bottom: 18px;
}

/* SECTION HEADING */
.section-heading {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.section-heading span {
    width: 5px;
    height: 28px;
    background: #dc2626;
    border-radius: 4px;
    margin-right: 10px;
}

.section-heading h5 {
    margin: 0;
    font-weight: 600;
}

/* INFO HIGHLIGHT */
.info-highlight {
    background: #f9fafb;
    border-left: 4px solid #dc2626;
    padding: 15px 20px;
    border-radius: 8px;
    margin: 25px 0;
}

.page-subtitle {
    color: #6b7280;
    font-size: 15px;
}

