/* =====================================================
   TOOLBOX PRO
   Part 1
   Variables • Reset • Body • Background
===================================================== */

/* ===========================
   VARIABLES
=========================== */

:root{

    --bg:#0f172a;
    --bg-secondary:#111827;
    --bg-light:#1e293b;

    --surface:rgba(255,255,255,.08);
    --surface-hover:rgba(255,255,255,.12);

    --border:rgba(255,255,255,.12);

    --primary:#3b82f6;
    --primary-hover:#2563eb;

    --secondary:#7c3aed;

    --success:#22c55e;
    --warning:#f59e0b;
    --danger:#ef4444;

    --text:#ffffff;
    --text-muted:#cbd5e1;

    --radius:18px;

    --shadow:
    0 15px 45px rgba(0,0,0,.35);

    --transition:.30s ease;

}

/* ===========================
   RESET
=========================== */

*{

    margin:0;
    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

img{

    max-width:100%;
    display:block;

}

button,
input,
textarea,
select{

    font:inherit;

}

a{

    color:inherit;

    text-decoration:none;

}

ul{

    list-style:none;

}

/* ===========================
   BODY
=========================== */

body{

    font-family:'Inter',sans-serif;

    background:var(--bg);

    color:var(--text);

    overflow-x:hidden;

    min-height:100vh;

    line-height:1.6;

}

/* ===========================
   CONTAINER
=========================== */

.container{

    width:min(1200px,92%);

    margin:auto;

}

/* ===========================
   MAIN
=========================== */

main{

    width:min(1200px,92%);

    margin:auto;

    padding:60px 0;

}

/* ===========================
   BACKGROUND
=========================== */

.bg{

    position:fixed;

    inset:0;

    z-index:-2;

    background:

    radial-gradient(circle at top left,
    rgba(37,99,235,.25),
    transparent 40%),

    radial-gradient(circle at bottom right,
    rgba(124,58,237,.25),
    transparent 40%),

    linear-gradient(
    135deg,
    #0f172a,
    #111827,
    #1e293b
    );

    background-size:200% 200%;

    animation:bgMove 18s ease infinite;

}

/* floating glow */

.bg::before{

    content:"";

    position:absolute;

    width:600px;
    height:600px;

    background:

    radial-gradient(circle,
    rgba(59,130,246,.18),
    transparent 70%);

    top:-250px;
    right:-200px;

    filter:blur(30px);

}

.bg::after{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    background:

    radial-gradient(circle,
    rgba(124,58,237,.18),
    transparent 70%);

    bottom:-220px;
    left:-150px;

    filter:blur(30px);

}

@keyframes bgMove{

0%{

background-position:0% 50%;

}

50%{

background-position:100% 50%;

}

100%{

background-position:0% 50%;

}

}

/* ===========================
   TYPOGRAPHY
=========================== */

h1,h2,h3,h4{

    line-height:1.2;

    font-weight:700;

}

p{

    color:var(--text-muted);

}

section{

    margin-bottom:80px;

}
/* =====================================================
   TOOLBOX PRO
   Part 2
   Header • Navigation • Search • User Actions
===================================================== */

/* ===========================
   GLASS HEADER
=========================== */

.glass{

    width:min(1200px,92%);
    margin:28px auto;

    padding:22px 28px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.12);

    border-radius:24px;

    box-shadow:0 20px 50px rgba(0,0,0,.35);

}

/* ===========================
   HEADER TOP
=========================== */

.header-top{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:25px;

    flex-wrap:wrap;

}

/* ===========================
   LOGO
=========================== */

.logo{

    display:flex;

    align-items:center;

    gap:14px;

}

.logo-icon{

    width:52px;
    height:52px;

    border-radius:16px;

    display:grid;
    place-items:center;

    background:

    linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    font-size:1.5rem;

    box-shadow:

    0 15px 35px rgba(59,130,246,.35);

}

.logo-text{

    display:flex;

    flex-direction:column;

}

.logo-text h1{

    font-size:1.8rem;

}

.logo-text span{

    color:var(--text-muted);

    font-size:.9rem;

}

/* ===========================
   NAVIGATION
=========================== */

nav{

    display:flex;

    align-items:center;

    gap:10px;

    flex-wrap:wrap;

}

nav a{

    padding:12px 18px;

    border-radius:12px;

    color:var(--text-muted);

    transition:var(--transition);

    font-weight:500;

}

nav a:hover{

    background:rgba(255,255,255,.08);

    color:white;

}

nav a.active{

    background:

    linear-gradient(
    135deg,
    var(--primary),
    var(--secondary));

    color:white;

}

