/* --- DESIGN SYSTEM VARIABLES --- */
:root {
    --bg-dark: #0a0b10;
    --bg-dark-card: rgba(20, 22, 33, 0.65);
    --bg-dark-variant: #0e0f17;
    --electric-blue: #0052ff;
    --neon-cyan: #00f0ff;
    --accent-orange: #ff5e00;
    --text-muted-custom: #8fa0dd;
    --border-glass: rgba(255, 255, 255, 0.08);
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    --font-display: 'Montserrat', sans-serif;

    --neon-glow: 0 0 15px rgba(0, 240, 255, 0.6);
    --accent-glow: 0 0 15px rgba(255, 94, 0, 0.6);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- BASE STYLES --- */
body {
    background-color: var(--bg-dark);
    color: #ffffff;
    font-family: var(--font-secondary);
    overflow-x: hidden;
}

h1,
h2,
h3,
.logo {
    font-family: var(--font-display);
    letter-spacing: -0.02em;
}

.bg-dark-variant {
    background-color: var(--bg-dark-variant) !important;
}

.text-cyan {
    color: var(--neon-cyan) !important;
}

.bg-orange {
    background-color: var(--accent-orange) !important;
}

.bg-blue {
    background-color: var(--electric-blue) !important;
}

.text-muted-custom {
    color: var(--text-muted-custom) !important;
}

.max-w-600 {
    max-width: 600px;
}

.max-w-700 {
    max-width: 700px;
}

.border-glass {
    border-color: var(--border-glass) !important;
}

.bg-dark-input {
    background-color: rgba(255, 255, 255, 0.04) !important;
}

.section-padding {
    padding: 25px 0;
}

.section-title {
    font-size: 2.5rem;
    text-transform: uppercase;
    background: linear-gradient(135deg, #fff 30%, var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

/* --- GLASSMORPHISM PANEL --- */
.glass-card {
    background: var(--bg-dark-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    transition: var(--transition-smooth);
}

/* ------------------------------------------------------------- NAVBAR STYLES--------------------------------------------------------------- */

.custom-navbar {
    /* ট্রান্সপারেন্ট বা ব্লার এফেক্ট সরিয়ে সম্পূর্ণ সলিড ডার্ক কালার */
    background-color: #0a0b10 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    /* আপনার পূর্ববর্তী সূক্ষ্ম গ্লাসমরফিজম নিওন বর্ডারটি হুবহু অক্ষুণ্ণ রাখা হয়েছে */
    border-bottom: 1px solid var(--border-glass, rgba(255, 255, 255, 0.08)) !important;
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
}

.logo span {
    color: var(--neon-cyan);
    text-shadow: var(--neon-glow);
}

.custom-navbar .nav-link {
    font-family: var(--font-primary);
    color: var(--text-muted-custom);
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: var(--transition-smooth);
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active {
    color: var(--neon-cyan) !important;
    text-shadow: var(--neon-glow);
}

.btn-whatsapp {
    background-color: #25d366;
    color: white !important;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.btn-whatsapp:hover {
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.6);
    transform: translateY(-2px);
}

/* --- DROPDOWN PANEL STYLES --- */
.custom-dropdown-menu {
    background: #0d0f18 !important;
    /* সলিড ডার্ক থিম সাব-কন্টেইনার */
    border: 1px solid rgba(0, 240, 255, 0.15) !important;
    border-radius: 12px !important;
    padding: 8px 0 !important;
    margin-top: 10px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6) !important;
}

.custom-dropdown-menu .dropdown-item {
    color: var(--text-muted-custom, #8fa0dd) !important;
    font-family: var(--font-primary);
    font-size: 0.88rem !important;
    font-weight: 500;
    padding: 10px 20px !important;
    transition: all 0.3s ease;
}

.custom-dropdown-menu .dropdown-item:hover {
    background: rgba(0, 240, 255, 0.08) !important;
    color: var(--neon-cyan, #00f0ff) !important;
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.5);
    padding-left: 24px !important;
}

.navbar-nav .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.3em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    transition: transform 0.3s ease;
}

.navbar-nav .show .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* --- Cart Dropdown Engine --- */
.custom-cart-dropdown {
    position: relative;
}

.no-arrow::after {
    display: none !important;
}

/* Glassmorphism Panel Setup */
.cart-dropdown-menu {
    width: 280px;
    background: rgba(17, 24, 39, 0.95) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 16px !important;
    padding: 16px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 242, 254, 0.05);
    margin-top: 15px !important;

    /* Forces the panel to align with the right-hand edge of the icon layer */
    right: 0 !important;
    left: auto !important;
    z-index: 1050 !important;
    /* Ensures it floats strictly above banners & hero texts */
}

/* Precise Responsive Fix for Compact Mobile Screens */
@media (max-width: 575.98px) {
    .cart-dropdown-menu {
        width: 260px;
        /* Offsets the glass pane slightly inside the window boundary */
        right: -15px !important;
        left: auto !important;
    }
}

.extra-small {
    font-size: 0.75rem;
}

.border-dark-variant {
    border-color: rgba(255, 255, 255, 0.05) !important;
}

/* Custom Scrollbar (Standard Only) */
.cart-items-list {
    scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
    scrollbar-width: thin;
}

.cart-items-list:hover {
    scrollbar-color: #00f2fe transparent;
}

/* ----------------------------------------------------------------------------------- NAVBAR STYLES ----------------------------------------------------------------------------------- */




/* ----------------------------------------------------------------------------------- FIXED HERO SLIDER CSS ----------------------------------------------------------------------------------- */
.hero-section {
    background-color: #0a0b10;
    min-height: 85vh;
    /* স্ক্রিনের হাইট অনুযায়ী পারফেক্ট সাইজ */
    padding: 100px 0 60px 0;
}

.min-vh-75 {
    min-height: 70vh;
}

.hero-title {
    font-size: calc(1.8rem + 2vw);
    /* বড় স্ক্রিনে বড়, মোবাইলে অটো ছোট হবে */
    line-height: 1.2;
}

/* মকআপ বক্সটিকে বড় এবং রেসপন্সিভ করার জন্য */
.mockup-container {
    width: 100%;
    max-width: 500px;
    /* বক্সের উইডথ বাড়ানো হয়েছে */
}

.mockup-display {
    width: 100%;
    height: 340px;
    /* ফিক্সড প্রিমিয়াম হাইট */
    background: linear-gradient(145deg, #121420, #06070a);
    border: 3px solid #1f2335;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7), inset 0 0 30px rgba(0, 0, 0, 0.8);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

/* গ্লিচ এবং নিওন লাইন রিফ্লেকশন ইফেক্ট */
.mockup-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(18, 18, 18, 0) 50%, rgba(0, 0, 0, 0.3) 50%),
        linear-gradient(90deg, rgba(0, 240, 255, 0.03), rgba(255, 94, 0, 0.02));
    background-size: 100% 4px, 4px 100%;
    z-index: 2;
    pointer-events: none;
}

/* স্লাইড পরিবর্তন করার সময় ইন্ডিকেটরের স্টাইল */
.custom-indicators {
    bottom: -10px;
}



/* স্লাইড পরিবর্তনের ট্রানজিশন ফিক্স */
.carousel-item {
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out !important;
}



/* রেসপন্সিভ ব্রেকপয়েন্ট (মোবাইলের জন্য ফিক্স) */
@media (max-width: 991.98px) {
    .hero-section {
        padding-top: 120px;
    }

    .mockup-display {
        height: 260px;
        /* মোবাইল ডিভাইসে বক্সের হাইট কিছুটা কমবে */
    }
}

.glow-text {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5), var(--neon-glow);
}

.accent-text {
    color: var(--accent-orange);
    text-shadow: var(--accent-glow);
}

/* Slider Custom Controls */
.custom-slider-btn {
    width: 5%;
    opacity: 0;
    transition: var(--transition-smooth);
}

.hero-section:hover .custom-slider-btn {
    opacity: 0.7;
}

.custom-slider-btn:hover {
    opacity: 1 !important;
}

.led-sign-neon {
    font-family: var(--font-display);
    font-size: 2.3rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    animation: neonBlink 3s infinite alternate;
}

.border-orange {
    border-color: #ff5e00 !important;
}

.border-cyan {
    border-color: var(--neon-cyan) !important;
}

.neon-orange {
    animation: neonOrangeBlink 3s infinite alternate !important;
}

.neon-blue {
    animation: neonBlueBlink 3s infinite alternate !important;
}

@keyframes neonBlink {

    0%,
    100% {
        text-shadow: 0 0 4px #fff, 0 0 10px #fff, 0 0 20px var(--neon-cyan), 0 0 40px var(--neon-cyan);
    }

    50% {
        text-shadow: 0 0 2px #fff, 0 0 5px #fff, 0 0 12px var(--neon-cyan);
        opacity: 0.9;
    }
}

@keyframes neonOrangeBlink {

    0%,
    100% {
        text-shadow: 0 0 4px #fff, 0 0 10px #fff, 0 0 20px #ff5e00, 0 0 40px #ff5e00;
    }

    50% {
        text-shadow: 0 0 2px #fff, 0 0 5px #fff, 0 0 12px #ff5e00;
        opacity: 0.9;
    }
}

@keyframes neonBlueBlink {

    0%,
    100% {
        text-shadow: 0 0 4px #fff, 0 0 10px #fff, 0 0 20px var(--electric-blue), 0 0 40px var(--neon-cyan);
    }

    50% {
        text-shadow: 0 0 2px #fff, 0 0 5px #fff, 0 0 12px var(--electric-blue);
        opacity: 0.9;
    }
}

/* Slider Captions Transitions */
.carousel-item .animate-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease-in-out;
}

.carousel-item .animate-mockup {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.7s ease-in-out;
}

.carousel-item.active .animate-content {
    opacity: 1;
    transform: translateY(0);
}

.carousel-item.active .animate-mockup {
    opacity: 1;
    transform: scale(1);
}

/* BUTTONS UI */
.btn-custom-primary {
    background: linear-gradient(135deg, var(--electric-blue), var(--neon-cyan));
    color: white !important;
    font-family: var(--font-primary);
    font-weight: 600;
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 82, 255, 0.4);
    transition: var(--transition-smooth);
}

