:root {
/*    --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Poppins", sans-serif;
    --nav-font: "Raleway", sans-serif;*/
}

:root {
    --header-background-color: #451f63;
    --background-color: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #462064; /* Color for headings, subheadings and title throughout the website */
    /*--primary-color: #462064;*/ /* Primary theme color used for buttons, sidebar, icons, and other branded elements */
    /*--primary-color-hover: #5d3780;*/ /* Lighter shade of primary color for hover states */
    /*--primary-color-dark: #35154e;*/ /* Darker shade of primary color */
    --accent-color: #1977cc; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: #2c4964; /* The default color of the main navmenu links */
    --nav-hover-color: #1977cc; /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #2c4964; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #1977cc; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
    min-height: 85vh;
}

.main-content {
    min-height: 684px;
}

a {
    color: var(--site-link-color, var(--accent-color));
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: var(--site-link-hover-color, color-mix(in srgb, var(--accent-color), transparent 25%));
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--primary-color);
    font-family: var(--heading-font);
}

p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #686e7c;
}

.btn-purple {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    /*    display: inline-flex;*/
    align-items: center;
    gap: 5px;
    text-decoration: none;
    user-select: none;
}

    .btn-purple:hover {
        background-color: var(--primary-color-hover);
        color: var(--secondary-color);
    }

.text-purple {
    color: var(--primary-color);
}


@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1400px;
    }
}
/*--------------------------------------------------------------
# Registration page
--------------------------------------------------------------*/
.registration .text-danger {
    font-size: 14px;
}

.registration .form-container {
    max-width: 660px;
    margin: 0 auto;
    padding: 0px 0px 14px 0px;
}

.registration-success-card {
    margin-top: auto;
    margin-bottom: auto;
    border-color: var(--primary-color);
}

.registration h1 {
    text-align: center;
    font-weight: 600;
}

.registration .registration-card {
    padding: 10px 50px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

    .registration .registration-card h4 {
        text-align: center;
        font-weight: 400;
    }

.registration label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 2px;
    font-weight: 600;
    font-size: 14px;
}

.registration .form-check-label {
    font-weight: 600;
    font-size: 14px;
}

.registration .registration-button {
    width: 100%;
    background-color: var(--primary-color);
    color: #ffffff;
    transition: background-color 0.3s ease;
}

.registration .registration-button:hover {
    background-color: var(--primary-color-dark);
}

.registration .registration-success-card {
    padding: 25px 25px;
}

    .registration .registration-success-card p {
        font-family: var(--default-font);
        font-size: 14px;
        line-height: 1.428571429;
        color: #131517;
    }

    .registration .registration-success-card success-icon {
        font-size: 3em;
    }

@media (max-width: 768px) {
    .registration .form-container {
        padding: 20px 15px 50px 15px;
        min-height: 537px;
    }

    .registration .registration-card {
        padding: 20px 20px;
    }

    .registration h1 {
        font-size: 22px;
    }

    .registration .registration-card h4 {
        font-size: 18px;
    }

    .registration label,
    .registration .form-check-label {
        font-size: 13px;
    }

    .registration .registration-button {
        font-size: 16px;
        padding: 10px;
    }
}
/*--------------------------------------------------------------
# Registration page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Confirmation page
--------------------------------------------------------------*/
.confirmation .row {
    /*  background-color: #f7f9fa;*/
}

.confirmation .confirmation-page {
    max-width: 660px;
    margin: 0 auto;
    padding: 150px 0px 14px 0px;
    min-height: 684px; /* Keeps page tall enough */
}

.confirmation .confirm-email-card {
    padding: 30px 20px;
}

.confirmation .start-btn {
    padding: 10px 15px;
}

/* Mobile (screens 768px and smaller) */
@media (max-width: 768px) {
    .confirmation .confirmation-page {
        max-width: 100%;
        padding: 80px 15px 20px 15px;
        min-height: 100vh;
        box-sizing: border-box;
    }

    .confirmation .confirm-email-card {
        padding: 20px 15px;
    }

    .confirmation .start-btn {
        padding: 12px 20px;
        font-size: 16px;
        width: 100%;
        box-sizing: border-box;
    }

    .registration .success-page {
        max-width: 100%;
        padding: 80px 15px 20px 15px;
        min-height: 100vh;
        box-sizing: border-box;
    }
}

.registration .success-page {
    max-width: 660px;
    margin: 0 auto;
    padding: 132px 0px 0px 0px;
}