/* ===========================
   HEADER ACTIONS
=========================== */

.header-actions{

    display:flex;

    align-items:center;

    gap:14px;

    flex-wrap:wrap;

}

/* ===========================
   SEARCH
=========================== */

.search-box{

    position:relative;

}

.search-box input{

    width:280px;

    padding:

    13px
    18px
    13px
    45px;

    border-radius:14px;

    border:1px solid rgba(255,255,255,.08);

    background:rgba(255,255,255,.06);

    color:white;

    outline:none;

    transition:.30s;

}

.search-box input::placeholder{

    color:#94a3b8;

}

.search-box input:focus{

    border-color:var(--primary);

    background:rgba(255,255,255,.09);

    box-shadow:

    0 0 0 4px rgba(59,130,246,.15);

}

.search-box i{

    position:absolute;

    left:16px;

    top:50%;

    transform:translateY(-50%);

    color:#94a3b8;

}

/* ===========================
   USER PROFILE
=========================== */

.user-profile{

    display:flex;

    align-items:center;

    gap:12px;

    cursor:pointer;

}

.avatar{

    width:44px;

    height:44px;

    border-radius:50%;

    display:grid;

    place-items:center;

    font-weight:bold;

    color:white;

    background:

    linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

}

.user-info{

    display:flex;

    flex-direction:column;

}

.user-info strong{

    font-size:.95rem;

}

.user-info small{

    color:var(--text-muted);

}

/* ===========================
   HEADER BUTTONS
=========================== */

.header-btn{

    padding:12px 20px;

    border:none;

    border-radius:12px;

    background:rgba(255,255,255,.08);

    color:white;

    cursor:pointer;

    transition:var(--transition);

}

.header-btn:hover{

    background:rgba(255,255,255,.14);

}

.upgrade-btn{

    background:

    linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:white;

    box-shadow:

    0 15px 35px rgba(59,130,246,.30);

}

.upgrade-btn:hover{

    transform:translateY(-3px);

}

/* ===========================
   STICKY HEADER
=========================== */

header{

    position:sticky;

    top:15px;

    z-index:1000;

}

/* ===========================
   DIVIDER
=========================== */

.divider{

    margin:25px 0;

    height:1px;

    background:rgba(255,255,255,.08);

}
/* =====================================================
   TOOLBOX PRO
   Part 3
   Premium Hero Section
===================================================== */

.hero{

    display:grid;

    grid-template-columns:1.15fr .85fr;

    align-items:center;

    gap:70px;

    padding:90px 0 70px;

    position:relative;

}

/* ===========================
   LEFT
=========================== */

.hero-left{

    display:flex;

    flex-direction:column;

    align-items:flex-start;

}

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 18px;

    border-radius:999px;

    background:rgba(59,130,246,.12);

    border:1px solid rgba(59,130,246,.25);

    color:#93c5fd;

    font-weight:600;

    margin-bottom:28px;

}

.hero h2{

    font-size:clamp(3rem,6vw,5rem);

    line-height:1.08;

    font-weight:800;

    margin-bottom:24px;

}

.hero h2 span{

    background:linear-gradient(
        90deg,
        #60a5fa,
        #7c3aed,
        #22d3ee
    );

    background-size:200%;

    background-clip:text;

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

    animation:gradientText 6s linear infinite;

}

.hero-subtitle{

    max-width:620px;

    font-size:1.08rem;

    color:var(--text-muted);

    line-height:1.9;

    margin-bottom:40px;

}

/* ===========================
   BUTTONS
=========================== */

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

/* ===========================
   STATS
=========================== */

.hero-stats{

    display:flex;

    gap:45px;

    margin-top:45px;

    flex-wrap:wrap;

}

.hero-stats div{

    min-width:90px;

}

.hero-stats h3{

    font-size:2rem;

    color:#60a5fa;

    margin-bottom:5px;

}

.hero-stats span{

    color:#94a3b8;

    font-size:.95rem;

}

/* ===========================
   RIGHT
=========================== */

.hero-right{

    display:flex;

    justify-content:center;

    align-items:center;

}

/* ===========================
   DASHBOARD
=========================== */

.dashboard-preview{

    width:100%;

    max-width:480px;

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.12);

    backdrop-filter:blur(20px);

    border-radius:26px;

    padding:28px;

    box-shadow:0 30px 80px rgba(0,0,0,.35);

    animation:floatCard 6s ease-in-out infinite;

}

/* ===========================
   WINDOW BAR
=========================== */

.window-bar{

    display:flex;

    gap:10px;

    margin-bottom:25px;

}