.btn-custom-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--neon-glow);
}

.btn-custom-secondary {
    background: transparent;
    color: white !important;
    font-family: var(--font-primary);
    font-weight: 600;
    padding: 12px 28px;
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.btn-custom-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--neon-cyan);
}

/* ----------------------------------------------------------------------------------- CARDS & INTERACTIONS ----------------------------------------------------------------------------------- */


/* ----------------------------------------------------------------------------------- PRODUCTS BASE GLASSMORPHIC LAYOUT ----------------------------------------------------------------------------------- */
/* --- Glassmorphic Product Card Styles --- */
.product-card {
    background: rgba(22, 28, 42, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Card Hover Elevate States & Anti-Clipping Layer Configuration */
.product-card:hover {
    transform: translateY(-6px);
    background: rgba(22, 28, 42, 0.6);
    border-color: rgba(0, 242, 254, 0.4);
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.15), 0 12px 40px rgba(0, 0, 0, 0.5);
    position: relative;
    /* Fixed: Maps coordinate layer stacks properly */
    z-index: 5;
    /* Fixed: Pulls hovered components cleanly past container cards boundaries */
}

/* Typography Overrides */
.product-card h5 {
    font-size: 1.1rem;
}

/* Inner Dotted Mock Screen Styles */
.product-img-placeholder {
    background: rgba(0, 0, 0, 0.2);
    border: 1px dashed rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    height: 200px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover .product-img-placeholder {
    border-color: #00f2fe;
    box-shadow: inset 0 0 15px rgba(0, 242, 254, 0.15);
}

/* --- Responsive Layout Switching Engine --- */

/* Mobile / Tablet Views Configuration (Under 992px Viewports) */
@media (max-width: 991.98px) {
    #productsCarousel {
        padding: 0 45px;
        /* Leaves clear breathing space for navigation arrow buttons */
        overflow: visible !important;
        /* Fixed: Forces visible frame overflow during transformation movements */
    }

    .product-responsive-grid {
        overflow: visible !important;
        padding-top: 12px;
        /* Fixed: Secures lift paths without shearing top boundaries */
        margin-top: -12px;
    }

    .product-responsive-grid .carousel-item {
        padding: 6px;
        /* Outer buffer preserves side drop-shadow glow footprints cleanly */
        overflow: visible !important;
    }

    /* Custom Glassmorphic Neon Arrows */
    .custom-arrow {
        width: 40px;
        height: 40px;
        background: rgba(22, 28, 42, 0.6);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        top: 50%;
        transform: translateY(-50%);
        opacity: 0.8;
        transition: all 0.3s ease;
        z-index: 10;
        /* Keeps buttons active and layered above shifting card panels */
    }

    .custom-arrow:hover {
        opacity: 1;
        border-color: #00f2fe;
        box-shadow: 0 0 10px rgba(0, 242, 254, 0.4);
    }

    .carousel-control-prev.custom-arrow {
        left: 0;
    }

    .carousel-control-next.custom-arrow {
        right: 0;
    }

    /* Neon Carousel Pill Indicators */
    .custom-carousel-dots {
        bottom: -40px;
        margin: 0;
        justify-content: center;
        gap: 4px;
    }

    .custom-carousel-dots button {
        width: 8px !important;
        height: 8px !important;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.2) !important;
        border: none !important;
        transition: all 0.3s ease !important;
    }

    .custom-carousel-dots button.active {
        background-color: #00f2fe !important;
        width: 24px !important;
        border-radius: 6px;
        box-shadow: 0 0 8px rgba(0, 242, 254, 0.8);
    }
}

/* Master Grid Desktop Configuration (992px and up Viewports) */
@media (min-width: 992px) {

    /* Transforms active carousel track structure directly into a 4-column flat-grid */
    .product-responsive-grid {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 24px !important;
        overflow: visible !important;
        padding-top: 12px;
        /* Desktop overhead lift protection */
        margin-top: -12px;
    }

    /* Overrides default carousel tracking layers to display rows in parallel cleanly */
    .product-responsive-grid .carousel-item {
        display: block !important;
        margin-right: 0 !important;
        width: 100% !important;
        opacity: 1 !important;
        transform: none !important;
        overflow: visible !important;
    }
}

/* ----------------------------------------------------------------------------------- PRODUCTS Ends ----------------------------------------------------------------------------------- */


/*-------------------------------------------------------------- Why choose us cards --------------------------------------------------------------*/
/* --- Why Choose Us Base Design (Matching Image) --- */
.choice-card {
    background: rgba(22, 28, 42, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    /* ডিজাইন অনুযায়ী কার্ভ রেডিয়াস বৃদ্ধি করা হয়েছে */
    padding: 40px 20px;
    height: 100%;
    min-height: 340px;
    /* কার্ডের হাইট যেন সমান থাকে */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

/* আপনার পূর্বের গ্লোয়িং হোভার ইফেক্ট অক্ষুণ্ণ রাখা হয়েছে */
.choice-card:hover {
    transform: translateY(-6px);
    background: rgba(22, 28, 42, 0.6);
    border-color: rgba(0, 242, 254, 0.4);
    box-shadow: 0 0 25px rgba(0, 242, 254, 0.2), 0 12px 40px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 5;
}

/* ইমেজের মতো নিওন আউটলাইন আইকন বক্স */
.why-icon-box {
    width: 80px;
    height: 80px;
    background: transparent;
    color: #00f2fe;
    font-size: 2.5rem;
    /* বড় গ্লোয়িং আইকন */
    filter: drop-shadow(0 0 8px rgba(0, 242, 254, 0.6));
    transition: transform 0.3s ease;
}

.choice-card:hover .why-icon-box {
    transform: scale(1.1);
}

.why-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
}

.text-muted-custom {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* --- Responsive Engine Switcher --- */

/* মোবাইল এবং ট্যাবলেট স্ক্রিন (Under 992px) */
@media (max-width: 991.98px) {
    #whyChooseUsCarousel {
        padding: 0 45px;
        overflow: visible !important;
    }

    .choice-responsive-grid {
        overflow: visible !important;
        padding-top: 12px;
        margin-top: -12px;
    }

    .choice-responsive-grid .carousel-item {
        padding: 6px;
        overflow: visible !important;
    }

    /* মোবাইল অ্যারো বাটন */
    .choice-custom-arrow {
        width: 40px;
        height: 40px;
        background: rgba(22, 28, 42, 0.6);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        top: 50%;
        transform: translateY(-50%);
        opacity: 0.8;
        transition: all 0.3s ease;
        z-index: 10;
    }

    .choice-custom-arrow:hover {
        opacity: 1;
        border-color: #00f2fe;
        box-shadow: 0 0 10px rgba(0, 242, 254, 0.4);
    }

    .carousel-control-prev.choice-custom-arrow {
        left: 0;
    }

    .carousel-control-next.choice-custom-arrow {
        right: 0;
    }

    /* নিওন ক্যারোসেল ডটস */
    .custom-carousel-dots {
        bottom: -40px;
        margin: 0;
        justify-content: center;
        gap: 4px;
    }

    .custom-carousel-dots button {
        width: 8px !important;
        height: 8px !important;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.2) !important;
        border: none !important;
        transition: all 0.3s ease !important;
    }

    .custom-carousel-dots button.active {
        background-color: #00f2fe !important;
        width: 24px !important;
        border-radius: 6px;
        box-shadow: 0 0 8px rgba(0, 242, 254, 0.8);
    }
}

