/* ===============================
   ROOT THEME VARIABLES
=================================*/

:root {

    /* Background */
    --bg-main: #0b0f19;
    --bg-secondary: #111827;
    --bg-card: #0f172a;
    --bg-hover: #1f2937;

    /* Text */
    --text-primary: #ffffff;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;

    /* Neon Accent */
    --neon-blue: #00f5ff;
    --neon-green: #00ffa6;
    --neon-purple: #8b5cf6;
    --neon-pink: #ff2bd6;

    /* Borders */
    --border-color: #1f2937;
    --border-light: #374151;

    /* Buttons */
    --btn-primary-bg: linear-gradient(45deg, #00f5ff, #00ffa6);
    --btn-primary-text: #000;

    /* Glow */
    --glow-blue: 0 0 10px #00f5ff;
    --glow-green: 0 0 10px #00ffa6;
    --glow-purple: 0 0 10px #8b5cf6;

    /* Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;

}


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

body {
    background: var(--bg-main);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
}


/* ===============================
   NAVBAR
=================================*/

.navbar {
    background: var(--bg-main);
    border-bottom: 1px solid var(--border-color);
}

.nav-link {
    color: var(--text-secondary);
    transition: 0.2s;
}

/* Merged: nav-link:hover, tb-hover-neon:hover, tb-nav-link:hover, tb-footer-links a:hover, tb-social a:hover */
.nav-link:hover,
.tb-hover-neon:hover,
.tb-nav-link:hover,
.tb-footer-links a:hover,
.tb-social a:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 6px var(--neon-blue);
}


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

.btn-neon {
    background: var(--btn-primary-bg);
    color: var(--btn-primary-text);
    border: none;
    padding: 8px 18px;
    border-radius: var(--radius-md);
    font-weight: 600;
}

.btn-neon:hover {
    box-shadow: var(--glow-blue);
}


/* ===============================
   CARDS
=================================*/

.card,
.tool-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    transition: 0.3s;
}

.card:hover,
.tool-card:hover {
    border-color: var(--neon-blue);
    box-shadow: var(--glow-blue);
}


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

/* Bootstrap inputs */
.form-control,
.input-dark {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.form-control:focus,
.input-dark:focus {
    border-color: var(--neon-blue);
    box-shadow: var(--glow-blue);
    background: var(--bg-secondary);
    color: var(--text-primary);
}

/* Merged: all custom dark inputs */
.tb-input-search,
.tb-hero-input,
.tb-input-news,
.tb-tools-input,
.tb-blog-input,
.tb-auth-input,
.tb-tool-textarea,
.tb-universal-search {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.tb-tool-textarea {
    resize: none;
}

.tb-universal-search {
    padding: 12px;
    border-radius: var(--radius-md);
}

/* Merged: all custom dark input focus states */
.tb-input-search:focus,
.tb-hero-input:focus,
.tb-input-news:focus,
.tb-tools-input:focus,
.tb-blog-input:focus,
.tb-auth-input:focus,
.tb-tool-textarea:focus,
.tb-universal-search:focus {
    border-color: var(--neon-blue);
    box-shadow: var(--glow-blue);
}


/* ===============================
   MODALS
=================================*/

.modal-content {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.modal-header {
    border-bottom: 1px solid var(--border-color);
}

.modal-footer {
    border-top: 1px solid var(--border-color);
}


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

.neon-text {
    color: var(--neon-blue);
    text-shadow: 0 0 8px var(--neon-blue);
}

.tb-text {
    color: var(--text-primary);
}

.tb-text-muted {
    color: var(--text-secondary);
}

.tb-text-neon {
    color: var(--neon-blue);
    text-shadow: 0 0 6px var(--neon-blue);
}


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

.tb-bg-main {
    background: var(--bg-main) !important;
}

.tb-bg-card {
    background: var(--bg-card) !important;
}

.tb-bg-secondary {
    background: var(--bg-secondary) !important;
}


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

.tb-border {
    border: 1px solid var(--border-color) !important;
}

.tb-border-neon {
    border: 1px solid var(--neon-blue) !important;
}


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

.tb-glow {
    box-shadow: var(--glow-blue);
}


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

.tb-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(11, 15, 25, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
}

.tb-header:hover {
    border-color: var(--neon-blue);
}
.dropdown-menu {
background: var(--bg-card);
border: 1px solid var(--border-color);
}

.dropdown-item {
color: var(--text-secondary);
}

.dropdown-item:hover {
color: var(--neon-blue);
background: transparent;
}

/* submenu */

.dropdown-submenu {
position: relative;
}

.dropdown-submenu .dropdown-menu {
top: 0;
left: 100%;
margin-left: .1rem;
display: none;
}

.dropdown-submenu:hover .dropdown-menu {
display: block;
}


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

.tb-logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
}

.tb-logo:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 8px var(--neon-blue);
}


/* ===============================
   NAV LINKS
=================================*/

.tb-nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    margin: 0 8px;
}

