/* --- WebTools HUB: Premium Global Style --- */

:root {
    --apple-blue: #0071e3;
    --glass: rgba(255, 255, 255, 0.08);
    --border: rgba(255, 255, 255, 0.12);
    --blur: blur(20px);
        --apple-blue: #0071e3;
    --gt-green: #21cf81;
    --gt-orange: #ff9500;
    --gt-red: #ff3b30;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --bg-dark: #000000;
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif; 
}

body {
    padding-top: 140px;
    background: #000; /* বেস কালার কালো থাকবে, গ্লো ইফেক্ট এটাকে উজ্জ্বল করবে */
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
}

/* --- Fixed Background Engine --- */
/* এটি প্রতিটি পেজে একই ব্যাকগ্রাউন্ড নিশ্চিত করবে */
body::before, body::after {
    content: "";
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.25;
    z-index: -1;
    pointer-events: none;
}

/* আগের স্লিয়ার ১ (S1) - উজ্জ্বল নীল আভা */
body::before {
    width: 500px;
    height: 500px;
    background: #0044ff;
    top: -10%;
    left: -10%;
    animation: floating 15s ease-in-out infinite;
}

/* আগের স্লিয়ার ২ (S2) - ব্রাউন/সায়ান মিক্স আভা */
body::after {
    width: 400px;
    height: 400px;
    background: #7c2d12; /* আপনার আগের কালারটিই রাখা হয়েছে */
    bottom: -5%;
    right: -5%;
    animation: floating 12s ease-in-out infinite reverse;
}

/* হালকা ওয়াটার ব্লার ইফেক্ট যোগ করার জন্য একটি বাড়তি গ্লো */
.bg-overlay {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 50% -20%, rgba(0, 113, 227, 0.15) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

/* প্রিমিয়াম মুভমেন্ট এনিমেশন */
@keyframes floating {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, 20px); }
}



/* --- iSpeed Pro: Apple Water Blur UI --- */
/* iSpeed Pro - Master Ultra-Premium Apple Architecture */
/* ======================================================
   iSpeed Pro - ULTRA PREMIUM APPLE GLASS UI (FINAL)
   Clean • Smooth • Perfect Alignment • Responsive
====================================================== */



/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY FIX */
body {
    background: #000;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    padding-top: 80px;
}

/* ======================================================
   HEADER: APPLE GLASS NAVBAR (FIXED ALIGNMENT)
====================================================== */

.pro-nav-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 72px;
    background: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(50px) saturate(180%);
    -webkit-backdrop-filter: blur(50px) saturate(180%);
    border-bottom: 1px solid var(--border);
    z-index: 99999;
}

.nav-wrapper {
    max-width: 1400px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
}

/* LOGO SECTION */
.master-logo-link { text-decoration: none; display: inline-block; }
.premium-logo-box { display: flex; align-items: center; gap: 14px; padding: 4px; transition: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1); }

.icon-orb {
    position: relative;
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #0071e3, #00f2ff);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 113, 227, 0.3);
}

.orb-inner {
    width: 16px;
    height: 16px;
    border: 2.5px solid rgba(255, 255, 255, 0.95);
    border-radius: 5px;
    z-index: 2;
}

.orb-glow {
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 70%);
    top: -25%; left: -25%;
    animation: orbRotate 6s linear infinite;
}

@keyframes orbRotate { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

.brand-text {
    font-size: 28px;
    font-weight: 850;
    color: #ffffff;
    letter-spacing: -1.5px;
    display: flex;
    align-items: center;
}

.hub-tag {
    margin-left: 10px;
    font-size: 11px;
    font-weight: 900;
    color: #fff;
    background: #0071e3; /* আপনার লোগোর কালার ফিক্স */
    padding: 3px 10px;
    border-radius: 7px;
    text-transform: uppercase;
}

/* NAVIGATION PILLS: FLUID TRACK */
.pill-nav-container { flex: 1; display: flex; justify-content: flex-end; overflow: hidden; }
.pill-track {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 10px 0;
}
.pill-track::-webkit-scrollbar { display: none; }

.nav-pill {
    white-space: nowrap;
    font-size: 13px;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--glass);
    border: 1px solid var(--border);
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: 0.3s ease;
}

.nav-pill.active {
    background: rgba(0,113,227,0.2);
    border: 1px solid var(--apple-blue);
    color: #fff;
    box-shadow: 0 0 18px rgba(0,113,227,0.35);
}

.nav-pill:hover {
    color: #fff;
    background: rgba(255,255,255,0.12);
}

/* MOBILE FIX: NO ZOOM & NO SHIFT */
@media (max-width: 768px) {
    .nav-wrapper { padding: 0 15px; }
    .brand-text { font-size: 22px; }
    .icon-orb { width: 32px; height: 32px; }
    .pill-track { gap: 8px; }
}

/* ======================================================
   HERO SECTION FIX
====================================================== */

.hero-section {
    text-align: center;
    padding: 80px 20px;
}

.hero-section h1 {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -2px;
}

/* GRADIENT TEXT */
.gradient-text {
    background: linear-gradient(180deg, #fff, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* INPUT BOX */
.analysis-box-pro {
max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 35px;
    padding: 12px; /* বাটনের চারদিকে গ্যাপ বজায় রাখার জন্য */
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* INPUT */
.analysis-box-pro input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;

    color: #fff;
    font-size: 14px;
    padding: 10px;
}

/* BUTTON */
#analyze-btn {
    background: var(--apple-blue);
    border: none;

    padding: 14px 30px;
    border-radius: 20px;

    color: #fff;
    font-weight: 600;
    cursor: pointer;

    transition: 0.3s;
}

#analyze-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(0,113,227,0.5);
}

/* ======================================================
   MOBILE RESPONSIVE
====================================================== */

@media (max-width: 768px) {

    .pro-nav-header {
        height: auto;
        padding: 10px 0;
    }

    .nav-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        height: auto;
    }

    .pill-nav-container {
        width: 100%;
    }

    .pill-track {
        justify-content: flex-start;
        padding-left: 10px;
    }

    body {
        padding-top: 110px;
    }
}
/* ===== 1. SMOOTH HORIZONTAL SCROLL FIX ===== */

.pill-track {
    display: flex;
    align-items: center;
    gap: 10px;

    overflow-x: auto;
    overflow-y: hidden;

    scroll-behavior: smooth; /* smooth scroll */
    -webkit-overflow-scrolling: touch; /* iPhone smooth */

    cursor: grab;
}

.pill-track:active {
    cursor: grabbing;
}

/* momentum feel */
.pill-track {
    scroll-snap-type: x mandatory;
}

.nav-pill {
    scroll-snap-align: center;
}


/* ===== 2. UNDERLINE REMOVE FIX ===== */

.nav-pill {
    text-decoration: none !important;  /* underline remove */
}

.nav-pill:hover,
.nav-pill:focus,
.nav-pill:active {
    text-decoration: none !important;
}


/* ===== 3. EXTRA SMOOTH DRAG FEEL ===== */

.pill-track {
    user-select: none;
}

.nav-pill {
    user-select: none;
}


/* ===== 4. OPTIONAL (EDGE FADE - PREMIUM LOOK) ===== */

.pill-nav-container {

    position: relative;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 2%, black 95%, transparent);
}


/* Main Content Card */
.app-container {
    flex: 1; display: flex; justify-content: center; align-items: center;
    padding: 80px 20px 40px 20px;
}
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: var(--blur);
    border: 1px solid var(--border);
    border-radius: 45px;
    width: 100%; max-width: 400px;
    padding: 30px 25px;
    text-align: center;
}

/* Dashboard Nodes */
.dash-bar { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 40px; }
.dash-node { background: rgba(255,255,255,0.05); padding: 12px 5px; border-radius: 18px; }
.label { font-size: 9px; color: #888; letter-spacing: 1px; display: block; margin-bottom: 4px; }
.val-group h2 { color: var(--apple-blue); font-size: 22px; }

/* Gauge Section */
.gauge-section { position: relative; margin: 20px 0; }
.gauge-center { position: relative; width: 260px; margin: 0 auto; }
.track { fill: none; stroke: rgba(255,255,255,0.06); stroke-width: 12; stroke-linecap: round; }
.fill {
    fill: none; stroke: var(--apple-blue); stroke-width: 12; stroke-linecap: round;
    stroke-dasharray: 408; stroke-dashoffset: 408;
    transition: stroke-dashoffset 0.2s ease;
}
/* Advanced Needle Group */
#needle-group {
    filter: drop-shadow(0 0 5px rgba(0,0,0,0.5));
}

/* মিটার আর্কের কালার একটু গ্লোয়িং করার জন্য */
.fill {
    stroke: var(--apple-blue);
    filter: drop-shadow(0 0 8px var(--apple-blue));
}
.speed-data { position: absolute; bottom: 15%; left: 50%; transform: translateX(-50%); width: 100%; }
.speed-data h1 { font-size: 55px; letter-spacing: -2px; margin-bottom: -5px; }

.divider { height: 1px; background: var(--border); margin: 30px 0; }

.results-footer { display: flex; justify-content: space-between; margin-bottom: 30px; padding: 0 10px; }
.res-item span { font-size: 11px; color: #888; display: block; }
.res-item h3 { font-size: 22px; margin-top: 5px; }

/* Retry Button */
#start-btn {
    width: 90px; height: 90px; border-radius: 50%;
    background: transparent; border: 2px solid var(--apple-blue);
    color: #fff; font-size: 14px; font-weight: 700;
    cursor: pointer; transition: 0.3s;
    box-shadow: 0 0 15px rgba(0, 113, 227, 0.2);
}
#start-btn:hover { background: var(--apple-blue); box-shadow: 0 0 25px var(--apple-blue); }