/* লার্জ এবং মাস্টার ডেস্কটপ ওভাররাইড (992px এবং তার উপরে) */
@media (min-width: 992px) {

    /* ৫টি কার্ডকে চেপ্টা না করে নিখুঁত প্রপোর্র্শনে পাশাপাশি সাজানোর ফ্লেক্স গ্রিড ইঞ্জিন */
    .choice-responsive-grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
        gap: 16px !important;
        /* কার্ডগুলোর ভেতরের স্ট্যান্ডার্ড অ্যালাইনমেন্ট গ্যাপ */
        overflow: visible !important;
        padding-top: 12px;
        margin-top: -12px;
    }

    /* বুটস্ট্র্যাপের স্লাইড ইফেক্ট ফ্রিজ করে একসাথে ৫টি কার্ড প্রদর্শন করবে */
    .choice-responsive-grid .carousel-item {
        display: block !important;
        margin-right: 0 !important;
        width: calc(20% - 13px) !important;
        /* ৫টি কলামের প্রতিটি কার্ডের জন্য রেটিনা উইডথ ডিস্ট্রিবিউশন */
        flex: 0 0 auto !important;
        opacity: 1 !important;
        transform: none !important;
        overflow: visible !important;
    }
}

/* আল্ট্রা-ওয়াইড মনিটর অপ্টিমাইজেশন (১২০০ পিক্সেলের উপরে) */
@media (min-width: 1200px) {
    .choice-responsive-grid {
        gap: 20px !important;
    }

    .choice-responsive-grid .carousel-item {
        width: calc(20% - 16px) !important;
    }
}

/* -------------------------------------------------------------- Why choose us END -------------------------------------------------------------- */

/* -------------------------------------------------------------- Services Card Custom Animation Layout Rules -------------------------------------------------------------- */
.service-card {
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
        border-color 0.3s ease,
        background-color 0.3s ease;
}

.service-card:hover {
    border-color: rgba(0, 82, 255, 0.3) !important;
    background: rgba(20, 22, 33, 0.85);
    transform: scale(1.02);
    position: relative;
    /* Allows z-index to take effect */
    z-index: 10;
    /* Forces hovered card to stack cleanly over adjacent items */
}

/* Mobile & Tablet Interface Views (Under 992px) */
@media (max-width: 991.98px) {
    #servicesCarousel {
        padding: 0 45px;
        overflow: visible !important;
        /* Prevents Bootstrap framework from cutting off the hover expansion */
    }

    .services-responsive-grid {
        overflow: visible !important;
        padding-top: 12px;
        /* Creates explicit safety overhead headroom for scale translations */
        margin-top: -12px;
        /* Balances out top padding gap to maintain original vertical rhythm */
    }

    .services-responsive-grid .carousel-item {
        padding: 8px;
        overflow: visible !important;
        /* Ensures scaling boundaries aren't clipped inside slides */
    }

    /* Customized Controller Arrows */
    .services-custom-arrow {
        width: 40px;
        height: 40px;
        background: rgba(22, 28, 42, 0.6);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        top: 50%;
        transform: translateY(-50%);
        opacity: 0.8;
        transition: all 0.3s ease;
        z-index: 11;
        /* Places navigation buttons just above the expanding card layer */
    }

    .services-custom-arrow:hover {
        opacity: 1;
        border-color: #00f2fe;
        box-shadow: 0 0 10px rgba(0, 242, 254, 0.4);
    }

    .carousel-control-prev.services-custom-arrow {
        left: 0;
    }

    .carousel-control-next.services-custom-arrow {
        right: 0;
    }

    /* Custom Responsive Slide Indicators */
    .custom-services-dots {
        bottom: -40px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px;
        margin: 0;
    }

    .custom-services-dots button {
        width: 8px !important;
        height: 8px !important;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.2) !important;
        border: none !important;
        transition: all 0.3s ease !important;
    }

    .custom-services-dots button.active {
        background-color: #00f2fe !important;
        width: 20px !important;
        border-radius: 6px;
        box-shadow: 0 0 8px rgba(0, 242, 254, 0.8);
    }
}

/* Desktop Flat-Grid Standard Overrides (992px and up) */
@media (min-width: 992px) {

    /* Converts the carousel slider frame back to a native flat side-by-side grid */
    .services-responsive-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 24px !important;
        overflow: visible !important;
        /* Retains safe overflow rendering for flat desktop rows */
        padding-top: 12px;
        /* Desktop expansion protection overhead */
        margin-top: -12px;
    }

    /* Suppresses default animation translations so items display concurrently */
    .services-responsive-grid .carousel-item {
        display: block !important;
        margin-right: 0 !important;
        width: 100% !important;
        opacity: 1 !important;
        transform: none !important;
        overflow: visible !important;
    }
}

/* -------------------------------------------------------- Services Card Custom Animation Layout Rules END -------------------------------------------------------- */


.client-avatar {
    width: 45px;
    height: 45px;
    background-color: var(--electric-blue);
    font-size: 0.9rem;
}

/* Promo Panel */
.promo-banner {
    background: linear-gradient(135deg, rgba(0, 82, 255, 0.1), rgba(0, 240, 255, 0.05));
    border: 1px solid rgba(0, 240, 255, 0.2);
    box-shadow: inset 0 0 30px rgba(0, 240, 255, 0.05);
}

/* Blog Matrix Items */
.blog-img {
    height: 180px;
    background-color: #141724;
    color: rgba(255, 255, 255, 0.15);
}

.blog-link:hover {
    color: var(--neon-cyan) !important;
}

/* Contact Interactivity */
.focus-cyan:focus {
    border-color: var(--neon-cyan) !important;
    box-shadow: var(--neon-glow) !important;
}

.info-icon {
    width: 45px;
    height: 45px;
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.2);
}

.social-icon {
    width: 38px;
    height: 38px;
    transition: var(--transition-smooth);
}

.social-icon:hover {
    background-color: var(--electric-blue);
    border-color: var(--electric-blue) !important;
    transform: translateY(-3px);
}

/* Footer anchors */
.footer-heading {
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 25px;
    height: 2px;
    background-color: var(--neon-cyan);
}

.footer-link {
    transition: var(--transition-smooth);
}

.footer-link:hover {
    color: var(--neon-cyan) !important;
    padding-left: 4px;
}

/* --- IMAGE MATCH: NEON PREMIUM CARDS --- */
#categories .row {
    margin-left: -4px !important;
    margin-right: -4px !important;
    gap: 8px !important;
    /* ২ গ্যাপের মাঝখানের নিখুঁত ফাঁকা স্পেস কন্ট্রোল */
}

#categories .col {
    padding-left: 4px !important;
    /* কার্ডগুলোর মাঝের গ্যাপ একদম পারফেক্ট কম রাখার জন্য */
    padding-right: 4px !important;
    /* কার্ডগুলোর মাঝের গ্যাপ একদম পারফেক্ট কম রাখার জন্য */
}

