/* ==========================================
   PDF TOOLS - GLASSMORPHISM THEME
   Light, Clean, Fast - No Blob Animation
   ========================================== */

/* ========== ROOT VARIABLES ========== */
:root {
    --primary: #6366f1;
    --primary-light: #818cf8;
    --primary-dark: #4f46e5;
    --accent: #ec4899;
    --glass-bg: rgba(255, 255, 255, 0.25);
    --glass-border: rgba(255, 255, 255, 0.45);
    --glass-shadow: rgba(31, 38, 135, 0.15);
    --text-dark: #1e293b;
    --text-medium: #475569;
    --text-light: #94a3b8;
    --white: #ffffff;
    --radius: 20px;
    --radius-sm: 12px;
    --transition: all 0.2s ease;
}

/* ========== RESET ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* ========== BODY - STATIC BG (No animation = Fast Scroll) ========== */
body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: linear-gradient(135deg, #f0f4ff 0%, #fce4f0 50%, #e8f4f8 100%);
    background-attachment: fixed;
    color: var(--text-dark);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Static subtle overlay - NO animation */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background:
        radial-gradient(circle at 15% 15%, rgba(99,102,241,0.06) 0%, transparent 40%),
        radial-gradient(circle at 85% 85%, rgba(236,72,153,0.06) 0%, transparent 40%);
    pointer-events: none;
    z-index: -1;
}

/* ❌ BLOB ANIMATION REMOVED - Causes scroll lag */
.bg-animation,
.blob,
.blob-1, .blob-2, .blob-3, .blob-4, .blob-5 {
    display: none !important;
    animation: none !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== GLASS ========== */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px var(--glass-shadow);
}

.glass-light {
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 20px rgba(31, 38, 135, 0.1);
}

/* ========== NAVBAR ========== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 40px;
    border-radius: 0;
    border-top: none;
    border-left: none;
    border-right: none;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.logo {
    font-size: 22px;
    font-weight: 800;
    text-decoration: none;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo i { color: var(--accent); font-size: 26px; }

.logo span {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    transition: width 0.25s ease;
    border-radius: 2px;
}

.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--primary); }

.nav-btn {
    background: linear-gradient(135deg, var(--primary), var(--accent)) !important;
    color: white !important;
    padding: 9px 22px;
    border-radius: 50px;
    font-weight: 600 !important;
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}
.nav-btn::after { display: none !important; }
.nav-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(99,102,241,0.35) !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}
.hamburger span {
    width: 26px; height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ========== HERO (Compact - Tools visible fast) ========== */
.hero {
    padding: 45px 20px 25px;
    text-align: center;
}

.hero-content {
    max-width: 680px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 15px;
}
.hero-badge i { color: var(--accent); }

.hero h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--accent), #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.65;
    margin-bottom: 22px;
}

.hero-search {
    display: flex;
    align-items: center;
    padding: 7px 7px 7px 20px;
    border-radius: 60px;
    max-width: 520px;
    margin: 0 auto 22px;
    gap: 10px;
}
.hero-search i { color: var(--text-light); font-size: 17px; }
.hero-search input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 14px;
    color: var(--text-dark);
    outline: none;
}
.hero-search input::placeholder { color: var(--text-light); }

.search-btn {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border: none;
    padding: 11px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.search-btn:hover {
    transform: scale(1.04);
    box-shadow: 0 4px 16px rgba(99,102,241,0.35);
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}
.hero-stat strong {
    display: block;
    font-size: 22px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-stat span { font-size: 12px; color: var(--text-light); }
.hero-stat-divider {
    width: 1px; height: 32px;
    background: rgba(148,163,184,0.3);
}

/* ========== AD SPACE ========== */
.ad-space {
    padding: 15px;
    text-align: center;
    border-radius: var(--radius-sm);
    color: var(--text-light);
    font-size: 13px;
    margin: 15px auto;
    max-width: 1200px;
}
.ad-space i { margin-right: 6px; }

/* ========== TOOLS SECTION ========== */
.tools-section {
    padding: 20px 0 50px;  /* ✅ Less top padding - tools appear fast */
}

.section-header {
    text-align: center;
    margin-bottom: 25px;
}
.section-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.section-header p {
    font-size: 15px;
    color: var(--text-medium);
}

/* Category Tabs */
.category-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.tab {
    padding: 9px 20px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    color: var(--text-medium);
    background: rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}
.tab:hover,
.tab.active {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(99,102,241,0.25);
}

/* No results */
#noResults {
    text-align: center;
    padding: 40px;
    color: var(--text-light);
}
#noResults i {
    font-size: 40px;
    margin-bottom: 10px;
    display: block;
    opacity: 0.3;
}
#noResults p { font-size: 15px; margin-bottom: 4px; }

