:root {
    --primary-color: #0b2240; /* নেভি ব্লু */
    --secondary-color: #f39c12; /* গোল্ডেন/অরেঞ্জ */
    --text-dark: #333333;
    --bg-light: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ফাঁকা জায়গা বা হরিজন্টাল স্ক্রোল বন্ধ করার প্রধান ফিক্স */
html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    background-color: #ffffff;
    color: var(--text-dark);
    padding-bottom: 70px; /* বটম নেভিগেশনের জন্য স্পেস */
}

/* Top Header Contact */
.top-header {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 8px 5%;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    border-bottom: 2px solid var(--secondary-color);
}
.top-header a {
    color: #fff;
    text-decoration: none;
    margin-right: 15px;
}

/* Navbar */
.navbar {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 999;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-img {
    width: 90px;
    height: 60px;
    background: var(--secondary-color);
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
}
.logo-img span {
    transform: rotate(-45deg);
}
.logo-text h1 {
    font-size: 20px;
    color: var(--primary-color);
    letter-spacing: 2px;
    line-height: 1;
}
.logo-text p {
    font-size: 11px;
    color: #777;
    letter-spacing: 1px;
}
.menu-icon {
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
    padding: 5px;
}

/* Dropdown Menu */
.nav-menu-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 20px;
    background: #ffffff;
    min-width: 200px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    overflow: hidden;
    z-index: 1000;
    border: 1px solid #eee;
}
.nav-menu-dropdown.show {
    display: block;
}
.nav-menu-dropdown a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-family: sans-serif;
    transition: background 0.2s ease;
    border-bottom: 1px solid #f9f9f9;
}
.nav-menu-dropdown a:last-child {
    border-bottom: none;
}
.nav-menu-dropdown a:hover {
    background-color: #f8f9fa;
    color: var(--secondary-color);
}

/* Hero Slider Section */
.hero-slider-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 650px;
    overflow: hidden;
    background: #eee;
}
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background-size: cover !important; 
    background-position: center !important; 
    background-repeat: no-repeat !important;
    display: flex;
    align-items: center;
    padding: 0 8%;
}
.slide.active {
    opacity: 1;
}
.slide::before {
    display: none;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 50%; 
    width: 100%;
}
.hero-content h2 {
    font-size: 42px;
    color: var(--primary-color);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}
.hero-content h2 span {
    display: inline-block;
    margin-right: 8px;
}
.hero-content h2 span:nth-child(2) {
    color: var(--secondary-color);
}
.hero-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3; 
    -webkit-box-orient: vertical;
}
.btn-explore {
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: 0.3s;
}
.btn-explore:hover {
    background-color: #123561;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}
.dot {
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}
.dot.active {
    background: var(--primary-color);
    width: 25px;
    border-radius: 6px;
}

/*------------- Features Bar (Animated Green to White Theme - Bright Blue Text) --------------*/
.features-bar {
    /* গ্রীন থেকে হোয়াইটের গ্রেডিয়েন্ট ব্যাকগ্রাউন্ড */
    background: linear-gradient(135deg, #059669 0%, #10b981 40%, #a7f3d0 75%, #ffffff 100%);
    background-size: 200% 200%;
    color: #0284c7;
    padding: 20px 3%;
    display: flex;
    flex-direction: row; /* সব এক লাইনে রাখার জন্য */
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    width: 100%;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    /* ব্যাকগ্রাউন্ড মুভমেন্ট অ্যানিমেশন */
    animation: gradientShift 6s ease infinite alternate;
}

/* ব্যাকগ্রাউন্ড কালার অ্যানিমেশন */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

/* শাইন ইফেক্ট */
.features-bar::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
    pointer-events: none;
}

.feature-item {
    flex: 1 1 0; /* ৪টি আইটেম সমান সাইজে এক লাইনে থাকবে */
    min-width: 0;
    padding: 0;
    box-sizing: border-box;
}

/* আইটেম কার্ড ও হোভার ইফেক্ট */
.feature-item-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
    box-sizing: border-box;
}

