/* NAVBAR AND FOOTER STYLES MOVED TO main.css FOR CONSISTENCY */

body{
    font-family: 'Inter', 'Poppins', Arial, Helvetica, sans-serif;
    background-color: #f8f9fa;
}

/* ------------------------------------------------------------------- */
/* ----------------------- Dark Mode Hero Section -------------------- */
/* ------------------------------------------------------------------- */

body.dark #onlineMarketplaceHeroImageDiv {
    background: linear-gradient(135deg, rgba(2, 6, 23, 0.4) 0%, rgba(2, 6, 23, 0.5) 100%),
                url('../../images/industries/transportation/TransportationPage.jpg') center/cover no-repeat !important;
}

body.dark #onlineMarketplaceHeroImageDiv::before {
    background: linear-gradient(135deg, rgba(2, 6, 23, 0.3) 0%, rgba(2, 6, 23, 0.4) 100%) !important;
}

body.dark #onlineMarketplaceHeroContentDiv {
    background: linear-gradient(to right, rgba(2, 6, 23, 0.7) 0%, rgba(2, 6, 23, 0.5) 40%, rgba(2, 6, 23, 0.3) 70%, rgba(2, 6, 23, 0) 100%) !important;
}

body.dark #onlineMarketplaceHeroHeading,
body.dark #onlineMarketplaceHeroPara {
    color: white !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8) !important;
}

body.dark #onlineMarketplaceHeroDiv {
    border-bottom: 2px solid rgba(76, 175, 80, 0.4) !important;
}

/* ------------------------------------------------------------------- */
/* ----------------------- Dark Mode Content Cards ------------------- */
/* ------------------------------------------------------------------- */

body.dark .contentDiv {
    background: #020617 !important;
    border: 2px solid rgba(76, 175, 80, 0.4) !important;
    box-shadow: 0 8px 30px rgba(76, 175, 80, 0.1) !important;
}

body.dark .contentDiv h1,
body.dark .contentDiv h2,
body.dark .contentDiv h3,
body.dark .contentDiv h4,
body.dark .contentDiv p {
    color: white !important;
}

body.dark #ourAreasContentHeading {
    color: white !important;
}

body.dark .ourAreasContent {
    border-bottom-color: rgba(76, 175, 80, 0.3) !important;
}

body.dark .ourAreasContentLinks,
body.dark .ourAreasContentLinksArrow {
    color: white !important;
}

body.dark #onlineMarketplaceContentHeading,
body.dark #ourAreasContentHeading {
    color: white !important;
}

/* ------------------------------------------------------------------- */
/* ----------------------- Dark Mode Proposal Section ---------------- */
/* ------------------------------------------------------------------- */

body.dark #proposalRequestDiv {
    background: linear-gradient(135deg, rgba(2, 6, 23, 0.95) 0%, rgba(2, 6, 23, 0.9) 100%) !important;
    border-top: 2px solid rgba(76, 175, 80, 0.6) !important;
    margin-top: 80px !important;
}

body.dark #proposalRequestDiv::before {
    background: linear-gradient(135deg, rgba(2, 6, 23, 0.9) 0%, rgba(2, 6, 23, 0.95) 100%) !important;
}

body.dark #proposalHeading {
    color: white !important;
}

body.dark #proposalParagraph {
    color: rgba(255, 255, 255, 0.8) !important;
}

body.dark .proposalReachOutButton {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.8) 0%, rgba(34, 211, 238, 0.8) 100%) !important;
    color: white !important;
}

body.dark .proposalReachOutButton:hover {
    background: linear-gradient(135deg, rgba(76, 175, 80, 1) 0%, rgba(34, 211, 238, 1) 100%) !important;
    transform: translateY(-2px) !important;
}

/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ----------------------- Hero Section ------------------------------ */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */

#onlineMarketplaceHeroDiv {
    position: relative;
    overflow: hidden;
}

#onlineMarketplaceHeroImageDiv {
    background-image: url('../../images/industries/transportation/TransportationPage.jpg');
    height: 50vh;
    min-height: 400px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 0;
    position: relative;
}

#onlineMarketplaceHeroImageDiv::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 51, 141, 0.4) 0%, rgba(8, 37, 88, 0.3) 100%);
    z-index: 1;
}

#onlineMarketplaceHeroContentDiv {
    height: 50vh;
    min-height: 400px;
    background: linear-gradient(
        to right,
        rgba(0, 51, 141, 0.6) 0%,
        rgba(0, 51, 141, 0.4) 40%,
        rgba(0, 51, 141, 0.2) 70%,
        rgba(0, 51, 141, 0) 100%
    );
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 2;
    color: white;
    display: flex;
    align-items: center;
}

