:root {
    --bg-main: #020b19;
    --bg-navbar: rgba(4, 17, 37, 0.95);
    --primary-cyan: #00f0ff;
    --text-white: #ffffff;
    --text-muted: #a0aec0;
    --anim-speed: cubic-bezier(0.4, 0, 0.2, 1);
    /* নতুন লাইট ব্লু ভেরিয়েবল যোগ করা হলো */
    --primary-light-blue: #1ab6ff;
     --bg-black: #0b0c10;
    --card-black: #1f2833;
    --neon-blue: #45f3ff;
    --dark-blue: #0080ff;
       --neon-blue-glow: rgba(0, 240, 255, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--bg-main);
    color: var(--text-white);
    padding-top: 80px;
    /* To prevent overlap with fixed navbar */
}
@media (max-width: 320px) {
    /* ১. মেইন বডি এবং এইচটিএমএল স্ক্রোল লক করা */
    html, body {
        width: 100%;
        overflow-x: hidden; /* ডানপাশের অতিরিক্ত অংশ হাইড করে দেবে */
    }

    /* ২. লটারি ইনফো সাইডের মিনিমাম উইথ কমানো */
   
}

/* 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);
    }
    
}


body {
    background-color: #050505;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

}

/* Position the canvas behind all HTML content */
#grid-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    display: block;
}

/* Example UI overlay */
.content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 80px);
    /* 100vh থেকে নেভবারের 80px বাদ দেওয়া হলো */
    pointer-events: none;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}


/* Base Themes & Variables matching AgileCode vibe */
:root {
    --primary-neon: #00f2fe;
    --secondary-neon: #4facfe;
    --bg-dark: #0d1117;
    --text-white: #ffffff;
    --text-gray: #a0aec0;
    --btn-glow: rgba(0, 242, 254, 0.4);
}

/* Hero Layout */
.hero-section {
    position: relative;
    height: 550px;
    
    display: flex;
    align-items: center;
    padding: 0 10%;
    overflow: hidden;
    z-index: 1;
}

/* Base Container Alignment */
.hero001 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 30px 20px 60px 20px;
    height: 80vh;
    width: 600px;
    box-sizing: border-box;
}

.hero-content {
    width: 100%;
    max-width: 700px;
    z-index: 5;
    text-align: left;
}

/* Typography Hierarchy */
h6.hero-sub {
    font-size: 10px;
    font-weight: 800;
    color: var(--primary-neon); /* Brand identity strong korar jonno */
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px !important;
}

/* Responsive Headline */
.typing-headline {
    font-size: clamp(2rem, 5vw, 3.5rem); /* Mobile, Tablet & Desktop auto-scale hobe */
    color: var(--text-white);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
   
}

.typing-top {
    
    height: 200px;
}
.typing-text {
    color: var(--primary-neon);
    text-shadow: 0 0 15px var(--btn-glow);
        font-weight: 800;
    font-size: 50px;
}

.cursor {
    display: inline-block;
    background-color: var(--primary-neon);
    margin-left: 4px;
    width: 3px;
    animation: blink 0.8s infinite;
}

/* List Content Container */



/* Cursor Blink Animation */
@keyframes blink {
    50% { background-color: transparent; }
}

/* Responsive Media Queries */
@media (max-width: 768px) {
    .hero001 {
        padding: 40px 15px;
        min-height: auto;
        
    }
    
    
}

/* Call to Action Buttons */
.hero-cta {
    display: flex;
    gap: 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-neon), var(--primary-neon));
    color: #000;
    box-shadow: 0 4px 20px var(--btn-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px var(--primary-neon);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--primary-neon);
}

.btn-secondary:hover {
    background: rgba(0, 242, 254, 0.1);
    transform: translateY(-3px);
}

/* 🚗 Side to Middle Van Keyframe Animation */
.van-animation-container {
    position: absolute;
    right: -500px;
    /* স্ক্রিনের বাইরে থেকে শুরু হবে */
    top: 45%;
    transform: translateY(-50%);
    width: 470px;
    z-index: 2;
    pointer-events: none;
    animation: driveIn 1.8s cubic-bezier(0.175, 0.885, 0.32, 1.15) forwards;
    animation-delay: 0.5s;
}

.animated-van {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(0, 242, 254, 0.3));
}

/* Keyframes */
@keyframes driveIn {
    0% {
        right: -500px;
    }

    100% {
        right: 8%;
        /* স্ক্রিনের ডানপাশ থেকে ভেতরে এসে পজিশন নিবে */
    }
}

@keyframes blink {

    0%,
    100% {
        background-color: transparent;
    }

    50% {
        background-color: var(--primary-neon);
    }
}