.window-bar span{

    width:13px;

    height:13px;

    border-radius:50%;

}

.window-bar span:nth-child(1){

    background:#ef4444;

}

.window-bar span:nth-child(2){

    background:#f59e0b;

}

.window-bar span:nth-child(3){

    background:#22c55e;

}

/* ===========================
   DASHBOARD TITLE
=========================== */

.dashboard-preview h3{

    font-size:1.2rem;

    margin-bottom:25px;

}

/* ===========================
   TOOL GRID
=========================== */

.preview-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

}

.preview-card{

    background:#162033;

    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;

    padding:28px;

    text-align:center;

    font-weight:700;

    transition:.35s;

}

.preview-card:hover{

    transform:translateY(-8px);

    background:#1f2d46;

    border-color:#3b82f6;

}

/* ===========================
   GLOW
=========================== */

.hero::before{

    content:"";

    position:absolute;

    width:520px;

    height:520px;

    background:radial-gradient(circle,
    rgba(59,130,246,.18),
    transparent 70%);

    top:-240px;

    right:-180px;

    filter:blur(35px);

    z-index:-1;

}

.hero::after{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    background:radial-gradient(circle,
    rgba(124,58,237,.15),
    transparent 70%);

    left:-160px;

    bottom:-180px;

    filter:blur(35px);

    z-index:-1;

}

/* ===========================
   ANIMATIONS
=========================== */

@keyframes gradientText{

    0%{

        background-position:0%;

    }

    100%{

        background-position:200%;

    }

}

@keyframes floatCard{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0);

    }

}
/* =====================================================
   TOOLBOX PRO
   Part 4
   Buttons • Search • Tabs • Categories
===================================================== */

/* ===========================
   GLOBAL BUTTONS
=========================== */

button{

    font-family:inherit;

    border:none;

    outline:none;

    cursor:pointer;

    transition:all .3s ease;

}

/* Primary */

.primary-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:15px 30px;

    border-radius:14px;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:#fff;

    font-weight:700;

    box-shadow:
    0 15px 35px rgba(59,130,246,.30);

}

.primary-btn:hover{

    transform:translateY(-4px);

    box-shadow:
    0 25px 45px rgba(59,130,246,.45);

}

/* Secondary */

.secondary-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:15px 28px;

    border-radius:14px;

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.12);

    color:white;

    backdrop-filter:blur(16px);

}

.secondary-btn:hover{

    background:rgba(255,255,255,.12);

    transform:translateY(-4px);

}

/* ===========================
   SEARCH BAR
=========================== */

.search-section{

    margin:70px 0;

}

.search-wrapper{

    max-width:760px;

    margin:auto;

    position:relative;

}

.search-input{

    width:100%;

    height:62px;

    padding:0 65px 0 22px;

    border-radius:18px;

    border:1px solid rgba(255,255,255,.10);

    background:rgba(255,255,255,.06);

    backdrop-filter:blur(18px);

    color:white;

    font-size:1rem;

    transition:.3s;

}

.search-input::placeholder{

    color:#94a3b8;

}

.search-input:focus{

    border-color:var(--primary);

    background:rgba(255,255,255,.08);

    box-shadow:

    0 0 0 5px rgba(59,130,246,.12);

}

.search-icon{

    position:absolute;

    right:22px;

    top:50%;

    transform:translateY(-50%);

    font-size:1.2rem;

    color:#94a3b8;

}

/* ===========================
   CATEGORY TABS
=========================== */

.tabs{

    display:flex;

    justify-content:center;

    gap:15px;

    flex-wrap:wrap;

    margin-top:50px;

}

.tabs button{

    padding:14px 24px;

    border-radius:14px;

    background:rgba(255,255,255,.06);

    color:white;

    border:1px solid rgba(255,255,255,.08);

    font-weight:600;

}

.tabs button:hover{

    transform:translateY(-3px);

    background:rgba(255,255,255,.12);

}

.tabs button.active{

    background:

    linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:white;

}

/* ===========================
   CATEGORY PILLS
=========================== */

.categories{

    display:flex;

    justify-content:center;

    gap:15px;

    flex-wrap:wrap;

    margin:40px 0;

}

.category{

    padding:10px 20px;

    border-radius:999px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.10);

    color:var(--text-muted);

    cursor:pointer;

    transition:.3s;

}

.category:hover{

    transform:translateY(-3px);

    background:rgba(255,255,255,.10);

    color:white;

}

.category.active{

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:white;

}

/* ===========================
   SECTION TITLE
=========================== */