.neon-premium-card {
    margin: 0 !important;
    /* মার্জিন অটো তুলে দেওয়া হলো যাতে একপাশে চেপে না যায় */
    background: linear-gradient(180deg, #101424 0%, #090a10 100%) !important;
    border: 1px solid rgba(0, 240, 255, 0.15) !important;
    border-radius: 12px !important;
    padding: 15px 8px !important;
    min-height: 125px !important;
    max-width: 135px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* মাউস হোভার করলে ইমেজের মতো বর্ডার ব্রাইট হবে এবং গ্লো করবে */
.neon-premium-card:hover {
    transform: translateY(-4px);
    border-color: var(--neon-cyan) !important;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.3), inset 0 0 8px rgba(0, 240, 255, 0.1);
}

/* আইকন বক্সের ডিজাইন (গোল রিং এবং গ্লোয়িং নিওন লাইট) */
.premium-icon-box {
    width: 38px !important;
    /* গোল রিং-এর সাইজ ৫২ থেকে কমিয়ে ৩৮px করা হয়েছে */
    height: 38px !important;
    /* গোল রিং-এর সাইজ ৫২ থেকে কমিয়ে ৩৮px করা হয়েছে */
    background: rgba(0, 240, 255, 0.04);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem !important;
    /* ভেতরের মূল আইকন সাইজ ছোট করা হয়েছে */
    margin-bottom: 10px !important;
    /* আইকন থেকে টেক্সটের গ্যাপ ১৮ থেকে ১০px করা হয়েছে */
    box-shadow: 0 0 8px rgba(0, 240, 255, 0.1);
    transition: var(--transition-smooth);
}

/* নির্দিষ্ট কিছু আইকনের অরেঞ্জ এবং পিঙ্ক গ্লো ফিক্স */
.text-orange-glow {
    color: var(--accent-orange) !important;
    border-color: rgba(255, 94, 0, 0.3) !important;
    background: rgba(255, 94, 0, 0.04) !important;
    box-shadow: 0 0 10px rgba(255, 94, 0, 0.1);
}

.text-pink-glow {
    color: #ff007c !important;
    border-color: rgba(255, 0, 124, 0.3) !important;
    background: rgba(255, 0, 124, 0.04) !important;
    box-shadow: 0 0 10px rgba(255, 0, 124, 0.1);
}

/* হোভার করলে আইকনগুলো আরও বেশি ব্রাইট হবে */
.neon-premium-card:hover .premium-icon-box {
    background: rgba(0, 240, 255, 0.2);
    box-shadow: var(--neon-glow);
}

.neon-premium-card:hover .text-orange-glow {
    background: rgba(255, 94, 0, 0.2) !important;
    box-shadow: var(--accent-glow) !important;
}

.neon-premium-card:hover .text-pink-glow {
    background: rgba(255, 0, 124, 0.2) !important;
    box-shadow: 0 0 15px rgba(255, 0, 124, 0.6) !important;
}

/* কার্ডের লেখার ফন্ট এবং টেক্সট অ্যালাইনমেন্ট */
.premium-card-text {
    font-size: 0.78rem !important;
    /* লেখার ফন্ট সাইজ ০.৯ থেকে কমিয়ে ০.৭৮rem করা হয়েছে */
    font-weight: 600;
    line-height: 1.2;
    font-family: var(--font-primary);
    letter-spacing: -0.01em;
}

.feature-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px 15px;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 243, 255, 0.1);
    border-color: var(--neon-cyan);
}

/* Product Cards */
.product-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.product-card:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px var(--neon-glow);
}

.product-img-placeholder {
    background-color: #1f2937;
    height: 180px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 3px solid var(--neon-cyan);
}

/* Custom Buttons */
.btn-neon {
    background-color: var(--neon-cyan);
    color: #000;
    font-weight: 600;
    box-shadow: 0 0 15px var(--neon-glow);
    transition: all 0.3s ease;
    border: none;
}

.btn-neon:hover {
    background-color: #00cbd6;
    box-shadow: 0 0 25px rgba(0, 243, 255, 0.6);
    color: #000;
}

/* Why Choose Us Cards */

/* --- 100% BALANCED UNIFORM RESPONSIVE GRID & CARDS --- */

/* Parent container reset */
.carousel-container-custom {
    width: 100%;
    position: relative;
    display: block;
}

.responsive-carousel-wrapper {
    width: 100%;
    padding: 10px 0 15px 0 !important;
}

/* Main layout grid track. 
   Using wrap ensures proper redistribution into multiple rows on smaller displays.
*/
.carousel-track-custom {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    /* জোরপূর্বক ওভারফ্লো বন্ধ করে নিচে ভেঙে পাঠাবে */
    gap: 14px 12px !important;
    /* Fixed gaps: 14px Row gap, 12px Column gap */
    width: 100% !important;
    justify-content: center !important;
    /* ৭ম বিজোড় কার্ডটি যেন নিচে সুন্দরভাবে মাঝখানে বসে */
    align-items: stretch !important;
}

/* SMALLER SCREENS (Default Breakdown: Exactly 2 cards per row)
   এখানে ডাইনামিক পারসেন্টেজ বা ম্যাথ ক্যালকুলেশন পুরোপুরি সরিয়ে সরাসরি 
   হার্ডকোডেড ফিক্সড উইডথ দিয়ে দেওয়া হয়েছে।
*/
.carousel-item-custom {
    flex: 0 0 142px !important;
    /* কন্টেন্টের সাইজ যাই হোক, চওড়া সবসময় ১৪২px লক থাকবে */
    max-width: 142px !important;
    /* Hard width boundary ceiling */
    width: 142px !important;
    /* Enforces complete uniformity */
    box-sizing: border-box !important;
}

/* Premium Card Architecture */
.neon-premium-card {
    background: linear-gradient(180deg, #101424 0%, #090a10 100%) !important;
    border: 1px solid rgba(0, 240, 255, 0.15) !important;
    border-radius: 12px !important;
    padding: 16px 8px !important;

    /* Strict Height Framework - পাশাপাশি থাকা কার্ডগুলোর উচ্চতা সমান রাখার জন্য */
    min-height: 135px !important;
    height: 100% !important;

    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    box-sizing: border-box !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    user-select: none;
    width: 100% !important;
}

.neon-premium-card:hover {
    transform: translateY(-4px);
    border-color: var(--neon-cyan) !important;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.3), inset 0 0 8px rgba(0, 240, 255, 0.1);
}

/* Text Wrapping Constraint to enforce strict content boundaries */
.premium-card-text {
    font-size: 0.78rem !important;
    font-weight: 600;
    line-height: 1.25;
    text-align: center;
    word-break: break-word !important;
    /* কোনো নাম বড় হলে তা কার্ডের উইডথ না বাড়িয়ে নিচে ভেঙে যাবে */
}

/* --- LARGE SCREEN BREAKPOINTS (Desktop Mirror Tuning) --- */
@media (min-width: 1200px) {
    .carousel-track-custom {
        flex-wrap: nowrap !important;
        /* বড় পিসি স্ক্রিনে এক লাইনে সোজা পাশাপাশি থাকবে */
        justify-content: center !important;
        /* ৭টি কার্ডই চমৎকারভাবে স্ক্রিনের মাঝখানে সুসজ্জিত থাকবে */
        gap: 12px !important;
    }

    .carousel-item-custom {
        /* বড় স্ক্রিনের জন্য নিখুঁত ফিক্সড সাইজ */
        flex: 0 0 135px !important;
        max-width: 135px !important;
        width: 135px !important;
    }
}

/* --- ULTRA SMALL DEVICES (Under 480px Mobile Screen Polish) --- */
@media (max-width: 480px) {
    .carousel-track-custom {
        gap: 12px 8px !important;
        /* ছোট ফোনের স্ক্রিনে কলামের মাঝখানের গ্যাপ সামান্য টাইট করা হলো */
    }

    .carousel-item-custom {
        flex: 0 0 135px !important;
        max-width: 135px !important;
        width: 135px !important;
    }

    .neon-premium-card {
        min-height: 125px !important;
        padding: 12px 6px !important;
    }

    .premium-card-text {
        font-size: 0.75rem !important;
    }
}

.premium-icon-box {
    width: 38px;
    height: 38px;
    background: rgba(0, 240, 255, 0.04);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--neon-cyan);
    margin-bottom: 10px;
    box-shadow: 0 0 8px rgba(0, 240, 255, 0.1);
}

.text-orange-glow {
    color: var(--accent-orange) !important;
    border-color: rgba(255, 94, 0, 0.3) !important;
    background: rgba(255, 94, 0, 0.04) !important;
    box-shadow: 0 0 10px rgba(255, 94, 0, 0.1);
}

.text-pink-glow {
    color: #ff007c !important;
    border-color: rgba(255, 0, 124, 0.3) !important;
    background: rgba(255, 0, 124, 0.04) !important;
    box-shadow: 0 0 10px rgba(255, 0, 124, 0.1);
}

