@import url("../fonts/inter.css");
@import url("../fonts/titillium.css");

:root {
    --theme-blue: #03479A;
    --theme-red: #E00F10;
    --theme-black: #0A0A0A;
    --white: #fff;
    --linear-bg: linear-gradient(rgba(0, 0, 0, 0.9),
            rgba(0, 0, 0, 0.9));
    --linear-bg2: linear-gradient(90.58deg, rgba(0, 0, 0, 0) 0.5%, rgba(0, 0, 0, 0.114518) 19.82%, rgba(0, 0, 0, 0.2) 34.24%);
    --bg: #F5F5F5;
    /* --section-bg: #fefefe; */
    --text-color: #6E777D;
    --theme-red-bg: #FFF0F0;
    --theme-blue-bg: #03479A1A;
    --black: #0A0A0A;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
    font-size: 16px;
    letter-spacing: 0.6px;
    height: 100%;
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
    /* takes remaining space */
}

.footer {
    flex-shrink: 0;
    /* prevents footer collapse */
}

p {
    color: var(--text-color);
    text-align: justify;
    hyphens: auto;
    font-size: 14px;
    word-spacing: 0;
}

a {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Titillium Web", sans-serif;
    font-style: normal;
    line-height: 1.5;
}

h1 {
    font-size: clamp(26px, 4vw, 32px);
    font-weight: 700;
}

h2 {
    font-size: clamp(24px, 3vw, 28px);
    font-weight: 600;
}

h3 {
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: 500;
}

h4 {
    font-size: clamp(18px, 2vw, 20px);
    font-weight: 500;
}

h5 {
    font-size: clamp(16px, 1.8vw, 18px);
    font-weight: 500;
}

h6 {
    font-size: clamp(14px, 1.5vw, 16px);
    font-weight: 500;
}

section {
    overflow-x: hidden;
}

.section-padding {
    padding: clamp(30px, 5vw, 50px) 0;
}

.container {
    max-width: clamp(300px, 85vw, 1490px);
    margin: 0 auto;
}

.negative-margin {
    margin-top: -42px;
}

.label {
    color: var(--theme-red);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0;
    text-transform: capitalize;
}

.title {
    margin-bottom: 15px;
    font-weight: 700;
}

.box-btn {
    background-color: var(--black);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 2px;
    font-weight: 600;
    font-size: 14px;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.5s;
}

.box-btn:hover {
    background-color: var(--theme-red);
    color: var(--white);
}

.box-btn p {
    background-color: white;
    padding: 5px 10px !important;
    margin: 0 !important;
}

.box-btn p iconify-icon {
    transform: rotate(-45deg);
    transition: all 0.5s;
    color: var(--black) !important;
    vertical-align: middle;
}

.box-btn:hover p iconify-icon {
    transform: rotate(0deg);
    color: var(--theme-red) !important;

}

/* Header Part */
header {
    padding: 10px 0;
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 1px solid #12121214;
}

