/*
Theme Name: ToolsHub
Theme URI: https://toolsHub.com
Author: Akshita Singh
Author URI: https://toolsHub.com
Description: Free Online Tools theme for Image Compressor, EMI Calculator, QR Generator, GST Calculator. SEO optimized, mobile-first, fast loading.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: daily-tools-hub
Tags: tools, calculator, image-compressor, seo, responsive, one-column, custom-menu
*/

/* =========================================
   1. GLOBAL & TYPOGRAPHY (Premium SaaS Look)
========================================= */


:root {
    /* Core UI Colors */
    --primary: #2f284d;
    --primary-light: #4a3f7a;
    --primary-dark: #1f1a36;
    --accent: #f87d00;
    --accent-light: #ffa94d;
    --accent-dark: #c25e00;

    /* Neutral Colors */
    --bg-main: #f8f9fc;
    --bg-card: #ffffff;
    --border-subtle: #e2e5ec;
    --text-primary: #1a1a1a;
    --text-secondary: #6b7280;
    --text-disabled: #9ca3af;

    /* Functional Colors */
    --success: #22c55e;
    --warning: #f59e0b;
    --error: #ef4444;
    --info: #3b82f6;

    /* Effects */
    --shadow-soft: 0 15px 35px rgba(47, 40, 77, 0.06);
    --transition-smooth: all 0.2s ease;
}

/* Dark Mode Variable Overrides */
body.dark-mode {
    --primary: #b7aaff;
    --primary-light: #d1cfff;
    --primary-dark: #6a5acd;
    --accent: #ffb86b;
    --accent-light: #ffd6a0;
    --accent-dark: #c25e00;

    --bg-main: #181824;
    --bg-card: #232336;
    --border-subtle: #35354a;
    --text-primary: #f3f3fa;
    --text-secondary: #b0b3c7;
    --text-disabled: #6b7280;

    --success: #22c55e;
    --warning: #fbbf24;
    --error: #ef4444;
    --info: #60a5fa;

    --shadow-soft: 0 15px 35px rgba(20, 20, 40, 0.18);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}


body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-primary);
    margin: 0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    transition: background 0.3s, color 0.3s;
}

a {
    text-decoration: none;
}

/* =========================================
   COMMON TYPOGRAPHY (Headings, Paragraphs)
========================================= */

h1,
.h1 {
    color: var(--primary);
    margin-bottom: 1.2rem;
}

h2,
.h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1.1rem;
    line-height: 1.2;
    position: relative;
}

h2.accent-bar,
.h2.accent-bar {
    padding-left: 0.7rem;
    border-left: 5px solid var(--accent);
}

h2.underline,
.h2.underline {
    border-bottom: 3px solid var(--accent);
    display: inline-block;
    padding-bottom: 0.2em;
}

h3,
.h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.25;
}

h4,
.h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

h5,
.h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 0.7rem;
    line-height: 1.3;
}

h6,
.h6 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

p,
.p {
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.1rem;
}

.bg-accent {
    background-color: var(--accent);
}

.text-muted,
.muted {
    color: var(--text-secondary) !important;
}

.text-disabled {
    color: var(--text-disabled) !important;
}

.btn-primary {
    background-color: var(--primary);
    color: #ffffff;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
}

.btn-primary:hover {
    background-color: var(--primary-light);
    color: #fff;
    box-shadow: 0 5px 15px rgba(47, 40, 77, 0.2);
}

.btn-secondary {
    background-color: var(--accent);
    color: #ffffff;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
}

.btn-secondary:hover {
    background-color: var(--accent-light);
    color: #fff;
    box-shadow: 0 5px 15px rgba(248, 125, 0, 0.2);
}



@media (max-width: 768px) {

    h1,
    .h1 {
        font-size: 2rem;
    }

    h2,
    .h2 {
        font-size: 1.5rem;
    }

    h3,
    .h3 {
        font-size: 1.2rem;
    }
}


textarea.form-control:focus {
    border-color: #6f42c1;
    /* Theme Primary Purple */
    box-shadow: 0 0 0 4px rgba(111, 66, 193, 0.1);
    background: #fff;
}


/* =========================================
   2. HEADER & NAVBAR (Crisp & Flat)
========================================= */

.site-header {
    background-color: var(--primary-dark);
    z-index: 1030;
}


.toolshub-navbar {
    background-color: #ffffff;
    padding-top: 0;
    padding-bottom: 0;
    min-height: 72px;
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: none !important;
}


.navbar-brand span {
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #fff !important;
}

/* Main Navigation Links */
.main-nav-links .nav-item {
    margin: 0 4px;
}


.main-nav-links .nav-link {
    /* color: #fff; */
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 26px 16px !important;
    position: relative;
    transition: var(--transition-smooth);
}