/* 📱 Extremely Beautiful Mobile Responsiveness */
@media (max-width: 480px) {

    .nav-links {
        background-color: rgba(2, 11, 25, 0.932);
        backdrop-filter: blur(10px);
    }

    .hero-section {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 10px 20px 0px 20px;
        height: 400px;
    }

    .nav-item {
        color: #c5c5c5;
    }

    .hero-content {
        max-width: 100%;
       height: 100px;
    }

    .typing-headline {
        font-size: 24px;
        margin-top: 8px;

    }
  
    .typing-text {
        font-size: 30px;
        
    }
    .type {
        font-size: 14px;
    }

    .hero-sub {
        font-size: 10px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    /* মোবাইলে গাড়িটি লেখার নিচে সুন্দরভাবে সেট হবে */
    .van-animation-container {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 85%;
        margin-top: 40px;
        animation: driveInMobile 1.5s ease forwards;
    }

    .hero001 {
        flex-direction: column;
        width: 100%;
        padding-top: 80px;

    }

    /* h1 {
    font-size: 3rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
} */

}
@media (max-width: 350px) {
    .van-animation-container {
        margin-top: 63px;
    }
}

@keyframes driveInMobile {
    0% {
        transform: translateX(200px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}


/* h1 {
    font-size: 3rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
} */




@media (width: 768px) {
    .typing-headline {
        font-size: 35px;
        margin-top: -60px;
    }

    .van-animation-container {
        margin-top: 100px;
        transform: none;
        top: 200px;
        right: 160px !important;
        animation: driveInMobile 1.5s ease forwards;
    }
}
@media (width: 320px) {
    .hero001 {
        padding-top: 70px;
    }
    .hero-content {
        height: 114px;
    }
    .hero-section{
        height: 400px;
    }
}


@media (width: 1024px) {
    .typing-headline {
        font-size: 50px;
        margin-top: -200px;
        width: 800px;
    }

    .van-animation-container {
        margin-top: 22%;
        transform: none;
        top: 200px;
        right: 19% !important;
        animation: driveInMobile 1.5s ease forwards;
        width: 65%;
    }
}

















/* সার্চ সেকশন মেইন কন্টেইনার */
/* সার্চ সেকশন মেইন কন্টেইনার */
.search-section {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    background-color: var(--bg-main);
}

/* ইমেজের মতো পুরো বক্সের ব্যাকগ্রাউন্ড কার্ড */
.search-card-wrapper {
    width: 100%;
    max-width: 900px;
    background: rgba(4, 17, 37, 0.4);
    border: 1px solid rgba(0, 240, 255, 0.15);
    border-radius: 24px;
    padding: 40px;
    box-sizing: border-box;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* টপ হেডার স্টাইল */
.search-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
}

.header-dot {
    width: 16px;
    height: 16px;
    background: var(--primary-cyan);
    border-radius: 6px;
    box-shadow: 0 0 10px var(--neon-blue);
}

.search-header h2 {
    color: var(--text-white);
    font-size: 24px;
    font-weight: 400;
    margin: 0;
}

.search-header h2 strong {
    font-weight: 700;
    color: var(--neon-blue);
}

/* বডি গ্রিড লেআউট (বাম পাশে সার্চ, ডানপাশে হেল্প) */
.search-body-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.search-main-area {
    flex: 1;
}

/* ইন্সট্রাকশন টেক্সট */
.search-instruction {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.search-instruction::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary-light-blue);
    border-radius: 50%;
}
.search-instruction strong {
    color: var(--text-white);
    font-weight: 600;
}

/* ইনপুত বক্স কন্টেইনার */
.search-box-container {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
   
}

/* ১. ব্রাউজারকে স্মুথলি অ্যাঙ্গেল অ্যানিমেশন করার জন্য রেডি করা */
@property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

/* সার্চ ইনপুট ফিল্ড (আপনার কোড সম্পূর্ণ অপরিবর্তিত) */
.search-box-container input {
    width: 100%;
    padding: 16px 65px 16px 24px;
    border-radius: 16px;
    border: 1.5px solid rgba(0, 240, 255, 0.3);
    background: rgba(2, 11, 25, 0.8);
    color: var(--text-white);
    font-size: 16px;
    outline: none;
    box-sizing: border-box;
    transition: all 0.3s var(--anim-speed);
    
    /* ফিক্স: ইনপুটকে ওপরে রাখার জন্য */
    position: relative;
    background: transparent !important;
    z-index: 2;
}  

/* অ্যানিমেশন ট্র্যাকিং সেট করার জন্য প্যারেন্ট কন্টেইনার */
.search-box-container {
    position: relative;
    overflow: hidden;
    border-radius: 16px; 
    z-index: 1;
    background: rgba(2, 11, 25, 0.8);
}

/* নিয়ন লাইনের ইফেক্ট (ফিক্সড: ১০০% স্মুথ এবং নো-কাঁপাকাঁপি) */
.search-box-container::before {
    content: '';
    position: absolute;
    /* পুরো বক্স ঘোরানোর দরকার নেই, তাই সাইজ একদম পারফেক্ট ফিট (১০০%) */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* এখানে --angle ভ্যারিয়েবলটি ব্যবহার করা হয়েছে যা মসৃণভাবে ঘুরবে */
    background: conic-gradient(from var(--angle), transparent 50%, #00f0ff 90%, #00f0ff 100%); 
    animation: neon-border-smooth 6s linear infinite; /* ৪ সেকেন্ড দেওয়া হয়েছে নিখুঁত স্মুথনেসের জন্য */
    z-index: -1;
}

/* ইনপুট বক্সের ভেতরের অংশ মাস্কিং */
.search-box-container::after {
    content: '';
    position: absolute;
    inset: 1px; 
    background: rgba(2, 11, 25, 1); 
    border-radius: 14px;
    z-index: 0;
}

/* নতুন ও আধুনিক স্মুথ অ্যানিমেশন কি-ফ্রেম */
@keyframes neon-border-smooth {
    0% {
        --angle: 0deg;
    }
    100% {
        --angle: 360deg;
    }
}


/* ফোকাস করলে গ্লো করবে */
.search-box-container input:focus {
    border-color: var(--neon-blue);
    background: var(--bg-black);
    box-shadow: 0 0 20px var(--neon-blue-glow),
                inset 0 0 10px rgba(0, 240, 255, 0.05);
}

.search-box-container input::placeholder {
    color: var(--text-muted);
    opacity: 0.4;
}

/* ইনপুট বক্সের ভেতরের সার্চ বাটন */
.search-action-btn {
    position: absolute;
    right: 8px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: none;
    background: rgba(26, 182, 255, 0.1);
    color: var(--primary-light-blue);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.search-box-container input:focus + .search-action-btn {
    background: var(--primary-cyan);
    color: var(--bg-main);
    box-shadow: 0 0 15px var(--primary-cyan);
}

.search-action-btn:hover {
    transform: scale(1.03);
}

/* ফুটার টেক্সট */
.search-footer-text {
    color: var(--text-muted);
    font-size: 14px;
    margin: 24px 0 0 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.search-footer-text::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary-light-blue);
    border-radius: 50%;
}
.search-footer-text strong {
    color: var(--text-white);
    font-weight: 600;
}

/* ------------------------------------
   ডানপাশের "Find my model" উইজেট
------------------------------------ */
.find-model-widget {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-width: 120px;
    cursor: pointer;
    padding: 15px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.find-model-widget:hover {
    background: rgba(0, 240, 255, 0.03);
}
/* Color root reference applied directly */
.model-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 11, 25, 0.85); /* --bg-main based transparency */
    backdrop-filter: blur(8px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s var(--anim-speed);
}

.model-modal-overlay.open {
    display: flex;
    opacity: 1;
}

.model-modal-content {
    background: var(--card-black);
    border: 1px solid var(--neon-blue);
    box-shadow: 0 0 20px var(--neon-blue-glow);
    width: 90%;
    max-width: 950px;
    border-radius: 16px;
    padding: 30px;
    position: relative;
    color: var(--text-white);
}

.model-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 30px;
    cursor: pointer;
    transition: color 0.2s ease;
}
.model-modal-close:hover {
    color: var(--primary-cyan);
}

/* Tabs Design */
.os-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}
.tab-btn {
    background: transparent;
    border: 2px solid var(--text-muted);
    color: var(--text-white);
    padding: 8px 24px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s var(--anim-speed);
}
.tab-btn.active {
    background: var(--primary-cyan);
    border-color: var(--primary-cyan);
    color: var(--bg-main);
    box-shadow: 0 0 10px var(--neon-blue-glow);
}

.modal-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 25px;
    color: var(--text-white);
}

