/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --bg-dark: #0a0f1d;
    --bg-card: #141b2d;
    --bg-main: #020b19;
    --bg-navbar: rgba(4, 17, 37, 0.95);
    --primary-cyan: #00f0ff;
   
    --text-muted: #a0aec0;
   
    --primary-blue: #0070f3;
    --neon-blue: #00d2ff;
    --text-white: #ffffff;
    --text-gray: #a0aec0;
     --anim-speed: cubic-bezier(0.4, 0, 0.2, 1);
    /* নতুন লাইট ব্লু ভেরিয়েবল যোগ করা হলো */
    --primary-light-blue: #1ab6ff;
}
body {
    background-color: var(--bg-main);
    color: var(--text-white);
    padding-top: 80px;
    /* To prevent overlap with fixed navbar */
}


/* Header & Navbar Wrapper */
.navbar-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--bg-navbar);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 240, 255, 0.15);
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 7px 20px 2px 20px;
}

.neon-logo {
    height: 75px;
    width: 78px;
}

/* CSS Styling & Animation */
.logo-container {
    background-color: #0b0f19;
    /* padding: 40px; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.neon-logo {
    filter: drop-shadow(0 0 10px rgba(0, 204, 255, 0.6)) drop-shadow(0 0 20px rgba(0, 195, 255, 0.4));
    animation: neonFlicker 3s infinite alternate, floatAnimation 4s ease-in-out infinite;
    transition: all 0.3s ease;
}

@keyframes neonFlicker {

    0%,
    19%,
    21%,
    23%,
    25%,
    54%,
    56%,
    100% {
        opacity: 1;
    }

    20%,
    24%,
    55% {
        opacity: 0.7;
    }
}

@keyframes floatAnimation {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.logo-main {
    color: var(--text-white);
}

.logo-sub {
    color: var(--primary-cyan);
    text-shadow: 0 0 12px rgba(0, 240, 255, 0.6);
}

/* Language and Select Settings */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-switcher select {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-white);
    border: 1px solid #1ab6ff81;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
}

.lang-switcher select:focus {
    border-color: var(--primary-cyan);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
    background-color: rgba(4, 17, 37, 0.95);
}

/* Mobile First Layout: Mobile Links Configuration */
.nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: 55%;
    height: 100vh;
    background: rgb(2, 11, 25);
    padding: 110px 40px;
    gap: 30px;
    list-style: none;
    transition: right 0.4s var(--anim-speed);
    border-left: 1px solid rgba(0, 240, 255, 0.1);
}

.nav-links.active {
    right: 0;
}

.nav-item {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 20px;
    font-weight: 500;
    display: block;
    transition: all 0.3s ease;
}

.nav-item:hover,
.nav-item.active {
    color: var(--primary-light-blue);
    text-shadow: 0 0 8px rgba(26, 144, 255, 0.6);
}

/* Hamburger Trigger Menu */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 19px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger .bar {
    width: 100%;
    height: 2.5px;
    background-color: var(--text-white);
    border-radius: 2px;
    transition: all 0.4s var(--anim-speed);
}

/* Aesthetic Hamburger Transformations */
.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--primary-cyan);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
    background-color: var(--primary-cyan);
}

/* 💻 Medium and Large Screens (Tablet & PC) Setup */
@media (min-width: 768px) {
    .hamburger {
        display: none;
    }

    .nav-links {
        position: static;
        flex-direction: row;
        width: auto;
        height: auto;
        padding: 0;
        background: transparent;
        border-left: none;
        gap: 35px;
    }

    .nav-item {
        font-size: 16px;
        position: relative;
        padding: 6px 0;
    }

    .nav-item:hover {
        padding-left: 0;
    }

    .nav-item::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--primary-light-blue);
        box-shadow: 0 0 8px var(--primary-light-blue);
        transition: width 0.3s var(--anim-speed);
    }

    .nav-item:hover::after,
    .nav-item.active::after {
        width: 100%;
        color: var(--primary-light-blue);
        text-shadow: 0 0 8px rgba(26, 144, 255, 0.6);
    }
    
}


.ccontainer {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
}

.text-blue {
    color: var(--neon-blue);
}

