.bid-container {
    background-color: #ffff;
}

#coustom-h2 {
    color: #000;
    font-size: 26px;
    font-weight: 300;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    margin: 30px 0 60px;
}

#coustom-h2::after {
    content: "";
    width: 100px;
    position: absolute;
    margin: 0 auto;
    height: 4px;
    border-radius: 1px;
    background: #7ac400;
    left: 0;
    right: 0;
    bottom: -20px;
}
#tender-h2 {
    color: #000;
    font-size: 26px;
    font-weight: 300;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    margin: 30px 0 60px;
}

#tender-h2::after {
    content: "";
    width: 100px;
    position: absolute;
    margin: 0 auto;
    height: 4px;
    border-radius: 1px;
    background: #ff4242;
    left: 0;
    right: 0;
    bottom: -20px;
}

.carousel {
    margin: 50px auto;
    padding: 0 70px;
}

.carousel .item {
    min-height: 330px;
    text-align: center;
    overflow: hidden;
}

.carousel .item .img-box {
    height: 160px;
    width: 100%;
    position: relative;
}

.carousel .item img {
    max-width: 100%;
    max-height: 100%;
    display: inline-block;
    position: absolute;
    bottom: 0;
    margin: 0 auto;
    left: 0;
    right: 0;
}

.carousel .item h4 {
    font-size: 18px;
    margin: 10px 0;
}

.carousel .item .btn {
    color: #333;
    border-radius: 0;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: bold;
    background: none;
    border: 1px solid #ccc;
    padding: 5px 10px;
    margin-top: 5px;
    line-height: 16px;
}

.carousel .item .btn:hover,
.carousel .item .btn:focus {
    color: #fff;
    background: #000;
    border-color: #000;
    box-shadow: none;
}

.carousel .item .btn i {
    font-size: 14px;
    font-weight: bold;
    margin-left: 5px;
}

.carousel .thumb-wrapper {
    text-align: center;
}

.carousel .thumb-content {
    padding: 15px;
}

.carousel .carousel-control {
    height: 100px;
    width: 40px;
    background: none;
    margin: auto 0;
    background: rgba(0, 0, 0, 0.2);
}

.carousel .carousel-control i {
    font-size: 30px;
    position: absolute;
    top: 50%;
    display: inline-block;
    margin: -16px 0 0 0;
    z-index: 5;
    left: 0;
    right: 0;
    color: rgba(0, 0, 0, 0.8);
    text-shadow: none;
    font-weight: bold;
}

.carousel .item-price {
    font-size: 13px;
    padding: 2px 0;
}

.carousel .item-price strike {
    color: #999;
    margin-right: 5px;
}

.carousel .item-price span {
    color: #86bd57;
    font-size: 110%;
}

.carousel .carousel-control.left i {
    margin-left: -3px;
}

.carousel .carousel-control.left i {
    margin-right: -3px;
}

.carousel .carousel-indicators {
    bottom: -50px;
}

.carousel-indicators li,
.carousel-indicators li.active {
    width: 10px;
    height: 10px;
    margin: 4px;
    border-radius: 50%;
    border-color: transparent;
}

.carousel-indicators li {
    background: rgba(0, 0, 0, 0.2);
}

.carousel-indicators li.active {
    background: rgba(0, 0, 0, 0.6);
}

.star-rating li {
    padding: 0;
}

.star-rating i {
    font-size: 14px;
    color: #ffc000;
}

.categories-showcase {
padding: 4rem 0;
background: #f8f9fa;
}

.category-item {
position: relative;
background: #ffffff;
border-radius: 12px;
overflow: hidden;
transition: all 0.3s ease;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
height: 100%;
}

.category-item:hover {
transform: translateY(-5px);
box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.category-content {
padding: 2rem;
text-align: center;
position: relative;
z-index: 1;
}

.category-icon {
margin-bottom: 1.5rem;
color: #4a90e2;
font-size: 2.5rem;
}

.category-name {
font-size: 1.25rem;
font-weight: 600;
color: #2c3e50;
margin-bottom: 1rem;
transition: color 0.3s ease;
}

.hover-content {
opacity: 0;
transform: translateY(20px);
transition: all 0.3s ease;
}

.category-item:hover .hover-content {
opacity: 1;
transform: translateY(0);
}

.category-link {
display: inline-flex;
align-items: center;
text-decoration: none;
color: #4a90e2;
font-weight: 500;
transition: color 0.3s ease;
}

.category-link .link-text {
margin-right: 0.5rem;
}

.category-link:hover {
color: #357abd;
}

.category-link .fas {
font-size: 0.875rem;
transition: transform 0.3s ease;
}

.category-link:hover .fas {
transform: translateX(5px);
}

/* Optional decorative element */
.category-item::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 4px;
background: linear-gradient(to right, #4a90e2, #357abd);
opacity: 0;
transition: opacity 0.3s ease;
}

.category-item:hover::before {
opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
.categories-showcase {
    padding: 3rem 0;
}

.category-content {
    padding: 1.5rem;
}

.category-icon {
    font-size: 2rem;
}

.category-name {
    font-size: 1.125rem;
}
}

/* Animation for cards on page load */
@keyframes fadeInUp {
from {
    opacity: 0;
    transform: translateY(20px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}

.category-item {
animation: fadeInUp 0.6s ease forwards;
animation-delay: calc(var(--animation-order) * 0.1s);
}


.single-cate {
    font-size: 16px; /* Adjust as needed */
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px;
    text-align: center;
}

.single-cate span, 
.single-cate i {
    font-size: 16px; /* Ensure all elements have the same font size */
}



    /* Style for the countdown container */
    #countdown-coupone {
        font-family: 'Arial', sans-serif;
        font-size: 32px; /* Make the numbers bigger */
        font-weight: bold; /* Make the numbers bold */
        color: #333; /* You can change the color as needed */
         /* Center the countdown */
    }

    /* Style for the individual countdown sections (Days, Hours, Minutes, Seconds) */
    .countdown-row {
        display: flex;
        justify-content: start;
        gap: 15px;
    }

    .countdown-section {
        padding: 10px;
        background: #f4f4f4;
        border-radius: 5px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .countdown-amount {
        font-size: 36px; /* Make the numbers larger */
        font-weight: bold; /* Make the numbers bold */
        color: #333; /* Change color if needed */
    }

    .countdown-period {
        font-size: 14px; /* Smaller text for the labels (Days, Hours, etc.) */
        color: #777;
    }

  /* Style for the countdown container */
  #countdown-coupone, #countdown-tender {
    font-family: 'Arial', sans-serif;
    font-size: 32px; /* Make the numbers bigger */
    font-weight: bold; /* Make the numbers bold */
    color: #333; /* You can change the color as needed */
}

/* Style for the individual countdown sections (Days, Hours, Minutes, Seconds) */
.countdown-row {
    display: flex;
    justify-content: start;
    gap: 15px;
}

.countdown-section {
    padding: 10px;
    background: #f4f4f4;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.countdown-amount {
    font-size: 36px; /* Make the numbers larger */
    font-weight: bold; /* Make the numbers bold */
    color: #333; /* Change color if needed */
}

.countdown-period {
    font-size: 14px; /* Smaller text for the labels (Days, Hours, etc.) */
    color: #777;
}
    