/* Grid layout for 3 steps responsive */
.steps-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media(max-width: 768px) {
    .steps-wrapper {
        grid-template-columns: 1fr;
        max-height: 60vh;
        overflow-y: auto;
    }
}

.step-card {
    background: rgba(4, 17, 37, 0.5); /* --bg-navbar match */
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    flex-direction: column;
}

.step-badge {
    color: var(--primary-light-blue);
    font-weight: bold;
    font-size: 13px;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.step-text {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 15px;
    height: 45px; /* Text uniformity */
}

.step-img-box {
    background: #0b0c10;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(69, 243, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4/3;
}

.step-img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Trigger Button Custom Decor */
.guide-trigger-btn {
    background: transparent;
    border: 1px dashed var(--primary-light-blue);
    color: var(--primary-cyan);
    padding: 6px 12px;
    cursor: pointer;
    border-radius: 4px;
}
@media(max-width: 380px) {
    .model-modal-content {
        padding: 20px;
    }
}
@media(max-width: 320px) {
    .model-modal-content {
        padding: 12px;
    }
}
/*ei obdi*/
.phone-illustration {
    position: relative;
    display: inline-block;
}

.phone-illustration svg {
    filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.2));
    transition: filter 0.3s ease;
}

.find-model-widget:hover .phone-illustration svg {
    filter: drop-shadow(0 0 15px var(--primary-cyan));
}

/* নীল প্রশ্নবোধক ব্যাজ */
.help-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--dark-blue);
    color: var(--text-white);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 11px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--bg-main);
}

.find-model-widget span {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    transition: color 0.3s ease;
}

.find-model-widget:hover span {
    color: var(--text-white);
}