.section-title{

    text-align:center;

    margin-bottom:18px;

    font-size:2.4rem;

    font-weight:800;

}

.section-subtitle{

    max-width:700px;

    margin:auto;

    text-align:center;

    color:var(--text-muted);

    margin-bottom:50px;

    line-height:1.8;

}

/* ===========================
   SMALL BADGES
=========================== */

.badge{

    display:inline-flex;

    align-items:center;

    gap:8px;

    padding:8px 16px;

    border-radius:999px;

    background:rgba(59,130,246,.12);

    color:#93c5fd;

    border:1px solid rgba(59,130,246,.20);

    font-size:.85rem;

    font-weight:600;

}
/* =====================================================
   TOOLBOX PRO
   Part 5
   Tool Cards • Grid • PRO Cards
===================================================== */

/* ===========================
   TOOL GRID
=========================== */

.grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(290px,1fr));

    gap:28px;

    margin-top:35px;

}

/* ===========================
   TOOL CARD
=========================== */

.card{

    position:relative;

    display:flex;

    flex-direction:column;

    justify-content:space-between;

    min-height:270px;

    padding:28px;

    border-radius:22px;

    background:rgba(255,255,255,.06);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.10);

    overflow:hidden;

    transition:all .35s ease;

    box-shadow:0 18px 45px rgba(0,0,0,.25);

}

/* Glow */

.card::before{

    content:"";

    position:absolute;

    inset:0;

    background:

    linear-gradient(
        135deg,
        rgba(59,130,246,.12),
        transparent,
        rgba(124,58,237,.12)
    );

    opacity:0;

    transition:.35s;

}

.card:hover::before{

    opacity:1;

}

.card:hover{

    transform:translateY(-10px);

    border-color:rgba(59,130,246,.35);

    box-shadow:

    0 30px 60px rgba(37,99,235,.25);

}

/* ===========================
   ICON
=========================== */

.card-icon{

    width:72px;

    height:72px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:2rem;

    margin-bottom:20px;

    background:

    linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    box-shadow:

    0 15px 35px rgba(59,130,246,.30);

}

/* ===========================
   CONTENT
=========================== */

.card-content{

    display:flex;

    flex-direction:column;

    gap:14px;

}

.card h3{

    font-size:1.35rem;

    font-weight:700;

}

.card p{

    color:var(--text-muted);

    line-height:1.7;

    font-size:.95rem;

}

/* ===========================
   TAGS
=========================== */

.card-tags{

    display:flex;

    gap:10px;

    flex-wrap:wrap;

    margin-top:18px;

}

.card-tag{

    padding:6px 12px;

    border-radius:999px;

    background:rgba(255,255,255,.08);

    font-size:.8rem;

    color:#cbd5e1;

}

/* ===========================
   FOOTER
=========================== */

.card-footer{

    margin-top:24px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

/* ===========================
   OPEN BUTTON
=========================== */

.tool-btn{

    width:100%;

    padding:14px;

    border:none;

    border-radius:14px;

    background:

    linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:white;

    font-weight:700;

    cursor:pointer;

    transition:.3s;

}

.tool-btn:hover{

    transform:translateY(-3px);

    box-shadow:

    0 20px 40px rgba(59,130,246,.35);

}

/* ===========================
   PRO CARD
=========================== */

.locked{

    position:relative;

    opacity:.85;

}

.locked .tool-btn{

    background:#374151;

}

.locked::after{

    content:"👑 PRO";

    position:absolute;

    top:18px;

    right:18px;

    padding:6px 12px;

    border-radius:999px;

    background:#f59e0b;

    color:#111827;

    font-size:.75rem;

    font-weight:700;

}

/* ===========================
   NEW BADGE
=========================== */

.new-badge{

    position:absolute;

    top:18px;

    left:18px;

    padding:6px 12px;

    border-radius:999px;

    background:#22c55e;

    color:white;

    font-size:.75rem;

    font-weight:700;

}

/* ===========================
   POPULAR BADGE
=========================== */

.popular-badge{

    position:absolute;

    top:18px;

    left:18px;

    padding:6px 12px;

    border-radius:999px;

    background:#ef4444;

    color:white;

    font-size:.75rem;

    font-weight:700;

}

/* ===========================
   TOOL STATS
=========================== */

.tool-stats{

    display:flex;

    justify-content:space-between;

    margin-top:18px;

    color:#94a3b8;

    font-size:.85rem;

}

.tool-stats span{

    display:flex;

    align-items:center;

    gap:6px;

}
/* =====================================================
   TOOLBOX PRO
   Part 6
   Features • Statistics • CTA • Pricing
===================================================== */


/* ===========================
   FEATURES
=========================== */

.features{

    padding:90px 0;

}

.features-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:28px;

    margin-top:50px;

}