/* Sticky Header Styles */
.main-header.sticky {
    position: fixed;
    top: -1px;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Add padding to body when header becomes sticky to prevent content jump */
body.header-sticky-active {
    padding-top: 60px;
    /* Adjust based on your header height */
}

.main-header .navbar-nav {
    gap: 15px;
}

.main-header .nav-link {
    color: var(--black);
    font-weight: 600;
    padding: 10px !important;
    transition: all 0.3s;
    font-size: 14px;
}

.main-header .nav-item:hover .nav-link,
.main-header .nav-item.active .nav-link {
    color: var(--theme-blue);
    text-decoration: underline;
    text-underline-offset: 5px;
}

.navbar-toggler {
    border: 0;
    padding: 0;
}

.navbar-toggler-icon {
    width: 1em;
    height: 1em;
}

.navbar-toggler:focus {
    box-shadow: unset;
}

.navbar-brand img {
    height: 40px;
}

.login-register-btn {
    display: flex;
    align-items: center;
    color: var(--theme-red);
    gap: 5px;
    font-size: 14px;
}

.login-register-btn:hover {
    color: var(--theme-blue);
}

@media (max-width:1199px) {
    .main-header .navbar-nav {
        gap: 0;
    }

    .navbar-brand img {
        height: 35px;
    }
}

.title-theme-blue {
    color: var(--theme-blue);
}

/* Mobile Styles */
@media (max-width: 991px) {
    .offcanvas.offcanvas-end {
        width: 280px;
        backdrop-filter: blur(50px);
        background-color: #ffffff78;
    }

    .offcanvas.offcanvas-end .offcanvas-body {
        overflow-x: hidden;
    }

    .navbar-nav .nav-link,
    .login-register-btn {
        padding: 0.5rem 0 !important;
    }
}

/* Hero Part */
.hero {
    width: 100%;
    height: 100%;
    background: var(--linear-bg), url("../image/bg1.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.hero-section {
    flex: 0 0 auto;
    position: relative;
    align-items: center;
}

.hero-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 25px;
    margin: 0 0 50px 0;
}

.hero-container {
    position: relative;
    width: 407px;
    height: 380px;
}

.center-node {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    /* background: var(--theme-blue); */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    /* padding: 20px; */
    z-index: 10;
    line-height: 1.3;
}

.hero-node-wrapper {
    position: absolute;
}


.hero-node-wrapper::after {
    content: "";
    position: absolute;
    /* top: -30%; */
    right: 0;
    width: 35px;
    height: 35px;
    background: url("../image/solar_arrow-up-linear.svg");
    background-repeat: no-repeat;
}

/* Top node */
.hero-node-wrapper:nth-child(2) {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}


.hero-node-wrapper:nth-child(2)::after {
    top: calc(100% + 30px);
    left: 55%;
    transform: translateX(-50%) rotate(-90deg);
}

/* Top-right node */
.hero-node-wrapper:nth-child(3) {
    top: 15%;
    right: 0;
}

.hero-node-wrapper:nth-child(3)::after {
    top: 105%;
    right: calc(100% + 15px);
    transform: translate(50%, -50%) rotate(-40deg);
}

/* Bottom-right node */
.hero-node-wrapper:nth-child(4) {
    bottom: 15%;
    right: 0;
}

.hero-node-wrapper:nth-child(4)::after {
    bottom: 95%;
    right: calc(100% + 20px);
    transform: translate(50%, 50%) rotate(35deg);
}

/* Bottom node */
.hero-node-wrapper:nth-child(5) {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.hero-node-wrapper:nth-child(5)::after {
    bottom: calc(100% + 25px);
    left: 45%;
    transform: translateX(-50%) rotate(90deg);
}

/* Bottom-left node */
.hero-node-wrapper:nth-child(6) {
    bottom: 15%;
    left: 0;
}

.hero-node-wrapper:nth-child(6)::after {
    bottom: 105%;
    left: calc(100% + 10px);
    transform: translate(-50%, 50%) rotate(145deg);
}

/* Top-left node */
.hero-node-wrapper:nth-child(7) {
    top: 15%;
    left: 0;
}

.hero-node-wrapper:nth-child(7)::after {
    top: 95%;
    left: calc(100% + 25px);
    transform: translate(-50%, -50%) rotate(-135deg);
}

.hero-node {
    width: 110px;
    height: 110px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-weight: 600;
    font-size: 12px;
    text-align: center;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 5;
    line-height: 1.3;
}

.hero-node:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(255, 255, 255, 0.3);
}

.hero-node.active {
    background: var(--theme-blue);
    color: var(--white);
    transform: scale(1.05);
    box-shadow: 0 8px 35px rgba(0, 102, 204, 0.5);
}

.arrow-container {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider-section {
    flex: 1;
    max-width: 696px;
}

.hero-slider-section .swiper {
    width: 100%;
    height: 376px;
}

.hero-slider-section .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider-section .slide-image {
    width: 100%;
    height: 100%;
    /* max-height: 450px; */
    object-fit: contain;
    border-radius: 15px;
    padding: 20px 10px 45px 10px;
    object-position: center;
}

.hero-slider-section .swiper-button-next,
.hero-slider-section .swiper-button-prev {
    color: var(--white);
    background: transparent;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    top: auto;
    bottom: 0px;
    backdrop-filter: blur(0);
    z-index: 2;
    transition: all 0.5s;
}

.hero-slider-section .swiper-button-next {
    right: 30%;
}

.hero-slider-section .swiper-button-prev {
    left: 30%;
}

.hero-slider-section .swiper-button-next:hover,
.hero-slider-section .swiper-button-prev:hover {
    color: var(--theme-red);
}

.hero-slider-section .swiper-button-next::after,
.hero-slider-section .swiper-button-prev::after {
    font-size: 18px;
}

.hero-slider-section .swiper-pagination {
    z-index: 1;
    /* bottom: 0 !important; */
}

.hero-slider-section .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.hero-slider-section .swiper-pagination-bullet-active {
    background: var(--theme-red);
    width: 12px;
    height: 12px;
}

@media (max-width: 1199px) {

    .hero-wrapper {
        flex-direction: column;
        gap: 0;
    }

}

@media (max-width: 768px) {
    .hero-container {
        width: 300px;
        height: 300px;
    }

    .hero-node-wrapper::after {
        display: none;
    }

    .center-node {
        width: 100px;
        height: 100px;
        font-size: 12px;
    }

    .hero-node {
        width: 85px;
        height: 85px;
        font-size: 11px;
    }

    .hero-slider-section {
        max-width: 100%;
        min-width: 320px;
    }

    .hero .swiper {
        height: 400px;
    }
}

@media (max-width:576px) {
    .hero-slider-section .swiper-button-next {
        right: 10%;
    }

    .hero-slider-section .swiper-button-prev {
        left: 10%;
    }

    .hero .swiper {
        height: auto;
    }

    .hero-wrapper {
        margin-bottom: 0;
    }
}

/* Hero Part */

/* Search Part */
@media (max-width:576px) {
    .search.negative-margin {
        margin-top: 0;
        padding-top: 30px !important;
    }
}

.search-container {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0px 4px 4px 0px #0000001F;
    margin: 0 auto;
}

.search-form {
    display: flex;
    gap: 12px;
    align-items: stretch;
}

.form-control,
.form-select {
    border: 1px solid #e0e0e0;
    /* padding: 12px 16px; */
    height: 48px;
    font-size: 14px;
    color: var(--text-color);
}

.form-control::placeholder,
.form-select {
    color: var(--text-color);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--theme-red);
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.1);
}

.search-input-wrapper {
    position: relative;
    flex: 1;
    min-width: 0;
}

.date-search-input-wrapper {
    flex: 0 0 220px;
    position: relative;
}

.date-search-input-wrapper .form-control {
    padding-right: 40px;
}

.calendar-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
}

.search-btn {
    background-color: var(--theme-red);
    border: none;
    color: white;
    /* padding: 0 24px; */
    border-radius: 4px;
    height: 48px;
    width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background-color 0.2s;
}

.search-btn:hover {
    background-color: var(--theme-blue);
}

.search-btn iconify-icon {
    font-size: 18px;
}

@media (max-width: 1200px) {
    .search-form {
        flex-wrap: wrap;
    }

    .search-input-wrapper {
        flex: 1 1 calc(50% - 6px);
        min-width: 200px;
    }

    .date-search-input-wrapper {
        flex: 1 1 calc(50% - 6px);
    }

    .search-btn {
        flex: 0 0 48px;
    }
}

@media (max-width: 768px) {

    .search-input-wrapper,
    .date-search-input-wrapper {
        flex: 1 1 100%;
    }
}

/* Search Part */

/* About Part */
.about-content-wrapper p {
    line-height: 1.8;
    padding-right: 25px;
}

.action-row {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 24px;
}



.contact-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.phone-icon {
    width: 40px;
    height: 40px;
    background-color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 15px;
    transition: all 0.5s;
}