/* হোভার অ্যানিমেশন */
.feature-item-wrapper:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: #0066ff;
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0, 102, 255, 0.2);
}

/* আইকন বক্স */
.feature-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: #0066ff; /* আইকন ব্যাকগ্রাউন্ডেও ব্লু শেড */
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 102, 255, 0.3);
}

.feature-icon-box i {
    font-size: 18px;
    color: #ffffff;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* হোভারে আইকন অ্যানিমেশন */
.feature-item-wrapper:hover .feature-icon-box {
    background: #0044cc;
    box-shadow: 0 0 12px rgba(0, 68, 204, 0.5);
}

.feature-item-wrapper:hover .feature-icon-box i {
    color: #ffffff;
    transform: scale(1.1) rotate(6deg);
}

/* টেক্সট স্টাইলিং (Bright Blue Theme) */
.feature-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.feature-text h4 {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    margin: 0 0 2px 0;
    color: #0066ff; /* উজ্জ্বল রয়্যাল ব্রাইট ব্লু টেক্সট */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.feature-text p {
    font-size: 11px;
    font-weight: 600;
    color: #1e40af; /* ডিপ মিডিয়াম ব্লু সাবটাইটেল */
    margin: 0;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ==========================================
   Mobile Responsive
   ========================================== */
@media screen and (max-width: 992px) {
    .features-bar {
        padding: 15px 2%;
        gap: 8px;
    }

    .feature-item-wrapper {
        padding: 8px;
        gap: 8px;
    }

    .feature-icon-box {
        width: 35px;
        height: 35px;
    }

    .feature-icon-box i {
        font-size: 15px;
    }

    .feature-text h4 {
        font-size: 11px;
    }

    .feature-text p {
        font-size: 9.5px;
    }
}

/* ছোট মোবাইল স্ক্রিন (360px - 480px) */
@media screen and (max-width: 576px) {
    .features-bar {
        padding: 12px 1.5%;
        gap: 5px;
        border-radius: 0 0 12px 12px;
    }

    .feature-item-wrapper {
        padding: 6px 4px;
        gap: 5px;
        background: rgba(255, 255, 255, 0.35);
        border: none;
    }

    .feature-icon-box {
        width: 30px;
        height: 30px;
    }

    .feature-icon-box i {
        font-size: 13px;
    }

    .feature-text h4 {
        font-size: 10px;
        letter-spacing: 0;
    }

    .feature-text p {
        font-size: 8.5px;
    }
}
/* ==========================================
   Section Container
   ========================================== */
.section-container {
    padding: 60px 5%;
    width: 100%;
    box-sizing: border-box;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    gap: 15px;
}

.section-title p {
    color: var(--secondary-color, #f39c12);
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.section-title h3 {
    font-size: 28px;
    color: var(--primary-color, #2c3e50);
    margin: 0;
    line-height: 1.2;
}

.btn-outline {
    border: 1.5px solid var(--primary-color, #2c3e50);
    color: var(--primary-color, #2c3e50);
    padding: 10px 22px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-color, #2c3e50);
    color: #ffffff;
}

/* ==========================================
   Product Grid (Desktop Layout: 2 Columns)
   ========================================== */
.product-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important; /* ডেস্কটপে ২টি কলাম */
    gap: 30px;
    width: 100%;
    box-sizing: border-box;
}

/* Product Card Base Style */
.product-card {
    background: #ffffff;
    border: 1px solid #eef2f5;
    border-radius: 16px;
    padding: 18px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.card-clickable-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

/* Image Wrapper 16:9 Ratio */
.product-image-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 15px;
    background: #f8f9fa;
    position: relative;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image-wrapper img {
    transform: scale(1.06);
}

/* ==========================================
   Inner Content Box (টাইটেল, ডেসক্রিপশন ও বাটন কন্টেইনার)
   ========================================== */
.card-content-box {
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    transition: all 0.3s ease;
}

.card-content-box h4 {
    font-size: 19px;
    font-weight: 700;
    margin: 0 0 12px 0;
    line-height: 1.4;
    width: 100%;
}

.card-content-box h4 a {
    text-decoration: none;
    color: inherit; /* কালার প্যারেন্ট সিলেক্টর থেকে আসবে */
    transition: opacity 0.3s ease;
}

.product-card:hover .card-content-box h4 a {
    opacity: 0.85;
}

.product-description {
    font-size: 14px;
    color: #555555;
    line-height: 1.6;
    margin: 0 0 20px 0;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* "See More Details" বাটন র‍্যাপার ও বাটন */
.btn-details-wrapper {
    width: 100%;
    text-align: center;
    margin-top: auto;
    padding-top: 10px;
    position: relative;
    z-index: 2;
}

.btn-see-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    background-color: #ffffff;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.btn-see-more i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.product-card:hover .btn-see-more {
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.product-card:hover .btn-see-more i {
    transform: translateX(4px);
}

/* ==========================================
   Dynamic Multi-Color Themes (একেক পোস্টের জন্য একেক কালার)
   ========================================== */

/* পোস্ট ১: সফট ব্লু থিম */
.product-card:nth-child(4n+1) .card-content-box {
    background-color: #f0f7ff;
    border: 1px solid #d0e3ff;
}
.product-card:nth-child(4n+1) .card-content-box h4 {
    color: #0056b3;
}
.product-card:nth-child(4n+1) .btn-see-more {
    color: #0056b3;
    border: 1.5px solid #0056b3;
}
.product-card:nth-child(4n+1):hover .btn-see-more {
    background-color: #0056b3;
}

/* পোস্ট ২: সফট গ্রিন/টিয়াল থিম */
.product-card:nth-child(4n+2) .card-content-box {
    background-color: #f0fdf4;
    border: 1px solid #bbf7d0;
}
.product-card:nth-child(4n+2) .card-content-box h4 {
    color: #16a34a;
}
.product-card:nth-child(4n+2) .btn-see-more {
    color: #16a34a;
    border: 1.5px solid #16a34a;
}
.product-card:nth-child(4n+2):hover .btn-see-more {
    background-color: #16a34a;
}

/* পোস্ট ৩: সফট পার্পল থিম */
.product-card:nth-child(4n+3) .card-content-box {
    background-color: #faf5ff;
    border: 1px solid #e9d5ff;
}
.product-card:nth-child(4n+3) .card-content-box h4 {
    color: #7e22ce;
}
.product-card:nth-child(4n+3) .btn-see-more {
    color: #7e22ce;
    border: 1.5px solid #7e22ce;
}
.product-card:nth-child(4n+3):hover .btn-see-more {
    background-color: #7e22ce;
}

/* পোস্ট ৪: সফট অরেঞ্জ/ওয়ার্ম থিম */
.product-card:nth-child(4n+0) .card-content-box {
    background-color: #fff8f0;
    border: 1px solid #ffe3c4;
}
.product-card:nth-child(4n+0) .card-content-box h4 {
    color: #ea580c;
}
.product-card:nth-child(4n+0) .btn-see-more {
    color: #ea580c;
    border: 1.5px solid #ea580c;
}
.product-card:nth-child(4n+0):hover .btn-see-more {
    background-color: #ea580c;
}

/* ==========================================
   Mobile Version (Force 1 Column on Mobile)
   ========================================== */
@media screen and (max-width: 768px) {
    .section-container {
        padding: 30px 15px;
    }

    .section-header {
        flex-direction: row;
        align-items: center;
        margin-bottom: 20px;
    }

    .section-title h3 {
        font-size: 18px;
    }

    .btn-outline {
        padding: 6px 12px;
        font-size: 12px;
    }

    .product-grid {
        grid-template-columns: 1fr !important; /* মোবাইলে ১টি কলাম */
        gap: 20px !important;
    }

    .product-card {
        padding: 14px;
    }

    .card-content-box {
        padding: 15px;
    }

    .card-content-box h4 {
        font-size: 16px;
    }

    .product-description {
        font-size: 13px;
        margin-bottom: 15px;
        -webkit-line-clamp: 3;
    }

    .btn-see-more {
        padding: 8px 18px;
        font-size: 12px;
    }
}

/* -------------------------About Section--------------- */
.about-section {
    display: table;
    width: 100%;
    background: #fff;
}
.about-image-side {
    display: table-cell;
    width: 50%;
    vertical-align: middle;
    position: relative;
    height: 400px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
}
.exp-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #fff;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.exp-badge-content {
    display: table;
}
.exp-num {
    display: table-cell;
    font-size: 36px;
    color: var(--secondary-color);
    font-weight: bold;
    padding-right: 10px;
    line-height: 1;
}
.exp-text {
    display: table-cell;
    vertical-align: middle;
    font-size: 12px;
    color: #555;
    font-weight: 600;
    line-height: 1.2;
}
.about-content-side {
    display: table-cell;
    width: 50%;
    vertical-align: middle;
    padding-left: 40px;
}
.about-content-side h4 {
    color: var(--secondary-color);
    text-transform: uppercase;
    font-size: 13px;
}
.about-content-side h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin: 8px 0 15px 0;
    line-height: 1.2;
}
.about-content-side p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}
.features-list {
    list-style: none;
    margin-bottom: 25px;
}
.features-list li {
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 500;
}
.features-list li i {
    color: var(--secondary-color);
    margin-right: 10px;
}

/* Stats Counter Bar */
.stats-bar {
    background-color: green;
    color: #fff;
    padding: 40px 5%;
    display: table;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #123561;
}
.stat-item {
    display: table-cell;
    width: 25%;
}
.stat-item h2 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 5px;
}
.stat-item p {
    font-size: 13px;
    color: #b0c4de;
}

/* Bottom Fixed Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    display: table;
    table-layout: fixed;
    padding: 10px 0;
    border-top: 1px solid #1a3a60;
    z-index: 999;
}
.nav-item {
    display: table-cell;
    text-align: center;
    color: #b0c4de;
    text-decoration: none;
    font-size: 11px;
    transition: 0.3s;
}
.nav-item i {
    font-size: 18px;
    display: block;
    margin-bottom: 4px;
}
.nav-item.active, .nav-item:hover {
    color: var(--secondary-color);
}

/* ==========================================================
   Responsive / Mobile Version Fixes
   ========================================================== */
@media (max-width: 768px) {
    .top-header { 
        display: none; 
    }

    .hero-slider-container { 
        aspect-ratio: 16 / 9;
        height: auto; 
    }

    .slide::before {
        background: rgba(255, 255, 255, 0.55) !important;
    }

    .slide {
        padding: 0 6%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
    
    .hero-content {
        max-width: 95%;
        text-align: left;
    }
    
    .hero-content h2 { 
        font-size: 22px;
        font-weight: 900;
        line-height: 1.2;
        margin-bottom: 10px;
        text-transform: uppercase;
        display: flex;
        flex-direction: column; 
        align-items: flex-start;
    }

    .hero-content h2 span {
        display: block;
        margin-right: 0;
        margin-bottom: 2px;
    }

    .hero-content h2 span:nth-child(1) {
        color: var(--primary-color);
    }

    .hero-content h2 span:nth-child(2) {
        color: var(--secondary-color);
    }

    .hero-content h2 span:nth-child(3) {
        color: var(--primary-color);
    }
    
    .hero-content p {
        font-size: 12px;
        margin-bottom: 15px;
        color: #333;
        font-weight: 600;
        line-height: 1.3;
        -webkit-line-clamp: 2;
        width: 100%;
    }

    .btn-explore {
        padding: 8px 18px;
        font-size: 12px;
    }

    /* ৪টি ফিচার পাশাপাশি রেসপন্সিভ ফিক্স */
    .features-bar {
        display: flex; 
        justify-content: space-between;
        padding: 15px 3%;
        gap: 5px; 
        border-radius: 0;
        width: 100%;
        box-sizing: border-box;
    }
    .feature-item {
        display: block;
        width: 25%; 
        padding: 0 2px;
        text-align: center; 
    }
    .feature-item-wrapper {
        display: flex;
        flex-direction: column; 
        align-items: center;
        gap: 4px;
    }
    .feature-icon-box { 
        display: block; 
        padding-right: 0; 
    }
    .feature-icon-box i { 
        font-size: 16px; 
    }
    .feature-text { 
        display: block; 
    }
    .feature-text h4 { 
        font-size: 9px; 
        letter-spacing: 0px; 
        white-space: normal; /* স্ক্রিন বড় হওয়া রোধ করতে স্বাভাবিক টেক্সট র্যাপিং */
        line-height: 1.1; 
        word-break: break-word;
    }
    .feature-text p { 
        display: none; 
    }
    
    /* সেকশন হেডার ফিক্স */
    .section-container {
        padding: 30px 4%;
    }
    .section-header {
        align-items: center;
        margin-bottom: 25px;
    }
    .section-title h3 {
        font-size: 20px;
    }

    /* প্রোডাক্ট গ্রিড ২ কলাম ও মার্জিন ফিক্স */
    .product-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 10px; 
        width: 100%;
    }

    .product-card {
        padding: 12px 8px;
    }
    
    /* অ্যাবাউট সেকশন রেসপন্সিভ (Table বাদ দেওয়া হয়েছে) */
    .about-section { 
        display: flex; 
        flex-direction: column;
        width: 100%;
    }
    .about-image-side { 
        display: block; 
        width: 100%; 
        height: 230px; 
        margin-bottom: 20px; 
    }
    .about-content-side { 
        display: block; 
        width: 100%; 
        padding-left: 0; 
    }
    .about-content-side h2 { 
        font-size: 22px; 
    }
    
    /* স্ট্যাটস বার মোবাইল ফিক্স */
    .stats-bar { 
        display: flex; 
        flex-wrap: wrap;
        padding: 25px 3%;
        width: 100%;
    }
    .stat-item { 
        display: block; 
        width: 50%; 
        margin-bottom: 15px; 
    }
    .stat-item h2 {
        font-size: 24px;
    }
}



/* ==========================================
   Scroll Reveal Animation Styles
   ========================================== */

/* প্রাথমিক অবস্থা (স্ক্রিন থেকে বাইরে ও অদৃশ্য থাকবে) */
.product-card {
    opacity: 0;
    transform: translateY(40px) scale(0.96);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), 
                transform 0.8s cubic-bezier(0.25, 1, 0.5, 1),
                box-shadow 0.3s ease; /* আগের হোভার ট্রানজিশন ঠিক রাখার জন্য */
    will-change: opacity, transform;
}

/* স্ক্রিনে আসার পর যে ক্লাসটি JS থেকে যুক্ত হবে */
.product-card.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* হোভার করার সময় ট্রান্সফর্মের সাথে অ্যানিমেশনের কনফ্লিক্ট আটকানোর জন্য */
.product-card.animate-in:hover {
    transform: translateY(-5px) scale(1);
}



/*------------- Reviews Slider Section --------------*/
.reviews-slider-container {
    width: 100%;
    overflow: hidden;
    padding: 30px 0;
    position: relative;
    background: transparent;
}

/* স্লাইড হওয়ার ইনফিনিট ট্র্যাক */
.reviews-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollReviews 35s linear infinite;
}

/* মাউস হোভার করলে স্ক্রলিং পজ হবে */
.reviews-track:hover {
    animation-play-state: paused;
}

/* স্ক্রলিং অ্যানিমেশন */
@keyframes scrollReviews {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* একক রিভিউ কার্ড */
.review-card {
    width: 320px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 102, 255, 0.15);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.08);
    backdrop-filter: blur(8px);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: #0066ff;
}

/* কার্ডের ভেতরের কন্টেন্ট */
.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.review-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #0066ff;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.review-user h5 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #0066ff;
}

.review-user p {
    margin: 0;
    font-size: 12px;
    color: #64748b;
}

.review-stars {
    color: #f59e0b;
    font-size: 14px;
    margin-bottom: 10px;
}

.review-text {
    font-size: 13px;
    color: #1e293b;
    line-height: 1.5;
    margin: 0;
}