/* স্লাইডার নেভিগেশন অ্যারো বাটন */
.carousel-btn-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    background: rgba(16, 20, 36, 0.8);
    border: 1px solid rgba(0, 240, 255, 0.3);
    color: var(--neon-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.carousel-btn-nav:hover {
    background: var(--neon-cyan);
    color: #000;
    box-shadow: var(--neon-glow);
}

.prev-btn {
    left: -15px;
}

.next-btn {
    right: -15px;
}

/* মোবাইল এবং ট্যাবলেটে অ্যারো হাইড করে টাচ-সোয়াইপ স্লাইডিং অ্যাক্টিভ রাখার জন্য */
@media (max-width: 768px) {
    .carousel-container-custom {
        overflow-x: auto;
        scroll-behavior: smooth;
        scrollbar-width: none;
        /* ফায়ারফক্সের জন্য স্ক্রলবার হাইড */
    }

    .carousel-container-custom::-webkit-scrollbar {
        display: none;
        /* ক্রোম এবং সাফারির জন্য স্ক্রলবার হাইড */
    }

    .carousel-btn-nav {
        display: none;
    }
}

/* --- WHY CHOOSE US: PREMIUM ARROW CAROUSEL --- */
#why-choose-us {
    background-color: #0a0b10;
}

.why-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 15px 0;
}

.why-carousel-track {
    display: flex;
    gap: 12px;
    /* কার্ডের ভেতরের প্রফেশনাল স্পেসিং */
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.why-carousel-item {
    flex: 0 0 auto;
    width: 195px;
    /* ছবির মেজারমেন্ট অনুযায়ী ফিক্সড উইডথ */
}

/* গ্লাসমরফিজম নিওন প্রিমিয়াম কার্ড */
.why-premium-card {
    background: linear-gradient(180deg, #111526 0%, #08090f 100%) !important;
    border: 1px solid rgba(0, 240, 255, 0.12) !important;
    border-radius: 16px !important;
    padding: 28px 14px !important;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.why-premium-card:hover {
    transform: translateY(-5px);
    border-color: #00f0ff !important;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.25);
}

.why-icon-box {
    width: 64px;
    height: 64px;
    background: rgba(0, 240, 255, 0.03);
    border: 1px solid rgba(0, 240, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #00f0ff;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.6);
    margin-bottom: 22px;
}

.why-card-title {
    font-size: 1rem !important;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
}

.why-card-desc {
    font-size: 0.76rem !important;
    color: #8fa0dd;
    opacity: 0.7;
    line-height: 1.4;
}

/* --- LEFT & RIGHT CONTROLLER BUTTONS STYLES --- */
.why-arrow-btn {
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(17, 21, 38, 0.85);
    border: 1px solid rgba(0, 240, 255, 0.3);
    color: #00f0ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.why-arrow-btn:hover {
    background: #00f0ff;
    color: #0a0b10;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.6);
    border-color: #00f0ff;
}

/* পজিশন কন্ট্রোল: কন্টেইনারের বাইরে বা ডানে বামে সেটআপ */
.why-prev {
    left: -20px;
}

.why-next {
    right: -20px;
}

/* বাটন ডিজেবলড মোড স্টাইল */
.why-arrow-btn:disabled {
    opacity: 0.25;
    cursor: not-allowed;
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.3);
}

.why-arrow-btn:disabled:hover {
    background: rgba(17, 21, 38, 0.85);
    color: rgba(255, 255, 255, 0.3);
    box-shadow: none;
}

/* মোবাইল রেসপন্সিভ টাচ সোয়াইপ অপ্টিমাইজেশন */
@media (max-width: 991px) {
    .why-carousel-wrapper {
        overflow-x: auto;
        scroll-behavior: smooth;
        scrollbar-width: none;
    }

    .why-carousel-wrapper::-webkit-scrollbar {
        display: none;
    }

    .why-arrow-btn {
        display: none;
        /* মোবাইলে অ্যারো হাইড হয়ে স্বয়ংক্রিয় টাচ সোয়াইপ কাজ করবে */
    }
}

/* --- SERVICES SECTION: AS IT IS IMAGE MATCH --- */
#services {
    background-color: #0a0b10;
    /* ডার্ক চারকোল ব্যাকগ্রাউন্ড */
}

/* ৩টি কলামের মাঝখানের নিখুঁত ও টাইট গ্যাপ স্পেসিং ফিক্স */
#services .row {
    --bs-gutter-x: 10px !important;
    /* ডানে-বামেন গ্যাপ ১৪px থেকে কমিয়ে ১০px করা হয়েছে */
    --bs-gutter-y: 12px !important;
    /* ওপর-নিচের গ্যাপ ১৪px থেকে কমিয়ে ১২px করা হয়েছে */
    justify-content: center;
}

#services .col {
    max-width: 340px;
    /* প্রতিটি কলামের সর্বোচ্চ চওড়া কিছুটা ফিক্সড করা হলো */
    width: 100%;
}

/* গ্লাসমরফিজম নিওন প্রিমিয়াম সার্ভিস বক্স */
.service-premium-box {
    background: linear-gradient(180deg, #121629 0%, #08090f 100%) !important;
    border: 1px solid rgba(0, 240, 255, 0.1) !important;
    border-radius: 12px !important;
    padding: 20px 12px !important;
    min-height: 135px !important;
    /* আপনার স্ক্রিনশটের মতো কম্প্যাক্ট হাইট */

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

/* নিচের বর্ডারে হালকা গ্লোয়িং বর্ডার পিল ইফেক্ট */
.service-premium-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.4), transparent);
    transition: all 0.35s ease;
}

/* মাউস হোভার করলে কার্ডের প্রিমিয়াম ট্রানজিশন এবং নিওন সায়ান গ্লো */
.service-premium-box:hover {
    transform: translateY(-4px);
    border-color: #00f0ff !important;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2), inset 0 0 10px rgba(0, 240, 255, 0.05);
}

.service-premium-box:hover::after {
    width: 80%;
    background: linear-gradient(90deg, transparent, #00f0ff, transparent);
}

/* সায়ান নিওন আইকন স্টাইল (Exact Image Match) */
.service-neon-icon {
    font-size: 1.8rem !important;
    /* আইকন সাইজ ২.৮ থেকে কমিয়ে ১.৮rem করা হয়েছে */
    color: #00f0ff;
    margin-bottom: 12px !important;
    /* টেক্সট থেকে আইকনের গ্যাপ ১৮ থেকে কমিয়ে ১২px করা হয়েছে */
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 6px rgba(0, 240, 255, 0.5));
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* হোভার করলে আইকন আরও উজ্জ্বল হয়ে উঠবে */
.service-premium-box:hover .service-neon-icon {
    transform: scale(1.06);
    filter: drop-shadow(0 0 12px rgba(0, 240, 255, 0.8));
}

/* সার্ভিস বক্সের টাইটেল টেক্সট */
.service-box-title {
    font-size: 0.88rem !important;
    /* ফন্ট সাইজ ১.০৫ থেকে কমিয়ে ০.৮৮rem করা হয়েছে */
    font-weight: 600;
    font-family: var(--font-primary);
    letter-spacing: -0.01em;
    line-height: 1.3;
    text-align: center;
}

/* --- Reset & Base Styles --- */
/* --- Main Vertical Wrapper Layout Fix --- */
.main-wrapper {
    width: 100%;
    max-width: 100px;
    display: flex;
    flex-direction: column;
    gap: 80px;
    /* Clean standard spacing layout break between components */
}

/* --- Section Shared Heading Styles --- */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: -0.5px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1),
        0 0 20px rgba(0, 242, 254, 0.2);
}

/* --- Portfolio Block Style --- */
.portfolio-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* --- Project Grid --- */
.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    width: 100%;
    margin-bottom: 40px;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .project-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .project-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------------------------------------------------------------------- Project Card Styles ---------------------------------------------------------------------- */
/* --- Base Styling Rules & Glassmorphic Options --- */
.project-card {
    text-decoration: none;
    background: rgba(22, 28, 42, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    height: 100%;
}

/* Hover: Amplified Glass Glow & Force Elevation Stack Layer */
.project-card:hover {
    transform: translateY(-6px);
    background: rgba(22, 28, 42, 0.6);
    border-color: rgba(0, 242, 254, 0.4);
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.15),
        0 12px 40px rgba(0, 0, 0, 0.6);
    position: relative;
    /* Essential companion parameter for active z-index stacking */
    z-index: 10;
    /* Pops active card to rendering layer above text borders or indicators */
}

.card-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 75%;
    background: rgba(255, 255, 255, 0.03);
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.card-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .card-image-wrapper img {
    transform: scale(1.04);
}

.card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
    gap: 12px;
}

.card-title {
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.4;
    color: #ffffff;
    letter-spacing: -0.2px;
}

.view-btn {
    background: rgba(0, 242, 254, 0.1);
    border: 1px solid rgba(0, 242, 254, 0.3);
    color: #00f2fe;
    padding: 6px 14px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    text-shadow: 0 0 4px rgba(0, 242, 254, 0.3);
}