/* Hero Section */
.hhero-section {
   
    position: relative;
    height: 70vh;
    background: url('https://unsplash.com') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.hhero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 15, 29, 0.7), var(--bg-dark));
}

.hhero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
     margin-top: 150px !important;
}

.hhero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hhero-content p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.6;
}

.bbtn-primary {
    background: linear-gradient(45deg, var(--primary-blue), var(--neon-blue));
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 210, 255, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
}

.bbtn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 210, 255, 0.6);
}

/* Section Title */
.ssection-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    position: relative;
}

/* Best Sellers Section */
.best-sellers-section {
    background-color: rgba(20, 27, 45, 0.5);
    border-radius: 15px;
    margin: 20px auto;
    border: 1px solid rgba(0, 210, 255, 0.1);
}

.best-sellers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1-fr));
    gap: 15px;
    padding: 0 20px;
}

.seller-item {
    background: var(--bg-card);
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid var(--neon-blue);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.seller-item:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, var(--bg-card), #1e2942);
}

.badge {
    background: var(--primary-blue);
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* Categories Section */
.ccategories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.ccategory-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
   
}

.ccategory-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-blue);
    box-shadow: 0 10px 30px rgba(0, 210, 255, 0.2);
}

.ccategory-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-blue), var(--neon-blue));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.ccategory-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--neon-blue);
    margin-bottom: 20px;
}

.ccategory-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.ccategory-card ul {
    list-style: none;
}

.ccategory-card ul li {
    color: var(--text-gray);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.ccategory-card ul li i {
    color: var(--neon-blue);
    font-size: 0.8rem;
}

/* Scroll Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hhero-content h1 { font-size: 2rem; }
    .ssection-title { font-size: 2rem; }
    .best-sellers-grid { grid-template-columns: 1fr 1fr; }
    .hhero-content {
    margin-top: 30px !important;
    left: 0px !important;
}



.hhero-content p {
    font-size: 0.875rem;
    
}
}
@media (max-width: 320px) {
    .hhero-content h1 { font-size: 1.5rem; }
    .hhero-section {
        padding-top: 86px !important;
    }
    .best-sellers-section {
        margin-top: 70px !important;
    }
    .ssection-title {
        font-size: 1.5rem !important;
    }
        .best-sellers-grid {
        grid-template-columns: 1fr !important;
    }

}
@media (max-width: 425px) {
   .ssection-title h2 {
        font-size: 1.25rem !important;
    }
    
}



















/* ---- Footer Styling ---- */
.main-footer {
    background-color: #050507; /* Extemely Dark Black */
    color: var(--text-white);
    padding: 70px 20px 25px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand h3, .footer-links h4, .footer-contact h4 {
    margin-bottom: 20px;
    color: var(--text-white);
    font-size: 20px;
    letter-spacing: 0.5px;
}

.footer-brand p {
    color: var(--text-muted);
    line-height: 1.7;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

/* ফুটার লিংকে হোভার করলে নিয়ন কালার হবে */
.footer-links ul li a:hover {
    color: var(--primary-cyan);
    text-shadow: 0 0 8px var(--neon-blue-glow);
}

.footer-contact p {
    color: var(--text-muted);
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    color: #525866;
    font-size: 14px;
}

/* ---- Responsive Design (Mobile Fix) ---- */
@media (max-width: 768px) {
    .location-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .map-responsive {
        height: 280px;
    }
}
/* ---- Neon Social Icons Styling (Footer-এর জন্য নতুন) ---- */
.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--primary-cyan);
    border-radius: 50%;
    color: var(--primary-cyan);
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* সোশ্যাল আইকনে মাউস নিলে নিয়ন ব্লু গ্লো করবে */
.footer-socials a:hover {
    color: var(--neon-blue);
    border-color: var(--neon-blue);
    background-color: transparent;
    box-shadow: 0 0 15px var(--neon-blue-glow);
    transform: translateY(-3px);
}

/* কন্টাক্ট ইনফোর আইকনগুলোর জন্য গ্লো এফেক্ট */
.footer-contact p i {
    color: var(--neon-blue);
    margin-right: 10px;
    width: 20px;
    text-shadow: 0 0 5px var(--neon-blue-glow);
}