.contact-info:hover .phone-icon {
    background-color: var(--theme-red);
}

.phone-details {
    display: flex;
    flex-direction: column;
}

.phone-label {
    font-size: 12px;
    color: var(--text-color);
    margin-bottom: 2px;
}

.phone-number {
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
    transition: all 0.5s;
}

.contact-info:hover .phone-number {
    color: var(--theme-red);
}

/* Notices Board */
.notices-board {
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0px 1px 3px 0px #968D8DA1;
}

.notices-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.notices-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    margin: 0;
}

.notice-item {
    padding: 15px;
    border-left: 1px solid var(--theme-blue);
    border-radius: 8px;
    margin-bottom: 15px;
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
    display: block;
    background-color: var(--theme-blue-bg);
    height: 100%;
}

.notice-item:hover {
    border-color: var(--theme-red);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.1);
    transform: translateX(4px);
    background-color: var(--theme-red-bg);
}

.notice-date {
    font-size: 12px;
    color: var(--text-color);
    /* font-weight: 600; */
    /* margin-bottom: 5px; */
}

/* .notice-item:hover .notice-date { */
/* color: var(--theme-red); */
/* } */

.notice-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    height: 100%;
}

.notice-content p {
    font-size: 14px;
    color: var(--theme-blue);
    line-height: 1.5;
    margin: 0;
    flex: 1;
    min-height: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 600;
    text-align: left;
}

.notice-item:hover .notice-content p {
    color: var(--theme-red);
}

.notice-content iconify-icon {
    color: var(--theme-blue);
}

.notice-item:hover .notice-content iconify-icon {
    color: var(--theme-red);
}

.learn-more {
    color: var(--theme-blue);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    transition: all .5s;
}

.learn-more:hover {
    color: var(--theme-black);
}

.learn-more iconify-icon {
    transition: all 0.5s;
}

.learn-more:hover iconify-icon {
    transform: translateX(5px);

}

@media (max-width:1299px) {
    .about-content-wrapper p {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .action-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .notices-board {
        padding: 24px;
    }
}

/* About Part */

/* Animated Bell part */
.bell-box {
    position: relative;
    width: 48px;
    height: 48px;
    cursor: pointer;
}

.bell-icon {
    width: 100%;
    height: 100%;
    color: #e7b000;
    /* Bell color */
    transform-origin: top center;
    animation: ring 1.2s ease-in-out infinite;
}

@keyframes ring {
    0% {
        transform: rotate(0deg);
    }

    15% {
        transform: rotate(15deg);
    }

    30% {
        transform: rotate(-12deg);
    }

    45% {
        transform: rotate(8deg);
    }

    60% {
        transform: rotate(-5deg);
    }

    75% {
        transform: rotate(3deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

/* red dot */
.red-dot {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 12px;
    height: 12px;
    background: var(--theme-red);
    border-radius: 50%;
    border: 2px solid #fff;
    animation: pop 0.35s ease-out;
}

@keyframes pop {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    80% {
        transform: scale(1.3);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Animated Bell part */

/* stats Part */
.stats-section {
    background: var(--linear-bg), url('../image/bg2.jpg') center/cover no-repeat;
    position: relative;
}

/* Stat Items */
.stat-box {
    text-align: center;
    width: 100%;
    height: 100%;
}

.stat-box .stat-number {
    font-weight: 700;
    color: var(--white);
    margin-top: 10px;
    font-size: clamp(26px, 4vw, 32px);
}

.stat-box p {
    color: var(--white);
    margin: 5px 0 0 0;
    text-align: center;
    font-size: 12px;
}

/* Icon circle */
.icon-circle {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    margin: 0 auto;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Icon color variations */
.purple {
    color: #AF72FF;
}

.teal {
    color: #13645B;
}

.blue {
    color: #03479A;
}

.green {
    color: #0E574F;
}

.red {
    color: #E00F10;
}

/* Triangle Section */
/* Border Wrapper */
.triangle-border {
    padding: 6px;
    /* thickness of border */
    background: #fff;
    /* white border color */
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    width: 325px;
    /* wrapper bigger than triangle */
    height: 225px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.triangle-wrapper {
    margin: 25px 0 10px;
    position: absolute;
    top: -60px;
    left: 41%;
}

.triangle-box {
    width: 286px;
    height: 200px;
    overflow: hidden;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    background: #fff;
}

.tri-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width:1499px) {
    .triangle-wrapper {
        left: 39%;
    }
}

@media (max-width:1399px) {
    .triangle-wrapper {
        left: 38%;
    }
}

@media (max-width:1299px) {
    .triangle-border {
        width: 300px;
        height: 195px;
    }

    .triangle-box {
        width: 265px;
        height: 170px;
    }
}

@media (max-width:1199px) {
    .triangle-border {
        width: 280px;
        height: 170px;
    }

    .triangle-box {
        width: 230px;
        height: 140px;
    }

    .triangle-wrapper {
        left: 36%;
    }
}

@media (max-width:991px) {
    .triangle-wrapper {
        display: none;
    }
}

/* stats Part */

/* Tender Notice Part */
.tender-notice {
    background-color: var(--bg);
}

.tabs-filter-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
}

.custom-tabs {
    display: flex;
    gap: 30px;
    border-bottom: 3px solid #E5DBDB70;
    width: 85%;
}

@media (max-width:575px) {
    .tabs-filter-row {
        flex-direction: column;
        align-items: normal;
    }

    .custom-tabs {
        width: 100%;
    }
}

.custom-tabs .nav-link {
    padding: 8px 0;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.5s;
}

.custom-tabs .nav-link:hover {
    color: var(--theme-blue);
}

.custom-tabs .nav-link.active {
    color: var(--theme-blue);
    border-bottom-color: var(--theme-blue);
}

.filter-dropdown {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-dropdown label {
    font-size: 14px;
    color: var(--text-color);
    margin: 0;
    white-space: nowrap;
}

.filter-dropdown select {
    border: 1px solid #ddd;
    padding: 6px 30px 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    background-color: white;
    cursor: pointer;
}

.tender-notice .swiper {
    padding: 10px 0;
}

.tender-notice .swiper-wrapper {
    margin-bottom: 30px;
}

.tender-card {
    background-color: var(--white);
    border-radius: 6px;
    padding: 24px;
    height: 100%;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); */
    display: flex;
    flex-direction: column;
    border: 1px solid #FFFFFF;
}

.tender-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.tender-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--black);
    font-weight: 500;
}

.tender-category {
    font-size: 12px;
    color: var(--theme-blue);
    font-weight: 600;
    background-color: #CED3D947;
    padding: 5px 20px;
    border-radius: 17px;
}

.days-left {
    color: var(--theme-red);
    background-color: var(--theme-red-bg);
}

.tender-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--theme-blue);
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 50px;
    margin-bottom: 5px;
}

.department {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #666;
    margin-bottom: 5px;
    font-weight: bold;
}

.dates-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    font-size: 12px;
    border-bottom: 0.6px solid #968d8d47;
    padding-bottom: 16px;
}

.date-item {
    display: flex;
    gap: 5px;
}

.date-value {
    font-weight: 600;
}

@media (max-width:440px) {
    .dates-row {
        flex-direction: column;
    }
}

.category-label {
    font-size: 14px;
    margin-bottom: 4px;
    color: var(--text-color);
}

.category-value {
    font-size: 16px;
    letter-spacing: 0;
}

.bottom-section {
    display: flex;
    justify-content: space-between;
    /* align-items: flex-end; */
    margin-top: auto;
}

.document-info {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    margin-bottom: 12px;
    color: var(--text-color);
}

.document-thumbnail {
    max-width: 100px;
    height: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fafafa;
    overflow: hidden;
}

.document-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.document-placeholder {
    font-size: 10px;
    color: #999;
    text-align: center;
    padding: 5px;
}

.document-thumbnail {
    cursor: pointer;
    transition: transform 0.2s;
}

.document-thumbnail:hover {
    transform: scale(1.05);
}

.document-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
}