.feature-card{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    padding:30px;

    transition:.35s;

    backdrop-filter:blur(16px);

}

.feature-card:hover{

    transform:translateY(-8px);

    border-color:rgba(59,130,246,.35);

    box-shadow:0 25px 60px rgba(0,0,0,.30);

}

.feature-icon{

    width:70px;

    height:70px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:22px;

    font-size:2rem;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

}

.feature-card h3{

    margin-bottom:14px;

    font-size:1.3rem;

}

.feature-card p{

    color:var(--text-muted);

    line-height:1.8;

}


/* ===========================
   STATISTICS
=========================== */

.stats{

    padding:90px 0;

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:24px;

    margin-top:45px;

}

.stat-card{

    text-align:center;

    padding:35px;

    border-radius:22px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;

}

.stat-card:hover{

    transform:translateY(-6px);

}

.stat-card h2{

    font-size:3rem;

    color:#60a5fa;

    margin-bottom:10px;

}

.stat-card p{

    color:var(--text-muted);

}


/* ===========================
   CALL TO ACTION
=========================== */

.cta{

    margin:100px 0;

    padding:70px;

    text-align:center;

    border-radius:30px;

    background:

    linear-gradient(
        135deg,
        rgba(37,99,235,.18),
        rgba(124,58,237,.18)
    );

    border:1px solid rgba(255,255,255,.10);

    backdrop-filter:blur(18px);

}

.cta h2{

    font-size:2.8rem;

    margin-bottom:20px;

}

.cta p{

    max-width:700px;

    margin:auto;

    color:var(--text-muted);

    margin-bottom:35px;

    line-height:1.8;

}


/* ===========================
   PRICING
=========================== */

.pricing{

    padding:100px 0;

}

.pricing-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:35px;

    margin-top:60px;

}

.pricing-card{

    position:relative;

    padding:40px;

    border-radius:28px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.10);

    transition:.35s;

    overflow:hidden;

}

.pricing-card:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 70px rgba(0,0,0,.35);

}

.pricing-card.popular{

    border:2px solid #3b82f6;

}

.pricing-badge{

    position:absolute;

    top:18px;

    right:18px;

    padding:8px 15px;

    border-radius:999px;

    background:#3b82f6;

    color:white;

    font-size:.8rem;

    font-weight:700;

}

.plan-name{

    font-size:1.5rem;

    margin-bottom:10px;

}

.plan-price{

    font-size:3rem;

    font-weight:800;

    margin-bottom:25px;

}

.plan-price span{

    font-size:1rem;

    color:var(--text-muted);

}

.plan-features{

    display:flex;

    flex-direction:column;

    gap:15px;

    margin-bottom:35px;

}

.plan-features li{

    display:flex;

    align-items:center;

    gap:10px;

    color:var(--text-muted);

}

.plan-btn{

    width:100%;

}


/* ===========================
   TRUST SECTION
=========================== */

.trust{

    margin-top:90px;

    text-align:center;

}

.trust-logos{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:50px;

    flex-wrap:wrap;

    margin-top:40px;

}

.trust-logo{

    opacity:.6;

    transition:.3s;

    font-size:1.2rem;

    font-weight:700;

}

.trust-logo:hover{

    opacity:1;

    transform:scale(1.08);

}
/* =====================================================
   TOOLBOX PRO
   Part 7
   Footer • Forms • Newsletter • Utilities
===================================================== */


/* ===========================
   FOOTER
=========================== */

.footer{

    margin-top:120px;

    padding:80px 0 30px;

    border-top:1px solid rgba(255,255,255,.08);

    background:rgba(255,255,255,.02);

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:40px;

}

.footer-logo h2{

    margin-bottom:15px;

    font-size:2rem;

}

.footer-logo p{

    color:var(--text-muted);

    line-height:1.8;

}

.footer h3{

    margin-bottom:18px;

    font-size:1.15rem;

}

.footer-links{

    display:flex;

    flex-direction:column;

    gap:12px;

}

.footer-links a{

    color:var(--text-muted);

    transition:.3s;

}

.footer-links a:hover{

    color:white;

    padding-left:8px;

}

/* ===========================
   SOCIAL ICONS
=========================== */

.social-icons{

    display:flex;

    gap:14px;

    margin-top:25px;

}

.social-icons a{

    width:46px;

    height:46px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(255,255,255,.06);

    transition:.3s;

}