/* The Signature Bottom Red Line */
.main-nav-links .nav-link::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: transparent;
    transition: background-color 0.2s ease;
}


.main-nav-links .nav-link:hover,
.main-nav-links .nav-link.active {
    color: var(--accent);
}

.nav-link.show {
    color: var(--accent) !important;
    font-weight: 700 !important;
}

.main-nav-links .nav-link:hover::after,
.main-nav-links .nav-link.active::after {
    background-color: var(--accent);
}

/* Dropdowns */

.dropdown-menu {
    border: 1px solid var(--border-subtle) !important;
    border-radius: 6px;
    box-shadow: var(--shadow-soft) !important;
    padding: 8px 0;
    margin-top: 0;
    font-size: 14px;
    background: var(--bg-card);
}


.dropdown-item {
    padding: 10px 24px;
    font-weight: 500;
    color: var(--text-primary);
    transition: var(--transition-smooth);
}

.dropdown-item i {
    color: #888888;
    font-size: 1.1em;
    transition: var(--transition-smooth);
}


.dropdown-item:hover,
.dropdown-item:focus {
    background-color: var(--bg-main);
    color: var(--accent);
}

.dropdown-item:hover i {
    color: var(--brand-red);
}

/* 1. Hide default Bootstrap arrow which causes alignment issues */
.dropdown-toggle::after {
    display: none !important;
}

/* 2. Desktop Navigation Spacing */
.main-nav-links .nav-link {
    display: flex;
    align-items: center;
    padding: 26px 15px !important;
}

/* 3. Dropdown Menu Positioning */
@media (min-width: 992px) {
    .dropdown-menu {
        margin-top: -1px;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

    .dropdown-submenu {
        position: relative;
    }

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

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

/* MEGA MENU STYLING */

/* 1. Mega Menu Container */
@media (min-width: 992px) {
    .mega-menu-static {
        position: static !important;
    }

    .mega-menu-content {
        width: 100% !important;
        left: 0 !important;
        right: 0 !important;
        margin-top: 0 !important;
        border-radius: 0 0 12px 12px !important;
        padding: 0 !important;
        max-width: 900px;
        /* Aap isko customize kar sakte hain */
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

/* 2. Custom Headers & Items */
.dropdown-header-custom {
    font-size: 11px;
    font-weight: 800;
    color: #999;
    letter-spacing: 1px;
    padding: 0 15px 15px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 15px;
}

.dropdown-item-custom {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.dropdown-item-custom:hover {
    background-color: #f8f9fa;
    color: var(--brand-red);
}

.dropdown-item-custom i {
    font-size: 1.1rem;
}

.mega-footer-link {
    background-color: #fbfbfb;
    transition: background 0.2s ease;
}

.mega-footer-link:hover {
    background-color: #f0f0f0;
}

/* Mobile Tweak */
@media (max-width: 991px) {
    .mega-menu-content {
        position: static;
        width: auto !important;
        box-shadow: none !important;
        border: none !important;
    }

    .dropdown-header-custom {
        padding-top: 20px;
    }
}


/* 4. Hover Arrow Rotation (Optional but Pro) */
.nav-link.show .bi-chevron-down {
    transform: rotate(180deg);
}

.bi-chevron-down {
    display: inline-block;
    transition: transform 0.2s ease-in-out;
    font-size: 0.8rem;
}

.dropdown-toggle::after {
    display: none !important;
}

/* Auth Buttons */
.nav-auth-section {
    border-left: 1px solid var(--border-light);
    padding-left: 20px;
}

.nav-link-subtle {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    transition: var(--transition-smooth);
}

.nav-link-subtle:hover {
    color: var(--brand-red);
}


.btn-premium-signup {
    background-color: var(--accent);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 24px;
    border: none;
    transition: var(--transition-smooth);
}

.btn-premium-signup:hover {
    background-color: var(--accent-light);
    color: #fff;
}


/* =========================================
   3. HERO SECTION (Massive & Clean)
========================================= */
.hero-premium {
    position: relative;
    overflow: hidden;
    padding: 111px 0 146px;
    border-bottom: 1px solid var(--border-subtle);
    height: 33rem;
}

.hero-premium .hero-decor {
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.08);
    /* Thoda sa opacity badhaya */
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.hero-decor {
    display: block !important;
    z-index: 1;
}


.hero-title,
.hero-subtitle {
    position: relative;
    z-index: 2;
}

.search-container {
    max-width: 700px;
}

.search-box {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 1);
    padding: 4px 0px 5px 23px;
    border-radius: 100px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    border: 1px #dfdfdf solid;
}

.search-box:focus-within {
    transform: translateY(-5px);
}

.search-icon {
    padding: 0 15px;
    color: #6b7280;
    font-size: 1.2rem;
}

.search-input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 1.1rem;
    color: #1f2937;
}

.search-btn {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 100px;
    font-weight: 600;
    transition: 0.3s;
}

.search-btn:hover {
    background: #d97706;
    box-shadow: 0 5px 15px rgba(217, 119, 6, 0.4);
}

.category-capsules {
    padding: 8px 24px;
    border-radius: 50px;
    color: white;
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
    font-weight: 500;
    transition: transform 0.2s ease, filter 0.2s ease;
    cursor: pointer;
    border: none;
}

.category-capsules:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.all-tools-btn {
    background-color: #f8f9fa;
    color: #333;
    border: 1px solid var(--primary);
}

.all-tools-btn:hover {
    background-color: #333 !important;
    color: #fff !important;
    border-color: #333 !important;
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20px, -30px);
    }

    100% {
        transform: translate(0, 0);
    }
}

@keyframes float-reverse {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-20px, 30px);
    }

    100% {
        transform: translate(0, 0);
    }
}