.modal-content-wrapper {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.modal-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    line-height: 1;
}

.modal-close:hover {
    color: #ccc;
}

.arrow-slide-btn {
    background-color: var(--black);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 10px 20px;
    overflow: hidden;
    white-space: nowrap;
    width: fit-content;
    transition: width 1s ease-in-out;
    /* smoother animation */
}

.arrow-slide-btn:hover {
    min-width: 120px;
    width: 100%;
}

.arrow-slide-btn .btn-text {
    font-size: 13px;
    font-weight: 500;
    max-width: 0;
    opacity: 0;
    margin-right: 0;
    transition: max-width 1s ease-in-out, opacity 0.3s ease-in-out, margin-right 0.3s ease-in-out;
    overflow: hidden;
}

.arrow-slide-btn:hover .btn-text {
    max-width: 100px;
    opacity: 1;
    margin-right: 8px;
}


.notice-footer {
    background-color: var(--theme-red-bg);
    padding: 15px 20px;
    text-align: center;
    font-size: 12px;
    color: var(--text-color);
    /* margin-top: 30px; */
    border-radius: 4px;
}

.notice-footer a {
    color: var(--theme-red);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.5s;
}

.notice-footer a:hover {
    text-decoration: underline;
}

.tender-notice .swiper-pagination-bullet {
    background: var(--theme-blue);
}

.tender-notice .swiper-pagination-bullet-active {
    background: var(--theme-blue);
}

/* Tender Notice Part */

/* Counter stats Part */
.counter .stats-section {
    border-radius: 8px;
    background: var(--linear-bg), url('../image/bg3.jpg') center/cover no-repeat;
}

.counter .stat-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.counter .icon-circle {
    margin: 0;
    color: var(--white);
    background-color: var(--theme-blue);
}

.counter .stat-box h3 small {
    font-size: 22px;
}

.counter .stat-box p {
    text-align: left;
    margin: 0;
}

@media(max-width:1199px) {
    .counter .stat-box {
        justify-content: left;
    }
}

/* Counter stats Part */

/* Process Section Part */
.process-section {
    background: url(../image/bg5.png) center/cover no-repeat;
}

.process-section-img {
    width: 100%;
    height: 100%;
}

.process-section-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/* Process Section Part */

/* Industry Section Part */
.industry-section {
    background: linear-gradient(to bottom, var(--black) 65%, #fff 35%);
}

.industry-swiper-content {
    position: relative;
    height: 400px;
    width: 100%;
    display: block;
    cursor: pointer;
}

.industry-swiper-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
}

.industry-swiper-contentimg {
    display: block;
}

.industry-swiper-content:hover .industry-swiper-contentimg {
    display: none;
}

.industry-swiper-contentimg-hover {
    visibility: hidden;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
    transform: translateY(100px);
    transition: transform 0.5s ease;
}

.industry-swiper-content:hover .industry-swiper-contentimg-hover {
    visibility: visible;
    transform: translateY(0);
    position: relative;
    z-index: 1;
}

.industry-swiper-content .industry-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    background: #fffffff5;
    /* Black see-through */
    color: var(--text-color);
    width: 100%;
    transition: all .5s ease;
    font-size: 20px;
    padding: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.industry-swiper-content .industry-overlay h3 {
    transition: transform 0.4s ease;
    transform: translateY(0);
    /* centered */
}

.industry-swiper-content:hover .industry-overlay {
    background: var(--black);
    color: var(--white);
}

.industry-swiper-content:hover .industry-overlay h3 {
    transform: translateY(-460%);
    /* moves UP */
}

@media (max-width:1299px) {
    .industry-swiper-content {
        height: 440px;
    }

    .industry-swiper-content:hover .industry-overlay h3 {
        transform: translateY(-535%);
    }
}

/* Industry Section Part */

/* Footer Part */
.footer {
    background: var(--linear-bg), url(../image/bg6.jpg) center/cover no-repeat;
    color: var(--white);
}