/* ------------------------------------
   সাজেশন প্যানেল (ফাকা ফ্রেম - আপনার JS এর জন্য)
------------------------------------ */
.recent-devices-panel {
    display: none; /* আপনার JS যখন একটিভ করবে */
    position: absolute;
    left: 40px;
    bottom: -10px;
    transform: translateY(100%);
    width: calc(100% - 80px);
    max-width: 820px;
    background: rgba(2, 11, 25, 0.98);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    border: 1px solid rgba(26, 182, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    z-index: 999;
    padding: 20px;
    box-sizing: border-box;
}

/* রেস্পন্সিভ ব্রেকপয়েন্ট (মোবাইলের জন্য লেআউট ঠিক করা) */
@media (max-width: 768px) {
    .search-body-content {
        flex-direction: column-reverse;
        gap: 30px;
        text-align: left;
        align-items: flex-start;
    }
    .search-card-wrapper {
        padding: 25px;
    }
    .find-model-widget {
        flex-direction: row;
        width: 100%;
        justify-content: flex-start;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-bottom: 20px;
        border-radius: 0;
    }
    .recent-devices-panel {
        left: 20px;
        width: calc(100% - 40px);
    }
}

/* অ্যানিমেটেড পালস ডট হেডার */
.cyber-search-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 35px;
}

.cyber-badge-indicator {
    position: relative;
    width: 12px;
    height: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pulse-core {
    width: 12px;
    height: 12px;
    background: var(--primary-cyan);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 12px var(--neon-blue);
}

.pulse-ring {
    position: absolute;
    width: 24px;
    height: 24px;
    border: 2px solid var(--primary-cyan);
    border-radius: 50%;
    opacity: 0;
    animation: cyberPulse 2s infinite ease-out;
}

@keyframes cyberPulse {
    0% { transform: scale(0.5); opacity: 0.8; }
    100% { transform: scale(1.8); opacity: 0; }
}

.cyber-search-header h2 {
    color: var(--text-white);
    font-size: 26px;
    font-weight: 300;
    margin: 0;
    letter-spacing: -0.5px;
}

.cyber-search-header h2 strong {
    font-weight: 700;
    color: var(--neon-blue);
    text-shadow: 0 0 20px var(--neon-blue-glow);
}

/* কন্টেন্ট লেবেল টেক্সট */
.cyber-label-text {
    color: var(--text-muted);
    font-size: 14.5px;
    margin: 0 0 20px 0;
    letter-spacing: 0.3px;
}

.cyber-label-text span {
    color: var(--text-white);
    font-weight: 600;
}






/* ডাইনামিক ব্র্যান্ড ব্যাজ স্টাইল */
/* ব্র্যান্ড ব্যাজ (নিওন থিম ম্যাচিং) */
.brand-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px; /* সামান্য বেশি রাউন্ডেড করা হলো মডার্ন লুকের জন্য */
    letter-spacing: 0.8px;
    text-transform: uppercase;
    background: rgba(0, 240, 255, 0.08); /* আপনার --primary-cyan এর হালকা শেড */
    color: var(--primary-cyan); /* সাইয়ান কালার */
    border: 1px solid rgba(0, 240, 255, 0.2);
    transition: all 0.25s ease;
}

/* ডিভাইস আইটেম হোভার করলে ব্যাজের ইফেক্ট */
.device-item:hover .brand-badge {
    background: var(--primary-cyan);
    color: var(--bg-main);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
}

/* ডিভাইসের নাম */
.device-name {
    color: var(--text-white); /* ডার্ক ব্যাকগ্রাউন্ডে ক্লিয়ার টেক্সট */
    font-size: 15px;
    font-weight: 500;
    transition: color 0.25s ease;
}

/* হোভার করলে ডিভাইসের নাম নিওন ব্লু হবে */
.device-item:hover .device-name {
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue-glow);
}

/* নো ডাটা মেসেজ (ক্লিন ও মিউটেড) */
.no-result {
    color: var(--text-muted);
    font-size: 14px;
    text-align: center;
    padding: 20px 0; /* ভেতরের স্পেসিং কিছুটা বাড়ানো হলো */
    opacity: 0.6;
    letter-spacing: 0.5px;
}
/* প্রতিটি ডিভাইস রো (Row) এর কাস্টম স্টাইল */
.device-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
}

/* মাউস নিলে রো-এর রেসপন্স */
.device-item:hover {
    background: rgba(0, 240, 255, 0.04);
    border-color: rgba(0, 240, 255, 0.15);
    transform: translateX(4px); /* হালকা ডানদিকে সরবে */
}














/* ==========================================================================
   EXCLUSIVE HHERO SECTION STYLES (BLACK & BLUE THEME)
   ========================================================================== */
.hhero-section {
    position: relative;
    width: 100%;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 80px 10%;
    box-sizing: border-box;
   
    overflow: hidden;
}

/* Background Glowing Effect Vector */
.hhero-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
  
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.hhero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  
    z-index: 2;
}

.hhero-content {
    max-width: 700px;
    z-index: 3;
    position: relative;
    text-align: left;
}

.hhero-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

/* Bright Neon Blue Text Highlighter */
.hhero-content .text-blue {
    color: #00d2ff;
    text-shadow: 0 0 20px rgba(0, 210, 255, 0.5);
    display: inline-block;
}

.hhero-content p {
    font-size: 1.15rem;
    color: #a0aec0; /* Soft High-contrast Gray */
    line-height: 1.7;
    margin-bottom: 40px;
    font-weight: 400;
}

