.home_hero {
    background-color: var(--secondary-color);
    color: var(--text-color);
    padding: 40px 0;
    background-image: url('../images/PatternSlider.png');
    background-size: cover;
    background-repeat: no-repeat;
}

.home_hero .slider-header {
    text-align: center;
    margin-bottom: 40px;
}

.home_hero .slider-header h1 {
    font-size: 48px; /* You can use --font-size-large if you want */
    margin-bottom: 10px;
    font-weight: 600;
}

.home_hero .un-highlight {
    color: var(--text-color);
    display: block;
    margin-bottom: 10px;
}

.home_hero .owl-carousel .owl-item img.brand_logo_header {
    height: 65px;
    width: auto;
    margin: 0px auto;
}

.home_hero .highlight {
    color: var(--primary-color);
}
.home_hero .product-item-box{
    display: flex;}
.home_hero .product-item {
    text-align: center;
    padding: 15px;
    transition: transform 0.3s ease;
    flex:1;
}

.home_hero .product-item:hover {
    transform: scale(1.05);
}

.home_hero .product-item-wapper{
    overflow: hidden;
}

.home_hero .product-circle {
    /* width: 150px; */
    height: 150px;
    background-color: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    text-align: center;
    transition: background-color 0.3s ease;
    flex-direction: column;
}

.home_hero .product-circle .product-image {
    height: calc(100% - 0px);
    display: flex;
    align-items: center;
}

.home_hero .product-item:hover .product-circle {
    background-color: var(--primary-color);
}

.home_hero .product-name {
    font-weight: bold;
    color: var(--text-color);
    font-size: var(--font-size-large);
    text-align: center;
}

.home_hero .owl-theme .owl-controls {
    margin-top: 20px;
    text-align: center;
}

.home_hero .owl-theme .owl-controls .owl-page span {
    background: var(--text-color);
    opacity: 0.5;
}

.home_hero .owl-theme .owl-controls .owl-page.active span,
.home_hero .owl-theme .owl-controls .owl-page:hover span {
    background: var(--primary-color);
    opacity: 1;
}






/* Product hover */
.product-card {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: var(--text-color);
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
}

.product-card img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.product-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay-bg);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.product-card .content {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 15px;
    align-self: flex-end;
}

.product-card .content h3 {
    margin: 0;
    font-size: 18px;
    color: var(--text-color);
    margin:0;
}

.product-card .content .arrow {
    font-size: 24px;
    color: var(--text-color);
    margin:0;
    line-height: 24px;

}

.product-card:hover img {
    transform: scale(1.1);
}

.product-card:hover .overlay {
    opacity: 1;
}





/* Section Title */
.Section-title {
    font-weight: bold;
    text-align: center;
    padding-bottom: 50px;
    color: var(--text-dark);
    margin:0;
}
.Section-title div{
    margin-bottom: 5px;
}
.Section-title span {
    color: var(--primary-color);
}


/* product */
.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    background-color: var(--text-color); /* Adjust background as needed */}

.marquee {
    display: flex;
    gap: 20px; /* Space between logos */
    position: relative;
    /* animation: marquee 10s linear infinite normal none running;  */
}
.marquee .js-marquee{
    display: flex;
    gap: 20px; /* Space between logos */
}

.marquee img {
    object-fit: contain;
}
.marquee-container{
    position: relative;
}
.marquee-container::before{
    content: "";
    position: absolute;
    width: 146px;
    height: 100%;
    z-index: 1;
    background: #fffffff7;
    filter: blur(10px);
    left: -30px;
    top: 0;
}

.marquee-container::after{
    content: "";
    position: absolute;
    width: 146px;
    height: 100%;
    z-index: 1;
    background: #fffffff7;
    filter: blur(10px);
    right: -30px;
    top: 0;
}

/* Keyframe animation for marquee */
@keyframes marquee {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}






@media (max-width: 768px) {
    .home_hero .product-circle {
        width: 100px;
        height: 100px;
    }

    .home_hero .product-name {
        font-size: var(--font-size-small);
    }

    .home_hero .slider-header h1 {
        font-size: var(--font-size-xxlarge);
    }
    .home_hero .product-item-box{
        overflow-x: auto;
    }

    .Section-title{
        font-size:var(--font-size-xlarge);
        padding-bottom: 25px;
    }
  
}


