*{margin:0;padding:0;box-sizing:border-box}
body{
    font-family:Inter,Arial,sans-serif;
    background:#050b1a;
    color:#fff;
    line-height:1.6;
}

/* UTIL */
.container{max-width:1200px;margin:auto;padding:0 20px}
.center{text-align:center}

/* HEADER */
.header{background:#060e20;position:sticky;top:0;z-index:10}
.header-flex{display:flex;justify-content:space-between;align-items:center;padding:15px 0}
.logo{display:flex;gap:10px;color:#fff;text-decoration:none;font-weight:700}
.logo img{width:34px}
.nav a{margin-left:20px;color:#cfd8ff;text-decoration:none}
.btn-primary{background:#2da9ff;color:#000;padding:10px 20px;border-radius:10px}

/* HERO */
.hero{padding:90px 20px;text-align:center}
.hero h1{font-size:clamp(32px,5vw,52px)}
.hero span{color:#2da9ff}
.search-box{display:flex;max-width:480px;margin:30px auto}
.search-box input{flex:1;padding:14px;border:none;border-radius:10px 0 0 10px}
.search-box button{padding:14px 24px;border:none;background:#2da9ff;border-radius:0 10px 10px 0}

/* STATS */
.stats{display:grid;grid-template-columns:repeat(auto-fit,minmax(150px,1fr));gap:20px;padding:40px}
.stat{background:#0b1533;padding:25px;border-radius:16px;text-align:center}
.stat strong{font-size:26px}

/* TOOLS */
.tools{padding:80px 20px}
.tool-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:20px;margin-top:40px}
.tool-card{background:#0b1533;padding:30px;border-radius:18px}
.tool-card .icon{font-size:36px}
.btn-outline{display:inline-block;margin-top:15px;border:1px solid #2da9ff;padding:10px 20px;border-radius:10px;color:#2da9ff;text-decoration:none}

/* FOOTER */
.footer{background:#060e20;padding:60px 20px}
.footer-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:30px}
.footer a{color:#9bb1ff;display:block;margin-top:6px;text-decoration:none}
.copy{text-align:center;margin-top:40px;color:#666}
.popular-bar{
    display:flex;
    gap:12px;
    justify-content:center;
    flex-wrap:wrap;
    padding:30px 20px;
}
.popular-bar .label{color:#9bb1ff}
.popular-bar a{
    padding:8px 14px;
    border-radius:20px;
    background:#0b1533;
    color:#cfd8ff;
    text-decoration:none;
    font-size:14px;
}
.figma-stats{
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
}
.stat-card .icon{
    width:48px;height:48px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:14px;
}
.icon.blue{background:#1e40af}
.icon.orange{background:#c2410c}
.icon.green{background:#047857}
.icon.cyan{background:#0e7490}
.figma-grid{
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
}
/* TOOL ICON BASE */
.tool-icon{
    width:64px;
    height:64px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:18px;

    background:rgba(255,255,255,.08);
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,.12),
        0 12px 30px rgba(0,0,0,.6);

    transition:.3s ease;
    color:#ffffff; 
}

/* ICON IMAGE */
.tool-icon img{
    width:34px;
    height:34px;
    filter:none;                 /* 🔴 VERY IMPORTANT */
}

/* COLOR VARIANTS */
.icon-blue{background:linear-gradient(145deg,#3b82f6,#1e40af)}
.icon-orange{background:linear-gradient(145deg,#f97316,#c2410c)}
.icon-purple{background:linear-gradient(145deg,#a855f7,#6d28d9)}
.icon-green{background:linear-gradient(145deg,#22c55e,#15803d)}

/* HOVER EFFECT */
.tool-card:hover .tool-icon{
    transform:translateY(-4px) scale(1.05);
    box-shadow:
        0 0 0 1px rgba(255,255,255,.2),
        0 20px 50px rgba(56,189,248,.45);
}

.tool-card{
    background:linear-gradient(180deg,#020617,#020617);
    border-radius:22px;
    padding:28px;
    position:relative;
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,.05),
        0 30px 60px rgba(0,0,0,.55);
    transition:.3s ease;
}
.tool-card:hover{
    transform:translateY(-6px);
}
.tool-card h3{
    font-size:18px;
    margin-bottom:6px;
}
.tool-card p{
    font-size:14px;
    color:#9ca3af;
}
.tool-card a{
    margin-top:18px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:100%;
    height:44px;
    border-radius:12px;
    background:rgba(255,255,255,.04);
    color:#e5e7eb;
    text-decoration:none;
    font-size:14px;
    transition:.25s;
}
.tool-card a:hover{
    background:#2563eb;
    color:#fff;
}

.stat-card{
    background:linear-gradient(180deg,#020617,#020617);
    border-radius:22px;
    padding:30px;
    text-align:left;
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,.05),
        0 20px 50px rgba(0,0,0,.6);
}
.stat-card h3{
    font-size:32px;
    margin-top:12px;
}
.stat-card p{
    color:#9ca3af;
    font-size:14px;
}
@media(max-width:1024px){
    .tool-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:640px){
    .tool-grid{
        grid-template-columns:1fr;
    }

    .hero h1{
        font-size:32px;
    }

    .stats{
        padding:20px;
    }

    .tool-card{
        padding:22px;
    }
}
/* FOOTER BASE */
.figma-footer{
    background:linear-gradient(180deg,#020617,#020617);
    padding:90px 20px 40px;
    color:#cbd5f5;
}

/* CTA */
.footer-cta{
    text-align:center;
    margin-bottom:90px;
}

/* GRID */
.footer-inner{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:40px;
}

/* BRAND */
.brand-head{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:14px;
}
.brand-head img{
    width:48px;               /* LOGO BIG */
    filter:drop-shadow(0 0 18px rgba(56,189,248,.45));
}
.brand-head span{
    font-size:22px;
    font-weight:700;
    color:#fff;
}
.footer-brand p{
    font-size:14px;
    color:#94a3b8;
    max-width:280px;
}

/* SOCIAL ICONS */
.footer-social{
    display:flex;
    gap:12px;
    margin-top:18px;
}
.footer-social a{
    width:36px;
    height:36px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:10px;
    background:rgba(255,255,255,.05);
    color:#94a3b8;
    font-size:14px;
    text-decoration:none;
    transition:.25s;
}
.footer-social a:hover{
    background:#38bdf8;
    color:#020617;
}

/* COLUMNS */
.footer-col h4{
    font-size:14px;
    margin-bottom:14px;
    color:#fff;
}
.footer-col a{
    display:block;
    font-size:14px;
    margin-bottom:10px;
    color:#94a3b8;
    text-decoration:none;
    transition:.2s;
}
.footer-col a:hover{
    color:#38bdf8;
}

/* BOTTOM */
.footer-bottom{
    text-align:center;
    margin-top:60px;
    font-size:13px;
    color:#64748b;
    border-top:1px solid rgba(255,255,255,.06);
    padding-top:30px;
}
/* HEADER */
.main-header{
    position:sticky;
    top:0;
    z-index:100;
    background:linear-gradient(180deg,#020617,#020617);
    backdrop-filter:blur(10px);
}

.header-inner{
    max-width:1200px;
    margin:auto;
    padding:18px 20px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

/* BRAND */
.brand{
    display:flex;
    align-items:center;
    gap:14px;
    text-decoration:none;
}
.brand img{
    width:44px;                     /* BIG LOGO */
    filter:drop-shadow(0 0 18px rgba(56,189,248,.45));
}
.brand span{
    font-size:22px;                 /* BIG TEXT */
    font-weight:700;
    color:#fff;
}

/* NAV */
.nav{
    display:flex;
    align-items:center;
    gap:28px;
}
.nav a{
    color:#cbd5f5;
    font-size:15px;
    text-decoration:none;
    position:relative;
    transition:.25s;
}
.nav a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:#38bdf8;
    transition:.25s;
}
.nav a:hover{
    color:#fff;
}
.nav a:hover::after{
    width:100%;
}

/* CTA */
.cta-btn{
    padding:10px 20px;
    border-radius:14px;
    background:linear-gradient(145deg,#38bdf8,#2563eb);
    color:#020617 !important;
    font-weight:600;
    box-shadow:0 12px 30px rgba(56,189,248,.45);
}
.cta-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 18px 40px rgba(56,189,248,.6);
}

/* MOBILE */
.menu-toggle{
    display:none;
    font-size:22px;
    color:#fff;
    cursor:pointer;
}
@media(max-width:768px){
    .nav{
        position:absolute;
        top:72px;
        right:20px;
        background:#020617;
        border-radius:16px;
        padding:20px;
        flex-direction:column;
        gap:16px;
        display:none;
        box-shadow:0 20px 60px rgba(0,0,0,.8);
    }
    .nav.active{
        display:flex;
    }
    .menu-toggle{
        display:block;
    }
}

/* POPULAR */
.popular-wrap{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    margin:30px 0 60px;
    flex-wrap:wrap;
}
.popular-label{
    color:#94a3b8;
    font-size:14px;
}
.popular-tags{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}
/* POPULAR TAG */
.tag{
    padding:8px 16px;
    border-radius:999px;
    background:rgba(255,255,255,.04);
    color:#cbd5f5;
    font-size:14px;
    text-decoration:none;
    transition:.25s;
    border:1px solid rgba(255,255,255,.08);
}

/* HOVER */
.tag:hover{
    background:rgba(56,189,248,.12);
    border-color:#38bdf8;
    color:#fff;
}

/* ACTIVE (CLICKED) */
.tag.active{
    background:rgba(56,189,248,.18);
    border-color:#38bdf8;
    color:#fff;
    box-shadow:0 0 20px rgba(56,189,248,.35);
}


/* STATS GRID */
.stats-grid{
    max-width:1200px;
    margin:auto;
    padding:40px 20px 0;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}
.stat-card{
    background:rgba(255,255,255,.03);
    border-radius:22px;
    padding:28px;
    transition:.3s;
    border:1px solid rgba(255,255,255,.06);
}

/* DEFAULT ACTIVE */
.stat-card.active{
    border-color:#38bdf8;
    box-shadow:0 18px 50px rgba(56,189,248,.18);
}

/* HOVER (ACTIVE থাকলেও কাজ করবে) */
.stat-card:hover{
    transform:translateY(-6px);
    border-color:#38bdf8;
    box-shadow:0 25px 70px rgba(56,189,248,.35);
}


/* ICON */
.stat-icon{
    width:42px;
    height:42px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    margin-bottom:14px;
}
.stat-icon.blue{background:#2563eb}
.stat-icon.orange{background:#f97316}
.stat-icon.green{background:#22c55e}
.stat-icon.cyan{background:#38bdf8}

.stat-card h3{
    font-size:28px;
    margin-bottom:6px;
}
.stat-card p{
    font-size:14px;
    color:#94a3b8;
}
.stat-icon.cyan{
    background:#0ea5e9; /* bright cyan */
}

.stat-icon.cyan svg{
    width:18px;
    height:18px;
    stroke:#fff;        /* WHITE */
    stroke-width:2;
    fill:none;
}
.stat-card:hover .stat-icon.cyan{
    box-shadow:0 0 30px rgba(14,165,233,.7);
}
.stat-card:hover .stat-icon svg{
    transform:scale(1.1);
}

.stat-card:hover .stat-icon{
    transform:scale(1.1);
}
.stat-icon{
    transition:.25s;
}

.count{
    font-variant-numeric: tabular-nums;
    letter-spacing:.5px;
}

.tool-icon{
    color:#ffffff;   /* 🔥 THIS LINE FIXES EVERYTHING */
}

/* RESPONSIVE */
@media(max-width:1024px){
    .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
@media(max-width:600px){
    .stats-grid{
        grid-template-columns:1fr;
    }
}

/* RESPONSIVE */
@media(max-width:1024px){
    .footer-inner{
        grid-template-columns:1fr 1fr;
    }
}
@media(max-width:640px){
    .footer-inner{
        grid-template-columns:1fr;
        gap:32px;
    }
    .footer-cta{margin-bottom:60px}
}
/* =========================
   TOOLS SECTION (NEW)
========================= */

.tools-section{
    padding:100px 20px;
    text-align:center;
}

/* HEAD */
.tools-head h2{
    font-size:36px;
    margin-bottom:12px;
    color:#fff;
}
.tools-head p{
    color:#94a3b8;
    font-size:16px;
    margin-bottom:60px;
}

/* GRID (only affects .tools-section) */
.tools-section .tools-grid{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

/* CARD (safe override) */
.tools-section .tool-card{
    background:rgba(255,255,255,.03);
    border-radius:22px;
    padding:32px 26px;
    text-align:center;     /* ICON CENTER */
    border:1px solid rgba(255,255,255,.06);
    transition:.35s;
}

.tools-section .tool-card:hover{
    transform:translateY(-8px);
    border-color:#38bdf8;
    box-shadow:0 30px 80px rgba(56,189,248,.18);
}

/* ICON CENTER */
.tools-section .tool-icon{
    margin:0 auto 18px;
}

/* BUTTON */
.tools-section .tool-btn{
    display:inline-block;
    padding:10px 18px;
    border-radius:12px;
    background:rgba(255,255,255,.06);
    color:#cbd5f5;
    text-decoration:none;
    transition:.25s;
}

.tools-section .tool-card:hover .tool-btn{
    background:#38bdf8;
    color:#020617;
}

/* COLOR VARIANTS */
.tool-icon.blue{background:#2563eb}
.tool-icon.orange{background:#f97316}
.tool-icon.purple{background:#8b5cf6}
.tool-icon.green{background:#22c55e}

/* CARD TEXT CENTER FIX */
.tool-card{
    text-align:center;
}
/* ===== FIX UPTIME (FIGMA MATCH) ===== */

.count.uptime{
    font-size:32px;
    font-weight:700;
    display:flex;
    align-items:flex-start;
    gap:2px;
}

.count.uptime .percent{
    font-size:18px;
    margin-top:6px;
    opacity:.85;
}

/* icon consistency */
.stat-icon svg{
    width:18px;
    height:18px;
}

.stats-grid{
    max-width:1200px;
    margin:auto;
    padding:40px 20px 0;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.stat-card{
    background:rgba(255,255,255,.03);
    border-radius:22px;
    padding:30px;
    border:1px solid rgba(255,255,255,.06);
    transition:.35s ease;
}

.stat-card:hover{
    transform:translateY(-6px);
    border-color:#38bdf8;
    box-shadow:0 25px 70px rgba(56,189,248,.35);
}

.stat-card.active{
    border-color:#38bdf8;
    box-shadow:0 18px 50px rgba(56,189,248,.18);
}

/* ICON */
.stat-icon{
    width:48px;
    height:48px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:16px;
}

.stat-icon svg{
    width:20px;
    height:20px;
}

.icon-blue{background:linear-gradient(145deg,#3b82f6,#1e40af)}
.icon-orange{background:linear-gradient(145deg,#f97316,#c2410c)}
.icon-purple{background:linear-gradient(145deg,#a855f7,#6d28d9)}
.icon-green{background:linear-gradient(145deg,#22c55e,#15803d)}


/* NUMBER */
.count{
    font-size:32px;
    font-weight:700;
    display:flex;
    align-items:flex-start;
    gap:2px;
}

.count .plus{
    font-size:18px;
    margin-top:6px;
    opacity:.8;
}

.count.uptime .percent{
    font-size:18px;
    margin-top:6px;
    opacity:.85;
}

.stat-card p{
    margin-top:6px;
    font-size:14px;
    color:#94a3b8;
}

/* RESPONSIVE */
@media(max-width:1024px){
    .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
@media(max-width:600px){
    .stats-grid{
        grid-template-columns:1fr;
    }
}
ground:#22c55e;
}

.tool-card a{
    text-decoration:none;
    border-bottom:none;
}

.tool-card a:hover{
    background:#2563eb;
    color:#fff;
    box-shadow:0 0 25px rgba(37,99,235,.6);
}
.btn-primary{
    text-decoration:none;
    transition:.25s ease;
}

.btn-primary:hover{
    background:#38bdf8;
    box-shadow:0 0 30px rgba(56,189,248,.6);
    transform:translateY(-2px);
}
.pdf-icon img{
    width:50px;
    height:50px;
}

.tool-icon{
    color:#fff;
}

/* =========================
   GLOBAL LOGO ANIMATION
========================= */

.brand img{
    animation: logoFloat 4s ease-in-out infinite;
    will-change: transform;
}

@keyframes logoFloat{
    0%{
        transform:translateY(0) scale(1);
        filter:drop-shadow(0 0 10px rgba(56,189,248,.3));
    }
    50%{
        transform:translateY(-6px) scale(1.05);
        filter:drop-shadow(0 0 25px rgba(56,189,248,.7));
    }
    100%{
        transform:translateY(0) scale(1);
        filter:drop-shadow(0 0 10px rgba(56,189,248,.3));
    }
}
/* =========================
   LOGO HOVER ANIMATION
   GLOBAL (ALL PAGES)
========================= */

.brand img{
    transition:
        transform .4s ease,
        filter .4s ease,
        box-shadow .4s ease;
}

/* HOVER EFFECT */
.brand:hover img{
    transform:translateY(-6px) scale(1.08) rotate(-2deg);
    filter:drop-shadow(0 0 30px rgba(56,189,248,.85));
}

/* OPTIONAL GLOW RING */
.brand:hover{
    position:relative;
}

.brand:hover::after{
    content:'';
    position:absolute;
    inset:-8px;
    border-radius:14px;
    background:radial-gradient(circle, rgba(56,189,248,.35), transparent 70%);
    opacity:0;
    animation:logoGlow .4s forwards;
    pointer-events:none;
}
/* ===============================
   HEADER BLUR / FADE FIX (FINAL)
================================ */

/* Force solid header */
.main-header{
  background: #0b1220 !important; /* homepage original color */
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  opacity: 1 !important;
}

/* Header text sharp */
.main-header,
.main-header *{
  opacity: 1 !important;
  filter: none !important;
  text-shadow: none !important;
}

/* Fix nav link fade */
.main-header .nav a{
  color: #cbd5e1 !important;
}

.main-header .nav a:hover{
  color: #38bdf8 !important;
}

/* Fix Get Started button */
.main-header .cta-btn{
  opacity: 1 !important;
  filter: none !important;
}

@keyframes logoGlow{
    to{opacity:1}
}


/* RESPONSIVE */
@media(max-width:1024px){
    .tools-section .tools-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
@media(max-width:600px){
    .tools-section .tools-grid{
        grid-template-columns:1fr;
    }
    .tools-head h2{
        font-size:28px;
    }
}