/* Premium Explore Button Custom Style */
.bbtn-primary {
    background: linear-gradient(45deg, #0070f3, #00d2ff);
    color: #ffffff !important;
    padding: 15px 38px;
    text-decoration: none !important;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 20px rgba(0, 210, 255, 0.35);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bbtn-primary i {
    font-size: 0.95rem;
    transition: transform 0.4s ease;
}

/* Button Hover Dynamic Feed */
.bbtn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 210, 255, 0.6);
    background: linear-gradient(45deg, #00d2ff, #0070f3);
}

.bbtn-primary:hover i {
    transform: rotate(20px) scale(1.2);
}

/* JavaScript Based Initial State Animation */
.hhero-content.reveal {
    opacity: 0;
    transform: translateY(60px) scale(0.98);
    transition: opacity 0.9s cubic-bezier(0.25, 1, 0.5, 1), 
                transform 0.9s cubic-bezier(0.25, 1, 0.5, 1);
}

/* JavaScript Based Trigger Active Class */
.hhero-content.reveal.active-hhero {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Mobile Devices Optimize */
@media (max-width: 768px) {
    .hhero-section {
        padding: 60px 6%;
        justify-content: center;
        min-height: 60vh;
    }
    .hhero-content {
        text-align: center;
    }
    .hhero-content h1 {
        font-size: 2.2rem;
    }
    .hhero-content p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    .bbtn-primary {
        padding: 13px 32px;
        font-size: 0.95rem;
    }
}
















/* ম্যানুয়াল চুজ সেকশন */
/* ম্যানুয়াল চয়েস মেইন সেকশন */
.manual-choose-section {
    padding: 80px 20px;
    text-align: center;
    background-color: var(--bg-main);
    position: relative;
}

/* টাইটেল হেডার ও দুইপাশের সাই-ফাই লাইন ইন্ডিকেটর */
.manual-section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto 45px auto;
}

.cyber-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.25), transparent);
}

.section-title {
    color: var(--text-white);
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin: 0;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

/* ক্যাটাগরি গ্রিড লেআউট */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

/* সিঙ্গেল ক্যাটাগরি কার্ড স্টাইল (আল্ট্রা-মডার্ন কার্ড) */
.category-card {
    background: rgba(4, 17, 37, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 240, 255, 0.1);
    border-radius: 20px;
    padding: 30px 20px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: relative;
    overflow: hidden;
    transition: all 0.35s var(--anim-speed);
}

/* কার্ড হোভার ইফেক্ট */
.category-card:hover {
    border-color: var(--primary-cyan);
    background: rgba(4, 17, 37, 0.7);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 
                0 0 20px var(--neon-blue-glow);
    transform: translateY(-5px);
}

/* হোভার করলে নিচের বর্ডারে হালকা গ্লোয়িং লাইন আসার জন্য */
.category-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-cyan), transparent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.category-card:hover::after {
    transform: scaleX(1);
}

/* ক্যাটাগরি ইমেজ/আইকন */
.category-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.15));
    transition: transform 0.3s ease, filter 0.3s ease;
}
.category-card:hover .category-img {
    transform: scale(1.08);
    filter: drop-shadow(0 0 12px var(--primary-cyan));
}

/* ক্যাটাগরি নেম টেক্সট */
.category-name {
    color: var(--text-muted);
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}
.category-card:hover .category-name {
    color: var(--text-white);
}

/* ------------------------------------
   ক্লিক করার পর ওপেন হওয়া ব্র্যান্ড প্যানেল
------------------------------------ */
.brands-display-panel {
    max-width: 900px;
    margin: 40px auto 0 auto;
    background: rgba(2, 11, 25, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(26, 182, 255, 0.2);
    border-radius: 20px;
    padding: 25px 30px;
    text-align: left;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
    animation: panelSlideUp 0.4s var(--anim-speed);
}

@keyframes panelSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.panel-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(26, 182, 255, 0.1);
    padding-bottom: 14px;
    margin-bottom: 20px;
}

.panel-title-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mini-pulse-dot {
    width: 6px;
    height: 6px;
    background: var(--neon-blue);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--neon-blue);
}

#brands-panel-title {
    color: var(--primary-light-blue);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin: 0;
}

/* প্যানেল বন্ধ করার ক্লোজ বাটন */
.close-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 20px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    line-height: 1;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    transform: rotate(90deg);
}

/* ব্র্যান্ড গ্রিড ও সিঙ্গেল কাস্টম ব্র্যান্ড কার্ড */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
}

.brand-card {
    background: rgba(4, 17, 37, 0.5);
    border: 1px solid rgba(26, 182, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    cursor: pointer;
    color: var(--text-muted);
    font-size: 14.5px;
    font-weight: 500;
    transition: all 0.25s ease;
}

.brand-card:hover {
    background: rgba(0, 240, 255, 0.05);
    border-color: var(--neon-blue);
    color: var(--text-white);
    box-shadow: 0 5px 15px rgba(0, 240, 255, 0.1);
    transform: translateY(-2px);
}

/* নিচের সাহায্যকারী টেক্সট */
.help-text {
    color: var(--text-muted);
    font-size: 13.5px;
    margin-top: 40px;
    letter-spacing: 0.3px;
    opacity: 0.8;
}

.terminal-sym {
    color: var(--primary-cyan);
    font-family: monospace;
    margin-right: 4px;
    font-weight: bold;
}

.help-text a {
    color: var(--primary-light-blue);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: color 0.2s ease;
}

.help-text a:hover {
    color: var(--neon-blue);
}

/* আন্ডারলাইন অ্যানিমেশন লিঙ্ক */
.help-text a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--neon-blue);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.help-text a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* রেস্পন্সিভ মোবাইল লেআউট */
@media (max-width: 600px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr); /* মোবাইলে ২টি করে কার্ড পাশাপাশি দেখাবে */
        gap: 16px;
    }
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .manual-choose-section {
        padding: 50px 16px;
    }
}