.social-icons a:hover{

    transform:translateY(-5px);

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

}

/* ===========================
   NEWSLETTER
=========================== */

.newsletter{

    margin-top:25px;

}

.newsletter form{

    display:flex;

    gap:12px;

    margin-top:15px;

}

.newsletter input{

    flex:1;

}

/* ===========================
   INPUTS
=========================== */

input,
textarea,
select{

    width:100%;

    padding:14px 18px;

    border-radius:14px;

    border:1px solid rgba(255,255,255,.10);

    background:rgba(255,255,255,.05);

    color:white;

    outline:none;

    transition:.3s;

}

input::placeholder,
textarea::placeholder{

    color:#94a3b8;

}

input:focus,
textarea:focus,
select:focus{

    border-color:var(--primary);

    box-shadow:

    0 0 0 4px rgba(59,130,246,.15);

}

textarea{

    resize:vertical;

    min-height:140px;

}

/* ===========================
   FORM GROUP
=========================== */

.form-group{

    margin-bottom:20px;

}

.form-label{

    display:block;

    margin-bottom:8px;

    font-weight:600;

}

/* ===========================
   BACK BUTTON
=========================== */

.back-btn{

    display:inline-flex;

    align-items:center;

    gap:8px;

    padding:12px 20px;

    border-radius:12px;

    background:rgba(255,255,255,.08);

    color:white;

    transition:.3s;

}

.back-btn:hover{

    transform:translateY(-3px);

    background:rgba(255,255,255,.14);

}

/* ===========================
   COPYRIGHT
=========================== */

.footer-bottom{

    margin-top:60px;

    padding-top:25px;

    border-top:1px solid rgba(255,255,255,.08);

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    flex-wrap:wrap;

}

.footer-bottom p{

    color:#94a3b8;

}

/* ===========================
   BADGES
=========================== */

.badge{

    display:inline-flex;

    align-items:center;

    gap:8px;

    padding:8px 14px;

    border-radius:999px;

    font-size:.85rem;

    font-weight:600;

}

.badge-primary{

    background:rgba(59,130,246,.15);

    color:#93c5fd;

}

.badge-success{

    background:rgba(34,197,94,.15);

    color:#86efac;

}

.badge-warning{

    background:rgba(245,158,11,.15);

    color:#fde68a;

}

.badge-danger{

    background:rgba(239,68,68,.15);

    color:#fca5a5;

}

/* ===========================
   UTILITIES
=========================== */

.text-center{

    text-align:center;

}

.text-left{

    text-align:left;

}

.text-right{

    text-align:right;

}

.mt-1{margin-top:10px;}
.mt-2{margin-top:20px;}
.mt-3{margin-top:30px;}
.mt-4{margin-top:40px;}
.mt-5{margin-top:50px;}

.mb-1{margin-bottom:10px;}
.mb-2{margin-bottom:20px;}
.mb-3{margin-bottom:30px;}
.mb-4{margin-bottom:40px;}
.mb-5{margin-bottom:50px;}

.hidden{

    display:none !important;

}

.flex{

    display:flex;

}

.flex-center{

    display:flex;

    justify-content:center;

    align-items:center;

}