.view-btn:hover,
.project-card:hover .view-btn {
    background: #00f2fe;
    color: #070a12;
    border-color: #00f2fe;
    box-shadow: 0 0 12px rgba(0, 242, 254, 0.6);
    text-shadow: none;
}

.card-description {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 16px;
    line-height: 1.5;
}

/* --- Responsive Engine Switcher --- */

/* Mobile & Tablet Interface Views (Under 992px) */
@media (max-width: 991.98px) {
    #projectsCarousel {
        padding: 0 45px;
        /* Sideline breathing window for arrow navigation keys */
        overflow: visible !important;
        /* Force disables frame bounds scissors cuts */
    }

    .projects-responsive-grid {
        overflow: visible !important;
        padding-top: 12px;
        /* Overhead safety margins for card hover lifts */
        margin-top: -12px;
        /* Counterweights top space to lock layout bounds */
    }

    .projects-responsive-grid .carousel-item {
        padding: 8px;
        /* Padding shield ensuring outer shadows remain visible */
        overflow: visible !important;
    }

    /* Glass Neon Slider Arrow Controllers */
    .projects-custom-arrow {
        width: 40px;
        height: 40px;
        background: rgba(22, 28, 42, 0.6);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        top: 50%;
        transform: translateY(-50%);
        opacity: 0.8;
        transition: all 0.3s ease;
        z-index: 11;
        /* Locks arrow buttons slightly above the active z-index 10 card stack */
    }

    .projects-custom-arrow:hover {
        opacity: 1;
        border-color: #00f2fe;
        box-shadow: 0 0 10px rgba(0, 242, 254, 0.4);
    }

    .carousel-control-prev.projects-custom-arrow {
        left: 0;
    }

    .carousel-control-next.projects-custom-arrow {
        right: 0;
    }

    /* Custom Navigation Dot Indicators */
    .custom-projects-dots {
        bottom: -40px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px;
        margin: 0;
    }

    .custom-projects-dots button {
        width: 8px !important;
        height: 8px !important;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.2) !important;
        border: none !important;
        transition: all 0.3s ease !important;
    }

    .custom-projects-dots button.active {
        background-color: #00f2fe !important;
        width: 20px !important;
        border-radius: 6px;
        box-shadow: 0 0 8px rgba(0, 242, 254, 0.8);
    }
}

/* Desktop Grid Form Overrides (992px and up) */
@media (min-width: 992px) {

    /* Disables sliding block mechanisms, laying out columns cleanly into a flat 3-column row */
    .projects-responsive-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 30px !important;
        overflow: visible !important;
        padding-top: 12px;
        /* Desktop overhead protection */
        margin-top: -12px;
    }

    /* Removes native item hidden visibility properties to keep rows flat side-by-side concurrently */
    .projects-responsive-grid .carousel-item {
        display: block !important;
        margin-right: 0 !important;
        width: 100% !important;
        opacity: 1 !important;
        transform: none !important;
        overflow: visible !important;
    }
}

/* ---------------------------------------------------------------------- Project Card Styles ---------------------------------------------------------------------- */


/* .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.dot.active {
    background-color: #00f2fe;
    width: 28px;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.8),
        0 0 20px rgba(0, 242, 254, 0.4);
} */

/* ---------------------------------------------------------------------- PTestimonials Section Styles ---------------------------------------------------------------------- */

/* --- Glassmorphic Testimonial Card Original Design --- */
.testimonial-card {
    background: radial-gradient(circle at 90% 90%, rgba(0, 242, 254, 0.12) 0%, rgba(22, 28, 42, 0.45) 70%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 320px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 242, 254, 0.3);
    box-shadow: 0 0 25px rgba(0, 242, 254, 0.15), 0 20px 50px rgba(0, 0, 0, 0.6);
    position: relative;
    /* Fixed: Coordinates layer rendering anchor */
    z-index: 10;
    /* Fixed: Shifts active hovering layer above components */
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.client-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.star-rating {
    color: #d99642;
    font-size: 0.95rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #cbd5e1;
    font-weight: 400;
    margin-bottom: 28px;
    flex-grow: 1;
}

.card-bottom {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 16px;
}

.footer-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.client-info {
    display: flex;
    flex-direction: column;
}

.client-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
}

.client-handle {
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 2px;
}

/* --- Responsive Engine Switcher --- */

/* Mobile & Tablet Interface Views (Under 992px) */
@media (max-width: 991.98px) {
    #testimonialsCarousel {
        padding: 0 45px;
        /* Clear side window spacing for controller keys */
        overflow: visible !important;
        /* Fixed: Prevents active container frame from shearing expanding components */
    }

    .testimonial-responsive-grid {
        overflow: visible !important;
        padding-top: 12px;
        /* Fixed: Protects transform lifting path against top bounding block cuts */
        margin-top: -12px;
        /* Counterweights top space alignment */
    }

    .testimonial-responsive-grid .carousel-item {
        padding: 8px;
        /* Border buffer keeps dynamic outer neon box-shadow highlights completely intact */
        overflow: visible !important;
    }

    /* Glass Neon Carousel Control Arrows */
    .testimonial-custom-arrow {
        width: 40px;
        height: 40px;
        background: rgba(22, 28, 42, 0.6);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        top: 50%;
        transform: translateY(-50%);
        opacity: 0.8;
        transition: all 0.3s ease;
        z-index: 11;
        /* Locks arrow buttons securely above active hover cards layers */
    }

    .testimonial-custom-arrow:hover {
        opacity: 1;
        border-color: #00f2fe;
        box-shadow: 0 0 10px rgba(0, 242, 254, 0.4);
    }

    .carousel-control-prev.testimonial-custom-arrow {
        left: 0;
    }

    .carousel-control-next.testimonial-custom-arrow {
        right: 0;
    }

    /* Custom Navigation Dot Indicators */
    .custom-testimonial-dots {
        bottom: -40px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px;
        margin: 0;
    }

    .custom-testimonial-dots button {
        width: 8px !important;
        height: 8px !important;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.2) !important;
        border: none !important;
        transition: all 0.3s ease !important;
    }

    .custom-testimonial-dots button.active {
        background-color: #00f2fe !important;
        width: 20px !important;
        border-radius: 6px;
        box-shadow: 0 0 8px rgba(0, 242, 254, 0.8);
    }
}

/* Desktop Flat-Grid Standard Overrides (992px and up) */
@media (min-width: 992px) {

    /* Reverts slider states completely back to your static 3-column configuration rules concurrently */
    .testimonial-responsive-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 24px !important;
        overflow: visible !important;
        padding-top: 12px;
        /* Desktop overhead protection */
        margin-top: -12px;
    }

    /* Inhibits hidden rendering properties so columns show side-by-side cleanly */
    .testimonial-responsive-grid .carousel-item {
        display: block !important;
        margin-right: 0 !important;
        width: 100% !important;
        opacity: 1 !important;
        transform: none !important;
        overflow: visible !important;
    }
}

/* ----------------------------------------------------------------------------------- Testimonial Section END ---------------------------------------------------------------------------- */


/* ----------------------------------------------------------------------------------- Blog Section Styles ---------------------------------------------------------------------------- */
/* --- Base Blog Section Styles --- */
#blog {
    background-color: #0a0b10;
}

/* গ্লাসমরফিজম প্রিমিয়াম ব্লগ কার্ড */
.blog-premium-card {
    background: linear-gradient(180deg, #111526 0%, #08090f 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 18px !important;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}

/* হোভার অ্যানিমেশন এবং অ্যান্টি-ক্লিপিং z-index পপআপ */
.blog-premium-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 240, 255, 0.15) !important;
    box-shadow: 0 15px 30px rgba(0, 240, 255, 0.1);
    position: relative;
    /* z-index সচল করার জন্য আবশ্যক */
    z-index: 10;
    /* হোভার করা কার্ডটিকে পাশের কার্ড ও বর্ডারের উপরে নিয়ে আসবে */
}

/* ইমেজের উপরের ডিসপ্লে বক্স সাইজ ও স্টাইল */
.blog-img-box {
    width: 100%;
    height: 190px;
    background-color: #050609;
    padding: 12px 12px 0 12px;
}

.blog-fake-display {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #141a30, #0a0b12);
    border-radius: 12px !important;
    color: rgba(0, 240, 255, 0.3);
    border: 1px solid rgba(0, 240, 255, 0.05);
}