/* মোবাইল স্ক্রিনের জন্য মিডিয়া কোয়েরি (ক্যাটাগরি এবং ব্র্যান্ড ২টি করে পাশাপাশি দেখাবে) */
@media (max-width: 480px) {
    /* ক্যাটাগরি গ্রিড ২ কলাম */
    .categories-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
    }

    .category-card {
        padding: 15px 10px;
    }
    
    .category-name {
        font-size: 14px;
    }

    /* ব্র্যান্ড গ্রিড ২ কলাম */
    .brands-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px; /* মোবাইলের জন্য গ্যাপ কিছুটা কমানো হলো */
    }

    .brand-card {
        padding: 12px 8px; /* কার্ডের ভেতরের স্পেস অপটিমাইজ করা হলো */
        font-size: 13px; /* লেখা যেন ২ লাইনে না ভেঙে যায় */
    }
    .tag {
        font-size: 8px !important;
            padding: 6px 11px !important;
    }
    .time-routine-btn {
        margin-top: 20px;
    }
}












/* Careers Glimpse Main Section */
/* Careers Glimpse Main Section Reset Boundaries */
.careers-glimpse-section {
    background-color: #000000;
    position: relative;
    padding: 120px 24px;
    overflow: hidden;
    width: 100%;
}

/* Central Deep Electrified Radial Ambient Background Light Glow */
.glimpse-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.14) 0%, rgba(0,0,0,0) 65%);
    filter: blur(120px);
    pointer-events: none;
    z-index: 1;
}