.space-between{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.rounded{

    border-radius:var(--radius);

}

.shadow{

    box-shadow:var(--shadow);

}
/* =====================================================
   TOOLBOX PRO
   Part 8
   Dashboard • Sidebar • Profile • Activity
===================================================== */

/* ===========================
   DASHBOARD LAYOUT
=========================== */

.dashboard{

    display:grid;

    grid-template-columns:280px 1fr;

    gap:30px;

    min-height:calc(100vh - 140px);

}

/* ===========================
   SIDEBAR
=========================== */

.sidebar{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    padding:28px;

    backdrop-filter:blur(18px);

    position:sticky;

    top:25px;

    height:fit-content;

}

.sidebar h3{

    margin-bottom:25px;

}

.sidebar-menu{

    display:flex;

    flex-direction:column;

    gap:10px;

}

.sidebar-menu a{

    display:flex;

    align-items:center;

    gap:12px;

    padding:14px 18px;

    border-radius:14px;

    color:var(--text-muted);

    transition:.3s;

}

.sidebar-menu a:hover{

    background:rgba(255,255,255,.08);

    color:white;

}

.sidebar-menu a.active{

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:white;

}

/* ===========================
   DASHBOARD CONTENT
=========================== */

.dashboard-content{

    display:flex;

    flex-direction:column;

    gap:30px;

}

/* ===========================
   WELCOME CARD
=========================== */

.welcome-card{

    padding:35px;

    border-radius:24px;

    background:linear-gradient(
        135deg,
        rgba(59,130,246,.18),
        rgba(124,58,237,.18)
    );

    border:1px solid rgba(255,255,255,.10);

}

.welcome-card h2{

    margin-bottom:12px;

}

/* ===========================
   STATS
=========================== */

.dashboard-stats{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:22px;

}

.dashboard-stat{

    padding:28px;

    border-radius:20px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    transition:.3s;

}

.dashboard-stat:hover{

    transform:translateY(-6px);

}

.dashboard-stat h3{

    font-size:2rem;

    color:#60a5fa;

    margin-bottom:10px;

}

/* ===========================
   PROFILE CARD
=========================== */

.profile-card{

    display:flex;

    align-items:center;

    gap:20px;

    padding:30px;

    border-radius:22px;

    background:rgba(255,255,255,.05);

}

.profile-avatar{

    width:75px;

    height:75px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:1.8rem;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

}

.profile-info h3{

    margin-bottom:8px;

}

/* ===========================
   RECENT ACTIVITY
=========================== */

.activity-card{

    padding:30px;

    border-radius:22px;

    background:rgba(255,255,255,.05);

}

.activity-list{

    display:flex;

    flex-direction:column;

    gap:16px;

    margin-top:20px;

}

.activity-item{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:15px 18px;

    border-radius:14px;

    background:rgba(255,255,255,.04);

}

/* ===========================
   FAVORITE TOOLS
=========================== */

.favorite-tools{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));

    gap:18px;

}

.favorite-tool{

    padding:24px;

    text-align:center;

    border-radius:18px;

    background:rgba(255,255,255,.05);

    transition:.3s;

}

.favorite-tool:hover{

    transform:translateY(-6px);

}

/* ===========================
   PRO STATUS
=========================== */

.pro-status{

    padding:30px;

    border-radius:22px;

    background:linear-gradient(
        135deg,
        #2563eb,
        #7c3aed
    );

    color:white;

}

.pro-status h3{

    margin-bottom:15px;

}

/* ===========================
   NOTIFICATION
=========================== */

.notification{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:15px;

    padding:18px 22px;

    border-radius:16px;

    background:rgba(59,130,246,.12);

    border-left:5px solid var(--primary);

}

/* ===========================
   QUICK ACTIONS
=========================== */

.quick-actions{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(160px,1fr));

    gap:18px;

}

.quick-action{

    padding:22px;

    text-align:center;

    border-radius:18px;

    background:rgba(255,255,255,.05);

    transition:.3s;

}

.quick-action:hover{

    transform:translateY(-6px);

    background:rgba(255,255,255,.08);

}
/* ==========================================
PART 10
FOOTER + BACK TO TOP + ANIMATIONS
========================================== */

/* FOOTER */

.footer{

    margin-top:100px;

    padding:70px 8% 30px;

    background:rgba(255,255,255,.04);

    border-top:1px solid rgba(255,255,255,.08);

}

.footer-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:40px;

    margin-bottom:40px;

}

.footer-logo h2{

    margin-bottom:15px;

}

.footer-logo p{

    color:var(--text-muted);

    line-height:1.8;

}

.footer h3{

    margin-bottom:18px;

}

.footer-links{

    display:flex;

    flex-direction:column;

    gap:12px;

}

.footer-links a{

    color:var(--text-muted);

    text-decoration:none;

    transition:.3s;

}

.footer-links a:hover{

    color:white;

    padding-left:6px;

}

.social-icons{

    display:flex;

    gap:15px;

}

.social-icons a{

    width:45px;

    height:45px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:12px;

    background:rgba(255,255,255,.06);

    color:white;

    text-decoration:none;

    transition:.3s;

}

.social-icons a:hover{

    transform:translateY(-5px);

    background:var(--primary);

}

.footer-bottom{

    margin-top:35px;

    padding-top:25px;

    border-top:1px solid rgba(255,255,255,.08);

    display:flex;

    justify-content:space-between;

    flex-wrap:wrap;

    gap:10px;

    color:var(--text-muted);

}

/* BACK TO TOP */

.back-top{

    position:fixed;

    right:25px;

    bottom:25px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:var(--primary);

    color:white;

    font-size:22px;

    cursor:pointer;

    opacity:0;

    visibility:hidden;

    transition:.3s;

    z-index:999;

}

.back-top.show{

    opacity:1;

    visibility:visible;

}

.back-top:hover{

    background:var(--primary-hover);

    transform:translateY(-5px);

}

/* REVEAL ANIMATION */

