: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;
}

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 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-img {
    width: 45px;
    height: 45px;
    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;
}

/* ==========================================================
   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 (Desktop First) */
.features-bar {
    background-color: var(--primary-color);
    color: #fff;
    padding: 30px 5%;
    display: table;
    width: 100%;
    border-radius: 0 0 20px 20px;
}
.feature-item {
    display: table-cell;
    vertical-align: top;
    width: 25%;
    padding: 0 10px;
}
.feature-item-wrapper {
    display: block;
}
.feature-icon-box {
    display: table-cell;
    vertical-align: top;
    padding-right: 12px;
}
.feature-icon-box i {
    font-size: 28px;
    color: var(--secondary-color);
}
.feature-text {
    display: table-cell;
    vertical-align: top;
}
.feature-text h4 {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
    white-space: nowrap; 
}
.feature-text p {
    font-size: 12px;
    color: #b0c4de;
}

/* Products Section */
.section-container {
    padding: 60px 5%;
}
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}
.section-title p {
    color: var(--secondary-color);
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}
.section-title h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-top: 5px;
}
.btn-outline {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}
.btn-outline:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}
.product-card {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 20px 15px;
    text-align: center;
    transition: 0.3s;
    position: relative;
}
.product-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-color: var(--secondary-color);
}
.product-image-wrapper {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}
.product-image-wrapper img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}
.product-card h4 {
    font-size: 13px;
    color: var(--primary-color);
    min-height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-arrow-circle {
    width: 30px;
    height: 30px;
    border: 1px solid var(--secondary-color);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    margin-top: 10px;
    text-decoration: none;
    transition: 0.3s;
}
.product-card:hover .btn-arrow-circle {
    background: var(--secondary-color);
    color: #fff;
}

/* 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: var(--primary-color);
    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: 24px; /* ১৬:৯ ছোট হাইটে ওভারফ্লো রোধ করতে সাইজ পারফেক্ট করা হলো */
        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 2%;
        gap: 5px; 
        border-radius: 0;
    }
    .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; }
    .feature-text p { display: none; }
    
    /* প্রোডাক্ট গ্রিড ২ কলাম মোবাইল রেডি */
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    
    /* অ্যাবাউট সেকশন রেসপন্সিভ */
    .about-section { display: block; }
    .about-image-side { display: block; width: 100%; height: 250px; margin-bottom: 20px; }
    .about-content-side { display: block; width: 100%; padding-left: 0; }
    .about-content-side h2 { font-size: 24px; }
    
    /* স্ট্যাটস বার মোবাইল ভিউ */
    .stats-bar { display: block; }
    .stat-item { display: inline-block; width: 50%; margin-bottom: 20px; }
}

/* মেইন নেভবার পজিশন */
.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;
}

.menu-icon {
    cursor: pointer;
    font-size: 22px;
    color: #333;
    padding: 5px;
}

/* ড্রপডাউন মেনুর ডিফল্ট স্টাইল (লুকিয়ে থাকবে) */
.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: #f39c12; /* আপনার থিমের গোল্ডেন কালার */
}