.glimpse-container {
    max-width: 800px; /* Reduced width to make centered text look elegant and readable */
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Centered Column Structural Core Flex Container */
.glimpse-layout-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Upper Status Interactive Badge Element */
.glimpse-badge {
    color: #3b82f6;
    background-color: #172554;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid rgba(59, 130, 246, 0.25);
    display: inline-block;
    margin-bottom: 24px;
}

/* Premium Heavy Weight Core Typography Heading */
.glimpse-heading {
    color: #ffffff;
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 20px;
}

/* Handle Screen Resizes Intelligently For Title Line Breakdown */
@media (max-width: 640px) {
    .glimpse-heading {
        font-size: 2.4rem;
    }
}

/* Description Text Line Box */
.glimpse-text {
    color: #a1a1aa;
    font-size: 1.15rem;
    line-height: 1.65;
    max-width: 640px;
    margin-bottom: 32px;
}

/* High Contrast Structural Highlights Flex Array Row */
.glimpse-benefits-row {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.benefit-item {
    background-color: #09090b;
    border: 1px solid #27272a;
    padding: 12px 24px;
    border-radius: 12px;
    color: #e4e4e7;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    transition: border-color 0.3s ease;
}

/* Subtlest Micro Interaction Shift on Features Row Elements */
.benefit-item:hover {
    border-color: rgba(59, 130, 246, 0.4);
}

/* Action Trigger Placement Container */
.glimpse-action-wrapper {
    width: auto;
}

/* Aesthetic Electrified Royal Blue Main Button Configuration */
.portal-gateway-btn {
    background: linear-gradient(to right, #2563eb, #1d4ed8);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.25);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-arrow-icon {
    transition: transform 0.25s ease;
}

/* Micro-Interaction Button States Animations Curves Rules */
.portal-gateway-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.5);
}

.portal-gateway-btn:hover .btn-arrow-icon {
    transform: translateX(4px);
}

.portal-gateway-btn:active {
    transform: translateY(-1px);
}
/* Core typography layout settings */
.glimpse-heading {
    color: #ffffff;
    font-size: 3.5rem; /* Matches the prominent layout of your hero image */
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 24px;
}

/* Electrified Blue Gradient and Neon Glow Properties */
.electric-blue-text {
    background: linear-gradient(to right, #00d2ff, var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
    
    /* Adds a subtle radiant light layer behind the text characters */
    text-shadow: 0 0 30px rgba(0, 210, 255, 0.45);
}

/* Fluid design breakpoint safety updates for mobile devices */
@media (max-width: 640px) {
    .glimpse-heading {
        font-size: 2.5rem;
    }
}
@media (max-width: 380px) {
    .glimpse-heading {
        font-size: 2rem;
    }
    .glimpse-text {
        font-size: 0.875rem;
    }
    .portal-gateway-btn {
   
    font-weight: 500;
    font-size: 0.875rem;

}
}













/* Section Wrapper */
/* Slim Banner Container */
.mini-lottery-banner {
    background: var(--bg-black);
    border-left: 2px solid var(--primary-light-blue);
    border-right: 2px solid var(--primary-light-blue);
    padding: 20px;
    margin: 40px auto;
    max-width: 80%;
    border-radius: 16px;
    box-shadow: 0 0 25px rgba(69, 243, 255, 0.1);
}
@media (max-width: 480px) {
    .mini-lottery-banner {
        max-width: 100%;
        border-top: 2px solid var(--primary-light-blue);
    border-bottom: 2px solid var(--primary-light-blue);
    border-left: 0px solid var(--primary-light-blue);
    border-right: 0px solid var(--primary-light-blue);
    }
    .mini-lottery-wrapper {
        gap: 0px !important;
    }
}


.mini-lottery-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap; /* Mobile friendly build */
}

/* Info Side Styling */
.lottery-info-side {
    flex: 1.5;
    min-width: 280px;
    text-align: center;
 
}

.mini-badge {
    color: var(--primary-light-blue);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    align-items: center;
    justify-content: center;
}

.lottery-info-side h2 {
    font-size: 24px;
    margin: 0 0 5px 0;
    font-weight: 700;
}

.lottery-info-side p {
    color: var(--text-gray);
    font-size: 13px;
    margin: 0 0 10px 0;
    justify-content: center;
}

.lottery-info-side p span {
    color: var(--neon-blue);
    font-weight: bold;
}

/* Inline Tiny Timer */
.mini-timer {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    justify-content: center;
}

.timer-label {
    color: var(--text-gray);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
}

.timer-digits {
    color: var(--neon-blue);
    font-weight: bold;
    text-shadow: 0 0 8px rgba(69, 243, 255, 0.4);
}

/* Prizes Row Styling */
.prizes-ticker-side {
    flex: 2;
    overflow: hidden;
    min-width: 300px;
    padding-top: 10px;
}

.ticker-track {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mini-prize-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.mini-prize-item.mega {
    border-color: rgba(69, 243, 255, 0.3);
    background: rgba(69, 243, 255, 0.05);
}

.mini-prize-item i {
    color: var(--neon-blue);
    font-size: 18px;
}

.mini-prize-item span {
    font-size: 12px;
    font-weight: 500;
}

.mini-prize-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 12px rgba(69, 243, 255, 0.2);
    border-color: var(--neon-blue);
}

/* Small Neon Button */
.lottery-action-side {
    flex: 0.5;
    text-align: right;
    min-width: 140px;
}

.mini-neon-btn {
    display: inline-block;
    padding: 12px 24px;
    color: var(--bg-black);
    background: var(--primary-light-blue);
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 8px;
   
    transition: all 0.3s ease;
}

.mini-neon-btn:hover {
    box-shadow: 0 0 25px rgba(69, 243, 255, 0.8);
    transform: scale(1.05);
}

/* Responsive adjustment for clean view */
@media (max-width: 768px) {
    .mini-lottery-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .lottery-info-side, .prizes-ticker-side, .lottery-action-side {
        text-align: center;
        width: 100%;
    }
    .mini-timer {
        justify-content: center;
    }
    .ticker-track {
        flex-wrap: wrap;
    }
}
/* 350px এবং তার নিচের স্ক্রিনের জন্য বর্ডার অ্যাডজাস্টমেন্ট */
@media (max-width: 350px) {
    .mini-lottery-banner {
        border-left: 0px solid var(--primary-light-blue);
        border-right: 0px solid var(--primary-light-blue);
        border-top: 2px solid var(--primary-light-blue);
        border-bottom: 2px solid var(--primary-light-blue);
    }
}

/* ৩২০ পিক্সেল এবং তার চেয়ে ছোট স্ক্রিনের জন্য এক্সট্রা রেসপনসিভ কোড */
@media (max-width: 320px) {
    /* ব্যানারের ভেতরের প্যাডিং এবং চারপাশের মার্জিন কমানো */
    .mini-lottery-banner {
        max-width: 100%;
        padding: 15px 10px; /* ডানে-বামে প্যাডিং কমিয়ে ১০ পিক্সেল করা হলো */
        margin: 20px auto;  /* গ্যাপ কমানো হলো */
    }

    /* ইনফো সাইডের টেক্সট সাইজ ছোট করা */
    .lottery-info-side {
        min-width: 100%; /* ফ্লেক্স বক্স যেন পুরো জায়গা নেয় */
    }

    .lottery-info-side h2 {
        font-size: 18px; /* ফন্ট ২৪ পিক্সেল থেকে কমিয়ে ১৮ করা হলো */
    }

    .lottery-info-side p {
        font-size: 11px; /* ডেসক্রিপশন ১১ পিক্সেল করা হলো */
    }

    /* টাইমার এবং টিকিট ট্রাকের ফ্লেক্স বক্স অ্যাডজাস্টমেন্ট */
    .mini-timer {
        font-size: 12px;
        gap: 5px;
    }
    .mini-prize-item {
        padding: 8px 10px;
    
    gap: 6px;
    }
    .mini-neon-btn {
        padding: 9px 20px;
    margin-top: 10px;
    }
    /* প্রাইজ টিকারে ফ্লেক্স র‍্যাপ দেওয়া হলো যাতে আইটেমগুলো স্ক্রিনের বাইরে চলে না যায় */
  
}










/* ---- Location Section Styling ---- */
.location-section {
    padding: 80px 20px;
     /* Full Black Background */
    
}

.location-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.map-box, .areas-box {
    background: var(--bg-black) ; /* Darker Card Background */
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.23);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

/* Hover করলে হালকা নিয়ন গ্লো দিবে */
.map-box:hover, .areas-box:hover {
    border-color: rgba(0, 240, 255, 0.4);
    box-shadow: 0 10px 30px var(--neon-blue-glow);
}

.map-box h2, .areas-box h2 {
    color: var(--text-white);
    margin-bottom: 15px;
    font-size: 26px;
    letter-spacing: 0.5px;
}

/* হেডিং এর নিচে ছোট নিয়ন দাগ */
.map-box h2::after, .areas-box h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--neon-blue);
    margin-top: 8px;
    box-shadow: 0 0 8px var(--neon-blue);
}