.card,
.feature-card,
.stat-card,
.pricing-card{

    opacity:0;

    transform:translateY(35px);

    transition:.6s ease;

}

.card.show,
.feature-card.show,
.stat-card.show,
.pricing-card.show{

    opacity:1;

    transform:translateY(0);

}

/* ACTIVE NAVIGATION */

.navbar a.active{

    color:#60a5fa;

}

.navbar a.active::after{

    width:100%;

}

/* HERO STATUS */

.hero-status{

    margin-top:20px;

    color:#93c5fd;

    font-weight:600;

}

/* SEARCH INPUT */

.search-input:focus{

    outline:none;

    border-color:var(--primary);

    box-shadow:0 0 0 4px rgba(59,130,246,.2);

}

/* BUTTON RIPPLE */

button{

    position:relative;

    overflow:hidden;

}

/* SCROLLBAR */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#111827;

}

::-webkit-scrollbar-thumb{

    background:#3b82f6;

    border-radius:50px;

}

::-webkit-scrollbar-thumb:hover{

    background:#2563eb;

}

/* LOADED */

.loaded{

    animation:pageFade .5s ease;

}

@keyframes pageFade{

    from{

        opacity:0;

    }

    to{

        opacity:1;

    }

}

/* MOBILE */

@media(max-width:768px){

.hero{

grid-template-columns:1fr;

text-align:center;

}

.hero-buttons{

justify-content:center;

}

.hero-stats{

justify-content:center;

flex-wrap:wrap;

}

.footer-grid{

grid-template-columns:1fr;

text-align:center;

}

.footer-bottom{

justify-content:center;

}

.social-icons{

justify-content:center;

}

.back-top{

right:15px;

bottom:15px;

}

}
/* ===========================
CHAT SUPPORT
=========================== */

#chatWidget{
position:fixed;
right:25px;
bottom:25px;
z-index:9999;
}

#chatToggle{

width:65px;
height:65px;

border:none;
border-radius:50%;

font-size:28px;

cursor:pointer;

background:#2563eb;
color:#fff;

box-shadow:0 10px 30px rgba(0,0,0,.25);

transition:.3s;
}

#chatToggle:hover{

transform:scale(1.08);

}

#chatBox{

display:none;

width:330px;

height:430px;

background:#fff;

border-radius:18px;

overflow:hidden;

box-shadow:0 20px 50px rgba(0,0,0,.25);

margin-bottom:15px;

}

.chat-header{

background:#2563eb;

color:#fff;

padding:16px;

font-weight:bold;

}

.chat-body{

height:300px;

padding:15px;

overflow:auto;

background:#f7f7f7;

}

.bot,
.user{

padding:10px 14px;

border-radius:12px;

margin-bottom:10px;

max-width:85%;

}

.bot{

background:white;

}

.user{

background:#2563eb;

color:white;

margin-left:auto;

text-align:right;

}

.chat-input{

display:flex;

border-top:1px solid #ddd;

}

.chat-input input{

flex:1;

padding:12px;

border:none;

outline:none;

}

.chat-input button{

width:90px;

border:none;

background:#2563eb;

color:white;

cursor:pointer;

}
/* ==========================================
CHAT SUPPORT
========================================== */

#chatWidget{
position:fixed;
bottom:25px;
right:25px;
z-index:9999;
}

#chatToggle{

width:60px;
height:60px;

border:none;
border-radius:50%;

background:#2563eb;
color:#fff;

font-size:26px;
cursor:pointer;

box-shadow:0 10px 25px rgba(0,0,0,.3);

transition:.3s;

}

#chatToggle:hover{

transform:scale(1.08);

}

#chatBox{

display:none;

width:340px;

height:460px;

background:#1f2937;

border-radius:18px;

overflow:hidden;

box-shadow:0 20px 40px rgba(0,0,0,.35);

margin-bottom:15px;

}

.chat-header{

background:#2563eb;

padding:15px;

color:white;

font-weight:bold;

}

.chat-body{

height:320px;

overflow:auto;

padding:15px;

background:#111827;

color:white;

}

.bot{

background:#374151;

padding:10px;

border-radius:10px;

margin-bottom:10px;

}

.user{

background:#2563eb;

padding:10px;

border-radius:10px;

margin-bottom:10px;

margin-left:50px;

color:white;

text-align:right;

}

.chat-input{

display:flex;

height:55px;

}

.chat-input input{

flex:1;

border:none;

outline:none;

padding:12px;

background:#1f2937;

color:white;

}

.chat-input button{

width:90px;

border:none;

background:#2563eb;

color:white;

cursor:pointer;

}