/* ব্লগ টেক্সট স্টাইল */
.blog-card-title {
    font-size: 1.15rem !important;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.blog-card-excerpt {
    font-size: 0.82rem !important;
    color: #8fa0dd;
    opacity: 0.65;
    line-height: 1.4;
}

/* --- CYAN READ MORE LINK BUTTON --- */
.btn-blog-readmore {
    color: #00f0ff !important;
    font-size: 0.85rem !important;
    font-weight: 600;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
    width: fit-content;
    padding: 2px 0;
    position: relative;
}

.btn-blog-readmore::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #00f0ff;
    box-shadow: 0 0 8px #00f0ff;
    transition: all 0.3s ease;
}

.btn-blog-readmore:hover {
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.6);
    letter-spacing: 0.3px;
}

.btn-blog-readmore:hover::after {
    width: 100%;
}

/* --- Responsive Engine Switcher --- */

/* মোবাইল ও ট্যাবলেট ইন্টারফেস ভিউ (Under 992px) */
@media (max-width: 991.98px) {
    #blogCarousel {
        padding: 0 45px;
        /* কন্ট্রোল অ্যারো বাটনের জন্য দুই পাশে ফাঁকা জায়গা */
        overflow: visible !important;
        /* বুটস্ট্র্যাপের স্লাইডার ফ্রেমকে কার্ডের হোভার ইফেক্ট কাটা থেকে আটকাবে */
    }

    .blog-responsive-grid {
        overflow: visible !important;
        padding-top: 12px;
        /* হোভার করলে কার্ড যেন উপরে সুন্দরভাবে উঠতে পারে তার সেফটি স্পেস */
        margin-top: -12px;
        /* টপ প্যাডিংয়ের ভারসাম্য বজায় রাখার জন্য নেগেটিভ মার্জিন */
    }

    .blog-responsive-grid .carousel-item {
        padding: 8px;
        /* কার্ডের বাইরের গ্লো এবং শ্যাডো যেন কেটে না যায় */
        overflow: visible !important;
    }

    /* কাস্টম গ্লাস নিওন স্লাইডার কন্ট্রোলার */
    .blog-custom-arrow {
        width: 40px;
        height: 40px;
        background: rgba(22, 28, 42, 0.6);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        top: 50%;
        transform: translateY(-50%);
        opacity: 0.8;
        transition: all 0.3s ease;
        z-index: 11;
        /* অ্যারো বাটনগুলোকে হোভার করা কার্ডের লেয়ারের উপরে রাখবে */
    }

    .blog-custom-arrow:hover {
        opacity: 1;
        border-color: #00f2fe;
        box-shadow: 0 0 10px rgba(0, 242, 254, 0.4);
    }

    .carousel-control-prev.blog-custom-arrow {
        left: 0;
    }

    .carousel-control-next.blog-custom-arrow {
        right: 0;
    }

    /* কাস্টম নেভিগেশন ডটস ইন্ডিকেটর */
    .custom-blog-dots {
        bottom: -40px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px;
        margin: 0;
    }

    .custom-blog-dots button {
        width: 8px !important;
        height: 8px !important;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.2) !important;
        border: none !important;
        transition: all 0.3s ease !important;
    }

    .custom-blog-dots button.active {
        background-color: #00f2fe !important;
        width: 20px !important;
        border-radius: 6px;
        box-shadow: 0 0 8px rgba(0, 242, 254, 0.8);
    }
}

/* ডেক্সটপ গ্রিড লেআউট ভিউ (992px এবং তার উপরে) */
@media (min-width: 992px) {

    /* স্লাইডার মোড বন্ধ করে ৩টি কলামের কাস্টম গ্রিড তৈরি করবে */
    .blog-responsive-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 24px !important;
        /* ৩টি কার্ডের ডানে-বামের ইকুয়াল প্রিমিয়াম গ্যাপ */
        overflow: visible !important;
        padding-top: 12px;
        margin-top: -12px;
    }

    /* বুটস্ট্র্যাপের কারোসেল আইটেমের হাইড প্রপার্টি রিমুভ করে একসাথে ৩টি কার্ড ডিসপ্লে করবে */
    .blog-responsive-grid .carousel-item {
        display: block !important;
        margin-right: 0 !important;
        width: 100% !important;
        opacity: 1 !important;
        transform: none !important;
        overflow: visible !important;
    }
}

/* ----------------------------------------------------------------------------------- Blog Section ENDs ---------------------------------------------------------------------------- */


/* ----------------------------------------------------------------------------------- CONTACT SECTION ----------------------------------------------------------------------------------- */
#contact {
    background-color: #0a0b10;
}

/* কন্টাক্ট ফর্ম কন্টেইনার (ডার্ক গ্লাসমরফিজম প্যানেল) */
.contact-premium-form {
    background: linear-gradient(180deg, #121629 0%, #08090f 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 16px !important;
    padding: 35px 25px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

/* ইনপুট বক্সের মেজারমেন্ট ও ইমেজের থিম কালার */
.contact-input {
    background-color: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 10px !important;
    color: #ffffff !important;
    padding: 12px 16px !important;
    font-size: 0.9rem !important;
    font-family: var(--font-secondary);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* প্লেসহোল্ডার টেক্সটের রঙ হালকা ও অস্পষ্ট রাখার জন্য (Exact Match) */
.contact-input::placeholder {
    color: rgba(255, 255, 255, 0.25) !important;
    font-weight: 400;
}

/* ইনপুট বক্সে ক্লিক (Focus) করলে নিওন সায়ান বর্ডার গ্লো হবে */
.contact-input:focus {
    border-color: #00f0ff !important;
    box-shadow: 0 0 12px rgba(0, 240, 255, 0.3), inset 0 0 8px rgba(0, 240, 255, 0.05) !important;
    outline: none;
}

/* মেসেজ টেক্সট-এরিয়ার ফিক্সড হাইট */
.contact-textarea {
    resize: none;
}

/* হোয়াটসঅ্যাপ ইনপুটের ডান পাশের সবুজ আইকন পজিশন */
.contact-whatsapp-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #25d366;
    /* হোয়াটসঅ্যাপ গ্রিন */
    font-size: 1.15rem;
    pointer-events: none;
    opacity: 0.8;
}

/* --- EXACT MATCH: CYAN SEND BUTTON --- */
.btn-contact-send {
    background: #00f0ff !important;
    /* উজ্জ্বল নিওন সায়ান ব্যাকগ্রাউন্ড */
    color: #0a0b10 !important;
    /* ডার্ক টেক্সট কালার */
    font-size: 0.9rem !important;
    font-weight: 700;
    font-family: var(--font-primary);
    padding: 10px 32px !important;
    border-radius: 20px !important;
    /* ওভাল আকৃতির পারফেক্ট রাউন্ডেড বাটন */
    border: none !important;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 240, 255, 0.4);
    display: inline-block;
}

.btn-contact-send:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px #00f0ff, 0 4px 25px rgba(0, 240, 255, 0.6);
    opacity: 0.95;
}

/* ডান পাশের ম্যাপ কন্টেইনার (Exact Match) */
.contact-map-container {
    border-radius: 16px !important;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    min-height: 360px;
    /* ফর্মের হাইটের সাথে সমতা রাখার জন্য */
}

/* ম্যাপের স্যাচুরেশন থিমকে ডার্ক ব্যাকগ্রাউন্ডের সাথে মানানসই করার জন্য (ঐচ্ছিক ফিল্টার) */
.contact-map-container iframe {
    filter: grayscale(0.1) contrast(1.05);
}

/* ----------------------------------------------------------------------------------- CONTACT SECTION END ----------------------------------------------------------------------------------- */


/* ----------------------------------------------------------------------------------- FOOTER SECTION ----------------------------------------------------------------------------------- */
.footer-premium-section {
    background-color: #050609 !important;
    /* ছবির মতো গভীর ডার্ক চারকোল ব্যাকগ্রাউন্ড */
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    font-family: var(--font-secondary);
}

/* কলাম টাইটেল হেডিং স্টাইল */
.footer-title {
    font-size: 1.05rem !important;
    font-weight: 700;
    font-family: var(--font-display);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

/* এঙ্কর লিঙ্কগুলোর তালিকা ও সাইজ */
.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    color: rgba(255, 255, 255, 0.45) !important;
    /* ছবির হালকা অস্পষ্ট টেক্সট রঙ */
    font-size: 0.88rem !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
    display: inline-block;
}

/* হোভার করলে লিঙ্কগুলো নিওন সায়ান কালারে পুশ হবে */
.footer-links-list a:hover {
    color: #00f0ff !important;
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.4);
    transform: translateX(3px);
}

/* --- EXACT MATCH: INLINE NEWSLETTER INPUT --- */
.footer-newsletter-wrapper {
    width: 100%;
    max-width: 280px;
    /* ছবির অনুপাত অনুযায়ী ফিক্সড কম উইডথ */
    display: flex;
    align-items: center;
}