/* Tools Grid */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(235px, 1fr));
    gap: 18px;
}

/* Tool Card - NO heavy animation on scroll */
.tool-card {
    padding: 24px 20px;
    border-radius: var(--radius);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    position: relative;
    overflow: hidden;
    display: block;
    will-change: auto;
}

.tool-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(31,38,135,0.18);
    border-color: rgba(99,102,241,0.25);
}

/* Subtle hover overlay */
.tool-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(99,102,241,0.04), rgba(236,72,153,0.04));
    opacity: 0;
    transition: opacity 0.2s ease;
    border-radius: var(--radius);
    pointer-events: none;
}
.tool-card:hover::before { opacity: 1; }

/* Tool Icon */
.tool-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.icon-red    { background: linear-gradient(135deg, #f43f5e, #e11d48); }
.icon-blue   { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.icon-green  { background: linear-gradient(135deg, #22c55e, #16a34a); }
.icon-orange { background: linear-gradient(135deg, #f97316, #ea580c); }
.icon-purple { background: linear-gradient(135deg, #a855f7, #9333ea); }
.icon-teal   { background: linear-gradient(135deg, #14b8a6, #0d9488); }
.icon-pink   { background: linear-gradient(135deg, #ec4899, #db2777); }
.icon-indigo { background: linear-gradient(135deg, #6366f1, #4f46e5); }
.icon-cyan   { background: linear-gradient(135deg, #06b6d4, #0891b2); }
.icon-dark   { background: linear-gradient(135deg, #475569, #334155); }

.tool-card h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}
.tool-card p {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

/* Arrow - shows on hover */
.tool-arrow {
    position: absolute;
    bottom: 18px; right: 18px;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(99,102,241,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 13px;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.tool-card:hover .tool-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Badges */
.badge {
    position: absolute;
    top: 12px; right: 12px;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    color: white;
    z-index: 2;
}
.badge-popular { background: linear-gradient(135deg, #f97316, #ea580c); }
.badge-new     { background: linear-gradient(135deg, #22c55e, #16a34a); }
.badge-ai      { background: linear-gradient(135deg, #a855f7, #9333ea); }

/* ========== HOW IT WORKS ========== */
.how-it-works { padding: 60px 0; }

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.step-card {
    padding: 30px 22px;
    border-radius: var(--radius);
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 260px;
    position: relative;
}
.step-number {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    width: 32px; height: 32px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 13px;
}
.step-icon {
    font-size: 36px;
    margin-bottom: 14px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.step-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.step-card p { font-size: 12px; color: var(--text-light); line-height: 1.6; }
.step-connector { color: var(--text-light); font-size: 18px; }

/* ========== FEATURES ========== */
.features-section { padding: 60px 0; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 20px;
    margin-top: 35px;
}
.feature-card {
    padding: 30px 22px;
    border-radius: var(--radius);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(31,38,135,0.12);
}
.feature-icon {
    font-size: 34px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.feature-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 13px; color: var(--text-light); line-height: 1.6; }

/* ========== STATS ========== */
.stats-section { padding: 40px 0; }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 40px 35px;
    border-radius: var(--radius);
    text-align: center;
}
.stat-item i {
    font-size: 26px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}
.stat-item h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
}
.stat-item span {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
}
.stat-item p {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 4px;
}

/* ========== FOOTER ========== */
.footer {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    color: #cbd5e1;
    padding: 55px 0 20px;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 35px;
}

.footer-logo {
    font-size: 20px;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-logo i { color: var(--accent); }
.footer-logo span {
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.footer-col p {
    font-size: 13px;
    line-height: 1.75;
    color: #94a3b8;
    margin-bottom: 18px;
}
.footer-col h4 {
    color: white;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 28px; height: 3px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 3px;
}
.footer-col a {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #94a3b8;
    text-decoration: none;
    font-size: 13px;
    margin-bottom: 10px;
    transition: color 0.2s ease, transform 0.2s ease;
}
.footer-col a i { font-size: 9px; color: var(--primary-light); }
.footer-col a:hover { color: white; transform: translateX(4px); }

.social-links { display: flex; gap: 10px; }
.social-links a {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #94a3b8;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    margin: 0;
}
.social-links a:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    transform: translateY(-2px) translateX(0);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 35px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.07);
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p { font-size: 12px; color: #64748b; margin: 0; }
.footer-bottom-links { display: flex; gap: 18px; }
.footer-bottom-links a {
    color: #64748b;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.2s ease;
    margin: 0;
}
.footer-bottom-links a:hover { color: white; transform: none; }

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
    .hero h1 { font-size: 36px; }
    .tools-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .navbar { padding: 12px 16px; }
    .hamburger { display: flex; }

    .nav-links {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(255,255,255,0.96);
        backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 22px;
        z-index: 999;
    }
    .nav-links.active { display: flex; }
    .nav-links a { font-size: 17px; }

    .hero { padding: 40px 16px 20px; }
    .hero h1 { font-size: 28px; }
    .hero p { font-size: 14px; }

    .hero-search {
        flex-direction: column;
        border-radius: var(--radius);
        padding: 12px;
        gap: 8px;
    }
    .hero-search i { display: none; }
    .search-btn { width: 100%; }

    .hero-stats { gap: 15px; }
    .hero-stat strong { font-size: 18px; }

    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .tool-card { padding: 16px 12px; }
    .tool-icon {
        width: 44px; height: 44px;
        font-size: 18px;
        border-radius: 12px;
        margin-bottom: 10px;
    }
    .tool-card h3 { font-size: 13px; }
    .tool-card p {
        font-size: 11px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .tool-arrow { display: none; }

    .section-header h2 { font-size: 26px; }
    .category-tabs { gap: 5px; }
    .tab { padding: 7px 12px; font-size: 11px; }

    .steps-grid { flex-direction: column; }
    .step-connector { transform: rotate(90deg); }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 25px 15px;
        gap: 15px;
    }
    .stat-item h3 { font-size: 26px; }

    .features-grid { grid-template-columns: 1fr 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: 25px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 24px; }
    .hero-badge { font-size: 11px; padding: 5px 13px; }

    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .tool-card { padding: 14px 10px; }
    .tool-icon { width: 40px; height: 40px; font-size: 16px; }
    .tool-card h3 { font-size: 12px; }
    .tool-card p { font-size: 10px; }
    .badge { font-size: 9px; padding: 2px 7px; top: 6px; right: 6px; }

    .features-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-stats { gap: 12px; }
    .hero-stat strong { font-size: 16px; }
}

.ndrop {
    position: relative;
    display: inline-block;
}
.ndrop-btn {
    background: none;
    border: none;
    color: #475569;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    padding: 8px 4px;
    font-family: inherit;
    transition: color 0.2s;
}
.ndrop-btn:hover {
    color: #6366f1;
}
.ndrop-arrow {
    font-size: 9px;
    margin-left: 2px;
    transition: transform 0.25s;
}
.ndrop.show .ndrop-arrow {
    transform: rotate(180deg);
}

/* Dropdown menu - HIDDEN by default */
.ndrop-menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    padding: 8px;
    z-index: 9999;
    min-width: 230px;
}

/* SHOW when parent has .show class */
.ndrop.show .ndrop-menu {
    display: block;
}

/* Arrow pointer */
.ndrop-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: #fff;
    border-top: 1px solid #e2e8f0;
    border-left: 1px solid #e2e8f0;
}

/* Menu links */
.ndrop-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    text-decoration: none;
    color: #475569;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.15s;
}
.ndrop-menu a:hover {
    background: #f0f4ff;
    color: #6366f1;
    transform: translateX(3px);
}
.ndrop-menu a i {
    width: 20px;
    font-size: 14px;
    color: #94a3b8;
    text-align: center;
}
.ndrop-menu a:hover i {
    color: #6366f1;
}

/* Mobile */
@media (max-width: 768px) {
    .ndrop {
        width: 100%;
        display: block;
    }
    .ndrop-btn {
        font-size: 17px;
        padding: 10px 0;
        justify-content: center;
        width: 100%;
    }
    .ndrop-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border: 1px solid #ede9fe;
        background: #faf8ff;
        border-radius: 12px;
        padding: 6px;
        margin-top: 5px;
        min-width: auto;
        width: 100%;
        max-width: 260px;
        margin-left: auto;
        margin-right: auto;
    }
    .ndrop-menu::before {
        display: none;
    }
    .ndrop-menu a {
        font-size: 14px;
        justify-content: flex-start;
    }
    .ndrop-menu a:hover {
        transform: none;
    }
}