/* Parent Container */
.digitestimonial {
    text-align: left;
    padding: 100px 20px;
    background-color: #f9f9f9;
}

.digitestimonial_title {
    color: var(--primary-navy, #00263A);
    text-align: center;
    font-family: "Helvetica Neue", sans-serif;
    font-size: 48px;
    font-weight: 300;
    line-height: 58px;
    margin-bottom: 50px;
}

/* Wrapper Styling */
.digitestimonial_wrapper {
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

/* Slider */
.digitestimonial_slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    padding: 15px;
    gap: 20px;
}

/* Testimonial Item */
.digitestimonial_item {
    flex: 0 0 calc(33.333% - 20px); /* 3 items in a row */
    box-sizing: border-box;
    padding: 25px 35px;
    background: #fff;
    border-radius: 10px;
    margin: 0 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Testimonial Description */
.digitestimonial_description {
    color: #000;
    font-family: "Raleway", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 15px;
}

/* Testimonial Meta */
.digitestimonial_meta {
    color: #000;
    font-family: Raleway;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

/* Navigation Buttons */
.digitestimonial_prev,
.digitestimonial_next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #001d51;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.digitestimonial_prev {
    left: 10px;
}

.digitestimonial_next {
    right: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .digitestimonial_item {
        flex: 0 0 calc(50% - 20px); /* 2 items in a row */
    }
}

@media (max-width: 768px) {
    .digitestimonial_item {
        flex: 0 0 100%; /* 1 item in a row */
    }
}
/* Parent Container */
.home_news_post {
    padding: 20px;
    background-color: #fff;
}

.home_news_post_grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.home_news_post_item {
    flex: 1 1 calc(33.333% - 20px);
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: left;
    padding:20px;
}

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

.home_news_post_content {
    color: var(--primary-navy, #00263A) ;
    /* H5 */
    font-family: "Helvetica Neue";
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px; /* 128.571% */
}

.home_news_post_title {
    color: var(--primary-navy, #00263A);
    /* H5 */
    font-family: "Helvetica Neue";
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px; /* 128.571% */
    margin-bottom: 10px;
}

.home_news_post_title a {
    color: var(--primary-navy, #00263A) !important;
    text-decoration: none;
     
}

.home_news_post_date {
    color: var(--primary-navy, #00263A);
    /* Paragraph */
    font-family: "Helvetica Neue";
    font-size: 18px;
    font-style: normal;
    font-weight: 200;
    line-height: 24px; /* 133.333% */
    margin-bottom: 10px;
}

.home_news_post_readmore {
    color: var(--primary-red, #E4002B) !important;
    font-family: Raleway;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration: none;
}
.home_news_read_more{
    text-align: right;
}
 

.home_news_read_more .arrow-icon {
    margin-left: 13px;
    width: 17px;
    height: 21px;
    transform: rotate(-45deg) translateY(5px);
    transition: transform 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .home_news_post_item {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .home_news_post_item {
        flex: 1 1 100%;
    }
}
/* Stock Clearance Products Parent Container */
.stock-clearance {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* Individual Product Box */
.stock-clearance .product {
    border: 1px solid #eaeaea;
    border-radius: 12px;
    overflow: hidden;
    max-width: 350px;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stock-clearance .product:hover {
    transform: translateY(-8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Product Image Container */
.stock-clearance .product-image {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #eaeaea;
}

.stock-clearance .product-image img {
    padding: 20px;
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* Sale Badge */
.stock-clearance .sale-badge {
    position: absolute;
    top: 10px;
    right: 8px;
    background-color: #e4002b;
    color: #fff;
    width: 40px;
    height: 40px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

 

/* Product Details */
.stock-clearance .product-details {
    padding: 20px;
    text-align: left;
}

.stock-clearance .product-title {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.stock-clearance .product-title a {
     
    text-decoration: none; 
    text-decoration: none;
    transition: color 0.3s ease;
    color: var(--primary-navy, #00263A);
    font-family: "Helvetica Neue";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px;
}

.stock-clearance .product-title a:hover {
    color: #e4002b;
}
.stock-clearance .product-title-offer {
    color: var(--primary-red, #E4002B);
    /* H6 */
    font-family: "Helvetica Neue";
    font-size: 21px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px; /* 136.364% */
}
.stock-clearance .product-price {
    color: var(--primary-blue, #1E72BD);
    font-family: "Helvetica Neue";
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; /* 109.091% */
}
.stock-clearance .product-price p{
    margin-bottom: 16px !important;
}
.stock-clearance .product-price span {
    color: var(--primary-blue, #1E72BD);
    /* Paragraph */
    font-family: "Helvetica Neue";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
.stock-clearance .product-price small {
    font-size: 14px;
    color: #6b7280; /* Light gray for additional details */
}

/* View Offer Button */
.stock-clearance .view-offer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #e4002b;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    margin-top: 10px;
    transition: color 0.3s ease;
    font-family: "Raleway";
}

.stock-clearance .view-offer span {
    margin-left: 5px;
    transition: margin-left 0.3s ease;
}

.stock-clearance .view-offer:hover {
    color: #c30025;
}

.stock-clearance .view-offer  .arrow-icon {
    margin-left: 10px;
    width: 16px;
    height: 16px;
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .stock-clearance {
        flex-direction: column;
        align-items: center;
    }

    .stock-clearance .product {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .stock-clearance .product {
        max-width: 100%;
    }

    .stock-clearance .sale-badge {
        width: 35px;
        height: 35px;
        font-size: 12px;
        line-height: 35px;
    }

    .stock-clearance .product-title {
        font-size: 16px;
    }

    .stock-clearance .product-price {
        font-size: 18px;
    }

    .stock-clearance .view-offer {
        font-size: 14px;
    }
}