/*--------------------------------------------------------------
# Confirmation page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Login page
--------------------------------------------------------------*/
.has-no-multisubmit {
    padding: 202px 360px; /* Default for desktop */
}

    .has-no-multisubmit button {
        background: var(--primary-color);
        border: 1px solid;
    }

        .has-no-multisubmit button:hover {
            background: var(--primary-color-hover);
            border: 1px solid;
        }

/* Tablet view (768px and below) */
@media (max-width: 768px) {
    .has-no-multisubmit {
        padding: 100px 50px;
    }
}
/* Mobile view (576px and below) */
@media (max-width: 576px) {
    .has-no-multisubmit {
        padding: 60px 20px;
    }
}
/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
/* Basic header styles */
.header {
    color: var(--default-color);
    transition: all 0.5s;
    z-index: 997;
    background-color: var(--primary-color);
}

    /* Branding section */
    .header .branding {
        min-height: 60px;
        padding: 10px 0;
        width: 100%;
    }

.head-logo-word {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 2rem;
    margin-bottom: 0rem;
    color: var(--secondary-color);
}

.logo-image {
    border-radius: 20%;
    display: block;
    height: 48px;
}

.subheading {
    margin: 0;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

/* Buttons */
.header .cta-btn,
.header .cta-btn:focus {
    color: var(--primary-color);
    background: var(--secondary-color);
    font-size: 0.9rem;
    padding: 10px 20px;
    border-radius: 10px; /* changed from 50px to 10px */
    transition: 0.3s;
    text-decoration: none;
    white-space: nowrap;
    font-weight: 600;
    border: 1px solid transparent;
}

/*    .header .cta-btn.active {
        background: #462064;
        color: #ffffff;
        border: 2px solid #ffffff;
        font-weight: 600;
    }*/

    .header .cta-btn:hover,
    .header .cta-btn:focus:hover {
        color: var(--secondary-color);
        background: var(--primary-color);
        font-weight: 600;
        border: 1px solid;
        border-color: var(--secondary-color);
    }

    .header .cta-btn.active:hover {
        background: var(--primary-color);
        font-weight: 600;
    }

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
/*        flex-direction: column;*/
        align-items: flex-start;
    }

    .button-area {
        margin-top: 10px;
        gap: 10px;
    }

    .header .cta-btn {
        padding: 8px 16px;
    }
}