/* tb-nav-link:hover merged into .nav-link:hover group above */


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

.tb-search {
    position: relative;
    width: 220px;
}

/* tb-input-search base and focus merged in INPUTS section */


/* ===============================
   TOGGLER
=================================*/

.tb-toggler {
    border: 1px solid var(--border-color);
}


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

.tb-header-actions {
    align-items: center;
}


/* ===============================
   HERO SECTION
=================================*/

.tb-hero {
    padding: 120px 0 100px;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 245, 255, 0.15), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.15), transparent 40%);
}


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

.tb-hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
}

.tb-hero-subtitle {
    margin-top: 15px;
    color: var(--text-secondary);
    max-width: 520px;
}


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

.tb-hero-search {
    margin-top: 30px;
    display: flex;
    gap: 10px;
    max-width: 500px;
}

/* tb-hero-input base and focus merged in INPUTS section */


/* ===============================
   POPULAR TOOL TAGS / POPULAR TOOLS SECTION
   Merged both declarations of .tb-popular-tools
=================================*/

.tb-popular-tools {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 100px 0;
}

.tb-tool-tag {
    padding: 6px 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--text-secondary);
    text-decoration: none;
}

.tb-tool-tag:hover {
    color: var(--neon-blue);
    border-color: var(--neon-blue);
}


/* ===============================
   HERO CARD
=================================*/

.tb-hero-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: var(--radius-lg);
}

/* Merged: card hovers with neon glow only (no transform) */
.tb-hero-card:hover,
.tb-contact-card:hover,
.tb-tool-promo:hover,
.tb-auth-card:hover {
    border-color: var(--neon-blue);
    box-shadow: var(--glow-blue);
}


/* ===============================
   CATEGORY SECTION
=================================*/

.tb-categories {
    padding: 100px 0;
}


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

.tb-section-title {
    font-size: 34px;
    font-weight: 700;
}

/* Merged: subtitle classes with identical styles */
.tb-section-subtitle,
.tb-tools-subtitle,
.tb-blog-subtitle,
.tb-post-meta {
    color: var(--text-secondary);
    margin-top: 10px;
}


/* ===============================
   CATEGORY CARD
=================================*/

.tb-category-card {
    display: block;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px;
    text-align: center;
    text-decoration: none;
    color: var(--text-primary);
    transition: 0.3s;
}

.tb-category-card:hover {
    border-color: var(--neon-blue);
    box-shadow: var(--glow-blue);
    transform: translateY(-4px);
}


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

.tb-category-icon {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--neon-blue);
}

.tb-category-card h5 {
    margin-bottom: 6px;
}

.tb-category-card p {
    color: var(--text-secondary);
    font-size: 14px;
}


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

.tb-tool-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 25px;
    transition: 0.3s;
    height: 100%;
}

.tb-tool-card:hover {
    border-color: var(--neon-blue);
    box-shadow: var(--glow-blue);
    transform: translateY(-5px);
}


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

.tb-tool-icon {
    font-size: 28px;
    color: var(--neon-blue);
    margin-bottom: 12px;
}

.tb-tool-card h5 {
    margin-bottom: 8px;
}

.tb-tool-card p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 15px;
}


/* ===============================
   AI TOOLS SECTION
=================================*/

.tb-ai-tools {
    padding: 100px 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 245, 255, 0.12), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.12), transparent 40%);
}


/* ===============================
   AI CARD
=================================*/

.tb-ai-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 25px;
    transition: 0.3s;
    height: 100%;
    position: relative;
}

.tb-ai-card:hover {
    border-color: var(--neon-purple);
    box-shadow: 0 0 12px var(--neon-purple);
    transform: translateY(-6px);
}


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

.tb-ai-icon {
    font-size: 30px;
    color: var(--neon-purple);
    margin-bottom: 12px;
}

.tb-ai-card h5 {
    margin-bottom: 8px;
}

.tb-ai-card p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 15px;
}


/* ===============================
   BLOG SECTION
=================================*/

.tb-blog-section {
    padding: 100px 0;
}


/* ===============================
   BLOG CARD
   (Single definition — duplicates removed; :hover uses effective -4px value)
=================================*/

