/* Custom CSS */

/*Prevent Text Selection*/

/*body {*/

/*    user-select: none; */

/*    -webkit-user-drag: none; */

/*}*/

/* Capital Font */

/* #capital{
    text-transform: uppercase;
} */

/* Header Part Start :- */

/* Header Part End : */

/* Footer Part Start :- */

/* Footer Part End : */

/* Body Part Start : */

/* Body Part End : */

.radius {
    border-radius: 6px;
}

#hide {
    display: none;
}

/* ===========================[Responsive start]================================= */

/* Laptop (15.6 inch) */

@media only screen and (min-width: 1400px) {
    /* Header Part Start : */
    /* Header Part End : */
    /* Footer Part Start :- */
    /* Footer Part End : */
    /* Body Part Start : */
    /* Body Part End : */
}

/* Laptop (14 inch) */

@media only screen and (min-width: 1200px) {
    /* Header Part Start : */
    /* Header Part End : */
    /* Footer Part Start :- */
    /* Footer Part End : */
    /* Body Part Start : */
    /* Body Part End : */
}

/* Mobile View Not Included */

@media only screen and (min-width: 768px) {
    /* Header Part Start : */
    /* Header Part End : */
    /* Footer Part Start :- */
    /* Footer Part End : */
    /* Body Part Start : */
    #settitle {
        font-size: 26px !important;
    }
    /* Body Part End : */
}

/* Mobile */

@media only screen and (max-width: 768px) {
    /* Header Part Start : */
    /* Header Part End : */
    /* Footer Part Start :- */
    /* Footer Part End : */
    /* Body Part Start : */
    #settitle {
        font-size: 22px !important;
    }
    /* Body Part End : */
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~(Animation Responsive)~~~~~~~~~~~~~~~~~~~~~~~~~~ */

/* Default styles : */

/* Laptop (15.6 inch) */

/* Large screens (min-width: 1400px) */

@media only screen and (min-width: 1400px) {
}

/* Laptop (14 inch) */

/* Medium screens (min-width: 1024px and max-width: 1399px) */

@media only screen and (min-width: 1024px) and (max-width: 1399px) {
}

/* Small screens (min-width: 768px and max-width: 1023px) */

@media only screen and (min-width: 768px) and (max-width: 1023px) {
}

/* Mobile */

/* Extra small screens (max-width: 767px) */

@media only screen and (max-width: 767px) {
}

/* ===========================[Responsive end]================================= */


/* === Stats Section === */
.stats-section {
    /*background: #f1eeeec4;*/
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* .stats-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url('images/bg-pattern.png') repeat;
        opacity: 0.15;
    }
*/
.section-title {
    font-size: clamp(20px, 2vw, 26px);
    /*font-weight: 600;*/
    letter-spacing: 1px;
}

/* Equal height cards */
.stat-item {
    background: #365569;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(6px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 180px;
    padding: 20px;
}

    .stat-item:hover {
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.25);
    }

/* Keep counter + suffix inline */
.number-wrap {
    display: inline-flex;
    align-items: flex-end;
    justify-content: center;
    white-space: nowrap; /* prevents wrapping */
}

    .number-wrap p {
        color: #fff !important;
    }

.counter {
    font-size: clamp(2rem, 2vw, 2.4rem);
    font-weight: 600;
    color: #fff;
    line-height: 1;
}

.suffix {
    font-size: clamp(2rem, 2vw, 2.4rem);
    font-weight: 500;
    color: #FFD700;
    margin-left: 4px;
    line-height: 1.1;
}

.stat-item p {
    margin-top: 8px;
    font-size: clamp(2rem, 2vw, 1rem);
    font-weight: 400;
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .stat-item {
        min-height: 160px;
        padding: 18px;
        margin-bottom: 10px;
    }
}

/* Latest News Marqee */
.latest-news {
    background-color: #365569;
    height: 45px;
    overflow: hidden;
}

.news-bar {
    display: flex;
    align-items: center;
    height: 45px;
}

.news-label {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    padding-right: 20px;
    white-space: nowrap;
    line-height: 1;
    vertical-align: middle;
}

.ticker-wrap {
    flex: 1;
    overflow: hidden;
}

.ticker {
    width: 100%;
    overflow: hidden;
    padding-right: 40px;
    flex-wrap: wrap;
}




.ticker-content {
    display: inline-flex; 
    align-items: center;
    white-space: nowrap;
    will-change: transform;
    animation: scroll var(--ticker-speed) linear infinite;
}

    .ticker-content:hover {
        animation-play-state: paused;
    }
    .ticker-content a {
        line-height: 1;
        vertical-align: middle;
    }

@media (max-width: 576px) {
    .news-label {
        padding-right:5px;
        
    }
    :root {
        --ticker-speed: 18s;
    }
}


@media (min-width: 577px) and (max-width: 991px) {
    :root {
        --ticker-speed: 20s;
    }
}

@media (min-width: 992px) {
    :root {
        --ticker-speed: 25s;
    }
}

.notice {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0; 
    margin-right: 10px;
}

    .notice img {
        height: 18px;
        margin-right: 6px;

    }

    .notice a {
        color: #fff;
        font-size: 14px;
        text-decoration: none;
    }

        .notice a:hover {
            text-decoration: underline;
        }

    .notice::after {
        content: "||";
        margin: 0 5px;
        color: #fff;
        font-weight:600;
        flex-shrink: 0;
    }

    .notice:last-child::after {
        content: "";
    }

@keyframes scroll {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}


/*Notice and tender*/

.notice-box {
    border: 1px solid #e5e5e5;
    padding: 15px;
    margin-top: 5px;
    background: #fff;
}

.notice-card {
    display: flex;
    align-items: stretch;
    gap: 10px;
}

.content-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}

.btn-wrapper {
    text-align: right;
}

.date-box {
    background: #365569;
    color: #fff;
    height: 70px;
    width: 80px;
    text-align: center;
    padding: 10px 5px;
    border-radius: 4px;
}

.date-day {
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
}

.date-month {
    font-size: 12px;
    margin-top: 5px;
    text-transform:uppercase;
}

.notice-text h4 {
    margin: 0;
    font-weight: 600;
    font-size: 15px;
}

.notice-text p {
    color: #555;
}

.download-btn {
    background: #f81604;
    color: #fff;
    font-weight: 600;
    border-radius: 4px;
    padding: 2px 8px;
    font-size:14px !important;
}

    .download-btn:hover {
        background: #9c0000;
        color: #fff;
        text-decoration: none;
    }