#onlineMarketplaceHeroHeadingParaContentDiv{
    width: 60%;
    max-width: 700px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 5%;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#onlineMarketplaceHeroHeading{
    font-size: clamp(32px, 5vw, 48px);
    text-align: left;
    width: 100%;
    font-weight: 700;
    margin: 0 0 20px 0;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-family: 'Poppins', sans-serif;
}

#onlineMarketplaceHeroPara{
    font-size: clamp(16px, 2vw, 20px);
    width: 100%;
    margin: 0;
    line-height: 1.6;
    opacity: 0.95;
    font-weight: 400;
}

/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------- onlineMarketplace Content Section -------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */


#onlineMarketplaceAndOurAreasSectionContentDiv{
    display: flex;
    gap: 40px;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 5%;
    align-items: flex-start;
}

.contentDiv{
    margin: 0;
}

#onlineMarketplaceSectionContentDiv{
    width: 60%;
    flex: 1;
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#onlineMarketplaceSectionContentDiv:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

#onlineMarketplaceContentHeading{
    font-size: clamp(28px, 3vw, 36px);
    color: rgb(0, 51, 141);
    margin: 0 0 30px 0;
    font-weight: 700;
    line-height: 1.3;
    font-family: 'Poppins', sans-serif;
    position: relative;
    padding-bottom: 15px;
}

#onlineMarketplaceContentHeading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, rgb(0, 51, 141), rgba(0, 51, 141, 0.3));
    border-radius: 2px;
}

#onlineMarketplaceContentPara{
    margin: 0;
    font-size: 17px;
    line-height: 1.8;
    color: #333;
    font-weight: 400;
}

#onlineMarketplaceContentPara p {
    margin: 0 0 20px 0;
    color: #555;
}

#onlineMarketplaceContentPara p:last-child {
    margin-bottom: 0;
}

#OurAreasSectionDiv{
    width: 40%;
    background: linear-gradient(135deg, rgba(0, 51, 141, 0.05) 0%, rgba(8, 37, 88, 0.05) 100%);
    border-left: 5px solid rgb(0, 51, 141);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 40px 30px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

#ourAreasContentHeading{
    font-size: clamp(24px, 2.5vw, 32px);
    font-weight: 700;
    color: rgb(0, 51, 141);
    margin: 0 0 30px 0;
    font-family: 'Poppins', sans-serif;
    position: relative;
    padding-bottom: 15px;
}

#ourAreasContentHeading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: rgb(0, 51, 141);
    border-radius: 2px;
}

.ourAreasContent{
    padding: 20px 0;
    margin: 0;
    border-bottom: 1px solid rgba(0, 51, 141, 0.1);
    transition: all 0.3s ease;
}

.ourAreasContent:last-child {
    border-bottom: none;
}

.ourAreasContent:hover {
    padding-left: 10px;
    background: rgba(0, 51, 141, 0.03);
    border-radius: 8px;
    margin: 0 -10px;
    padding-left: 10px;
    padding-right: 10px;
}

.ourAreasContentLinksDiv{
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.ourAreasContentLinksDiv:hover{
    color: rgb(0, 51, 141);
}

.ourAreasContentLinksDiv:hover .ourAreasContentLinksArrow {
    transform: translateX(5px);
    color: rgb(0, 51, 141);
}

.ourAreasContentLinks{
    flex: 1;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    transition: color 0.3s ease;
}

.ourAreasContentLinksDiv:hover .ourAreasContentLinks {
    color: rgb(0, 51, 141);
    font-weight: 600;
}

.ourAreasContentLinksArrow{
    font-size: 20px;
    font-weight: 600;
    color: rgba(0, 51, 141, 0.5);
    transition: all 0.3s ease;
}


/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------ Proposal Request Section ----------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */

#proposalRequestDiv{
    color: white;
    padding: 100px 5%;
    background: linear-gradient(135deg, rgba(0, 51, 141, 0.95) 0%, rgba(8, 37, 88, 0.95) 100%),
                url('../../images/industries/blueColorBackground.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

#proposalRequestDiv::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 51, 141, 0.9) 0%, rgba(8, 37, 88, 0.85) 100%);
    z-index: 1;
}

#proposalRequestContent{
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.proposalRequestContents{
    margin: 0;
}

#proposalHeading{
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 700;
    margin: 0 0 25px 0;
    line-height: 1.3;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

#proposalParagraph{
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.8;
    margin: 0 0 35px 0;
    opacity: 0.95;
    font-weight: 400;
}