.hero-premium .hero-decor-left {
    bottom: -10%;
    left: -5%;
    animation: float 8s ease-in-out infinite;
}

.hero-premium .hero-decor-right {
    top: -10%;
    right: -5%;
    animation: float-reverse 10s ease-in-out infinite;
}


/* --- Desktop Full Logo --- */
.site-logo-full {
    height: 60px;
    width: auto;
}

/* --- Mobile Icon Only --- */
.site-logo-icon {
    height: 30px;
    width: auto;
    transition: all 0.3s ease;
}


@media (max-width: 991px) {
    .site-logo-icon {
        height: 40px;
    }

    .toolshub-navbar {
        height: 60px;
    }

    .hero-premium {
        padding: 80px 0 100px;
        background-position: center;
    }
}

@media (max-width: 768px) {
    .category-capsules {
        padding: 8px 10px;
    }

    .search-container {
        max-width: 354px;
    }

    .search-box {
        padding: 0px;
        padding-left: 1.1rem;
    }
}

@media (max-width: 767px) {
    .hero-premium .hero-decor {
        background: rgba(255, 255, 255, 0.35) !important;
        filter: blur(15px) !important;
        width: 160px !important;
        height: 160px !important;

        display: block !important;
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
    }

    .hero-premium .hero-decor-left {
        bottom: 0% !important;
        left: -15% !important;
    }

    .hero-premium .hero-decor-right {
        top: 0% !important;
        right: -15% !important;
    }
}

@media (max-width: 767px) {
    .hero-decor {
        animation-duration: 5s !important;
    }
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -1px;
    margin-bottom: 1rem;
}


.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-weight: 400;
}


/* =========================================
   4. MAIN TOOLS GRID CARDS
========================================= */
.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 2.5rem;
    text-align: center;
}


.tools-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    padding: 40px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.tools-card .card-icon {
    font-size: 54px;
    margin-bottom: 24px;
    line-height: 1;
    transition: transform 0.3s ease;
}


.tools-card .card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}


.tools-card .card-desc {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}


.tools-card:hover {
    border-color: var(--accent) !important;
    box-shadow: var(--shadow-soft);
    background: #fff7ef;
}

.tools-card:hover .card-icon {
    transform: scale(1.05);
}

/* =========================================
   5. CATEGORIES LIST CARDS
========================================= */
.categories-premium {
    background-color: #ffffff;
    border-top: 1px solid var(--border-light);
}


.category-list-card {
    display: flex;
    align-items: center;
    padding: 24px;
    background-color: var(--bg-main);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    color: var(--text-primary);
    transition: var(--transition-smooth);
}

.category-list-card:hover {
    background-color: var(--bg-card);
    border-color: var(--accent-light);
    box-shadow: 0 8px 20px rgba(47, 40, 77, 0.04);
}


.cat-icon {
    font-size: 28px;
    margin-right: 20px;
    color: var(--primary-light);
}


.cat-content h3 {
    margin: 0 0 4px 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}


.cat-content span {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}


.cat-arrow {
    margin-left: auto;
    color: var(--text-disabled);
}