.newsletter-input {
    background-color: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 25px !important;
    /* সম্পূর্ণ ওভাল ক্যাপসুল বক্স */
    color: #ffffff !important;
    padding: 10px 50px 10px 18px !important;
    /* ডানের বাটনের জন্য প্যাডিং সেভ */
    font-size: 0.85rem !important;
    height: 42px;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.2) !important;
    font-style: italic;
}

.newsletter-input:focus {
    border-color: #00f0ff !important;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.2) !important;
    outline: none;
}

/* ইনপুটের ভেতরের ডান কোণায় সেট করা গোল সায়ান বাটন */
.btn-newsletter-submit {
    position: absolute;
    right: 4px;
    width: 34px;
    height: 34px;
    background: #00f0ff !important;
    /* উজ্জ্বল নিоন সায়ান */
    border: none !important;
    border-radius: 50% !important;
    color: #050609 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
}

.btn-newsletter-submit:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px #00f0ff;
}

/* --- EXACT MATCH: SOCIAL MEDIA ICONS --- */
.social-neon-icon-circle {
    width: 32px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.4) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* হোভার করলে আইকন সার্কেল নিওন সায়ান রিংয়ে ব্লিংক করবে */
.social-neon-icon-circle:hover {
    background-color: rgba(0, 240, 255, 0.08);
    border-color: #00f0ff !important;
    color: #00f0ff !important;
    transform: translateY(-2px);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
}

.border-glass-footer {
    border-color: rgba(255, 255, 255, 0.03) !important;
}

.text-muted-footer {
    color: rgba(255, 255, 255, 0.25) !important;
}

/* ----------------------------------------------------------------------------------- FOOTER SECTION ----------------------------------------------------------------------------------- */

/* ==========================================================================
   DEDICATED PRODUCT DETAILS LAYOUT SYSTEM (IMAGE SWAP & GRID COHESION)
   ========================================================================== */

.prod-thumb-vertical-track {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}

.prod-thumb-node {
    width: 70px !important;
    height: 70px !important;
    background: var(--bg-dark-card, rgba(20, 22, 33, 0.65)) !important;
    border: 1px solid var(--border-glass, rgba(255, 255, 255, 0.08)) !important;
    border-radius: 10px !important;
    cursor: pointer !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 6px !important;
    transition: var(--transition-smooth, all 0.4s ease) !important;
}

.prod-thumb-node img {
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    opacity: 0.5;
    transition: opacity 0.3s ease !important;
}

.prod-thumb-node:hover img,
.prod-thumb-node.active-thumb img {
    opacity: 1 !important;
}

.prod-thumb-node.active-thumb {
    border-color: var(--neon-cyan, #00f0ff) !important;
    box-shadow: 0 0 12px rgba(0, 240, 255, 0.35) !important;
}

.prod-main-display-window {
    background: linear-gradient(180deg, #111526 0%, #08090f 100%) !important;
    border: 1px solid var(--border-glass, rgba(255, 255, 255, 0.08)) !important;
    border-radius: 20px !important;
    height: 480px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5) !important;
    padding: 30px !important;
}

.prod-main-display-window img {
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    transition: opacity 0.25s ease-in-out, transform 0.3s ease !important;
}

.prod-sale-badge {
    position: absolute !important;
    top: 20px !important;
    right: 20px !important;
    background: var(--accent-orange, #ff5e00) !important;
    box-shadow: var(--accent-glow, 0 0 15px rgba(255, 94, 0, 0.6)) !important;
    color: #ffffff !important;
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    padding: 4px 12px !important;
    border-radius: 6px !important;
    letter-spacing: 1px !important;
}

.prod-zoom-btn {
    position: absolute !important;
    bottom: 20px !important;
    right: 20px !important;
    background: rgba(0, 0, 0, 0.5) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0.85rem !important;
    cursor: pointer !important;
    transition: var(--transition-smooth, all 0.4s ease) !important;
}

.prod-zoom-btn:hover {
    background: var(--neon-cyan, #00f0ff) !important;
    color: #0a0b10 !important;
    box-shadow: var(--neon-glow, 0 0 15px rgba(0, 240, 255, 0.6)) !important;
}

.prod-core-title {
    font-family: var(--font-display, 'Montserrat', sans-serif) !important;
    font-weight: 800 !important;
    font-size: 2.3rem !important;
    line-height: 1.2 !important;
    margin-bottom: 12px !important;
}

.prod-core-price-range {
    font-family: var(--font-primary, 'Poppins', sans-serif) !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 20px !important;
}

.prod-scope-bullet-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 24px 0 !important;
}

.prod-scope-bullet-list li {
    font-size: 0.9rem !important;
    color: var(--text-muted-custom, #8fa0dd) !important;
    margin-bottom: 10px !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.prod-core-description {
    font-size: 0.92rem !important;
    line-height: 1.6 !important;
    opacity: 0.85 !important;
    margin-bottom: 28px !important;
}

.prod-color-pills-row {
    display: flex !important;
    gap: 12px !important;
    align-items: center !important;
}

.prod-color-dot {
    width: 20px !important;
    height: 20px !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    border: 2px solid transparent !important;
    transition: all 0.25s ease !important;
}

.prod-color-dot.active,
.prod-color-dot:hover {
    transform: scale(1.18) !important;
    border-color: #ffffff !important;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.4) !important;
}

.prod-size-pills-row {
    display: flex !important;
    gap: 8px !important;
    align-items: center !important;
}

.size-pill-node {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid var(--border-glass, rgba(255, 255, 255, 0.08)) !important;
    color: var(--text-muted-custom, #8fa0dd) !important;
    padding: 6px 14px !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    transition: var(--transition-smooth, all 0.4s ease) !important;
    cursor: pointer !important;
}

.size-pill-node:hover,
.size-pill-node.active {
    border-color: var(--neon-cyan, #00f0ff) !important;
    color: #ffffff !important;
    background: rgba(0, 240, 255, 0.05) !important;
    box-shadow: inset 0 0 8px rgba(0, 240, 255, 0.1) !important;
}

.prod-checkout-action-deck {
    display: flex !important;
    gap: 15px !important;
    align-items: center !important;
    margin-top: 35px !important;
}

.prod-qty-stepper-box {
    background: rgba(0, 0, 0, 0.3) !important;
    border: 1px solid var(--border-glass, rgba(255, 255, 255, 0.08)) !important;
    border-radius: 8px !important;
    padding: 4px !important;
    display: inline-flex !important;
    align-items: center !important;
    height: 48px !important;
}

.qty-step-btn {
    background: transparent !important;
    border: none !important;
    color: var(--text-muted-custom, #8fa0dd) !important;
    width: 32px !important;
    height: 32px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 6px !important;
    cursor: pointer !important;
}

.qty-step-btn:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
}

.qty-step-val {
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    min-width: 32px !important;
    text-align: center !important;
}

.btn-add-to-cart-glow {
    background: linear-gradient(135deg, var(--electric-blue, #0052ff), #003cc4) !important;
    border: none !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    font-family: var(--font-primary, 'Poppins', sans-serif) !important;
    height: 48px !important;
    padding: 0 30px !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 15px rgba(0, 82, 255, 0.3) !important;
    transition: var(--transition-smooth, all 0.4s ease) !important;
    cursor: pointer !important;
}

.btn-add-to-cart-glow:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0, 82, 255, 0.5), var(--neon-glow, 0 0 15px rgba(0, 240, 255, 0.6)) !important;
}

.btn-wishlist-glass-node {
    width: 48px !important;
    height: 48px !important;
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid var(--border-glass, rgba(255, 255, 255, 0.08)) !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: var(--transition-smooth, all 0.4s ease) !important;
}

.btn-wishlist-glass-node:hover {
    border-color: var(--accent-orange, #ff5e00) !important;
    color: var(--accent-orange, #ff5e00) !important;
    box-shadow: var(--accent-glow, 0 0 15px rgba(255, 94, 0, 0.6)) !important;
}

/* Responsive Adaptive Split Rule Adjustments */
@media (max-width: 767.98px) {
    .prod-main-display-window { height: 320px !important; }
    .prod-core-title { font-size: 1.75rem !important; }
    .prod-checkout-action-deck { flex-wrap: wrap !important; }
    .btn-add-to-cart-glow { width: 100% !important; order: 3 !important; }
    .prod-qty-stepper-box { flex-grow: 1 !important; justify-content: space-between !important; }
}