.footer-logo {
    width: fit-content;
    height: 60px;
    margin-bottom: 20px;
    display: block;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.footer p {
    color: #aaa;
    font-size: 14px;
    margin: 0;
}

.footer-title {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: var(--theme-red);
    gap: 5px;
}

.footer-title h5 {
    margin: 0;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.5s;
    display: inline-block;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-links a::before {
    content: "";
    margin-right: 8px;
    transition: all 0.5s;
}

.footer-links a:hover::before {
    content: "→";
}

.contact-footer-info {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: left;
    margin: 5px;
}

.contact-footer-info li a {
    display: flex;
    align-items: end;
    margin-bottom: 15px;
    color: #aaa;
    font-size: 14px;
    gap: 5px;
    transition: all 0.5s;
}

.contact-footer-info li a:hover {
    color: #fff;
    padding-left: 5px;
}

.social-footer-icons {
    display: flex;
    gap: 10px;
}

.social-footer-icons a {
    width: 35px;
    height: 35px;
    border: 1px solid #444;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.social-footer-icons a:hover {
    background-color: var(--theme-red);
    border-color: var(--theme-red);
}

.footer-bottom {
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    margin: 40px 0;
    padding: 20px 0;
    font-size: 13px;
    color: #888;
}

.footer-bottom a {
    color: #aaa;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #fff;
}

/* Footer Part */

/* Page Breadcrumb Part */
.page-breadcrumb {
    background: var(--linear-bg2), url(../image/bg4.png) center/cover no-repeat;
}

.breadcrumb {
    margin: 0;
    flex-wrap: nowrap;
    width: max-content;
}

.breadcrumb-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.breadcrumb-wrapper h1 {
    font-size: clamp(20px, 2.5vw, 24px);
}

@media(max-width:576px) {
    .breadcrumb-wrapper {
        flex-direction: column;
    }
}

.breadcrumb a {
    color: var(--white);
    transition: all 0.5s;
}

.breadcrumb a:hover {
    color: var(--theme-red);
}

.breadcrumb .breadcrumb-item {
    color: var(--white);
}

/* Page Breadcrumb Part */

/* Page About Part */
.page-about-img {
    width: 100%;
    height: 100%;
}

.page-about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Page About Part */

/* Page Choose Part */
.page-choose {
    /* background: var(--linear-bg), url(../image/bg7.jpg) center/cover no-repeat; */
    background: url(../image/bg7.jpg) center/cover no-repeat;

}

.video-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    max-height: 519px;
    object-fit: cover;
    display: block;
}

.play-button {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    height: 100px;
    background-color: var(--theme-red);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.5s;
    color: var(--white);
    /* clip-path: polygon(100% 0, 0% 100%, 100% 100%); */
}

.play-button:hover {
    background-color: var(--theme-blue);
}

.video-iframe {
    display: none;
    width: 100%;
    height: 100%;
    min-height: 490px;
    border-radius: 10px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-item {
    text-align: center;
    background-color: var(--black);
    padding: 25px 5px;
    transition: all 0.5s;
}

.feature-item:hover {
    background-color: var(--theme-red);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.5s;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
}

.feature-title {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    transition: all 0.5s;
}

.feature-item:hover .feature-title {
    transform: scale(1.1);
}

@media (max-width: 991px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .play-button {
        width: 60px;
        height: 60px;
    }
}

/* Page Choose Part */

/* Page About Img */
.section-page-about-img-wrapper {
    width: 100%;
    max-height: 422px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: url("../image/about3.png") no-repeat center / cover fixed;
}

/* .section-page-about-img-wrapper img { */
/* width: 100%; */
/* height: 100%; */
/* object-fit: cover; */
/* object-position: center; */
/* } */

/* Page About Img */

/* Page Faq Part */
.page-faq {
    background: var(--bg);
}

.faq-section {
    flex: 1;
    position: relative;
}

.faq-accordion {
    position: relative;
}

.faq-accordion .accordion-item {
    border: none;
    background: transparent;
    margin-bottom: 25px;
    position: relative;
}

.faq-accordion .accordion-item::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 20px;
    height: calc(100% - 36px + 45px);
    border-left: 2px dotted #DF0A0A;
    /* opacity: 0.3; */
    z-index: 1;
}

.faq-accordion .accordion-item:last-child::before {
    display: none;
}

.faq-accordion .accordion-button {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    display: flex;

    gap: 15px;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: transparent;
    color: inherit;
    box-shadow: none;
    align-items: flex-start;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.faq-accordion .accordion-button::after {
    display: none;
}

.faq-accordion .accordion-button:not(.collapsed) .faq-icon {
    width: 36px;
    height: 36px;
    background: var(--theme-red);
    /* position: relative; */
    /* opacity: 0.3; */
    /* z-index: 1; */
    left: 0;
}

.faq-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 5px solid var(--theme-red);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    font-weight: 600;
    flex-shrink: 0;
    position: relative;
    left: 8px;
}

.faq-question {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    text-align: left;
    flex: 1;
}

.faq-accordion .accordion-body {
    padding: 10px 0 0 51px;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.page-faq-img {
    width: 100%;
    height: 100%;
}

.page-faq-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
    border-bottom-left-radius: 28px;
    border-top-left-radius: 28px;
    border-left: 1px solid var(--theme-red);

}

/* Page Faq Part */

/* Page Contact Part */
.info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.info-card {
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0px 3.38px 6.77px 2.54px #F6F6F6;
    border: 0.85px solid #E6EDF55C;
}

.info-card:hover {
    background: var(--theme-blue-bg);
    transform: translateY(-2px);
}

.info-icon {
    width: 44px;
    height: 44px;
    background: var(--theme-blue-bg);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--theme-blue);
    font-size: 18px;
}

.info-content h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
}

.info-content a,
.info-content p {
    font-size: 12px;
    color: var(--text-color);
    margin: 0;
    line-height: 1.5;
    transition: all 0.5s;
}

.info-content:hover a {
    color: var(--theme-blue);
}