.proposalReachOutButton{
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.proposalReachOutButton:hover{
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.proposalReachOutButton::after {
    content: '→';
    font-size: 20px;
    transition: transform 0.3s ease;
}

.proposalReachOutButton:hover::after {
    transform: translateX(5px);
}

/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ----------------------- Whatsapp Section -------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* WHATSAPP STYLES MOVED TO main.css FOR CONSISTENCY */


/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ###################### Responsiveness ############################# */
/* ################################################################### */
/* ################################################################### */
/* ################################################################### */
/* ################################################################### */
/* ################################################################### */


@media (max-width: 1024px) {
    #onlineMarketplaceAndOurAreasSectionContentDiv {
        flex-direction: column;
        gap: 30px;
        margin: 60px auto;
    }

    #onlineMarketplaceSectionContentDiv {
        width: 100%;
    }

    #OurAreasSectionDiv {
        width: 100%;
        position: relative;
        top: 0;
    }
}

@media (max-width: 600px){

/* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* ---------------------- Nav And Hero Section ----------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* NAVBAR RESPONSIVE STYLES MOVED TO main.css FOR CONSISTENCY */

    .heroDiv{
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .heroh1{
        font-size: 30px;
        position: relative;
        left: 29px;
        width: 87%;
        text-align: center;
        margin-bottom: 50px;
    }

    .herop1{
        font-size: 20px;
        width: 80%;
        margin-left: 3%;
        position: relative;
        bottom: 15px;
        left: 36px;
    }

    .herop2{
        font-size: 17px;
        width: 80%;
        margin-left: 41px;
        position: relative;
        bottom: 35px;
    }

    .b1, .b2{
        font-size: 15px;
        border-radius: 40px;
        padding: 7.5px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 60%;
        margin-top: 5%;
        color: white;
    }

    .b2{
        color: black;
    }

    .buttonsdiv{
        text-align: center;
        margin-left: 120px;
    }

/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* --------------------------- WhatsApp Section ---------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
    /* WHATSAPP RESPONSIVE STYLES MOVED TO main.css FOR CONSISTENCY */


/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ----------------------- Hero Section ------------------------------ */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */

#onlineMarketplaceHeroImageDiv {
    height: 40vh;
    min-height: 300px;
}

#onlineMarketplaceHeroContentDiv {
    height: 40vh;
    min-height: 300px;
    width: 100%;
    z-index: 1;
    color: white;
}

#onlineMarketplaceHeroHeadingParaContentDiv{
    width: 100%;
    height: 100%;
    padding: 20px;
    align-items: center;
    text-align: center;
}

#onlineMarketplaceHeroHeading{
    font-size: clamp(24px, 6vw, 32px);
    text-align: center;
    width: 100%;
    font-weight: 700;
    margin-bottom: 15px;
}

#onlineMarketplaceHeroPara{
    font-size: clamp(14px, 3vw, 18px);
    text-align: center;
    width: 100%;
}

/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------- onlineMarketplace Content Section -------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */


#onlineMarketplaceAndOurAreasSectionContentDiv{
    display: block;
    margin: 40px auto;
    padding: 0 4%;
    gap: 30px;
}

#onlineMarketplaceSectionContentDiv{
    width: 100%;
    padding: 30px 20px;
    margin-bottom: 30px;
}

#onlineMarketplaceContentHeading{
    font-size: clamp(22px, 5vw, 28px);
    margin-bottom: 20px;
    padding-bottom: 12px;
}

#onlineMarketplaceContentPara{
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
}

#onlineMarketplaceContentPara p {
    margin-bottom: 15px;
}

#OurAreasSectionDiv{
    width: 100%;
    padding: 30px 20px;
    position: relative;
    top: 0;
}

#ourAreasContentHeading{
    font-size: clamp(20px, 4vw, 26px);
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 12px;
}

.ourAreasContent{
    padding: 18px 0;
    border-bottom: 1px solid rgba(0, 51, 141, 0.1);
}

.ourAreasContentLinks{
    font-size: 16px;
}

.ourAreasContentLinksArrow{
    text-align: right;
    font-size: 18px;
}


/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------ Proposal Request Section ----------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */

#proposalRequestDiv{
    padding: 60px 4%;
    background-attachment: scroll;
}

#proposalRequestContent{
    width: 100%;
}

#proposalHeading{
    font-size: clamp(24px, 5vw, 32px);
    margin-bottom: 20px;
}

#proposalParagraph{
    font-size: clamp(14px, 3vw, 18px);
    line-height: 1.7;
    margin-bottom: 25px;
}

.proposalReachOutButton{
    font-size: 16px;
    padding: 12px 28px;
    width: 100%;
    justify-content: center;
}

.proposalReachOutButton:hover{
    transform: translateY(-2px);
}

.proposalReachOutButton:hover::after {
    transform: translateX(5px);
}

    /* Footer responsive styles moved to main.css */

}