.address {
    color: var(--text-muted);
    margin-bottom: 12px;
    font-size: 16px;
}

/* Margate Center Point Badge */
.center-badge {
    display: inline-block;
    background-color: rgba(0, 240, 255, 0.1);
    color: var(--neon-blue);
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 25px;
    border: 1px solid rgba(0, 240, 255, 0.3);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.1);
}

.map-responsive {
    overflow: hidden;
    border-radius: 12px;
    position: relative;
    height: 280px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* গুগল ম্যাপের ওপর হালকা ডার্ক ওভারলে (অপশনাল, দেখতে সুন্দর লাগে) */
.map-responsive iframe {
    filter: invert(90%) hue-rotate(180deg) contrast(120%); /* ম্যাপটিকে ডার্ক থিম বানানোর ট্রিক */
}

.subtitle {
    color: var(--text-muted);
    margin-bottom: 25px;
}

/* Service Area Tags Layout */
.area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.tag {
    background-color: rgba(255, 255, 255, 0.05);
    color: #e2e8f0;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* নরমাল ট্যাগে হোভার করলে নিয়ন গ্লো হবে */
.tag:hover {
    background-color: transparent;
    color: var(--neon-blue);
    border-color: var(--neon-blue);
    box-shadow: 0 0 12px var(--neon-blue-glow);
    transform: translateY(-2px);
}

/* Margate Center Tag - এটি সবসময় গ্লো করবে */
.tag.highlight {
    background-color: transparent;
    color: var(--neon-blue);
    border-color: var(--neon-blue);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
    font-weight: bold;
}

.call-to-action {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-style: italic;
    color: var(--text-muted);
}

/* ---- 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;
    }
}


















/* ---- Schedule styling (Location Section এর জন্য নতুন) ---- */
.schedule {
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 14px;
}
.schedule i {
    color: var(--neon-blue);
    margin-right: 5px;
}
.schedule span {
    color: #ffc107; /* Status টাকে আলাদা হাইলাইট করতে হলুদ কালার */
    font-weight: 600;
}

/* ---- 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);
}
/* স্ট্যাটাস ব্যাজ (Open/Closed) */
.status-badge {
    padding: 3px 10px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 13px;
    margin-right: 10px;
    text-transform: uppercase;
}
.status-open {
    background-color: rgba(0, 255, 102, 0.1);
    color: #00ff66;
    border: 1px solid rgba(0, 255, 102, 0.3);
    box-shadow: 0 0 10px rgba(0, 255, 102, 0.2);
}
.status-closed {
    background-color: rgba(255, 0, 85, 0.1);
    color: #ff0055;
    border: 1px solid rgba(255, 0, 85, 0.3);
}

/* See Time Routine Neon Button */
.time-routine-btn {
    background: transparent;
    color: var(--neon-blue);
    border: 1px solid var(--neon-blue);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 8px var(--neon-blue-glow);
}
.time-routine-btn:hover {
    background: var(--neon-blue);
    color: #000;
    box-shadow: 0 0 15px var(--neon-blue);
}
.time-routine-btn i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}
.time-routine-btn.active i {
    transform: rotate(180deg); /* ক্লিক করলে তীর চিহ্ন উল্টে যাবে */
}

/* ড্রপডাউন বক্স ও টেবিল কন্টেইনার */
.routine-dropdown-box {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, opacity 0.3s ease;
    opacity: 0;
    margin-top: 15px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.routine-dropdown-box.show {
    max-height: 500px; /* টেবিল খোলার জন্য পর্যাপ্ত হাইট */
    opacity: 1;
    padding: 15px;
    border-color: rgba(0, 240, 255, 0.2);
}

/* ক্লিন মডার্ন টেবিল ডিজাইন */
.routine-table {
    width: 100%;
    border-collapse: collapse;
    color: var(--text-muted);
    font-size: 13px;
    text-align: left;
}
.routine-table th {
    color: var(--neon-blue);
    padding: 10px 8px;
    border-bottom: 1px solid rgba(0, 240, 255, 0.2);
    font-weight: 600;
}
.routine-table td {
    padding: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.routine-table tr:hover {
    background: rgba(0, 240, 255, 0.03);
    color: #fff;
}
.day-name {
    color: #fff;
    font-weight: 600;
}