/* MOBILE RESPONSIVE FIXES */
/* MOBILE RESPONSIVE FIXES - UPDATED */
@media (max-width: 500px) {
    .main-header {
        top: 10px;
    }

    .nav-container {
        padding: 8px 15px;
        border-radius: 15px; /* মোবাইলে কিছুটা স্কয়ারিশ লুক */
        flex-direction: column; /* এলিমেন্টগুলো উপর নিচে সাজাবে */
        gap: 8px;
    }

    /* ব্র্যান্ড এবং আইএসপি মোবাইলে দুই পাশে থাকবে */
    .brand {
        font-size: 14px;
        order: 1;
    }
    
    .isp-info {
        font-size: 10px;
        order: 3;
    }

    /* মোবাইলে মেনু লিংকগুলো শো করানোর জন্য */
    .links {
        display: flex; 
        gap: 12px;
        order: 2;
        border-top: 1px solid rgba(255,255,255,0.1);
        padding-top: 5px;
        width: 100%;
        justify-content: center;
    }

    .links a {
        font-size: 12px;
    }

    /* কার্ডের সাইজ মোবাইলের জন্য অ্যাডজাস্টমেন্ট */
    .app-container {
        padding-top: 120px; /* হেডারের জন্য উপরে জায়গা বাড়ানো হয়েছে */
    }

    .glass-card {
        padding: 20px 15px;
        border-radius: 30px;
    }

    .gauge-center {
        width: 200px;
    }

    .speed-data h1 {
        font-size: 40px;
    }
}
.seo-content {
    width: 100%;
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
}

.seo-inner {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 40px;
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.seo-inner h2 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 20px;
}

.seo-inner p {
    color: #aaa;
    font-size: 16px;
    line-height: 1.8;
}

.seo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.seo-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.seo-box:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--apple-blue);
}

.seo-box h3 {
    color: var(--apple-blue);
    margin-bottom: 12px;
    font-size: 18px;
}

.seo-article {
    margin-top: 40px;
    text-align: left;
}

.seo-article h3 {
    color: #fff;
    margin-bottom: 15px;
}

.seo-article ul {
    list-style: none;
    padding-left: 0;
}

.seo-article li {
    color: #888;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.seo-article li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--apple-blue);
}

@media (max-width: 768px) {
    .seo-grid { grid-template-columns: 1fr; }
    .seo-inner { padding: 30px 20px; }
}









/* iSpeed Pro - Global Styles & Variables */


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: var(--bg-dark);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background Animated Glow */
.bg-glow {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(0, 113, 227, 0.15), transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(33, 207, 129, 0.1), transparent 40%);
    z-index: -1;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }


.links a.active, .links a:hover { color: #fff; }

/* Hero Section */
.hero-section { padding: 100px 0 60px; text-align: center; }
.hero-section h1 { font-size: clamp(32px, 8vw, 64px); font-weight: 800; letter-spacing: -3px; margin-bottom: 15px; }
.hero-section h1 span { color: var(--apple-blue); text-shadow: 0 0 40px rgba(0, 113, 227, 0.4); }
.hero-section p { color: #888; font-size: 18px; margin-bottom: 50px; }

/* Analysis Input Box */
.analysis-box-pro {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    padding: 10px;
    backdrop-filter: blur(40px);
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}

.input-wrapper { display: flex; gap: 10px; }

.input-wrapper input {
    flex: 1;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid transparent;
    padding: 20px 30px;
    border-radius: 30px;
    color: #fff;
    font-size: 16px;
    outline: none;
    transition: 0.3s;
}

.input-wrapper input:focus { border-color: var(--apple-blue); background: rgba(0, 113, 227, 0.05); }

#analyze-btn {
    background: var(--apple-blue);
    color: white;
    padding: 0 40px;
    border-radius: 30px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

#analyze-btn:hover { transform: scale(1.05); box-shadow: 0 0 30px rgba(0, 113, 227, 0.5); }

.analysis-options { margin-top: 15px; font-size: 11px; color: #555; letter-spacing: 1px; text-transform: uppercase; }

/* --- GTmetrix Scanner Overlay --- */
.loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.gt-scanner-wrapper { width: 100%; max-width: 1000px; }
.gt-scanner-wrapper h2 { font-size: 32px; margin-bottom: 5px; font-weight: 600; }
#scanning-url-display { color: var(--apple-blue); font-size: 18px; margin-bottom: 40px; opacity: 0.8; }

.scanner-flex-layout { display: flex; gap: 40px; flex-wrap: wrap; }

/* Live Preview Window */
.live-preview-window {
    flex: 1.3;
    min-width: 300px;
    background: #111;
    border-radius: 16px;
    border: 1px solid #333;
    overflow: hidden;
    position: relative;
}

.window-top-bar { background: #1a1a1a; padding: 12px; border-bottom: 1px solid #222; }
.browser-dots { display: flex; gap: 6px; }
.browser-dots span { width: 8px; height: 8px; border-radius: 50%; background: #333; }

.preview-body { height: 350px; position: relative; overflow: hidden; }

.skeleton-ui {
    width: 100%; height: 100%;
    background: linear-gradient(90deg, #111 25%, #1a1a1a 50%, #111 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Moving Laser Line */
.laser-scanner {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: var(--apple-blue);
    box-shadow: 0 0 20px var(--apple-blue), 0 0 40px var(--apple-blue);
    z-index: 10;
    animation: laserMove 3s infinite ease-in-out;
}

@keyframes laserMove {
    0%, 100% { top: 0; }
    50% { top: 100%; }
}

/* Steps Progress Box */
.scan-steps-box { flex: 0.7; min-width: 250px; }
.step-item { margin-bottom: 25px; opacity: 0.2; transition: 0.5s; }
.step-item.active { opacity: 1; }
.step-txt { font-size: 18px; display: block; margin-bottom: 8px; }

.step-progress { height: 4px; background: #222; border-radius: 2px; overflow: hidden; }
.progress-fill { height: 100%; width: 0%; background: var(--apple-blue); transition: 2.5s linear; }
.active .progress-fill { width: 100%; }

/* --- Results Dashboard --- */
.result-dashboard { padding: 60px 0; display: none; }

.report-header-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 24px;
    margin-bottom: 30px;
}

.browser-mockup { width: 100px; height: 70px; background: #111; border: 1px solid #333; border-radius: 8px; }
.report-meta h2 { font-size: 12px; color: #555; text-transform: uppercase; }
.report-meta a { font-size: 24px; color: var(--apple-blue); text-decoration: none; font-weight: 700; }

.action-buttons { display: flex; gap: 10px; }
.btn-outline { background: transparent; border: 1px solid #333; color: #fff; padding: 10px 20px; border-radius: 8px; cursor: pointer; }
.btn-solid { background: #fff; color: #000; border: none; padding: 10px 20px; border-radius: 8px; font-weight: 600; cursor: pointer; }

/* Score Grid */
.score-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-bottom: 20px; }
.score-card { background: var(--glass-bg); border: 1px solid var(--glass-border); padding: 40px 20px; border-radius: 24px; text-align: center; }
.grade-value { font-size: 100px; font-weight: 800; color: var(--gt-green); line-height: 1; }
.big-percent { font-size: 54px; font-weight: 700; margin-top: 10px; }

/* Vitals Row */
.vitals-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 40px; }
.vital-box { 
    background: var(--glass-bg); 
    border: 1px solid var(--glass-border); 
    padding: 15px 25px; 
    border-radius: 16px; 
    display: flex; 
    justify-content: space-between; 
    font-weight: 600;
}

/* Tabs & Content */
.tab-container { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 24px; padding: 25px; }
.tabs { display: flex; gap: 20px; border-bottom: 1px solid #222; margin-bottom: 25px; }
.tab-btn { background: none; border: none; color: #555; padding: 10px 0; cursor: pointer; font-size: 15px; font-weight: 600; }
.tab-btn.active { color: #fff; border-bottom: 2px solid var(--apple-blue); }

.filmstrip { display: flex; gap: 10px; margin: 20px 0; overflow-x: auto; }
.frame { min-width: 120px; height: 80px; background: #0a0a0a; border: 1px solid #222; border-radius: 8px; font-size: 11px; padding: 8px; color: #444; }
.frame.highlight { border-color: var(--gt-green); color: var(--gt-green); }

.issue-item { 
    padding: 15px; border-radius: 12px; margin-bottom: 10px; 
    display: flex; justify-content: space-between; background: rgba(255,255,255,0.02);
}
.issue-item.high strong { color: var(--gt-red); }
.issue-item.med strong { color: var(--gt-orange); }

/* Educational Content */
.seo-educational-content { padding: 80px 0; border-top: 1px solid #111; }
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 30px; color: #888; }
.text-block h3 { color: #fff; margin-bottom: 15px; }

/* Footer */
.pro-footer { text-align: center; padding: 40px; border-top: 1px solid #111; color: #444; font-size: 13px; }

/* Responsive Mobile Fixes */
@media (max-width: 768px) {
    .content-grid, .vitals-row { grid-template-columns: 1fr; }
    .report-header-card { flex-direction: column; text-align: center; gap: 20px; }
    .hero-section h1 { font-size: 42px; }
}

/* --- Mobile Responsive Fixes (Add to the bottom of your CSS) --- */

@media (max-width: 768px) {
    /* Hero Section Adjustments */
    .hero-section {
        padding: 60px 0 40px;
    }

    .hero-section h1 {
        font-size: 36px; /* ছোট স্ক্রিনের জন্য টাইটেল ছোট করা */
        letter-spacing: -1.5px;
        line-height: 1.1;
    }

    .hero-section p {
        font-size: 15px;
        padding: 0 10px;
    }

    /* Input Box & Button Fix (The main issue in your screenshot) */
    .analysis-box-pro {
        border-radius: 20px;
        padding: 10px;
        margin: 0 15px;
    }

    .input-wrapper {
        flex-direction: column; /* ইনপুট এবং বাটন উপর-নিচে করা */
        gap: 12px;
    }

    .input-wrapper input {
        width: 100%;
        padding: 15px 20px;
        font-size: 14px;
        border-radius: 15px;
    }

    #analyze-btn {
        width: 100%;
        padding: 15px 0;
        border-radius: 15px;
        font-size: 16px;
    }

    .analysis-options {
        font-size: 10px;
        line-height: 1.4;
        margin-top: 10px;
    }

    /* Scanner Overlay Fix */
    .gt-scanner-wrapper h2 {
        font-size: 24px;
    }

    .scanner-flex-layout {
        flex-direction: column;
        gap: 20px;
    }

    .preview-body {
        height: 250px; /* মোবাইলে প্রিভিউ উইন্ডো ছোট করা */
    }

    .scan-steps-box {
        width: 100%;
    }

    .step-txt {
        font-size: 15px;
    }

    /* Results Dashboard Fix */
    .report-header-card {
        flex-direction: column;
        padding: 20px;
        text-align: center;
        gap: 20px;
    }

    .site-info {
        flex-direction: column;
        gap: 15px;
    }

    .report-meta a {
        font-size: 18px;
        word-break: break-all; /* লম্বা ইউআরএল যেন স্ক্রিন থেকে বের না হয় */
    }

    .action-buttons {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    /* Score Cards Fix */
    .score-grid {
        grid-template-columns: 1fr; /* কার্ডগুলো একটা একটা করে দেখাবে */
    }

    .grade-value {
        font-size: 70px;
    }

    .vitals-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    /* Tabs Fix */
    .tabs {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 5px;
    }

    .tab-btn {
        padding: 10px 15px;
        font-size: 13px;
    }

    /* Footer Fix */
    .pro-footer {
        padding: 20px;
        font-size: 11px;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 32px;
    }
    
    .analysis-box-pro {
        padding: 8px;
    }
}
/* Advanced SEO Section Styling */
.advanced-seo-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 113, 227, 0.05));
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.seo-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.s-feature {
    background: rgba(255, 255, 255, 0.02);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.s-feature:hover {
    background: rgba(0, 113, 227, 0.05);
    border-color: var(--apple-blue);
    transform: translateY(-5px);
}

.s-icon { font-size: 40px; margin-bottom: 15px; }
.s-feature h3 { font-size: 20px; margin-bottom: 12px; color: #fff; }
.s-feature p { color: #888; font-size: 14px; line-height: 1.6; }

.seo-divider { border: 0; height: 1px; background: rgba(255, 255, 255, 0.1); margin: 40px 0; }

.seo-deep-content { max-width: 900px; margin: 0 auto; text-align: left; }
.seo-deep-content h2 { font-size: 32px; color: #fff; margin-bottom: 20px; }
.seo-deep-content h3 { font-size: 22px; color: var(--apple-blue); margin: 30px 0 15px; }
.seo-deep-content p { color: #aaa; font-size: 16px; line-height: 1.8; margin-bottom: 20px; }
.seo-deep-content a { color: var(--apple-blue); text-decoration: none; font-weight: 600; }

.keyword-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.keyword-tags span {
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 12px;
    color: #555;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
    .seo-deep-content h2 { font-size: 24px; }
}




/* --- iSpeed Pro: CMS Detector Apple Water Blur UI --- */



body {
    background-color: var(--bg-dark);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

.cms-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

/* --- Hero & Search Section --- */
.cms-hero {
    text-align: center;
    padding: 80px 0 50px;
}

.cms-hero h1 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 15px;
}

.gradient-text {
    background: linear-gradient(135deg, #fff 0%, var(--apple-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glass Search Box */
.glass-search-box {
    display: flex;
    align-items: center;
    max-width: 700px;
    margin: 40px auto;
    background: var(--glass-bg);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 8px 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-search-box:focus-within {
    border-color: var(--apple-blue);
    box-shadow: 0 0 30px rgba(0, 113, 227, 0.2);
    transform: translateY(-2px);
}

.glass-search-box i {
    color: #666;
    margin: 0 15px;
    font-size: 20px;
}

.glass-search-box input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 16px;
    padding: 15px 0;
    outline: none;
}

.glass-search-box button {
    background: var(--apple-blue);
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.glass-search-box button:hover {
    background: #0077ed;
    box-shadow: 0 0 20px rgba(0, 113, 227, 0.4);
}

/* --- Results Dashboard --- */
.cms-dashboard {
    background: var(--glass-bg);
    backdrop-filter: blur(30px);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 40px;
    margin-top: 40px;
    animation: fadeIn 0.8s ease;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 20px;
}

.status-badge {
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 100px;
    background: rgba(33, 207, 129, 0.1);
    color: #21cf81;
    border: 1px solid rgba(33, 207, 129, 0.2);
}

/* Main CMS Card */
.main-cms-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 25px;
    background: rgba(255,255,255,0.02);
    padding: 30px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 30px;
}

.cms-icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--apple-blue), var(--apple-cyan));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 30px rgba(0, 113, 227, 0.3);
}

.cms-info-text .sub-label {
    font-size: 13px;
    color: #888;
    text-transform: uppercase;
}

.cms-info-text h3 {
    font-size: 28px;
    margin: 5px 0;
}

/* Tech Grid */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.tech-item {
    background: rgba(255,255,255,0.03);
    padding: 20px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.tech-item .t-head {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tech-item .t-body {
    font-size: 18px;
    font-weight: 600;
}

/* --- Loader Animation --- */
.scan-loader {
    text-align: center;
    padding: 40px 0;
}

.pulse-ring {
    width: 60px;
    height: 60px;
    border: 4px solid var(--apple-blue);
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .main-cms-card { grid-template-columns: 1fr; text-align: center; }
    .cms-icon-box { margin: 0 auto; }
    .glass-search-box { border-radius: 18px; }
    .glass-search-box button span { display: none; }
}

/* --- CMS Detector Page Specific Design --- */

/* Hero Section */
.cms-hero {
    text-align: center;
    padding: 100px 20px 60px; /* হেডারের জন্য উপরে গ্যাপ */
}

.cms-hero h1 {
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 800;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, #fff 30%, #0071e3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glass Search Box Fix */
.glass-search-box {
    display: flex;
    align-items: center;
    max-width: 700px;
    margin: 40px auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 8px 12px;
}

.glass-search-box i {
    color: #666;
    margin-left: 15px;
}

.glass-search-box input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    padding: 15px;
    font-size: 16px;
    outline: none;
}

.glass-search-box button {
    background: #0071e3;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* --- Results Dashboard Glow Style --- */
.cms-dashboard {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 40px;
    max-width: 900px;
    margin: 40px auto;
    backdrop-filter: blur(20px);
}

.main-cms-card {
    display: flex;
    align-items: center;
    gap: 25px;
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 25px;
}

.cms-icon-box {
    width: 60px;
    height: 60px;
    background: #0071e3;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 0 20px rgba(0, 113, 227, 0.4);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

.tech-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.t-head {
    font-size: 12px;
    color: #888;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.t-body {
    font-size: 16px;
    font-weight: 700;
}

/* SEO Article Section Styling */
.cms-content-section {
    max-width: 900px;
    margin: 80px auto;
    color: #ccc;
    text-align: left;
    padding: 0 20px;
}

.cms-content-section h2 { color: #fff; margin-bottom: 20px; }
.cms-content-section ul { list-style: none; padding: 0; }
.cms-content-section li { margin-bottom: 10px; color: #888; }
.cms-content-section strong { color: #fff; }

/* ওভারল্যাপ সমস্যা সমাধান */
.i-header {
    z-index: 9999; /* মেনু সবার ওপরে থাকবে */
}

.cms-dashboard {
    position: relative;
    z-index: 1; /* রেজাল্ট মেনুর নিচে থাকবে */
    margin-top: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 30px;
}

.analytics-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.graph-box {
    background: rgba(255,255,255,0.02);
    padding: 20px;
    border-radius: 20px;
    max-height: 200px;
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    .analytics-row { grid-template-columns: 1fr; }
}


/* --- iSpeed Pro: QR & Barcode Studio CSS --- */



.qr-main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Hero Section */
.qr-hero {
    text-align: center;
    margin-bottom: 50px;
}

.qr-hero h1 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    letter-spacing: -2px;
}

.gradient-text {
    background: linear-gradient(135deg, #fff 0%, var(--apple-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Flex Layout for Tool */
.qr-flex-layout {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.qr-config-panel {
    flex: 1.5;
    min-width: 350px;
}

.qr-preview-panel {
    flex: 1;
    min-width: 300px;
    position: sticky;
    top: 100px;
}

/* Glass Cards */
.glass-card, .preview-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 30px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.glass-card h3 {
    font-size: 18px;
    margin-bottom: 25px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Input Styling */
.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-size: 13px;
    color: #888;
    margin-bottom: 8px;
    font-weight: 600;
}

/* --- QR Studio Refined Pro UI --- */

/* ইনপুট বক্সের হোয়াইট ব্যাকগ্রাউন্ড সমস্যার সমাধান */
.input-group input, 
.input-group select {
    width: 100%;
    background: rgba(255, 255, 255, 0.03) !important; /* হালকা ডার্ক ব্যাকগ্রাউন্ড */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 18px;
    border-radius: 14px;
    color: #ffffff !important; /* টেক্সট সবসময় সাদা থাকবে */
    font-size: 15px;
    transition: all 0.3s ease;
}

/* ফোকাস করলে গ্লো ইফেক্ট */
.input-group input:focus, 
.input-group select:focus {
    background: rgba(255, 255, 255, 0.07) !important;
    border-color: #0071e3;
    box-shadow: 0 0 15px rgba(0, 113, 227, 0.2);
}

/* ড্রপডাউন অপশনগুলোর কালার ফিক্স */
.input-group select option {
    background: #1a1a1a; /* ড্রপডাউন মেনুর ব্যাকগ্রাউন্ড ডার্ক */
    color: #fff;
}

/* কালার পিকারের ডিজাইন আরও প্রো করা */
.color-pick {
    background: rgba(255, 255, 255, 0.03);
    padding: 10px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.color-pick input[type="color"] {
    height: 40px;
    border-radius: 8px;
    overflow: hidden;
}

/* জেনারেট বাটনকে আরও প্রিমিয়াম করা */
.main-cta-btn {
    background: linear-gradient(135deg, #0071e3, #00c6ff);
    box-shadow: 0 10px 20px rgba(0, 113, 227, 0.3);
    border: none;
    letter-spacing: 0.5px;
    margin-top: 10px;
}

/* প্রিভিউ এরিয়াতে হালকা গ্লো */
#code-output-container {
    background: #ffffff; /* কিউআর কোডের জন্য সাদা রাখা হয়েছে */
    padding: 25px;
    border-radius: 24px;
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.05);
    border: 8px solid rgba(255, 255, 255, 0.03);
}

/* ফাইল আপলোড বক্স ফিক্স */
.custom-file-upload {
    background: rgba(0, 113, 227, 0.05);
    border: 2px dashed rgba(0, 113, 227, 0.3);
    color: #0071e3;
    font-weight: 600;
}
/* File Upload Style */
.custom-file-upload {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    border: 2px dashed var(--glass-border);
    border-radius: 20px;
    cursor: pointer;
    color: #888;
    transition: 0.3s;
}

.custom-file-upload:hover {
    border-color: var(--apple-blue);
    color: #fff;
}

.custom-file-upload input { display: none; }

/* Color Picks Row */
.option-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.color-pick { flex: 1; }
.color-pick input[type="color"] {
    width: 100%;
    height: 45px;
    border: none;
    background: none;
    cursor: pointer;
}

/* Preview Area */
#code-output-container {
    background: #fff; /* QR codes need white bg for best scanning */
    padding: 20px;
    border-radius: 20px;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.placeholder-svg {
    text-align: center;
    color: #ccc;
}

.placeholder-svg i { font-size: 80px; margin-bottom: 10px; }

/* Buttons */
.main-cta-btn {
    width: 100%;
    background: var(--apple-blue);
    color: #fff;
    border: none;
    padding: 18px;
    border-radius: 18px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.main-cta-btn:hover {
    box-shadow: 0 0 30px rgba(0, 113, 227, 0.4);
    transform: translateY(-2px);
}

.action-buttons {
    display: flex;
    gap: 10px;
}

.btn-sec {
    flex: 1;
    background: rgba(255,255,255,0.05);
    color: #fff;
    border: 1px solid var(--glass-border);
    padding: 12px;
    border-radius: 12px;
    font-size: 13px;
    cursor: pointer;
    transition: 0.2s;
}

.btn-sec:hover { background: rgba(255,255,255,0.1); }

/* SEO Section */
.qr-content-info {
    margin-top: 80px;
    padding: 40px;
    background: var(--glass-bg);
    border-radius: 30px;
    border: 1px solid var(--glass-border);
}

/* Responsive */
@media (max-width: 900px) {
    .qr-flex-layout { flex-direction: column; }
    .qr-preview-panel { position: static; width: 100%; }
}

/* --- SEO & Content Section Styling --- */
.qr-seo-content {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 20px;
    margin-top: 60px;
}

.seo-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.seo-main-article {
    flex: 2;
    min-width: 300px;
}

.seo-main-article h2 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 20px;
}

.seo-main-article p {
    color: #aaa;
    margin-bottom: 25px;
    line-height: 1.8;
}

.seo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.seo-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.seo-card h3 {
    font-size: 18px;
    color: #0071e3;
    margin-bottom: 12px;
}

.seo-faq {
    margin-top: 50px;
}

.faq-item {
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 15px;
}

.faq-item h4 {
    color: #fff;
    margin-bottom: 10px;
}

/* Sidebar / Backlinks */
.seo-resources {
    flex: 0.8;
    background: rgba(0, 113, 227, 0.03);
    padding: 30px;
    border-radius: 30px;
    height: fit-content;
    border: 1px solid rgba(0, 113, 227, 0.1);
}

.backlink-list {
    list-style: none;
    padding: 0;
}

.backlink-list li {
    margin-bottom: 15px;
}

.backlink-list a {
    color: #0071e3;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.backlink-list a:hover {
    color: #fff;
    text-decoration: underline;
}

.trust-badge {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #21cf81;
    font-size: 13px;
}

#file-status {
    margin-top: 10px;
    font-size: 14px;
    display: block;
    transition: 0.3s;
}

.custom-file-upload i {
    font-size: 30px;
    margin-bottom: 5px;
}




/* 
 * iSpeed Pro - Master Professional Typing CSS
 * Theme: Apple Water Blur / Glassmorphism
 * Author: MD ADOM SUFI
 */


/* Global Typing Container */
.typing-master-container {
    max-width: 1200px; /* এটিকে আরও প্রশস্ত করা হয়েছে */
    margin: 0 auto;
    padding: 20px;
}

/* Base Glass Card Structure */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--blur-val);
    -webkit-backdrop-filter: var(--blur-val);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    box-shadow: var(--shadow-main);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- 1. SETUP PANEL (Screenshot 1 Style) --- */
.setup-panel {
    display: flex;
    justify-content: center;
    padding-top: 50px;
}

.central-setup {
    max-width: 750px;
    width: 100%;
    text-align: center;
    padding: 60px;
}

.central-setup h2 {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #fff, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.central-setup p {
    color: #888;
    margin-bottom: 40px;
    font-size: 17px;
}

.selection-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

.select-box label {
    display: block;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    color: #666;
    margin-bottom: 10px;
    margin-left: 5px;
}

.select-box select {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: #fff;
    padding: 16px;
    border-radius: 18px;
    font-size: 15px;
    outline: none;
    transition: 0.3s;

}
/* ড্রপডাউন অপশনের ব্যাকগ্রাউন্ড এবং টেক্সট কালার ফিক্স */
.select-box select option {
    background-color: #1a1a1a; /* ডার্ক ব্যাকগ্রাউন্ড */
    color: #ffffff;           /* সাদা লেখা */
}

/* ফোকাস বা সিলেক্ট অবস্থায় স্টাইল */
.select-box select:focus option {
    background-color: #1a1a1a;
    color: #ffffff;
}

.select-box select:focus {
    border-color: var(--apple-blue);
    background: rgba(255, 255, 255, 0.08);
}

/* --- 2. ARENA PANEL (Screenshot 2 Style) --- */
.arena-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.live-stats {
    display: flex;
    gap: 15px;
}

.mini-stat {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 12px 25px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 15px;
    color: #fff;
    backdrop-filter: blur(10px);
}

.red-text { color: var(--apple-red); }

.arena-box {
    width: 100% !important;
    max-width: 1000px; /* বক্সের চওড়া বাড়ানো হয়েছে */
    margin: 0 auto;
    padding: 50px 60px !important; /* ডানে-বামে বেশি প্যাডিং */
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.text-display-box {
    width: 100%;
    font-size: 26px; /* ফন্ট সাইজ একটু বড় করা হয়েছে ডেস্কটপের জন্য */
    line-height: 1.6;
    text-align: left;
    margin-bottom: 40px;
    min-height: auto !important; /* ফিক্সড হাইট সরিয়ে দেওয়া হয়েছে */
}

/* Typing Highlighting Logic */
.correct { color: #fff; }
.incorrect { 
    color: var(--apple-red); 
    background: rgba(255, 59, 48, 0.15); 
    border-radius: 5px; 
    padding: 0 2px;
}
.current-char { 
    border-bottom: 3px solid var(--apple-blue); 
    animation: blinker 1s infinite;
}

@keyframes blinker { 50% { border-color: transparent; } }

#typing-input {
    width: 100% !important;
    max-width: 100%;
    height: 100px; /* উচ্চতা কমিয়ে চওড়া বাড়ানো হয়েছে */
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px;
    font-size: 20px;
}

#typing-input:focus { border-color: var(--apple-blue); box-shadow: 0 0 20px rgba(0, 113, 227, 0.2); }

/* --- 3. RESULT PANEL (Screenshot 3 Style) --- */
.result-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 45px;
}

.result-box {
    max-width: 600px;
    width: 100%;
    padding: 50px;
    text-align: center;
}

.trophy-icon {
    font-size: 65px;
    color: var(--apple-yellow);
    margin-bottom: 25px;
    filter: drop-shadow(0 10px 20px rgba(255, 215, 0, 0.3));
}

.score-main-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 45px 0;
}

.circle-box {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 4px solid var(--apple-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 0 25px rgba(0, 113, 227, 0.15);
}

.blue-circle { border-color: var(--apple-cyan); color: var(--apple-cyan); }
.green-circle { border-color: var(--apple-green); color: var(--apple-green); }

.score-circle-item label { font-size: 12px; color: #888; font-weight: 600; text-transform: uppercase; }

.additional-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-row { font-size: 15px; color: #888; }
.stat-row strong { color: #fff; margin-left: 5px; }

/* --- 4. CATEGORY GRID (Bottom Section) --- */
.test-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    width: 100%;
    max-width: 1000px;
}

.cat-card {
    padding: 35px;
    text-align: center;
}

.cat-card i { font-size: 35px; color: var(--apple-blue); margin-bottom: 20px; }
.cat-card h4 { font-size: 19px; color: #fff; margin-bottom: 20px; }

.mini-start {
    background: var(--apple-blue);
    border: none;
    color: #fff;
    padding: 12px 0;
    width: 100%;
    border-radius: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.mini-start:hover { transform: scale(1.05); background: #0077ed; }

/* Global UI Elements */
.main-cta-btn {
    background: var(--apple-blue);
    color: #fff;
    padding: 18px 45px;
    border-radius: 20px;
    font-size: 17px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-cta-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(0, 113, 227, 0.4); }

.pulse-effect { animation: pulseAnim 2s infinite; }

@keyframes pulseAnim {
    0% { box-shadow: 0 0 0 0 rgba(0, 113, 227, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(0, 113, 227, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 113, 227, 0); }
}

.close-btn {
    background: rgba(255, 59, 48, 0.1);
    color: var(--apple-red);
    border: 1px solid rgba(255, 59, 48, 0.2);
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
}

.central-setup, .result-box {
    max-width: 900px !important;
    width: 100%;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .selection-grid, .score-main-grid, .test-categories-grid { grid-template-columns: 1fr; }
    .central-setup, .arena-box, .result-box { padding: 30px; }
}



/* --- Privacy Policy: Ultra Premium Typography --- */

.privacy-container {
    max-width: 900px;
    margin: 120px auto 60px;
    padding: 50px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.policy-header {
    text-align: center;
    margin-bottom: 60px;
}

.policy-header h1 {
    font-size: 48px;
    font-weight: 850;
    color: #fff;
    letter-spacing: -2px;
}

.policy-header p {
    color: #0071e3;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.policy-content h2 {
    color: #fff;
    font-size: 24px;
    margin: 40px 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.policy-content h2::before {
    content: '';
    width: 4px;
    height: 24px;
    background: #0071e3;
    border-radius: 10px;
}

.policy-content p, .policy-content li {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 17px;
    margin-bottom: 20px;
}

.policy-content ul {
    padding-left: 20px;
    list-style: none;
}

.policy-content li::before {
    content: "•";
    color: #0071e3;
    font-weight: bold;
    display: inline-block; 
    width: 1em;
    margin-left: -1em;
}

/* SEO Highlight */
strong {
    color: #00f2ff;
    font-weight: 700;
}

@media (max-width: 768px) {
    .privacy-container {
        margin: 100px 20px;
        padding: 30px;
    }
    .policy-header h1 { font-size: 32px; }
}


/* --- Terms & Conditions: Ultra Premium Design --- */

.legal-page-container {
    max-width: 1000px;
    margin: 140px auto 80px;
    padding: 60px;
    background: rgba(255, 255, 255, 0.015);
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 45px;
    box-shadow: 0 50px 120px rgba(0, 0, 0, 0.6);
}

.legal-header {
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 30px;
    margin-bottom: 50px;
}

.legal-header h1 {
    font-size: 52px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -3px;
    background: linear-gradient(180deg, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.legal-meta {
    color: #0071e3;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 10px;
}

.legal-content h2 {
    font-size: 22px;
    color: #00f2ff;
    margin: 45px 0 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.legal-content p, .legal-content li {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.9;
    margin-bottom: 25px;
}

.legal-content ul {
    list-style: none;
    padding-left: 0;
}

.legal-content li {
    padding-left: 30px;
    position: relative;
}

.legal-content li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #0071e3;
    font-weight: bold;
}

/* SEO Optimization Tag */
strong {
    color: #fff;
    font-weight: 800;
}

@media (max-width: 768px) {
    .legal-page-container {
        margin: 100px 15px;
        padding: 30px;
        border-radius: 30px;
    }
    .legal-header h1 { font-size: 36px; }
}



/* --- WebTools HUB: Apple Water Blur Ultra Design --- */

/* --- About Us: Apple Advanced Ultra Design --- */

.about-viewport {
    background: #000;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif;
    overflow-x: hidden;
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Hero Section with Image */
.about-hero {
    position: relative;
    padding: 160px 0 100px;
    text-align: center;
    background: radial-gradient(circle at 50% 30%, rgba(0, 113, 227, 0.15) 0%, transparent 70%);
}

.profile-frame {
    position: relative;
    width: 220px;
    height: 220px;
    margin: 0 auto 40px;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 0 50px rgba(0, 113, 227, 0.5);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-frame:hover .profile-img {
    transform: scale(1.05) rotate(2deg);
}

.badge-public-figure {
    position: absolute;
    bottom: 5px;
    right: 0;
    background: #0071e3;
    color: #fff;
    padding: 6px 15px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.gradient-title {
    font-size: clamp(40px, 8vw, 72px);
    font-weight: 900;
    letter-spacing: -3px;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(180deg, #fff 30%, #777 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lead-text {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.5);
    max-width: 600px;
    margin: 0 auto;
}

/* Content Cards */
.about-main-content {
    padding: 80px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.content-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
}

.content-card.featured {
    background: linear-gradient(145deg, rgba(0, 113, 227, 0.1), transparent);
    border-color: rgba(0, 113, 227, 0.3);
}

.content-card h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #00f2ff;
}

.content-card p, .full-bio-section p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

/* Glass Contact Footer */
.contact-glass-footer {
    display: flex;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 35px;
    margin-top: 80px;
    text-align: center;
}

.contact-item span {
    display: block;
    font-size: 12px;
    color: #0071e3;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.contact-item strong {
    font-size: 18px;
    color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
    .content-grid { grid-template-columns: 1fr; }
    .contact-glass-footer { flex-direction: column; gap: 30px; }
    .gradient-title { font-size: 48px; }
}


/* --- WebTools HUB: Ultra-Premium Contact Engine --- */

.contact-viewport {
    padding: 120px 20px 60px;
    background: radial-gradient(circle at 50% 0%, rgba(0, 113, 227, 0.15) 0%, transparent 60%);
    min-height: 100vh;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

/* গ্লাস কার্ড ডিজাইন */
.contact-glass-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(35px) saturate(180%);
    -webkit-backdrop-filter: blur(35px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    padding: 50px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
}

/* প্রোফাইল এবং হেডার */
.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-profile {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
}

.contact-profile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #0071e3;
    padding: 3px;
}

.online-status {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 12px;
    height: 12px;
    background: #00f2ff;
    border: 2px solid #000;
    border-radius: 50%;
    box-shadow: 0 0 10px #00f2ff;
}

.contact-header h2 {
    font-size: 36px;
    font-weight: 850;
    color: #fff;
    letter-spacing: -1.5px;
}

.contact-header p {
    color: rgba(255, 255, 255, 0.5);
    margin-top: 10px;
}

/* ফর্ম ডিজাইন */
.premium-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.premium-form input, .premium-form textarea {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 15px 20px;
    color: #fff;
    font-size: 15px;
    outline: none;
    transition: 0.3s ease;
}

.premium-form input:focus, .premium-form textarea:focus {
    border-color: #0071e3;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 20px rgba(0, 113, 227, 0.2);
}

.submit-btn {
    background: #0071e3;
    color: #fff;
    border: none;
    padding: 18px;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 750;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.submit-btn:hover {
    background: #0077ed;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 113, 227, 0.4);
}

/* কন্টাক্ট ডিটেইলস ফিক্স */
/* --- WebTools HUB: Ultra-Premium Contact Fix --- */

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 8px; /* টেক্সটের মাঝখানের গ্যাপ কমানো হয়েছে */
    margin-top: 15px;
    text-align: left;
}

.contact-details p {
    font-size: 13.5px; /* স্লিম লুকের জন্য ফন্ট সাইজ অপ্টিমাইজড */
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.4;
    white-space: nowrap; /* টেক্সট যাতে ভেঙে নিচে না যায় */
    letter-spacing: 0.3px;
    transition: 0.3s ease;
}

/* আইকন বা লেবেল হাইলাইট (ঐচ্ছিক) */
.contact-details p strong {
    color: #0071e3;
    font-weight: 700;
    margin-right: 5px;
}

.contact-details p:hover {
    color: #fff;
    transform: translateX(3px); /* হালকা এনিমেশন */
}

/* মোবাইল রেসপন্সিভ ফিক্স */
@media (max-width: 768px) {
    .contact-details {
        align-items: center;
        text-align: center;
    }
    .contact-details p {
        white-space: normal; /* মোবাইলে স্ক্রিন ছোট হলে টেক্সট অ্যাডজাস্ট হবে */
    }
}

.detail-item span {
    font-size: 11px;
    text-transform: uppercase;
    color: #0071e3;
    font-weight: 800;
}

.detail-item strong {
    display: block;
    font-size: 14px;
    color: #fff;
    margin-top: 5px;
}

/* মোবাইল ভিউ */
@media (max-width: 600px) {
    .contact-glass-card { padding: 30px; }
    .input-group { grid-template-columns: 1fr; }
    .contact-details { flex-direction: column; gap: 20px; text-align: center; }
}


/* --- Visual Sitemap Grid --- */
.sitemap-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.sitemap-section {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.sitemap-section h3 {
    color: #00f2ff;
    font-size: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sitemap-section ul {
    list-style: none;
    padding: 0;
}

.sitemap-section ul li {
    margin-bottom: 12px;
}

.sitemap-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: 0.3s;
    font-size: 15px;
}

.sitemap-section ul li a:hover {
    color: #0071e3;
    padding-left: 5px;
}

.crawler-box {
    margin-top: 50px;
    padding: 20px;
    background: rgba(0, 113, 227, 0.05);
    border-radius: 15px;
    border: 1px dashed rgba(0, 113, 227, 0.3);
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 600px) {
    .sitemap-grid { grid-template-columns: 1fr; }
}


/* 
   WebTools HUB: The Ultimate Studio CSS (2026 Edition)
   Designed by MD ADOM SUFI 
*/


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* --- 1. About Us: Premium Vertical Studio --- */
.about-hero-studio {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 60px 20px 40px;
    text-align: left;
}

.photo-orb {
    width: 180px;
    height: 240px;
    background: linear-gradient(135deg, rgba(0, 113, 227, 0.4), rgba(0, 242, 255, 0.2));
    border-radius: 90px; /* Perfect Oval Shape */
    overflow: hidden;
    border: 1.5px solid var(--border-color);
    box-shadow: 0 0 30px rgba(0, 113, 227, 0.2);
    backdrop-filter: blur(10px);
}

.photo-orb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text-content h1 {
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 8px;
}

.hero-text-content h1 span {
    color: var(--apple-blue);
}

/* --- 2. Compact Grid Layout (About & Legal) --- */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px; /* মার্জিন ও প্যাডিং কমানো হয়েছে */
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.content-card {
    background: var(--glass-bg);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(20px);
}

.content-card h2 {
    font-size: 18px;
    color: var(--apple-cyan);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.content-card p {
    font-size: 14px;
    color: var(--text-dim);
}

/* --- 3. Ultra-Slim Studio Footer (image_30cf70.png Style) --- */
.studio-footer {
    position: relative;
    background: #050505;
    padding: 40px 0 20px;
    margin-top: 60px;
    border-top: 1px solid var(--border-color);
}

.glow-orb {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 150px;
    background: radial-gradient(circle, rgba(0, 113, 227, 0.12) 0%, transparent 80%);
    filter: blur(50px);
    pointer-events: none;
}




.studio-logo {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -1.5px;
    margin-bottom: 12px;
}

.studio-logo span {
    background: var(--apple-blue);
    padding: 2px 6px;
    border-radius: 5px;
    font-size: 10px;
    margin-left: 8px;
    text-transform: uppercase;
}

.brand-description {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.6;
    max-width: 280px;
}

.col-title {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--apple-cyan);
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.footer-nav {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 8px;
}

.footer-nav li a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 13.5px;
    transition: 0.2s ease;
}

.footer-nav li a:hover {
    color: #fff;
    padding-left: 4px;
}

.social-links-premium {
    margin-top: 15px;
    display: flex;
    gap: 12px;
}

.social-links-premium a {
    color: var(--apple-blue);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.copyright-section {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.2);
}

/* --- WebTools HUB: The Responsive Studio Engine --- */

/* ১. গ্লোবাল রেসপন্সিভ কন্টেইনার */
.footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px; /* মোবাইলের জন্য সাইড প্যাডিং */
}

/* ২. স্মার্ট গ্রিড সিস্টেম (Desktop to Mobile) */
.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr; /* ডেস্কটপ লেআউট */
    gap: 40px;
    padding-bottom: 40px;
    align-items: start;
}

/* ৩. টাইটেল এবং লিস্টের স্মার্ট স্পেসিং */
.col-title {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px; /* স্ক্রিনশটের গ্যাপ কমানো হয়েছে */
}

.footer-nav {
    list-style: none;
    padding: 0;
}

.footer-nav li {
    margin-bottom: 8px; /* স্লিম ভার্টিক্যাল স্পেসিং */
}

.footer-nav li a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
}

/* ৪. রেসপন্সিভ মিডিয়া কোয়েরি (Tablet & Mobile) */

/* ট্যাবলেট এবং ছোট ল্যাপটপের জন্য */





@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr; /* ২ কলাম লেআউট */
        gap: 35px;
    }
}

/* মোবাইলের জন্য (Smartphones) */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr; /* সিঙ্গেল কলাম লেআউট */
        text-align: center; /* মোবাইলে সব কন্টেন্ট সেন্টারে থাকবে */
        gap: 45px;
    }

    .brand-description {
        margin: 0 auto 20px; /* ডেসক্রিপশন সেন্টারে আনা */
        max-width: 100%;
    }

    .social-links-premium {
        justify-content: center; /* সোশ্যাল লিঙ্ক সেন্টারে */
    }

    .footer-nav li a:hover {
        padding-left: 0;
        transform: scale(1.05); /* মোবাইলে হালকা জুম ইফেক্ট */
    }

    .contact-details {
        align-items: center;
    }
}

/* অত্যন্ত ছোট স্ক্রিনের জন্য (Small Mobile) */
@media (max-width: 480px) {
    .studio-logo {
        font-size: 28px;
    }
    
    .col-title {
        font-size: 10px;
        margin-bottom: 10px;
    }
}











/* --- iSpeed Pro: Traffic Checker Premium CSS --- */

body {
    background-color: #000;
    color: #fff;
    font-family: 'Inter', sans-serif;
    margin: 0;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Hero & Search Section --- */
.hero-search {
    text-align: center;
    padding: 60px 0 40px;
}

.hero-search h1 {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 10px;
}

.blue-text {
    color: var(--apple-blue);
    text-shadow: 0 0 30px rgba(0, 113, 227, 0.5);
}

.hero-search p {
    color: #888;
    font-size: 18px;
    margin-bottom: 40px;
}

/* Search Box Glassmorphism */
.input-glass-box {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 10px;
    border-radius: 20px;
    display: flex;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.input-glass-box input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 15px 20px;
    color: #fff;
    font-size: 16px;
    outline: none;
}

#check-btn {
    background: var(--apple-blue);
    color: #fff;
    border: none;
    padding: 0 35px;
    border-radius: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#check-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 0 25px rgba(0, 113, 227, 0.6);
}

#check-btn:disabled {
    background: #333;
    cursor: not-allowed;
}

/* --- Result Dashboard Styling --- */
.result-dashboard {
    margin-top: 50px;
    animation: fadeInUp 0.8s ease forwards;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 24px;
    text-align: center;
    transition: 0.3s;
}

.stat-card:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.15);
}

.stat-card .label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    color: #666;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.stat-card .value {
    font-size: 32px;
    font-weight: 800;
}

.green-text { color: #21cf81; text-shadow: 0 0 20px rgba(33, 207, 129, 0.3); }

/* --- Analytics Row (Graph & Map) --- */
.analytics-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 25px;
    margin-bottom: 60px;
}

.graph-box, .info-box {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 30px;
}

.graph-box h3, .info-box h3 {
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 600;
}

#perfChart {
    max-height: 300px !important;
}

/* Core Vitals List */
.info-box ul {
    list-style: none;
    padding: 0;
}

.info-box li {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.info-box li span { color: #888; }
.info-box li strong { color: var(--apple-cyan); }

.status-badge {
    margin-top: 25px;
    padding: 12px;
    text-align: center;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    background: rgba(255,255,255,0.05);
}

/* --- SEO Content Section --- */
.seo-content {
    margin: 80px 0;
    padding: 40px;
    background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, transparent 100%);
    border-radius: 30px;
}

.seo-content h2 { font-size: 28px; margin-bottom: 20px; }
.seo-content p { color: #aaa; line-height: 1.8; }

/* --- Animations --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.spinner {
    width: 40px; height: 40px;
    border: 4px solid rgba(255,255,255,0.1);
    border-top: 4px solid var(--apple-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin { 100% { transform: rotate(360deg); } }

/* --- Responsive Layout --- */
@media (max-width: 900px) {
    .analytics-row { grid-template-columns: 1fr; }
    .hero-search h1 { font-size: 32px; }
    .input-glass-box { flex-direction: column; gap: 10px; background: transparent; border: none; backdrop-filter: none; }
    .input-glass-box input { background: var(--glass-bg); border-radius: 15px; border: 1px solid var(--glass-border); margin-bottom: 10px; }
    #check-btn { padding: 15px; }
}







/* iSpeed Pro - Global Styles & Variables */


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: var(--bg-dark);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background Animated Glow */
.bg-glow {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(0, 113, 227, 0.15), transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(33, 207, 129, 0.1), transparent 40%);
    z-index: -1;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }


.links a.active, .links a:hover { color: #fff; }

/* Hero Section */
.hero-section { padding: 100px 0 60px; text-align: center; }
.hero-section h1 { font-size: clamp(32px, 8vw, 64px); font-weight: 800; letter-spacing: -3px; margin-bottom: 15px; }
.hero-section h1 span { color: var(--apple-blue); text-shadow: 0 0 40px rgba(0, 113, 227, 0.4); }
.hero-section p { color: #888; font-size: 18px; margin-bottom: 50px; }

/* Analysis Input Box */
.analysis-box-pro {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    padding: 10px;
    backdrop-filter: blur(40px);
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}

.input-wrapper { display: flex; gap: 10px; }

.input-wrapper input {
    flex: 1;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid transparent;
    padding: 20px 30px;
    border-radius: 30px;
    color: #fff;
    font-size: 16px;
    outline: none;
    transition: 0.3s;
}

.input-wrapper input:focus { border-color: var(--apple-blue); background: rgba(0, 113, 227, 0.05); }

#analyze-btn {
    background: var(--apple-blue);
    color: white;
    padding: 0 40px;
    border-radius: 30px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

#analyze-btn:hover { transform: scale(1.05); box-shadow: 0 0 30px rgba(0, 113, 227, 0.5); }

.analysis-options { margin-top: 15px; font-size: 11px; color: #555; letter-spacing: 1px; text-transform: uppercase; }

/* --- GTmetrix Scanner Overlay --- */
.loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.gt-scanner-wrapper { width: 100%; max-width: 1000px; }
.gt-scanner-wrapper h2 { font-size: 32px; margin-bottom: 5px; font-weight: 600; }
#scanning-url-display { color: var(--apple-blue); font-size: 18px; margin-bottom: 40px; opacity: 0.8; }

.scanner-flex-layout { display: flex; gap: 40px; flex-wrap: wrap; }

/* Live Preview Window */
.live-preview-window {
    flex: 1.3;
    min-width: 300px;
    background: #111;
    border-radius: 16px;
    border: 1px solid #333;
    overflow: hidden;
    position: relative;
}

.window-top-bar { background: #1a1a1a; padding: 12px; border-bottom: 1px solid #222; }
.browser-dots { display: flex; gap: 6px; }
.browser-dots span { width: 8px; height: 8px; border-radius: 50%; background: #333; }

.preview-body { height: 350px; position: relative; overflow: hidden; }

.skeleton-ui {
    width: 100%; height: 100%;
    background: linear-gradient(90deg, #111 25%, #1a1a1a 50%, #111 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Moving Laser Line */
.laser-scanner {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: var(--apple-blue);
    box-shadow: 0 0 20px var(--apple-blue), 0 0 40px var(--apple-blue);
    z-index: 10;
    animation: laserMove 3s infinite ease-in-out;
}

@keyframes laserMove {
    0%, 100% { top: 0; }
    50% { top: 100%; }
}

/* Steps Progress Box */
.scan-steps-box { flex: 0.7; min-width: 250px; }
.step-item { margin-bottom: 25px; opacity: 0.2; transition: 0.5s; }
.step-item.active { opacity: 1; }
.step-txt { font-size: 18px; display: block; margin-bottom: 8px; }

.step-progress { height: 4px; background: #222; border-radius: 2px; overflow: hidden; }
.progress-fill { height: 100%; width: 0%; background: var(--apple-blue); transition: 2.5s linear; }
.active .progress-fill { width: 100%; }

/* --- Results Dashboard --- */
.result-dashboard { padding: 60px 0; display: none; }

.report-header-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 24px;
    margin-bottom: 30px;
}

.browser-mockup { width: 100px; height: 70px; background: #111; border: 1px solid #333; border-radius: 8px; }
.report-meta h2 { font-size: 12px; color: #555; text-transform: uppercase; }
.report-meta a { font-size: 24px; color: var(--apple-blue); text-decoration: none; font-weight: 700; }

.action-buttons { display: flex; gap: 10px; }
.btn-outline { background: transparent; border: 1px solid #333; color: #fff; padding: 10px 20px; border-radius: 8px; cursor: pointer; }
.btn-solid { background: #fff; color: #000; border: none; padding: 10px 20px; border-radius: 8px; font-weight: 600; cursor: pointer; }

/* Score Grid */
.score-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-bottom: 20px; }
.score-card { background: var(--glass-bg); border: 1px solid var(--glass-border); padding: 40px 20px; border-radius: 24px; text-align: center; }
.grade-value { font-size: 100px; font-weight: 800; color: var(--gt-green); line-height: 1; }
.big-percent { font-size: 54px; font-weight: 700; margin-top: 10px; }

/* Vitals Row */
.vitals-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 40px; }
.vital-box { 
    background: var(--glass-bg); 
    border: 1px solid var(--glass-border); 
    padding: 15px 25px; 
    border-radius: 16px; 
    display: flex; 
    justify-content: space-between; 
    font-weight: 600;
}

/* Tabs & Content */
.tab-container { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 24px; padding: 25px; }
.tabs { display: flex; gap: 20px; border-bottom: 1px solid #222; margin-bottom: 25px; }
.tab-btn { background: none; border: none; color: #555; padding: 10px 0; cursor: pointer; font-size: 15px; font-weight: 600; }
.tab-btn.active { color: #fff; border-bottom: 2px solid var(--apple-blue); }

.filmstrip { display: flex; gap: 10px; margin: 20px 0; overflow-x: auto; }
.frame { min-width: 120px; height: 80px; background: #0a0a0a; border: 1px solid #222; border-radius: 8px; font-size: 11px; padding: 8px; color: #444; }
.frame.highlight { border-color: var(--gt-green); color: var(--gt-green); }

.issue-item { 
    padding: 15px; border-radius: 12px; margin-bottom: 10px; 
    display: flex; justify-content: space-between; background: rgba(255,255,255,0.02);
}
.issue-item.high strong { color: var(--gt-red); }
.issue-item.med strong { color: var(--gt-orange); }

/* Educational Content */
.seo-educational-content { padding: 80px 0; border-top: 1px solid #111; }
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 30px; color: #888; }
.text-block h3 { color: #fff; margin-bottom: 15px; }

/* Footer */
.pro-footer { text-align: center; padding: 40px; border-top: 1px solid #111; color: #444; font-size: 13px; }

/* Responsive Mobile Fixes */
@media (max-width: 768px) {
    .content-grid, .vitals-row { grid-template-columns: 1fr; }
    .report-header-card { flex-direction: column; text-align: center; gap: 20px; }
    .hero-section h1 { font-size: 42px; }
}

/* --- Mobile Responsive Fixes (Add to the bottom of your CSS) --- */

@media (max-width: 768px) {
    /* Hero Section Adjustments */
    .hero-section {
        padding: 60px 0 40px;
    }

    .hero-section h1 {
        font-size: 36px; /* ছোট স্ক্রিনের জন্য টাইটেল ছোট করা */
        letter-spacing: -1.5px;
        line-height: 1.1;
    }

    .hero-section p {
        font-size: 15px;
        padding: 0 10px;
    }

    /* Input Box & Button Fix (The main issue in your screenshot) */
    .analysis-box-pro {
        border-radius: 20px;
        padding: 10px;
        margin: 0 15px;
    }

    .input-wrapper {
        flex-direction: column; /* ইনপুট এবং বাটন উপর-নিচে করা */
        gap: 12px;
    }

    .input-wrapper input {
        width: 100%;
        padding: 15px 20px;
        font-size: 14px;
        border-radius: 15px;
    }

    #analyze-btn {
        width: 100%;
        padding: 15px 0;
        border-radius: 15px;
        font-size: 16px;
    }

    .analysis-options {
        font-size: 10px;
        line-height: 1.4;
        margin-top: 10px;
    }

    /* Scanner Overlay Fix */
    .gt-scanner-wrapper h2 {
        font-size: 24px;
    }

    .scanner-flex-layout {
        flex-direction: column;
        gap: 20px;
    }

    .preview-body {
        height: 250px; /* মোবাইলে প্রিভিউ উইন্ডো ছোট করা */
    }

    .scan-steps-box {
        width: 100%;
    }

    .step-txt {
        font-size: 15px;
    }

    /* Results Dashboard Fix */
    .report-header-card {
        flex-direction: column;
        padding: 20px;
        text-align: center;
        gap: 20px;
    }

    .site-info {
        flex-direction: column;
        gap: 15px;
    }

    .report-meta a {
        font-size: 18px;
        word-break: break-all; /* লম্বা ইউআরএল যেন স্ক্রিন থেকে বের না হয় */
    }

    .action-buttons {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    /* Score Cards Fix */
    .score-grid {
        grid-template-columns: 1fr; /* কার্ডগুলো একটা একটা করে দেখাবে */
    }

    .grade-value {
        font-size: 70px;
    }

    .vitals-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    /* Tabs Fix */
    .tabs {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 5px;
    }

    .tab-btn {
        padding: 10px 15px;
        font-size: 13px;
    }

    /* Footer Fix */
    .pro-footer {
        padding: 20px;
        font-size: 11px;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 32px;
    }
    
    .analysis-box-pro {
        padding: 8px;
    }
}
/* Advanced SEO Section Styling */
.advanced-seo-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 113, 227, 0.05));
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.seo-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.s-feature {
    background: rgba(255, 255, 255, 0.02);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.s-feature:hover {
    background: rgba(0, 113, 227, 0.05);
    border-color: var(--apple-blue);
    transform: translateY(-5px);
}

.s-icon { font-size: 40px; margin-bottom: 15px; }
.s-feature h3 { font-size: 20px; margin-bottom: 12px; color: #fff; }
.s-feature p { color: #888; font-size: 14px; line-height: 1.6; }

.seo-divider { border: 0; height: 1px; background: rgba(255, 255, 255, 0.1); margin: 40px 0; }

.seo-deep-content { max-width: 900px; margin: 0 auto; text-align: left; }
.seo-deep-content h2 { font-size: 32px; color: #fff; margin-bottom: 20px; }
.seo-deep-content h3 { font-size: 22px; color: var(--apple-blue); margin: 30px 0 15px; }
.seo-deep-content p { color: #aaa; font-size: 16px; line-height: 1.8; margin-bottom: 20px; }
.seo-deep-content a { color: var(--apple-blue); text-decoration: none; font-weight: 600; }

.keyword-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.keyword-tags span {
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 12px;
    color: #555;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
    .seo-deep-content h2 { font-size: 24px; }
}







/* Center the card properly */
.app-viewport {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    min-height: 80vh;
}

.converter-card {
    width: 100%;
    max-width: 450px;
    padding: 40px 30px;
}

.pro-title {
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 600;
}
.pro-title span {
    color: var(--apple-blue);
}

/* Advanced Upload Box */
.upload-area {
    border: 2px dashed rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 25px;
    padding: 50px 20px;
    cursor: pointer;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin: 20px 0;
}

.upload-area:hover {
    border-color: var(--apple-blue);
    transform: scale(1.02);
    background: rgba(0, 113, 227, 0.05);
}

.upload-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(0, 113, 227, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.plus-icon {
    font-size: 30px;
    color: var(--apple-blue);
}

/* Smart Preview Grid */
.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 12px;
    margin-top: 20px;
    max-height: 250px;
    overflow-y: auto;
    padding-right: 5px;
}

.preview-grid img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeIn 0.5s ease;
}

/* Pro Buttons */
/* বাটনকে বড় এবং সুন্দর করার জন্য প্যাডিং আপডেট */
.pro-btn {
    width: 100%;
    /* উপরে-নিচে ২০ পিক্সেল এবং ডানে-বামে ৩৫ পিক্সেল প্যাডিং */
    padding: 20px 35px; 
    border-radius: 100px;
    font-weight: 700;
    font-size: 16px; /* টেক্সট সাইজ একটু বাড়ানো হয়েছে */
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px; /* অক্ষরের মাঝে গ্যাপ */
    margin-top: 20px;
    display: block;
}

/* ডাউনলোড বাটনের জন্য স্পেশাল প্যাডিং এবং ইফেক্ট */
.green-btn {
    background: #34c759;
    color: white;
    box-shadow: 0 10px 25px rgba(52, 199, 89, 0.4); /* গ্লো ইফেক্ট বাড়ানো হয়েছে */
}

/* ক্লিক করার সময় একটু ছোট হবে (Apple Style Feedback) */
.pro-btn:active {
    transform: scale(0.96);
}
.blue-btn {
    background: var(--apple-blue);
    color: white;
    box-shadow: 0 10px 20px rgba(0, 113, 227, 0.3);
}

.green-btn {
    background: #34c759;
    color: white;
    box-shadow: 0 10px 20px rgba(52, 199, 89, 0.3);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Custom Scrollbar */
.preview-grid::-webkit-scrollbar { width: 4px; }
.preview-grid::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 10px; }


/* Pro Tools Grid Layout */
.pro-tools-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
    text-align: left;
}

.tool-group-title {
    font-size: 10px;
    font-weight: 800;
    color: #555;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 15px;
}

.tool-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    cursor: pointer;
    transition: 0.3s;
    opacity: 0.6;
}

.tool-item:hover {
    opacity: 1;
    transform: translateX(5px);
}

.tool-item.active {
    opacity: 1;
}

.tool-item.active span {
    color: #ff4b4b; /* JPG to PDF হাইলাইট করার জন্য */
    font-weight: 700;
}

.tool-item img {
    width: 20px;
    height: 20px;
}

.tool-item span {
    font-size: 13px;
    color: #fff;
    font-weight: 500;
}

.tool-divider {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    margin: 20px 0;
}

/* মোবাইলের জন্য রেসপনসিভ */
@media (max-width: 450px) {
    .pro-tools-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* --- Pro Tools Grid Layout --- */
.pro-tools-grid {
    display: grid;
    grid-template-columns: repeat(2, 220px); /* ডেস্কটপে নির্দিষ্ট উইডথ */
    gap: 15px;
    margin: 0 auto 30px auto;
    justify-content: center;
    width: fit-content;
}

.tool-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* --- Smooth Apple-style Item --- */
.tool-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    cursor: pointer;
    backdrop-filter: blur(10px); /* গ্লাস ইফেক্ট */
    -webkit-backdrop-filter: blur(10px);
    
    /* স্মুথ অ্যানিমেশনের মূল কোড */
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
}

/* --- Hover & Active State (Smooth Transition) --- */
.tool-item:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(0, 113, 227, 0.4);
    transform: translateY(-3px) scale(1.02); /* হালকা উপরে উঠবে */
}

.tool-item.active {
    background: rgba(0, 113, 227, 0.15);
    border-color: var(--apple-blue);
    box-shadow: 0 8px 20px rgba(0, 113, 227, 0.2);
    transform: scale(1.02);
}

.tool-item:active {
    transform: scale(0.95); /* ক্লিক করলে হালকা দেবে যাবে (Haptic feedback) */
    transition: all 0.1s ease;
}

/* --- Responsive Fix for Mobile (2 Columns) --- */
@media (max-width: 600px) {
    .pro-tools-grid {
        grid-template-columns: 1fr 1fr; /* মোবাইলে ২ কলাম */
        width: 100%;
        max-width: 360px;
        gap: 10px;
        padding: 0 15px;
    }

    .tool-item {
        padding: 10px 12px;
        gap: 8px;
    }

    .tool-item span {
        font-size: 11px;
        white-space: nowrap;
    }

    .tool-item img {
        width: 16px;
        height: 16px;
    }
}


.tool-item.active {
    background: rgba(0, 113, 227, 0.1);
    border-radius: 10px;
    padding-left: 10px;
    border-right: 3px solid var(--apple-blue);
    opacity: 1;
}

.tool-item.active span {
    color: var(--apple-blue) !important;
}

/* Professional SEO Section Styling */
.seo-footer-section {
    width: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0) 0%, rgba(20, 20, 20, 1) 100%);
    padding: 80px 20px;
    margin-top: 100px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.seo-container {
    max-width: 1100px;
    margin: 0 auto;
}

.seo-content-block h2 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
}

.seo-content-block p {
    color: #888;
    line-height: 1.8;
    font-size: 16px;
    text-align: center;
}

.seo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.seo-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.seo-card:hover {
    border-color: #0071e3;
    background: rgba(0, 113, 227, 0.03);
}

.seo-card h3 {
    color: #0071e3;
    margin-bottom: 15px;
    font-size: 18px;
}

.seo-card p {
    color: #777;
    font-size: 14px;
    line-height: 1.6;
}

.seo-keywords-cloud {
    margin-top: 60px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    text-align: center;
}

.seo-keywords-cloud h3 {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

.seo-keywords-cloud p {
    color: #444;
    font-size: 12px;
    letter-spacing: 1px;
}

.backlink-box {
    margin-top: 40px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 30px;
}

.backlink-box p {
    font-size: 13px;
    color: #555;
}

.backlink-box a {
    color: #0071e3;
    text-decoration: none;
    margin: 0 5px;
}

.backlink-box a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .seo-content-block h2 { font-size: 24px; }
    .seo-footer-section { padding: 40px 15px; }
}
/* SEO Detailed Tools Section */
.tools-details-section {
    padding: 60px 20px;
    background: transparent;
}

.main-seo-title {
    text-align: center;
    font-size: 36px;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 700;
}

.main-seo-subtitle {
    text-align: center;
    color: var(--apple-blue);
    font-size: 18px;
    margin-bottom: 50px;
    font-weight: 500;
}

.tools-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.tool-detail-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 30px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.tool-detail-card:hover {
    transform: translateY(-10px);
    border-color: var(--apple-blue);
    background: rgba(0, 113, 227, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.tool-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.tool-header img {
    width: 32px;
    height: 32px;
}

.tool-header h3 {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
}

.tool-detail-card p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.tool-features {
    list-style: none;
    padding: 0;
}

.tool-features li {
    font-size: 13px;
    color: #0071e3;
    margin-bottom: 8px;
    font-weight: 500;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .main-seo-title { font-size: 28px; }
    .tools-grid-detailed { grid-template-columns: 1fr; }
}

/* SEO Tag Generator Page Styling */
.seo-tags-section {
    width: 100%;
    padding: 100px 20px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 113, 227, 0.05) 100%);
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.seo-container {
    max-width: 1000px;
    margin: 0 auto;
}

.seo-header-block h2 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 25px;
    text-align: center;
    background: linear-gradient(90deg, #fff, var(--apple-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.seo-header-block p {
    color: #999;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 60px;
    font-size: 17px;
}

.seo-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.seo-feature-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 35px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.4s;
}

.seo-feature-card:hover {
    border-color: var(--apple-blue);
    transform: translateY(-5px);
}

.seo-feature-card h3 {
    color: var(--apple-blue);
    font-size: 20px;
    margin-bottom: 15px;
}

.seo-feature-card p {
    color: #777;
    font-size: 14px;
    line-height: 1.6;
}

.keyword-cloud {
    margin-top: 60px;
    padding: 30px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    text-align: center;
}

.keyword-cloud h4 {
    color: #555;
    font-size: 14px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.keyword-cloud p {
    color: #333;
    font-size: 13px;
    letter-spacing: 0.5px;
    line-height: 2;
}

.authority-links {
    margin-top: 40px;
    text-align: center;
    font-size: 12px;
    color: #444;
}

.authority-links a {
    color: var(--apple-blue);
    text-decoration: none;
    margin: 0 5px;
}

.authority-links a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .seo-header-block h2 { font-size: 26px; }
}
/* Professional FAQ Section Styling */
.faq-section {
    padding: 80px 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 40px 40px 0 0;
    margin-top: 50px;
}

.faq-main-title {
    text-align: center;
    font-size: 32px;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 700;
}

.faq-intro {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    font-size: 15px;
}

.faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.faq-item:hover {
    border-color: var(--apple-blue);
}

.faq-item h3 {
    color: #eee;
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 600;
}

.faq-item p {
    color: #888;
    font-size: 14px;
    line-height: 1.7;
}

.faq-item strong {
    color: var(--apple-blue);
    font-weight: 600;
}

/* Mobile responsive adjustments */
@media (max-width: 600px) {
    .faq-main-title { font-size: 24px; }
    .faq-item h3 { font-size: 16px; }
}
/* Master SEO Section Styling */
.master-seo-section {
    padding: 80px 20px;
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 60px;
    text-align: left;
}

.seo-header-pro h2 {
    font-size: 34px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}

.seo-header-pro p {
    color: #999;
    line-height: 1.8;
    font-size: 16px;
    max-width: 900px;
}

.feature-seo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.seo-feature-box {
    background: rgba(255, 255, 255, 0.02);
    padding: 25px;
    border-radius: 20px;
    border-left: 3px solid var(--apple-blue);
}

.seo-feature-box h4 {
    color: var(--apple-blue);
    margin-bottom: 12px;
    font-size: 18px;
}

.seo-feature-box p {
    color: #777;
    font-size: 14px;
    line-height: 1.6;
}

.seo-info-block {
    margin-top: 60px;
}

.seo-info-block h3 {
    color: #fff;
    margin-bottom: 25px;
}

.pro-steps {
    color: #aaa;
    line-height: 2;
    font-size: 15px;
    padding-left: 20px;
}

.pro-steps strong {
    color: #eee;
}

.faq-pro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
    background: rgba(255,255,255,0.01);
    padding: 30px;
    border-radius: 24px;
}

.faq-item-pro strong {
    color: #fff;
    display: block;
    margin-bottom: 10px;
}

.faq-item-pro p {
    color: #888;
    font-size: 14px;
}

.seo-keyword-footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.seo-keyword-footer p {
    color: #444;
    font-size: 13px;
    line-height: 1.8;
}

.authority-p {
    margin-top: 15px;
}

.authority-p a {
    color: var(--apple-blue);
    text-decoration: none;
}

@media (max-width: 768px) {
    .faq-pro-grid { grid-template-columns: 1fr; }
    .seo-header-pro h2 { font-size: 26px; }
}
/* মেইন ভিউপোর্টের অতিরিক্ত গ্যাপ কমানো */
.thumb-viewport {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px; /* প্যাডিং ১০০ থেকে কমিয়ে ৬০ করা হয়েছে */
    text-align: center;
    min-height: auto; /* min-height: 80vh সরিয়ে auto করা হয়েছে */
}

/* এসইও সেকশনের ওপরের মার্জিন কমানো */
.master-seo-section {
    padding: 60px 20px;
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 20px; /* মার্জিন ৬০ থেকে কমিয়ে ২০ করা হয়েছে */
    text-align: left;
}

/* কিওয়ার্ড ক্লাউডের মার্জিন অ্যাডজাস্টমেন্ট */
.keyword-cloud {
    margin-top: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
}
/* Mega SEO Section Styling */
.mega-seo-section {
    width: 100%;
    padding: 100px 20px;
    background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, #000 100%);
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 80px;
    text-align: left;
}

.seo-article {
    max-width: 900px;
    margin: 0 auto;
}

.article-header h2 {
    font-size: 38px;
    color: #fff;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #0071e3, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.author-info {
    font-size: 13px;
    color: #555;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-body h3 {
    color: #0071e3;
    font-size: 24px;
    margin: 40px 0 20px 0;
}

.article-body p {
    color: #aaa;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 25px;
}

.seo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin: 40px 0;
}

.seo-card-mini {
    background: rgba(255,255,255,0.02);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
}

.seo-card-mini h4 {
    color: #eee;
    margin-bottom: 10px;
    font-size: 18px;
}

.seo-card-mini p {
    font-size: 14px;
    margin-bottom: 0;
}

.authority-backlink-block {
    margin-top: 60px;
    padding: 30px;
    background: rgba(0, 113, 227, 0.03);
    border-radius: 24px;
    border: 1px solid rgba(0, 113, 227, 0.1);
}

.authority-backlink-block h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 15px;
}

.authority-backlink-block p {
    color: #666;
    font-size: 13px;
    line-height: 1.6;
}

.authority-backlink-block a {
    color: #0071e3;
    text-decoration: none;
    font-weight: 600;
}

.crawler-keyword-cloud {
    margin-top: 40px;
    font-size: 12px;
    color: #333;
    text-align: center;
    border-top: 1px solid #111;
    padding-top: 20px;
}

@media (max-width: 768px) {
    .seo-grid { grid-template-columns: 1fr; }
    .article-header h2 { font-size: 28px; }
}





        .bg-viewport {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 80px 20px;
            text-align: center;
        }

        .remover-container {
            width: 100%;
            max-width: 800px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 32px;
            padding: 40px;
            backdrop-filter: blur(20px);
        }

        .upload-slot {
            border: 2px dashed rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 60px 20px;
            cursor: pointer;
            transition: 0.3s;
            margin-bottom: 30px;
        }

        .upload-slot:hover {
            border-color: var(--apple-blue);
            background: rgba(0, 113, 227, 0.03);
        }

        .process-preview {
            display: none;
            gap: 20px;
            grid-template-columns: 1fr 1fr;
            margin-top: 30px;
        }

        .preview-box {
            background: rgba(0,0,0,0.2);
            padding: 10px;
            border-radius: 15px;
            text-align: center;
        }

        .preview-box img {
            width: 100%;
            border-radius: 10px;
            display: block;
        }

        .preview-box span {
            font-size: 12px;
            color: #666;
            margin-top: 10px;
            display: block;
        }

        .loading-bar {
            display: none;
            width: 100%;
            height: 4px;
            background: rgba(255,255,255,0.1);
            border-radius: 10px;
            overflow: hidden;
            margin: 20px 0;
        }

        .progress {
            width: 0%;
            height: 100%;
            background: var(--apple-blue);
            transition: 0.3s;
        }

        @media (max-width: 600px) {
            .process-preview { grid-template-columns: 1fr; }
        }