.tb-blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: 0.3s;
}

.tb-blog-card:hover {
    border-color: var(--neon-blue);
    box-shadow: var(--glow-blue);
    transform: translateY(-4px);
}


/* ===============================
   BLOG IMAGE
=================================*/

.tb-blog-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}


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

.tb-blog-content {
    padding: 20px;
}

.tb-blog-content h5 {
    margin-bottom: 8px;
}

.tb-blog-content a {
    color: var(--text-primary);
    text-decoration: none;
}

.tb-blog-content a:hover {
    color: var(--neon-blue);
}

.tb-blog-content p {
    color: var(--text-secondary);
    font-size: 14px;
}


/* ===============================
   READ MORE LINK
=================================*/

.tb-read-more {
    display: inline-block;
    margin-top: 10px;
    color: var(--neon-blue);
    font-weight: 500;
}

.tb-read-more:hover {
    text-shadow: 0 0 6px var(--neon-blue);
}


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

.tb-footer {
    background: var(--bg-card);
    padding: 80px 0 30px;
    border-top: 1px solid var(--border-color);
}


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

.tb-footer-logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.tb-footer-text {
    color: var(--text-secondary);
    font-size: 14px;
}


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

.tb-footer-title {
    margin-bottom: 12px;
    font-weight: 600;
}

.tb-footer-links {
    list-style: none;
    padding: 0;
}

.tb-footer-links li {
    margin-bottom: 8px;
}

/* Merged: tb-footer-links a and tb-docs-nav a share identical base styles */
.tb-footer-links a,
.tb-docs-nav a {
    color: var(--text-secondary);
    text-decoration: none;
}

/* tb-footer-links a:hover merged into .nav-link:hover group */


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

.tb-social {
    margin-top: 15px;
    display: flex;
    gap: 12px;
}

.tb-social a {
    color: var(--text-secondary);
    font-size: 18px;
}

/* tb-social a:hover merged into .nav-link:hover group */


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

.tb-newsletter {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

/* tb-input-news base and focus merged in INPUTS section */


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

.tb-footer-divider {
    border-color: var(--border-color);
    margin: 40px 0 20px;
}

.tb-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-secondary);
    font-size: 14px;
}

.tb-footer-bottom-links a {
    margin-left: 15px;
    color: var(--text-secondary);
    text-decoration: none;
}

.tb-footer-bottom-links a:hover {
    color: var(--neon-blue);
}


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

.tb-pricing {
    padding: 100px 0;
}


/* ===============================
   PRICE CARD
=================================*/

.tb-price-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 35px;
    text-align: center;
    transition: 0.3s;
    position: relative;
}

.tb-price-card:hover {
    border-color: var(--neon-blue);
    box-shadow: var(--glow-blue);
    transform: translateY(-6px);
}


/* ===============================
   HIGHLIGHT PLAN
=================================*/

.tb-price-highlight {
    border-color: var(--neon-purple);
    box-shadow: 0 0 12px rgba(139, 92, 246, 0.3);
}


/* ===============================
   PRICE TITLE
=================================*/

.tb-price-title {
    font-size: 18px;
    margin-bottom: 10px;
}


/* ===============================
   PRICE VALUE
=================================*/

.tb-price-value {
    font-size: 40px;
    font-weight: 700;
}


/* ===============================
   FEATURE LIST
=================================*/

.tb-price-features {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.tb-price-features li {
    margin-bottom: 10px;
    color: var(--text-secondary);
}


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

.tb-badge-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--neon-purple);
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
}


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

.tb-stats {
    padding: 80px 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(0, 245, 255, 0.12), transparent 40%),
        radial-gradient(circle at 70% 70%, rgba(139, 92, 246, 0.12), transparent 40%);
}


/* ===============================
   STAT CARD
=================================*/

.tb-stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px;
    transition: 0.3s;
}

.tb-stat-card:hover {
    border-color: var(--neon-blue);
    box-shadow: var(--glow-blue);
    transform: translateY(-4px);
}


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

.tb-stat-icon {
    font-size: 26px;
    color: var(--neon-blue);
    margin-bottom: 10px;
}


/* ===============================
   NUMBER
=================================*/

.tb-stat-number {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 5px;
}


/* ===============================
   LABEL
=================================*/

.tb-stat-label {
    color: var(--text-secondary);
    font-size: 14px;
}


/* ===============================
   TOOL SEARCH SECTION
=================================*/

.tb-tool-search {
    padding: 90px 0;
    background:
        radial-gradient(circle at 40% 30%, rgba(0, 245, 255, 0.1), transparent 40%),
        radial-gradient(circle at 70% 70%, rgba(139, 92, 246, 0.1), transparent 40%);
}


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

