.innerpage-banner {
    width: 100%;
    height: 300px; /* adjust height as needed */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.custom-pill-tabs {
    background: #fff;
    padding: 6px;
    border-radius: 50px;
    display: inline-flex;
    position: relative;
    min-width: 700px;
    /* border-bottom: 1px solid #2e2b2b; */
    margin-bottom: 30px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.custom-pill-tabs .tab-slider {
    position: absolute;
    top: 13px;
    left: 0px;
    height: calc(100% - 25px);
    width: 0;
    background: #ad1f26;
    border-radius: 50px;
    transition: all 0.4s ease;
    z-index: 0;
}

.custom-pill-tabs .nav-link {
    position: relative;
    border: none !important;
    border-radius: 50px !important;
    padding: 10px 30px;
    font-weight: 600;
    color: #4a5568;
    background: transparent;
    z-index: 1;
    transition: color 0.3s ease;
}

.custom-pill-tabs .nav-link.active {
    color: #fff !important;
    background: transparent !important;
}

.nav-tabs {
    border-bottom: none !important;
}

.custom-bg-color {
    background-color: #dbdbdb;
}

.product-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    /* transition: transform 0.3s, box-shadow 0.3s; */
    text-align: center;
    padding-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.12);
}

.product-card .product-image img {
    width: 100%;
    height: 200px; /* adjust as needed */
    object-fit: cover;
    display: block;
}

.product-card .product-content h3 {
    margin-top: 15px;
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.product-card .btn {
    font-size: 1.5rem;
    padding: 8px 25px;
    border-radius: 6px;
}

/* যখন tab active */
.tab-pane.active.show .product-card {
    opacity: 1;
    transform: translateY(0);
}

/* stagger delay */
.tab-pane.active.show .product-card:nth-child(1) { transition-delay: 0.05s; }
.tab-pane.active.show .product-card:nth-child(2) { transition-delay: 0.1s; }
.tab-pane.active.show .product-card:nth-child(3) { transition-delay: 0.15s; }
.tab-pane.active.show .product-card:nth-child(4) { transition-delay: 0.2s; }
.tab-pane.active.show .product-card:nth-child(5) { transition-delay: 0.25s; }
.tab-pane.active.show .product-card:nth-child(6) { transition-delay: 0.3s; }


/* Shine */
.hover14 .product-image {
	position: relative;
}
.hover14 .product-image::before {
	position: absolute;
	top: 0;
	left: -75%;
	z-index: 2;
	display: block;
	content: '';
	width: 50%;
	height: 100%;
	background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	-webkit-transform: skewX(-25deg);
	transform: skewX(-25deg);
}
.hover14 .product-image:hover::before {
	-webkit-animation: shine .75s;
	animation: shine .75s;
}
@-webkit-keyframes shine {
	100% {
		left: 125%;
	}
}
@keyframes shine {
	100% {
		left: 125%;
	}
}

.shi-btn{
    color: #cb664d;
    border-color: #cb664d;
}

.shi-btn:hover {
    color: #ad1f26;
    background-color: unset;
    border-color: unset;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

@media only screen and (max-width: 767px) {
    .innerpage-banner {
        width: 100%;
        height: auto;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .custom-pill-tabs {
        min-width: 100%;
        padding: 6px 0;
    }

    .product-card {
        width: 80%;
        margin: 0px auto;
    }
}