/* =========================================
   6. MOBILE RESPONSIVENESS
========================================= */
@media (max-width: 991px) {
    .toolshub-navbar {
        min-height: 64px;
    }

    .main-nav-links .nav-link {
        padding: 16px !important;
    }

    .main-nav-links .nav-link::after {
        display: none;
    }

    .dropdown-menu {
        border: none !important;
        box-shadow: none !important;
        background-color: #fbfbfb;
        margin: 0 10px;
    }

    .dropdown-submenu>.submenu {
        position: static;
        margin-left: 1rem;
        background-color: transparent;
        display: none;
    }

    .dropdown-submenu.open>.submenu {
        display: block;
    }

    .dropdown-submenu.open>.dropdown-toggle::after {
        transform: rotate(90deg);
    }

    .nav-auth-section {
        border-left: none;
        border-top: 1px solid var(--border-light);
        padding-left: 0;
        padding-top: 20px;
        margin-top: 10px;
        justify-content: center;
    }

    .navbar-toggler {
        order: 3;
        /* Toggler ko aakhri mein rakho */
    }

    .navbar-brand {
        padding: 0;
        margin-right: 10px !important;
    }

    .btn-premium-signup {
        font-size: 13px !important;
        padding: 5px 12px !important;
        white-space: nowrap;
    }

    .bi-list {
        font-size: 2rem !important;
    }

    .navbar-collapse {
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        overflow-x: hidden;
        padding-bottom: 20px;
        background: #fff;
        border-top: 1px solid #eee;
        width: 100%;
        margin-top: 10px;
    }

    .mega-menu-content {
        position: static !important;
        width: 100% !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 10px !important;
    }

    .dropdown-header-custom {
        padding-top: 25px;
        border-bottom: none;
        margin-bottom: 5px;
    }

    .dropdown-item-custom {
        padding: 12px 15px;
        margin-bottom: 5px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-search-wrapper {
        padding: 0 15px;
    }

    .tools-card {
        padding: 30px 15px;
    }

    .tools-card .card-icon {
        font-size: 42px;
        margin-bottom: 15px;
    }

    .tools-card .card-title {
        font-size: 18px;
    }

    .section-padding {
        padding: 50px 0;
    }
}

/* =========================================
   7. PERFORMANCE & ACCESSIBILITY
========================================= */
@media print {
    .hero-premium {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* =========================================
   8. FOOTER (Premium SaaS Look)
========================================= */

.site-footer {
    background-color: var(--primary-dark);
    color: var(--text-secondary);
    padding: 80px 0 30px;
    font-size: 14px;
    border-top: 1px solid var(--primary);
}


.site-footer .footer-title {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.site-footer p {
    font-size: 14px;
    line-height: 18px;
}

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

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


.site-footer a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 13.4px;
}

.site-footer a:hover {
    color: var(--accent);
}

/* Footer Bottom (Copyright & Policies) */

.footer-bottom {
    border-top: 1px solid var(--primary);
    padding-top: 24px;
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 13px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

/* Footer Social Icons */
.footer-socials {
    display: flex;
    gap: 15px;
}


.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--primary);
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    transition: all 0.2s ease;
}

.footer-socials a:hover {
    background-color: var(--accent);
    transform: translateY(-2px);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .site-footer {
        padding: 50px 0 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        margin-top: 40px;
    }

    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* =========================================
   9. ADVERTISEMENT PLACEHOLDERS & RESPONSIVENESS
========================================= */

.ad-placeholder {
    background-color: #f1f3f5;
    border: 1px dashed var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-disabled);
    font-size: 14px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    border-radius: 4px;
}

/* Specific Ad Sizes */
.ad-leaderboard {
    width: 100%;
    max-width: 728px;
    height: 90px;
}

.ad-rectangle {
    width: 100%;
    max-width: 300px;
    height: 350px;
}

/* Mobile Ad Adjustments (Strictly Responsive) */
@media (max-width: 768px) {

    .ad-leaderboard {
        max-width: 336px;
        height: 280px;
    }

    .sticky-sidebar {
        position: static !important;
        margin-top: 30px;
        text-align: center;
    }

    .ad-rectangle {
        margin: 0 auto;
    }
}

/* =========================================
   ADVERTISEMENTS & SIDEBAR RESPONSIVENESS
========================================= */

@media (max-width: 991px) {

    .sticky-sidebar {
        position: static !important;
        margin-top: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .sidebar-ad {
        margin-left: auto;
        margin-right: auto;
    }

    .sidebar-widget {
        width: 100%;
        max-width: 400px;
    }
}

/* =========================================
   10. MULTILEVEL DROPDOWN (Strict Mobile Fixes)
========================================= */
.dropdown-submenu>a::after {
    transition: transform 0.2s ease;
}

.dropdown-submenu>a.open-arrow::after {
    transform: rotate(90deg) !important;
}

@media (max-width: 991px) {

    #navbarTools {
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: #ffffff;
        z-index: 9999;
        border-top: 1px solid #eee;
        padding: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        max-height: 80vh;
        overflow-y: auto;
    }

    .dropdown-menu {
        border: none !important;
        box-shadow: none !important;
        background-color: #f8f9fa;
        /* Light gray for submenu */
        margin-top: 10px;
    }
}

@media (max-width: 991px) {

    .dropdown-submenu>.submenu {
        display: none;
        position: static;
        margin-left: 1rem;
        background-color: transparent;
        border: none;
        box-shadow: none;
        padding-bottom: 10px;
    }
}


@media (max-width: 991px) {
    .toolshub-navbar {
        height: 60px;
    }

    .btn-premium-signup {
        padding: 5px 15px !important;
        font-size: 12px !important;
    }
}