.tb-search-wrapper {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* tb-universal-search base and focus merged in INPUTS section */


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

.tb-search-tags {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.tb-search-tag {
    padding: 6px 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--text-secondary);
    text-decoration: none;
}

.tb-search-tag:hover {
    border-color: var(--neon-blue);
    color: var(--neon-blue);
    text-shadow: 0 0 6px var(--neon-blue);
}


/* ===============================
   TOOLS PAGE
=================================*/

.tb-tools-page {
    padding: 100px 0;
}


/* ===============================
   PAGE TITLE
=================================*/

/* Merged: tb-blog-title and tb-tools-title share identical styles */
.tb-blog-title,
.tb-tools-title {
    font-size: 36px;
    font-weight: 700;
}

/* tb-tools-subtitle merged into .tb-section-subtitle group */

.tb-tools-search {
    max-width: 500px;
    margin: 30px auto;
}

/* tb-tools-input base and focus merged in INPUTS section */


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

.tb-tools-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.tb-filter-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    cursor: pointer;
}

/* Merged: tb-filter-btn and tb-page-btn hover/active share identical styles */
.tb-filter-btn:hover,
.tb-filter-btn.active,
.tb-page-btn:hover,
.tb-page-btn.active {
    color: var(--neon-blue);
    border-color: var(--neon-blue);
}


/* ===============================
   PAGINATION
=================================*/

.tb-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.tb-page-btn {
    padding: 6px 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: var(--radius-sm);
}


/* ===============================
   TOOL PAGE
=================================*/

.tb-tool-page {
    padding: 100px 0;
}


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

.tb-tool-title {
    font-size: 34px;
    font-weight: 700;
}

.tb-tool-subtitle {
    color: var(--text-secondary);
    margin-top: 8px;
}


/* ===============================
   TOOL BOX
=================================*/

.tb-tool-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
}


/* ===============================
   BOX TITLE
=================================*/

.tb-box-title {
    margin-bottom: 10px;
    font-weight: 600;
}

/* tb-tool-textarea base and focus merged in INPUTS section */


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

.tb-tool-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}


/* ===============================
   BLOG PAGE
=================================*/

.tb-blog-page {
    padding: 100px 0;
}

/* tb-blog-title merged with .tb-tools-title above */
/* tb-blog-subtitle merged into .tb-section-subtitle group */

.tb-blog-search {
    max-width: 500px;
    margin: 30px auto;
}

/* tb-blog-input base and focus merged in INPUTS section */
/* tb-blog-card, tb-blog-img, tb-blog-content etc. defined once in BLOG SECTION above */


/* ===============================
   META
=================================*/

.tb-blog-meta {
    margin-top: 10px;
    font-size: 13px;
    color: var(--text-muted);
}


/* ===============================
   BLOG POST PAGE
=================================*/

.tb-blog-post {
    padding: 100px 0;
}


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

.tb-post-title {
    font-size: 38px;
    font-weight: 700;
}

/* tb-post-meta merged into .tb-section-subtitle group */


/* ===============================
   IMAGE
=================================*/

.tb-post-image img {
    width: 100%;
    border-radius: var(--radius-md);
    margin: 30px 0;
}


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

.tb-post-content {
    font-size: 17px;
    line-height: 1.7;
}

.tb-post-content h2 {
    margin-top: 30px;
}

.tb-post-content h3 {
    margin-top: 20px;
}

.tb-post-content p {
    color: var(--text-secondary);
}


/* ===============================
   TOOL PROMO
=================================*/

.tb-tool-promo {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px;
    text-align: center;
    margin-top: 40px;
}

/* tb-tool-promo:hover merged into .tb-hero-card:hover group */


/* ===============================
   AUTH PAGE
   (Duplicate declarations removed)
=================================*/

.tb-auth-page {
    padding: 120px 0;
    display: flex;
    align-items: center;
}


/* ===============================
   AUTH CARD
=================================*/

.tb-auth-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
}

/* tb-auth-card:hover merged into .tb-hero-card:hover group */


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

.tb-auth-title {
    font-size: 28px;
    font-weight: 700;
}