.form-section-title {
    color: var(--theme-red);
    margin-bottom: 8px;
}

.form-section p {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 30px;
}

.form-control {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 14px;
    color: #333;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--theme-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
    outline: none;
}

.form-control::placeholder {
    color: var(--text-color);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

@media (max-width: 768px) {

    .info-cards {
        grid-template-columns: 1fr;
    }
}

.page-contact-map {
    width: 100%;
    height: 100%;
}

.page-contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    object-position: center;
}

/* Page Contact Part */

/* Page Published Part */
/* Toggle Buttons Container */
.searchmobile-toggle-buttons {
    display: none;
    gap: 10px;
    margin-bottom: 20px;
}

.searchtoggle-btn {
    padding: 5px 15px;
    background: var(--theme-blue);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.searchtoggle-btn:hover {
    background: var(--theme-red);
}

.mobile-close-btn {
    display: none;
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--theme-red);
    color: white;
    border: none;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
}

.mobile-close-btn:hover {
    background: var(--theme-blue);
    transform: rotate(90deg);
}

.page-main-container {
    display: flex;
    /* min-height: 100vh; */
    gap: 20px;
}

/* page-sidebar Filters */
.page-sidebar {
    width: 165px;
    min-width: 140px;
    background: var(--white);
    border-radius: 8px;
    height: fit-content;
    transition: all 0.3s ease;
}

.filter-section {
    margin-bottom: 15px;
}

.filter-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0;
}

.filter-wrapper {
    max-height: 136px;
    overflow-y: auto;
    overflow-x: hidden;
}

.filter-wrapper::-webkit-scrollbar {
    width: 5px;
    background-color: #D9D9D9;
    border-radius: 4px;
}

.filter-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    cursor: pointer;
}

.filter-option:hover {
    background: #f8f9fa;
    margin: 0 -10px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 4px;
}

.filter-option label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 12px;
    color: var(--text-color);
    margin: 0;
    flex: 1;
}

.filter-option input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
}


/* Content Area */
.content-area {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.search-header {
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
    align-items: center;
    transition: all 0.3s ease;
}

.search-box {
    position: relative;
    width: 100%;
}

.search-box input {
    width: 100%;
    padding: 12px 12px 12px 40px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 13px;
}

.search-box iconify-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-color);
}

.date-filter {
    position: relative;
}

.date-filter input {
    width: 100%;
    height: 100%;
    padding: 12px 40px 12px 16px;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    font-size: 14px;
    background: #fff;
    min-width: 250px;
}

/* Label acts like placeholder */
.date-filter label {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    color: #555;
    font-size: 14px;
    pointer-events: none;
    transition: 0.2s ease;
    background: #fff;
    padding: 0 4px;
}

/* Hide label when date is selected or focused */
.date-filter input:focus+label,
.date-filter input:valid+label {
    opacity: 0;
}

/* Calendar icon position */
.date-filter input::-webkit-calendar-picker-indicator {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    opacity: 0.6;
}

/* Sample Content */
.sample-content {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    color: var(--text-color);
}

/* Overlay for mobile */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
}

.overlay.active {
    display: block;
}

/* Procurement Cards */
.procurement-card {
    background: var(--white);
    padding: 20px;
    transition: all 0.3s ease;
    border: 0.89px solid #03479A42;
    border-radius: 4.51px;
    width: 100%;
    height: 100%;
}

.procurement-card:hover {
    box-shadow: 0px 8px 17.77px 0px #00000040;
    transform: translateX(2px);
}

.card-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 10px;
    flex-wrap: wrap;
}

.card-id-section {
    display: flex;
    gap: 15px;
    align-items: center;
}

.card-id {
    background: #F6F6F6;
    color: var(--black);
    padding: 4px 15px;
    border-radius: 26.02px;
    font-size: 11px;
    font-weight: 600;
}

.goods-badge {
    background: #F6F6F6;
    color: var(--black);
    padding: 4px 15px;
    border-radius: 26.02px;
    font-size: 11px;
    font-weight: 600;
}

.view-btn {
    background: var(--theme-red);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 13.22px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-btn:hover {
    background: var(--theme-red);
}

.card-middle {
    border-left: 2.67px solid var(--theme-blue);
    border-radius: 8px;
    padding-left: 15px;
}

.procurement-card:hover .card-middle {
    border-left: 2.67px solid var(--theme-red);
}

.card-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--theme-blue);
    margin-bottom: 10px;
}

.procurement-card:hover .card-title {
    color: var(--theme-red);
}

.card-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-color);
    margin-bottom: 15px;
}

.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 11px;
    padding-top: 15px;
    border-top: 0.44px solid #968D8D;
}

.meta-item {
    display: flex;
    gap: 5px;
}

.meta-label {
    color: var(--text-color);
}

.meta-value {
    color: var(--theme-blue);
    font-weight: 500;
}

.meta-value.red {
    color: var(--theme-red);
}

/* Pagination */
.pagination-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    margin-top: 20px;
    background-color: var(--bg);
    border-radius: 6.31px;
}

.showing-text {
    font-size: 12px;
    color: var(--theme-blue);
    font-weight: 600;
}

.pagination-controls {
    display: flex;
    gap: 10px;

}

.page-btn {
    padding: 5px 10px;
    border: 1px solid #e0e0e0;
    background: white;
    border-radius: 4px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-btn:hover {
    background: #f8f9fa;
}

.page-btn.active {
    background: #0066cc;
    color: white;
    border-color: #0066cc;
}

.prev-btn,
.next-btn {
    padding: 5px 10px;
    border: 0;
    background: transparent;
    border-radius: 4px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-color);
}

.prev-btn:hover,
.next-btn:hover {
    color: var(--theme-red);
}

@media (max-width: 1199px) {
    .search-header {
        gap: 5px;
        flex-wrap: wrap;
    }

    .date-filter {
        gap: 5px;
    }
}