.custom-card {
    background-color: #f5f5f5;
    border-radius: 20px;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s, box-shadow 0.3s;
}

    .custom-card h5 {
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .custom-card p {
        font-size: 0.85rem;
        color: #343333;
    }

    .custom-card .head-text {
        font-size: 1rem !important;
        line-height: 2rem;
        font-weight: 500 !important;
    }

.head-card {
    border-radius: 10px;
    background-color: #f5f5f5;
    transition: box-shadow 0.3s;
    background-color: #f5f5f5;
    border-radius: 20px;
    border: 1px solid #e0e0e0;
}

    .head-card h5 {
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .head-card p {
        font-size: 0.85rem;
        color: #343333;
    }

    .head-card:hover {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    }

.icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    margin-right: 10px;
    border-radius: 25%;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: 0.3s ease;
}

.inner-card {
    border-radius: 10px;
    background-color: #f5f5f5;
    transition: box-shadow 0.3s;
}

    .inner-card:hover {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    }

.vendor-card {
    border-radius: 10px;
    background-color: #f5f5f5;
    transition: transform 0.3s, box-shadow 0.3s;
}

    .vendor-card:hover {
        background-color: #fff;
    }

.vendor-point {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    margin-right: 10px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 22px;
}

.star {
    color: var(--primary-color);
}

.bids-icon {
    color: var(--primary-color);
}

.vendor-head-card {
    border-radius: 10px;
    transition: box-shadow 0.3s;
    background-color: var(--primary-color);
    border-radius: 20px;
    border: 1px solid #e0e0e0;
    padding: 3rem;
}

    .vendor-head-card h1 {
        color: #fff;
        font-size: 2.25rem;
        line-height: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .vendor-head-card p {
        opacity: 0.9;
        color: #fff;
        font-size: 1.125rem;
        line-height: 1.75rem;
    }

.vendor-dash-card {
    background-color: #f5f5f5;
    border-radius: 10px;
    transition: box-shadow 0.3s;
    border-radius: 20px;
    border: 1px solid #e0e0e0;
    padding: 3rem;
}

    .vendor-dash-card h5 {
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .vendor-dash-card p {
        font-size: 0.85rem;
        color: #343333;
    }

    .vendor-dash-card:hover {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    }

.vendor-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    margin-right: 10px;
    border-radius: 25%;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: 0.3s ease;
}

.vendor-contract-card {
    background-color: #f5f5f5;
    border-radius: 10px;
    border-radius: 20px;
    border: 1px solid #e0e0e0;
    padding: 3rem;
}

.inner-contract-card {
    background-color: #f5f5f5;
    border-radius: 10px;
    transition: box-shadow 0.3s;
    border-radius: 20px;
    border: 1px solid #e0e0e0;
    padding: 3rem;
}

    .inner-contract-card:hover {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    }

    .inner-contract-card .head-text {
        color: #1f2937;
        font-size: 1rem !important;
        line-height: 2rem;
        font-weight: 600;
    }

    .inner-contract-card p {
        font-size: 0.85rem;
        color: #343333;
    }

.logo-vendor-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    margin-right: 10px;
    border-radius: 25%;
    background-color: #6b21a8; /* or any theme color */
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: 0.3s ease;
}

.vendor-progress-bar {
    background-color: var(--primary-color);
}

.section-divider-line {
    height: 1px;
    background-color: #c5c5c5;
    margin: 0 auto 30px auto;
}

.footer-bar .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.social-icons a {
    color: #134f7f;
    font-size: 1.2rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .social-icons a:hover {
        color: #0d355b; /* Darker on hover */
    }

.footer-bar .copyright-text {
    font-size: 0.95rem;
    color: #333;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    margin-right: 10px;
    border-radius: 10%;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: 0.3s ease;
}

    /* Brand background colors */
    .social-icons a.facebook {
        background-color: #3b5998;
    }

    .social-icons a.twitter {
        background-color: #000;
    }

    .social-icons a.linkedin {
        background-color: #0077b5;
    }

    /* Hover effect (optional lighter background) */
    .social-icons a:hover {
        opacity: 0.85;
    }

/* Optional: align items on mobile */
@media (max-width: 576px) {
    .footer-bar .container {
        flex-direction: column;
        text-align: center;
    }

    .social-icons {
        margin-bottom: 10px;
    }
}

/*# sourceMappingURL=main.css.map */


.formio-button-add-another, .formio-button-add-row, .formio-component-submit .btn {
    background-color: var(--primary-color);
    border: var(--primary-color);
}

    .formio-button-add-another:hover, .formio-button-add-row:hover, .formio-component-submit .btn:hover {
        background-color: var(--primary-color-hover);
        border: var(--primary-color);
    }

.formio-component-panel .card-title {
    color: var(--primary-color);
}

.active a {
    background-color: var(--secondary-color);
    color: var(--primary-color) !important;
}

/* Pagination */
.pager.pagination {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    padding: 0;
    font-family: var(--default-font);
}

    .pager.pagination li {
        display: inline-block;
    }

        .pager.pagination li a {
            display: block;
            padding: 8px 12px;
            color: var(--primary-color);
            text-decoration: none;
            border: 1px solid #ddd;
            transition: 0.2s ease-in-out;
        }

            .pager.pagination li a:hover {
                background: var(--primary-color);
                color: #fff;
                border-color: var(--primary-color);
            }

        .pager.pagination li.active a {
            background: var(--primary-color);
            color: #fff !important;
            font-weight: bold;
            border-color: var(--primary-color);
            cursor: default;
        }

        .pager.pagination li.disabled a {
            color: #aaa;
            background: #f9f9f9;
            border-color: #ddd;
            cursor: not-allowed;
            pointer-events: none;
        }

.first,
.last,
.pager li:nth-child(2),
.pager li:nth-last-child(2) {
    font-size: 0;
}

    .first a {
        border-radius: 8px 0 0 8px
    }

    .last a {
        border-radius: 0 8px 8px 0;
    }

        .first a::before,
        .last a::before,
        .pager li:nth-child(2) a::before,
        .pager li:nth-last-child(2) a::before {
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            font-size: 16px;
        }

    .first a::before {
        content: "\f100";
    }

    .pager li:nth-child(2) a::before {
        content: "\f104";
    }

    .last a::before {
        content: "\f101";
    }

    .pager li:nth-last-child(2) a::before {
        content: "\f105";
    }

.btn-add {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 6px 15px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    user-select: none;
}

    .btn-add:hover {
        background-color: var(--primary-color-hover);
        color: #fff;
    }

@media (max-width: 767.98px) {
    .profile-content {
        padding: 0 !important;
    }
}

.wrapper {
    display: flex;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.content {
    flex: 1;
    min-width: 0;
}