.tb-auth-subtitle {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* tb-auth-input and tb-auth-input:focus merged in INPUTS section */


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

.tb-auth-footer {
    margin-top: 15px;
    text-align: center;
}

.tb-auth-footer a {
    color: var(--neon-blue);
    text-decoration: none;
}

/* Merged: tb-auth-footer a:hover and tb-auth-link:hover share identical styles */
.tb-auth-footer a:hover,
.tb-auth-link:hover {
    text-shadow: 0 0 6px var(--neon-blue);
}

.tb-auth-link {
    color: var(--neon-blue);
    text-decoration: none;
    font-size: 14px;
}


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

.tb-dashboard {
    padding: 100px 0;
}


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

.tb-dashboard-header {
    margin-bottom: 30px;
}


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

.tb-dashboard-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 25px;
    text-align: center;
    transition: 0.3s;
}

.tb-dashboard-card:hover {
    border-color: var(--neon-blue);
    box-shadow: var(--glow-blue);
    transform: translateY(-4px);
}


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

.tb-dashboard-section {
    margin-top: 40px;
}


/* ===============================
   CONTACT PAGE
=================================*/

.tb-contact-page {
    padding: 100px 0;
}


/* ===============================
   CONTACT CARD / CONTACT INFO
   Merged: tb-contact-card and tb-contact-info share identical base styles
=================================*/

.tb-contact-card,
.tb-contact-info {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px;
}

/* tb-contact-card:hover merged into .tb-hero-card:hover group */

.tb-contact-item {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 15px;
    color: var(--text-secondary);
}

.tb-contact-item i {
    color: var(--neon-blue);
    font-size: 18px;
}


/* ===============================
   DOCS PAGE
=================================*/

.tb-docs-page {
    padding: 100px 0;
}


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

.tb-docs-sidebar {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    position: sticky;
    top: 90px;
}

.tb-docs-nav {
    list-style: none;
    padding: 0;
}

.tb-docs-nav li {
    margin-bottom: 10px;
}

/* tb-docs-nav a base merged with .tb-footer-links a */

.tb-docs-nav a:hover {
    color: var(--neon-blue);
}


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

.tb-docs-content {
    padding-left: 20px;
}

.tb-docs-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.tb-docs-content h2 {
    margin-top: 30px;
}


/* ===============================
   CODE BLOCK
=================================*/

.tb-code-block {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 15px;
    color: var(--neon-green);
    overflow: auto;
}

/* ===============================
   TOOL UI SHELL
=================================*/

.tb-tool-ui {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
}

.tb-tool-input,
.tb-tool-output {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px;
}

.tb-tool-ui .form-select {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.tb-tool-ui .form-select:focus {
    border-color: var(--neon-blue);
    box-shadow: var(--glow-blue);
}

.tb-tool-ui .form-control::placeholder {
    color: var(--text-muted);
}

.tb-tool-ui .tb-tool-actions {
    margin-top: 20px;
}

.tb-tool-ui-wrap {
    margin-top: 8px;
}

.tb-docs-page {
    padding: 60px 0;
}

.tb-docs-sidebar {
    position: sticky;
    top: 100px;
}

.tb-docs-nav a {
    display: block;
    font-size: 14px;
}

.tb-docs-nav a:hover {
    color: var(--neon-blue);
}

.tb-doc-submenu{

display:none;
padding-left:10px;

}

.tb-doc-toggle{

cursor:pointer;

}

.tb-doc-toc a{

display:block;
color:var(--text-secondary);
text-decoration:none;

}

.tb-doc-toc a.active{

color:var(--neon-blue);
font-weight:600;

}





/* Smooth page feel */
body{
    scroll-behavior: smooth;
}

/* Hover lift effect for cards */
.tb-category-card,
.tb-tool-card,
.tb-ai-card,
.tb-blog-card,
.tb-price-card,
.tb-stat-card{
    transition: transform .35s ease, box-shadow .35s ease;
}

.tb-category-card:hover,
.tb-tool-card:hover,
.tb-ai-card:hover,
.tb-blog-card:hover,
.tb-price-card:hover,
.tb-stat-card:hover{
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

/* Hero glow animation */

@keyframes neonGlow {
    0% { text-shadow:0 0 5px #00f2ff }
    50% { text-shadow:0 0 20px #00f2ff }
    100% { text-shadow:0 0 5px #00f2ff }
}

.neon-text{
    animation: neonGlow 2.5s infinite ease-in-out;
}

/* Floating effect for hero card */

@keyframes floating {
    0%{ transform: translateY(0px); }
    50%{ transform: translateY(-10px); }
    100%{ transform: translateY(0px); }
}

.tb-hero-card{
    animation: floating 5s ease-in-out infinite;
}

/* Button glow */

.btn-neon{
    transition: all .3s ease;
}

.btn-neon:hover{
    box-shadow:0 0 15px #00f2ff;
    transform: translateY(-2px);
}