@media (max-width: 992px) {
    .mobile-close-btn {
        display: flex;
    }

    .searchmobile-toggle-buttons {
        display: flex;
    }

    .page-main-container {
        flex-direction: column;
    }

    .page-sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        z-index: 999;
        overflow-y: auto;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        padding: 40px 20px 20px 20px;
        border-radius: 0;
    }

    .page-sidebar.active {
        left: 0;
    }

    /* Search header mobile styles */
    .search-header {
        position: fixed;
        top: -100%;
        left: 0;
        right: 0;
        z-index: 999;
        flex-direction: column;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        max-height: 90vh;
        overflow-y: auto;
        padding: 40px 20px 20px 20px;
        border-radius: 0;
    }

    .search-header.active {
        top: 0;
    }

    .date-filter {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }

    .date-filter input {
        width: 100%;
    }
}

@media (max-width: 576px) {
    /* .searchtoggle-btn { */
    /* flex: 1; */
    /* justify-content: center; */
    /* } */

    .procurement-card {
        padding: 10px;
    }

    .card-id {
        font-size: 8px;
    }

    .showing-text {
        display: none;
    }

    .pagination-section {
        justify-content: center;
    }

    .view-btn {
        padding: 5px 15px;
        font-size: 10px;
    }
}

/* Table Styles */
.contract-table-container {
    background: var(--white);
    border-radius: 8px;
    overflow-x: auto;
    width: 100%;
}

.contract-custom-table {
    width: 100%;
    margin: 0;
    min-width: 900px;
}

.contract-custom-table thead {
    background: var(--theme-blue);
    color: var(--white);
}

.contract-custom-table thead th {
    padding: 15px 10px;
    font-size: 12px;
    font-weight: 600;
    text-align: left;
    border: none;
    white-space: nowrap;
}

.contract-custom-table tbody td {
    padding: 15px 10px;
    font-size: 12px;
    border: 1px solid #f1f3f5;
    vertical-align: middle;
}

.contract-custom-table tbody tr:hover {
    background: var(--bg);
}

.sn-col {
    width: 50px;
    text-align: center;
    font-weight: 500;
}

.pe-name-col {
    min-width: 150px;
}

.pe-name {
    font-weight: 600;
    color: var(--black);
    margin-bottom: 4px;
}

.pe-type {
    font-size: 12px;
    color: var(--text-color);
}

.contract-name-col {
    min-width: 200px;
}

.contract-name {
    color: var(--text-color);
    line-height: 1.5;
}

.contract-amount-col {
    min-width: 100px;
    font-weight: 500;
}

.method-col,
.category-col {
    width: 100px;
    text-align: center;
}

.method-badge {
    background: var(--theme-blue-bg);
    color: var(--theme-blue);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    display: inline-block;
}

.status-col {
    width: 120px;
    text-align: center;
}

.status-badge {
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
    white-space: nowrap;
}

.status-badge.inprogress {
    background: var(--theme-red-bg);
    color: var(--theme-red);
}

.status-badge.completed {
    background: #d4edda;
    color: #155724;
}

/* Page Published Part */

/* Page Features Part */
.page-features {
    background: var(--bg);
}

.page-features-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px 25px;
    height: 100%;
    transition: all 0.5s ease;
    border: 0.5px solid transparent;
    position: relative;
}

.page-features-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 0.5px solid #FF9898;
}

.page-features-number {
    font-size: 13px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 20px;
}

.page-features-icon {
    width: 50px;
    height: 50px;
    background: #FFE8EA;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--theme-red);
    transition: all 0.5s;
}

.page-features-card:hover .page-features-icon {
    background: var(--theme-red);
    color: var(--white);
}

.page-features-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
    line-height: 1.4;
}

.page-features-description {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 20px;
}

.page-features-card .learn-more {
    color: var(--theme-red);
}

.page-features-card .learn-more:hover {
    color: var(--black);
}

@media (max-width: 768px) {
    .page-features-card {
        margin-bottom: 20px;
    }
}

/* Page Features Part */

/* Page Ad Part */
.page-ad {
    background:
        linear-gradient(to bottom,
            rgba(255, 255, 255, 0.85),
            rgba(255, 255, 255, 0.85)),
        url("../image/bg8.jpg") center / cover no-repeat;
}

.page-ad img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top;
    max-height: 249px;
}

/* Page Ad Part */

/* Page Features Detail Part */
.page-features-detail {
    background: var(--bg);
}

.page-features-detail-img {
    width: 100%;
    height: 100%;
    max-height: 500px;
    min-height: 200px;
}

.page-features-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Page Features Detail Part */

/* Page Features Process Part */
.process-step-card {
    background: var(--white);
    padding: 30px;
    /* max-width: 280px; */
    position: relative;
    transition: all 0.4s ease;
    cursor: pointer;
    overflow: hidden;
}

.process-step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(253, 0, 1, 0.1), transparent);
    transition: left 0.6s ease;
}

.process-step-card:hover::before {
    left: 100%;
}

.process-step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.process-step-number {
    position: absolute;
    top: 20%;
    right: 20%;
    font-size: 80px;
    font-weight: 700;
    color: #0000000D;
    line-height: 1;
    z-index: 0;
    transition: all 0.4s ease;
}

.process-step-card:hover .process-step-number {
    color: var(--black);
    transform: scale(1.1);
    opacity: 0.2;
}

.process-step-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.process-step-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
    line-height: 1.3;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.process-step-card:hover h3 {
    color: var(--theme-red);
    transform: translateX(5px);
}

.process-step-card p {
    color: var(--text-color);
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Page Features Process Part */

/* Page Blog Part */
.page-blog {
    background: var(--bg);
}

.blog-card {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 4.58px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.blog-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 20px;
}

.blog-category-badge {
    display: inline-block;
    color: var(--theme-blue);
    font-size: 12px;
    font-weight: 600;
    text-transform: capitalize;
    border-radius: 9.63px;
    padding: 2.09px 6.74px;
    background-color: #F0F3F6;
}

.blog-date-badge {
    display: inline-flex;
    align-items: center;
    color: var(--text-color);
    font-size: 12px;
    float: right;
    gap: 5px;
}

.blog-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(14px, 1.5vw, 16px);
    font-weight: 700;
    color: var(--black);
    margin: 10px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 48px;
}

.blog-title:hover {
    color: var(--theme-red);
}

.blog-card-body p {
    color: var(--text-color);
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    min-height: 63px;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #D1D5DA;
}

.blog-author-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-author-avatar {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.blog-author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blog-author-name {
    font-size: 12px;
    color: var(--text-color);
    font-weight: 500;
}

.blog-img-container {
    overflow: hidden;
}

@media (max-width:1099px) {
    .blog-card-body {
        padding: 10px;
    }
}

/* Page Blog Part */

/* Page Blog Detail Part */
.blog-detail-wrapper {
    background: var(--bg);
}

.blog-detail-image {
    width: 100%;
    height: 100%;
    max-height: 458px;
    object-fit: cover;
    object-position: top;
    margin-bottom: 10px;
}

.blog-detail-post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--text-color);
}

.blog-detail-post-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-detail-post-meta-item iconify-icon {
    color: var(--theme-blue);
}

.blog-detail-post-content p {
    color: var(--text-color);
    text-align: justify;
}

.blog-detail-content-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.blog-detail-content-images .content-image {
    width: 100%;
    height: 100%;
    max-height: 294px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.blog-detail-content-images .content-image:hover {
    transform: scale(1.05);
}

.blog-detail-conclusion {
    margin-top: 40px;
}

.blog-detail-conclusion h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.blog-detail-checklist {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
}

.blog-detail-checklist li {
    font-size: 14px;
    color: var(--text-color);
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-detail-checklist li iconify-icon {
    color: var(--theme-red);
}

.blog-detail-sidebar-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
    padding-bottom: 10px;
    text-decoration: underline;
    text-decoration-color: var(--theme-red);
    text-underline-offset: 18px;
    border-bottom: 1px solid #E7E7E7;
    text-decoration-thickness: 1px;
}

.blog-detail-recent-post-item {
    display: flex;
    gap: 15px;
    padding: 10px;
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    align-items: center;
    border: 1px solid transparent;
}

.blog-detail-recent-post-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: var(--theme-red);
}

.recent-post-thumb {
    width: 80px;
    height: 80px;
    min-width: 80px;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.blog-detail-recent-post-item:hover .recent-post-thumb {
    transform: scale(1.1);
}

.blog-recent-blog-detail-post-content {
    flex: 1;
}

.blog-recent-blog-detail-post-content h4 {
    font-size: clamp(14px, 1.5vw, 16px);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
    line-height: 1.4;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-detail-recent-post-item:hover .blog-recent-blog-detail-post-content h4 {
    color: var(--theme-red);
}

.blog-blog-recent-post-excerpt {
    font-size: 12px;
    color: var(--text-color);
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-recent-post-date {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: var(--theme-blue);
    transition: all 0.3s ease;
}

.blog-detail-recent-post-item:hover .blog-recent-post-date {
    color: var(--theme-red);
}

.read-more {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-detail-recent-post-item:hover .read-more {
    color: var(--theme-red);
}

/*  */
/* @media (max-width: 991px) { */
/* .blog-detail-content-images { */
/* grid-template-columns: 1fr; */
/* } */
/* } */

/* Page Blog Detail Part */

/* Page News Part */
.page-news {
    background: var(--bg);
}

/* Page News Part */

/* Login Page */
.login-container {
    background: #FFFFFF url("../image/login.png") top / cover no-repeat;
    min-height: 100vh;
    height: 100%;
    overflow: hidden;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
}

.login-left-section {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: right;
}

.login-left-section img {
    width: 100%;
    height: 100%;
    max-width: 720px;
    object-fit: contain;
    object-position: center;
}

.login-right-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: #ffffff; */
    padding: 40px;
    height: 100%;
}

.login-box {
    width: 100%;
    max-width: 620px;
}

.login-logo-container {
    text-align: center;
    margin-bottom: 30px;
}

.login-logo {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 10px;
    /* margin-bottom: 20px; */
}

.login-welcome-text {
    text-align: left;
    font-size: clamp(20px, 2.5vw, 24px);
    color: #5B5555;
    margin-bottom: 35px;
    font-weight: 500;
}

.login-form-label {
    color: var(--theme-black);
    margin-bottom: 8px;
}

.login-container .form-control {
    padding: 12px 15px;
    border: 1px solid transparent;
    background-color: var(--bg);
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s;
    color: var(--text-color);
}

.login-form-control:focus {
    border-color: var(--theme-red);
    box-shadow: 0 0 0 0.2rem rgba(13, 71, 161, 0.1);
}

.login-password-field {
    position: relative;
}

.login-password-field iconify-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #999;
}

.login-form-check {
    margin-top: 15px;
    margin-bottom: 15px;
    display: flex;
    gap: 5px;
}

.login-form-check-input:checked {
    background-color: var(--theme-blue);
    border-color: var(--theme-blue);
}

.login-form-check-label {
    font-size: 14px;
    color: var(--black);
}

.login-forgot-password {
    color: var(--theme-blue);
    text-decoration: none;
    font-size: 14px;
    float: right;
}

.login-forgot-password:hover {
    text-decoration: underline;
}

.login-btn-login {
    width: 100%;
    padding: 13px;
    background: var(--theme-blue);
    border: none;
    border-radius: 6px;
    color: white;
    font-size: 16px;
    font-weight: 500;
    margin-top: 10px;
    transition: all 0.3s;
}

.login-btn-login:hover {
    background: var(--theme-red);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(13, 71, 161, 0.3);
    color: white;
}

@media (max-width: 768px) {
    .login-right-section {
        padding: 20px;
    }
}

.alert-login p {
    color: var(--text-color);
    text-align: center;
    margin: 20px 0 0 0;
}

.alert-login a {
    color: var(--theme-blue);
}

.alert-login a:hover {
    color: var(--theme-red);
}

/* Login Page */