
    *,
        *::before,
        *::after {
            box-sizing: border-box;
        }
        
         :root {
            --brand-color: #00B67A;
            --primary-color: #6F55FF;
            --primary-purple: var(--primary-color);
            --primary-light: #a15be5;
            --secondary-purple: var(--primary-light);
            --primary-lighter: #c77dff;
            --primary-lightest: #f3e9ff;
            --text-color: #333;
            --text-dark: #333;
            --text-medium: #555;
            --text-light: #777;
            --light-text-color: #6C6C85;
            --card-bg: #fff;
            --border-color: #e0e0e0;
            --card-gap: 20px;
            --items-per-page-desktop: 3;
            --items-per-page-mobile: 1;
            --dark-color: #1a1423;
            --light-color: #fdfffc;
            --accent-color: #7161ef;
        }
        
         ::selection {
            background-color: #6F55FF;
            color: #fff;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            margin: 0;
            color: var(--dark-color);
            font-family: "DM Sans", sans-serif;
        }
        
        * {
            -webkit-tap-highlight-color: transparent;
            -webkit-touch-callout: none;
        }
        
        html::-webkit-scrollbar,
        body::-webkit-scrollbar {
            width: 10px;
        }
        
        html::-webkit-scrollbar-button,
        body::-webkit-scrollbar-button {
            display: none !important;
        }
        
         ::-webkit-scrollbar {
            width: 10px;
            background: transparent !important;
        }
        
        *::-webkit-scrollbar-button,
        *::-webkit-scrollbar-button:single-button,
        *::-webkit-scrollbar-button:increment,
        *::-webkit-scrollbar-button:decrement,
        *::-webkit-scrollbar-button:vertical:increment,
        *::-webkit-scrollbar-button:vertical:decrement {
            display: none !important;
            width: 0 !important;
            height: 0 !important;
            background: transparent !important;
            opacity: 0 !important;
            visibility: hidden !important;
            pointer-events: none !important;
            border: none !important;
            margin: 0 !important;
            padding: 0 !important;
        }
        
        body::-webkit-scrollbar-button,
        html::-webkit-scrollbar-button,
        body::-webkit-scrollbar-button:single-button,
        body::-webkit-scrollbar-button:increment,
        body::-webkit-scrollbar-button:decrement,
        body::-webkit-scrollbar-button:vertical:increment,
        body::-webkit-scrollbar-button:vertical:decrement,
         ::-webkit-scrollbar-track-piece,
         ::-webkit-scrollbar-corner {
            display: none !important;
            visibility: hidden !important;
            width: 0 !important;
            height: 0 !important;
            opacity: 0 !important;
            background: transparent !important;
            pointer-events: none !important;
        }
        
         ::-webkit-scrollbar-track {
            background: transparent;
            border-radius: 0 !important;
        }
        
         ::-webkit-scrollbar-thumb {
            background-color: #6F55FF !important;
            border-radius: 0 !important;
            border: 2px solid transparent;
            background-clip: padding-box;
        }
        
         ::-webkit-scrollbar-thumb:hover {
            background-color: #6F55FF !important;
        }
        
        * {
            scrollbar-width: thin;
            scrollbar-color: #6F55FF transparent;
        }
        
        p {
            font-weight: 500;
        }
        
        li {
            font-weight: 500;
        }
        
        @media (max-width: 768px) {
            p {
                font-weight: 300;
            }
        }
        
        a {
            color: var(--dark-color);
            text-decoration: none;
        }
        
        .about-description p {
            font-size: 1.1rem;
            line-height: 1.4;
            margin-bottom: 1rem;
            letter-spacing: 0.3px;
            color: #333;
        }
        
        .container {
            max-width: 1200px;
            margin-inline: auto;
            border-radius: 15px;
            padding: 0 32px;
        }
        
        .btn {
            position: relative;
            overflow: hidden;
            color: #fff;
            background: #6F55FF;
            padding: 13px 48px;
            font-size: 16px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease-in-out;
            box-shadow: 0 8px 24px rgba(111 85, 255, 0.6);
        }
        
        .btn:hover {
            background: #FFB840;
            box-shadow: none;
        }
        
        .btn:active {
            box-shadow: 0 6px 18px rgba(255, 184, 64, 0.4);
        }
        
        .btn i {
            display: inline-block;
        }
        
        .btn:hover i {
            animation: iconBounce 0.6s ease;
        }
        
        @keyframes iconBounce {
            0%,
            100% {
                transform: translateY(0);
            }
            30% {
                transform: translateY(-4px);
            }
            60% {
                transform: translateY(2px);
            }
        }
        
        .btn.outlined {
            color: var(--primary-light);
            background: #fff;
            border: 1px solid var(--primary-light);
            transition: all 0.2s ease;
        }
        
        .btn.outlined:hover {
            background: #f3f2f6;
        }
        
        img {
            width: 100%;
            display: flex;
            object-fit: cover;
        }
        
        header {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            align-items: center;
            gap: clamp(24px, 5vw, 60px);
            padding: 60px 20px;
            max-width: 1440px;
            margin-inline: auto;
            height: auto;
            overflow: visible;
            z-index: 10;
        }
        
        header .left {
            width: 100%;
            max-width: 600px;
            margin-inline: auto;
            text-align: left;
        }
        
        header .rights {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        header .rights img {
            width: 100%;
            max-width: clamp(280px, 580px, 90%);
            height: auto;
            object-fit: contain;
            object-position: center;
            display: block;
        }
        
        @media (max-width: 1100px) {
            header {
                grid-template-columns: 1fr;
                padding-bottom: 40px;
            }
            header .left,
            header .rights {
                grid-column: 1 / 2;
            }
            header .left {
                text-align: left;
                padding-inline: 20px;
            }
            .buttons {
                justify-content: flex-start;
            }
        }
        
        @media (max-width: 768px) {
            .welcome-heading .brand {
                font-size: 1.2rem;
            }
            h1.main-text {
                font-size: 1.7rem !important;
            }
            .sub-heading {
                font-size: 1rem;
            }
            .features li {
                font-size: 0.95rem;
            }
            .buttons {
                justify-content: center;
            }
        }
        
        .buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-top: 32px;
            z-index: 2;
        }
        
        background-size: 300% 100%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: shimmer 3s infinite linear;
    }
    h1.main-text {
        font-size: 2.5rem;
        font-weight: 900;
        margin-bottom: 1rem;
        color: #333;
        max-width: 500px;
        line-height: 1.3;
    }
    .main-text .highlighted {
        color: #6F55FF;
        position: relative;
        display: inline-block;
        z-index: 1;
    }
    .main-text .highlighted::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -0.9em;
        width: 100%;
        height: 1.5em;
        background-image: url("data:image/svg+xml,%3Csvg width='742' height='42' viewBox='0 0 742 42' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.74511 29.3977C62.6509 19.6841 237.943 1.18701 467.866 4.90702' stroke='%234A3AFF' stroke-width='7' stroke-linecap='round'/%3E%3Cpath d='M293.488 27.0563C315.025 19.5771 379.936 4.72624 467.294 5.15714' stroke='%234A3AFF' stroke-width='7' stroke-linecap='round'/%3E%3Cpath d='M296 27.118C352.795 21.1551 520.761 13.293 738.266 29.5482' stroke='%234A3AFF' stroke-width='7' stroke-linecap='round'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-size: 100% 100%;
        pointer-events: none;
        z-index: -1;
    }
    .sub-heading {
        font-size: 1.125rem;
        color: #555;
        margin-bottom: 1rem;
        max-width: 480px;
    }
    .features {
        list-style: none;
        padding: 0;
        margin-bottom: 1.5rem;
    }
    .features li {
        font-size: 1rem;
        color: #444;
        margin-bottom: 0.5rem;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .features i {
        color: #6f55ff;
        font-size: 1.1rem;
        line-height: 0;
    }
    @media (max-width: 768px) {
        header {
            grid-template-columns: 1fr;
            padding: 40px 0;
        }
        
        header .left {
            width: 100%;
            max-width: 100%;
            margin: 0;
            padding: 0 16px;
            text-align: left;
        }
        
        .welcome-heading .brand,
        h1.main-text,
        .sub-heading,
        .features li {
            text-align: left;
            padding: 0;
            margin-left: 0;
        }
        
        .features {
            padding-left: 16px;
        }
        
        .buttons {
            justify-content: flex-start;
            padding-left: 16px;
        }
    }
    h2 {
        font-size: 36px;
        line-height: 120%;
        font-weight: 800;
        letter-spacing: -1px;
        margin: 8px 0;
        background: linear-gradient(90deg, #441673 8%, #0f0916 60%);
        background-clip: text;
        -webkit-background-clip: text;
        color: transparent;
    }
    h3 {
        font-size: 25px;
        line-height: 130%;
        letter-spacing: -1px;
        margin: 8px 0;
    }
    section {
        padding: 120px 0;
    }
    .tooltip-wrapper {
        position: relative;
        display: inline-block;
        margin-left: 6px;
        cursor: pointer;
    }
    .tooltip-icon {
        color: #aaa;
        font-size: 16px;
        transition: color 0.2s ease;
    }
    .tooltip-wrapper:hover .tooltip-icon {
        color: #6F55FF;
    }
    .tooltip-text {
        visibility: hidden;
        opacity: 0;
        width: max-content;
        max-width: 200px;
        background-color: #222;
        color: #fff;
        text-align: left;
        border-radius: 6px;
        padding: 8px 10px;
        position: absolute;
        z-index: 10;
        bottom: 120%;
        left: 50%;
        transform: translateX(-50%);
        transition: opacity 0.3s ease;
        font-size: 13px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
        white-space: normal;
    }
    .tooltip-text::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        border-width: 6px;
        border-style: solid;
        border-color: #222 transparent transparent transparent;
    }
    .tooltip-wrapper:hover .tooltip-text {
        visibility: visible;
        opacity: 1;
    }
    #scrollToTopBtn {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 55px;
        height: 55px;
        background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
        color: white;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
        z-index: 999;
        box-shadow: 0 4px 12px rgba(123, 44, 191, 0.3);
    }
    #scrollToTopBtn.show {
        opacity: 1;
        visibility: visible;
    }
    #scrollToTopBtn:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 6px 16px rgba(123, 44, 191, 0.4);
    }
    #scrollToTopBtn i {
        font-size: 24px;
        line-height: 1;
    }
    @media (max-width: 768px) {
        #scrollToTopBtn {
            bottom: 20px;
            right: 20px;
            width: 48px;
            height: 48px;
        }
        
        #scrollToTopBtn i {
            font-size: 20px;
        }
    }

    .search-footer-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px; /* Space sa taas */
    opacity: 0.5; /* Para medyo di pansinin */
}

.search-footer-icon svg {
    width: 120px; /* Adjust mo lang ang size */
    height: 120px;
}
    nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        z-index: 9999;
        padding: 13px 5%;
        background: #fff;
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border: 0.8px solid rgba(255, 255, 255, 0.8);
        outline: 1px solid rgba(255, 255, 255, 0.6);
        max-width: 100%;
        margin: 0 auto;
        transition: top 0.4s ease, left 0.4s ease, right 0.4s ease, padding 0.4s ease, max-width 0.4s ease, background 0.4s ease, border-radius 0.4s ease, box-shadow 0.4s ease;
    }
    nav.scrolled {
        background: #fff;
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border: 0.8px solid rgba(255, 255, 255, 0.8);
        outline: 1px solid rgba(255, 255, 255, 0.6);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    nav.at-top {
        background: #fff !important;
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
    }
    .menu-items {
        display: flex;
        align-items: center;
        gap: 24px;
    }
    .menu-toggle {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        z-index: 1001;
    }
    nav .menu-items {
        display: flex;
        align-items: center;
        gap: 30px;
        font-weight: 500;
    }
    nav .menu-items a {
        position: relative;
        font-size: 16px;
        line-height: 1;
        align-items: center;
        transition: color 0.3s ease;
    }
    nav .menu-items a:hover {
        color: var(--accent-color);
    }
    nav .menu-items a:hover::after {
        width: 100%;
    }
    .logo {}
    .logo a {
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-block;
    }
    .logo a img#header-logo {
        height: 32px;
        width: auto;
        display: block;
        vertical-align: middle;
    }
    @media (max-width: 480px) {
        .logo a img#header-logo {
            height: 25px;
        }
    }
    .logo a:hover {
        transform: scale(1.05);
        opacity: 0.9;
    }
    .dropdown {
        position: relative;
        display: inline-block;
    }
    .dropdown>a {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        cursor: pointer;
        position: relative;
        z-index: 1001;
        transition: color 0.3s ease;
        color: inherit;
        text-decoration: none;
    }
    .dropdown.active>a {
        color: #6F55FF;
    }
    .dropdown-icon-container {
        display: inline-flex;
        width: 20px;
        height: 20px;
        justify-content: center;
        align-items: center;
    }
    .dropdown-icon {
        position: relative;
        top: 1px;
        font-size: 16px;
        line-height: 1;
        display: inline-block;
        vertical-align: middle;
        transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
        transform-origin: center center;
    }
    .dropdown.active .dropdown-icon {
        transform: rotate(180deg);
    }
    .dropdown-content.file-tools-layout {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1200px;
    }
    .dropdown-content {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        position: fixed;
        left: 50%;
        transform: translateX(-50%) scale(0.95);
        transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        background: #fff;
        width: calc(100vw - 80px);
        max-width: 1300px;
        border-radius: 16px;
        padding: 30px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15), 0 25px 80px rgba(0, 0, 0, 0.1);
        z-index: 99999;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
        will-change: transform, opacity;
        top: var(--dropdown-fixed-top, 70px);
        max-height: calc(100vh - var(--dropdown-fixed-top, 70px) - 20px);
        overflow-y: auto;
        scrollbar-width: thin;
        scrollbar-color: #d1d1d1 transparent;
    }
    .dropdown-content::-webkit-scrollbar {
        width: 8px;
    }
    .dropdown-content::-webkit-scrollbar-track {
        background: transparent;
    }
    .dropdown-content::-webkit-scrollbar-thumb {
        background-color: #d1d1d1;
        border-radius: 4px;
        border: 2px solid transparent;
        background-clip: padding-box;
    }
    .dropdown-content::-webkit-scrollbar-thumb:hover {
        background-color: #a0a0a0;
    }
    .dropdown-content.two-column-layout {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
        width: calc(100vw - 80px);
    }
    @media (max-width: 1200px) {
        .dropdown-content {
            grid-template-columns: repeat(3, 1fr);
            width: calc(100vw - 60px);
            max-width: 1000px;
            padding: 25px;
            gap: 20px;
        }
        
        .dropdown-content.two-column-layout {
            grid-template-columns: repeat(2, 1fr);
            max-width: 800px;
        }
    }
    .dropdown-content::before {
        content: "";
        position: absolute;
        top: -15px;
        left: 0;
        width: 100%;
        height: 15px;
    }
    .dropdown.active .dropdown-content {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(-50%) scale(1);
    }
    .dropdown.active.near-edge .dropdown-content {
        transform: translateX(calc(-50% + var(--shift-amount, 0px))) translateY(0) scale(1);
    }
    .dropdown-category {
        display: flex;
        flex-direction: column;
        padding: 15px;
        border-radius: 12px;
    }
    .dropdown-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 9998;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease-in-out, visibility 0s linear 0.3s;
    }
    .dropdown-overlay.active {
        opacity: 1;
        visibility: visible;
        transition-delay: 0s;
    }
    .dropdown-promo-item {
        padding: 15px;
        background-color: #ffffff;
        border-radius: 12px;
        display: flex;
        flex-direction: column;
        transition: background-color 0.3s ease;
    }
    .dropdown-promo-item:hover {
        background-color: #f8f6ff;
    }
    .dropdown-promo-item a {
        text-decoration: none;
        color: inherit;
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    .promo-image {
        width: 100%;
        height: auto;
        border-radius: 8px;
        margin-bottom: 15px;
        object-fit: cover;
        aspect-ratio: 16 / 9;
    }
    .promo-text {
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }
    .promo-title {
        font-size: 1rem;
        font-weight: 700;
        color: #6F55FF;
        margin: 0 0 8px 0;
    }
    .promo-description {
        font-size: 0.85rem;
        color: #555;
        line-height: 1.4;
        margin: 0;
        flex-grow: 1;
    }
    .dropdown-promo-column {
        display: flex;
        flex-direction: column;
        gap: 15px;
        height: 100%;
    }
    .dropdown-promo-item {
        background-color: #fff;
        border-radius: 12px;
        display: flex;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .dropdown-promo-item:hover {
        transform: translateY(-4px);
    }
    .dropdown-promo-item a {
        text-decoration: none;
        color: inherit;
        display: flex;
        flex-direction: column;
        height: 100%;
        padding: 0px;
    }
    .promo-image {
        width: 100%;
        height: auto;
        border-radius: 8px;
        margin-bottom: 12px;
        object-fit: cover;
        aspect-ratio: 16 / 9;
    }
    .promo-text {
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }
    .promo-title {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 0.95rem;
        font-weight: 700;
        color: #333;
        margin: 0 0 5px 0;
    }
    .promo-title span {}
    .promo-title i {
        color: #6F55FF;
        font-size: 0.9em;
        transition: transform 0.2s ease;
    }
    .dropdown-promo-item:hover .promo-title i {
        transform: translate(2px, -2px);
    }
    .promo-description {
        font-size: 0.8rem;
        color: #666;
        line-height: 1.5;
        margin: 0;
    }
    .insights-promo-grid-container {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 15px;
        padding: 10px;
    }
    .insight-promo-item {
        display: block;
        text-decoration: none;
        background-color: #fff;
        border-radius: 8px;
        overflow: hidden;
        border: 1px solid #eee;
        transition: all 0.2s ease;
    }
    .insight-promo-item:hover {
        transform: translateY(-4px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.07);
    }
    .insight-promo-item img {
        width: 100%;
        aspect-ratio: 16/10;
        object-fit: cover;
    }
    .insight-promo-text {
        padding: 12px;
    }
    .insight-promo-title {
        font-size: 0.9rem;
        font-weight: 700;
        color: #333;
        margin: 0 0 5px 0;
    }
    .insight-promo-desc {
        font-size: 0.8rem;
        color: #666;
        line-height: 1.4;
        margin: 0;
    }
    @media (max-width: 1200px) {
        .insights-promo-grid-container {
            grid-template-columns: repeat(3, 1fr);
        }
    }
    @media (max-width: 768px) {
        .insights-promo-grid-container {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    @media (max-width: 500px) {
        .insights-promo-grid-container {
            grid-template-columns: 1fr;
        }
    }
    @keyframes slideInFromRight {
        from {
            opacity: 0;
            transform: translateX(20px);
        }
        
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    @keyframes fadeInUpPromo {
        from {
            opacity: 0;
            transform: translateY(15px);
        }
        
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    .dropdown-content .category-items a,
    .dropdown-content .dropdown-promo-item,
    .dropdown-content .insight-promo-item {
        opacity: 0;
    }
    .dropdown.active .category-items a {
        animation: slideInFromRight 0.35s ease-out forwards;
    }
    .dropdown.active .dropdown-promo-item,
    .dropdown.active .insight-promo-item {
        animation: fadeInUpPromo 0.4s ease-out forwards;
    }
    .dropdown.active .dropdown-category:nth-of-type(1) .category-items a:nth-child(1) {
        animation-delay: 0.05s;
    }
    .dropdown.active .dropdown-category:nth-of-type(1) .category-items a:nth-child(2) {
        animation-delay: 0.10s;
    }
    .dropdown.active .dropdown-category:nth-of-type(1) .category-items a:nth-child(3) {
        animation-delay: 0.15s;
    }
    .dropdown.active .dropdown-category:nth-of-type(1) .category-items a:nth-child(4) {
        animation-delay: 0.20s;
    }
    .dropdown.active .dropdown-category:nth-of-type(1) .category-items a:nth-child(5) {
        animation-delay: 0.25s;
    }
    .dropdown.active .dropdown-category:nth-of-type(2) .category-items a:nth-child(1) {
        animation-delay: 0.10s;
    }
    .dropdown.active .dropdown-category:nth-of-type(2) .category-items a:nth-child(2) {
        animation-delay: 0.15s;
    }
    .dropdown.active .dropdown-category:nth-of-type(2) .category-items a:nth-child(3) {
        animation-delay: 0.20s;
    }
    .dropdown.active .dropdown-category:nth-of-type(2) .category-items a:nth-child(4) {
        animation-delay: 0.25s;
    }
    .dropdown.active .dropdown-category:nth-of-type(2) .category-items a:nth-child(5) {
        animation-delay: 0.30s;
    }
    .dropdown.active .dropdown-promo-column .dropdown-promo-item:nth-child(1) {
        animation-delay: 0.20s;
    }
    .dropdown.active .dropdown-promo-column .dropdown-promo-item:nth-child(2) {
        animation-delay: 0.30s;
    }
    .dropdown.active .insight-promo-item:nth-child(1) {
        animation-delay: 0.05s;
    }
    .dropdown.active .insight-promo-item:nth-child(2) {
        animation-delay: 0.10s;
    }
    .dropdown.active .insight-promo-item:nth-child(3) {
        animation-delay: 0.15s;
    }
    .dropdown.active .insight-promo-item:nth-child(4) {
        animation-delay: 0.20s;
    }
    .dropdown.active .insight-promo-item:nth-child(5) {
        animation-delay: 0.25s;
    }
    .category-title {
        font-weight: 700;
        font-size: 1rem;
        color: #727585;
        margin-bottom: 15px;
        padding-bottom: 0;
        text-align: left;
        line-height: 1.2;
    }
    .category-items {
        display: flex;
        flex-direction: column;
        gap: 12px;
        max-height: none;
        overflow-y: visible;
        padding-right: 0;
        scrollbar-width: auto;
        scrollbar-color: auto;
    }
    .category-items::-webkit-scrollbar {
        display: none;
    }
    .category-items::-webkit-scrollbar-thumb {
        background-color: #7b2cbf;
        border-radius: 4px;
    }
    .category-items a {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 12px 15px;
        font-size: 1rem;
        border-radius: 8px;
        transition: all 0.25s ease;
        color: black;
        text-align: left;
        flex-shrink: 0;
        border: 1px solid transparent;
        animation: none;
        transform: none;
        opacity: 1;
    }
    @keyframes itemFadeIn {
        to {
            transform: translateX(0);
            opacity: 1;
        }
    }
    .category-items a:hover {
        background: #f3f2f6;
        color: var(--primary-color);
    }
    .category-items a .fi {
        flex-shrink: 0;
        width: 28px;
        height: 28px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 20px;
        color: var(--primary-purple);
        line-height: 1;
        margin-top: 2px;
    }
    .item-text-content {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }
    .item-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 4px;
    }
    .item-title {
        font-weight: 600;
        font-size: 1rem;
        color: #333;
        line-height: 1.2;
    }
    .item-description {
        font-size: 0.85rem;
        color: #666;
        line-height: 1.4;
        margin: 0;
    }
    .new-badge {
        background-color: #f1ecff;
        color: #5e36d5;
        font-size: 0.75rem;
        font-weight: 800;
        padding: 6px 14px;
        border-radius: 6px;
        margin-left: 10px;
        white-space: nowrap;
        text-transform: uppercase;
        letter-spacing: 0.6px;
    }
    @media (max-width: 1200px) {
        .dropdown-content {
            grid-template-columns: repeat(3, 1fr);
            width: calc(100vw - 60px);
            max-width: 1000px;
            padding: 25px;
            gap: 20px;
        }
        
        .dropdown-content.two-column-layout {
            grid-template-columns: repeat(2, 1fr);
            max-width: 700px;
        }
    }
    .menu-toggle {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        z-index: 1001;
    }
    @media (max-width: 1024px) {
        .dropdown-content {
            grid-template-columns: repeat(2, 1fr);
            width: calc(100vw - 40px);
            max-width: 700px;
            padding: 20px;
            gap: 15px;
        }
        
        .dropdown-content.two-column-layout {
            grid-template-columns: 1fr;
            max-width: 450px;
        }
        
        .category-title {
            font-size: 1rem;
            margin-bottom: 10px;
        }
        
        .category-items a {
            padding: 10px 12px;
            gap: 10px;
        }
        
        .category-items a .fi {
            width: 24px;
            height: 24px;
            font-size: 18px;
        }
        
        .item-title {
            font-size: 0.95rem;
        }
        
        .item-description {
            font-size: 0.8rem;
        }
        
        .new-badge {
            font-size: 0.6rem;
            padding: 2px 5px;
        }
    }
    @media (max-width: 767px) {
        .dropdown-content {
            grid-template-columns: 1fr;
            width: calc(100vw - 30px);
            max-width: 400px;
            padding: 15px;
            top: var(--dropdown-fixed-top-mobile, 60px);
            max-height: calc(100vh - var(--dropdown-fixed-top-mobile, 60px) - 15px);
            border-radius: 10px;
        }
        
        .dropdown-content.two-column-layout {
            grid-template-columns: 1fr;
            max-width: 400px;
        }
        
        .dropdown-category {
            padding: 12px;
            border-radius: 8px;
        }
        
        .category-title {
            font-size: 0.95rem;
            margin-bottom: 8px;
        }
        
        .category-items {
            gap: 8px;
        }
        
        .category-items a {
            padding: 8px 10px;
            gap: 8px;
            border-radius: 6px;
        }
        
        .category-items a .fi {
            width: 20px;
            height: 20px;
            font-size: 14px;
        }
        
        .item-title {
            font-size: 0.85rem;
        }
        
        .item-description {
            font-size: 0.7rem;
        }
        
        .new-badge {
            font-size: 0.55rem;
            padding: 2px 4px;
        }
    }
    @media (max-width: 1070px) {
        nav {
            padding: 18px 5%;
        }
        
        nav.scrolled {}
        
        .menu-items {
            display: none !important;
        }
        
        .menu-toggle {
            display: block;
        }
        
        body.mobile-menu-is-active {
            overflow: hidden;
            position: fixed;
            width: 100%;
        }
        
        nav .btn {
            display: none !important;
        }
        
        .dropdown-content {
            display: none;
        }
    }
    @media (max-width: 1070px) {
        nav {
            padding: 18px 5%;
        }
        
        .menu-items {
            display: none !important;
        }
        
        .menu-toggle {
            display: block;
        }
        
        .dropdown-content {
            grid-template-columns: 1fr;
            width: 300px;
            max-height: 60vh;
        }
        
        .logo a {
            font-size: 20px;
        }
    }
    @media (max-width: 1100px) {
        h1 {
            font-size: 40px;
        }
        
        header .right img {
            width: 280px;
        }
    }
    .menu-items {
        display: flex;
    }
    .mobile-icons-container {
        display: none;
        align-items: center;
        gap: 15px;
    }
    .tools-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 30px;
        align-items: stretch;
    }
    .tools-card {
        background: white;
        border-radius: 16px;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(156, 85, 222, 0.08);
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        height: 100%;
        border: 1px solid rgba(156, 85, 222, 0.1);
        max-height: 400px;
    }
    .card-icon {
        font-size: 2.5rem;
        color: #9c55de;
        margin-bottom: 15px;
        text-align: center;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .tools-card h3 {
        color: #333;
        font-size: 1.3rem;
        margin-bottom: 12px;
        text-align: center;
        font-weight: 700;
        min-height: auto;
    }
    .card-desc {
        color: #666;
        line-height: 1.5;
        text-align: center;
        margin-bottom: 20px;
        flex-grow: 1;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
    }
    .card-tags {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        margin-top: auto;
        max-height: 80px;
        overflow-y: auto;
    }
    .card-tags span {
        background: rgba(156, 85, 222, 0.1);
        color: #7d3dc8;
        padding: 4px 12px;
        border-radius: 50px;
        font-size: 0.8rem;
        font-weight: 600;
        transition: all 0.2s ease;
    }
    .tools-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(156, 85, 222, 0.15);
        border-color: var(--primary-purple);
    }
    .tools-card:hover .card-icon {
        animation: iconPulse 0.6s ease;
    }
    @keyframes iconPulse {
        0% {
            transform: scale(1);
        }
        
        50% {
            transform: scale(1.2);
        }
        
        100% {
            transform: scale(1);
        }
    }
    @media (max-width: 768px) {
        .tools-grid {
            grid-template-columns: 1fr;
            max-width: 500px;
            margin: 0 auto;
        }
        
        .section-title {
            font-size: 2rem;
            margin-bottom: 40px;
        }
        
        .tools-card {
            padding: 20px;
            max-height: none;
        }
        
        .card-desc {
            -webkit-line-clamp: unset;
        }
    }
    #about-zenfied {
        padding: 80px 0;
        background-color: #ffffff;
        border-bottom: 1px solid #e0e0e0;
    }
    #about-zenfied .section-header {
        text-align: center;
        margin-bottom: 60px;
    }
    #about-zenfied .section-header h2 {
        font-size: 2.8rem;
        color: #2c3e50;
        font-weight: 700;
        margin: 0;
    }
    .about-content-wrapper {
        display: flex;
        align-items: center;
        gap: 60px;
    }
    .about-text-content {
        flex: 1;
    }
    .about-text-content .tagline {
        font-size: 1.1rem;
        color: #9849d8;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 8px;
    }
    .about-text-content .headline {
        font-size: 2.5rem;
        color: #34495e;
        margin-bottom: 20px;
        font-weight: 900;
        line-height: 1.3;
    }
    .about-text-content .headline .highlight {
        color: #9849d8;
    }
    .about-text-content p {
        font-size: 1.1rem;
        color: #555;
        margin-bottom: 20px;
    }
    .about-text-content .btn-view-more {
        display: inline-block;
        padding: 12px 28px;
        background-color: #9849d8;
        color: #ffffff;
        text-decoration: none;
        border-radius: 5px;
        font-weight: bold;
        font-size: 1rem;
        margin-top: 15px;
        transition: background-color 0.3s ease, transform 0.2s ease;
        box-shadow: 0 4px 6px rgba(152, 73, 216, 0.2);
    }
    .about-text-content .btn-view-more:hover {
        background-color: #7a3aa6;
        transform: translateY(-2px);
        box-shadow: 0 6px 10px rgba(152, 73, 216, 0.3);
    }
    .about-image-content {
        flex: 0 0 40%;
        max-width: 450px;
        text-align: center;
    }
    .about-image-content img {
        max-width: 100%;
        height: auto;
        border-radius: 12px;
        display: block;
    }
    @media (max-width: 991px) {
        .about-content-wrapper {
            gap: 40px;
        }
        
        .about-image-content {
            flex: 0 0 45%;
        }
    }
    @media (max-width: 768px) {
        .about-content-wrapper {
            flex-direction: column;
            text-align: center;
        }
        
        #about-zenfied .section-header h2 {
            font-size: 2.2rem;
        }
        
        .about-text-content {
            margin-bottom: 40px;
        }
        
        .about-text-content .headline {
            font-size: 2rem;
        }
        
        .about-text-content p {
            font-size: 1rem;
        }
        
        .about-text-content .btn-view-more {
            padding: 10px 24px;
            font-size: 0.95rem;
        }
        
        .about-image-content {
            width: 85%;
            max-width: 350px;
            margin: 0 auto;
            flex-basis: auto;
        }
    }
    #why {
        padding: 80px 0;
        background: #441673;
        color: #ffffff;
    }
    #why .container {
        display: flex;
        gap: 60px;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    #why .left {
        flex: 0 0 45%;
        order: 1;
    }
    #why .left img {
        width: 100%;
        border-radius: 12px;
    }
    #why .right {
        flex: 1;
        order: 2;
    }
    #why h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-top: 0;
        margin-bottom: 20px;
        background: linear-gradient(to right, #ffffff, #d4b5ff);
        background-clip: text;
        -webkit-background-clip: text;
        color: transparent;
        font-weight: 900;
    }
    #why p {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 30px;
        color: #e0d0ff;
    }
    .features-container {
        display: flex;
        flex-direction: column;
        gap: 25px;
        margin-bottom: 30px;
    }
    .feature {
        display: flex;
        gap: 15px;
    }
    .feature .icon {
        width: 30px;
        height: 30px;
        flex-shrink: 0;
    }
    .feature .icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        filter: brightness(0) invert(1);
    }
    .feature h3 {
        font-size: 1.2rem;
        margin: 0 0 8px 0;
        color: #ffffff;
    }
    .feature p {
        font-size: 1rem;
        margin: 0;
        color: #d0c0ff;
    }
    @media (max-width: 991px) {
        #why .container {
            gap: 40px;
        }
        
        #why h2 {
            font-size: 2.2rem;
        }
    }
    @media (max-width: 768px) {
        #why .container {
            flex-direction: column;
        }
        
        #why .left {
            width: 100%;
            max-width: 500px;
            margin: 30px auto 0;
            order: 3;
        }
        
        #why .right {
            order: 1;
        }
        
        #why h2 {
            font-size: 2rem;
            text-align: center;
        }
        
        #why p {
            text-align: left;
        }
        
        .features-container {
            align-items: left;
        }
        
        .feature {
            max-width: 400px;
        }
    }
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
    }
    * footer {
        background: #352E61;
        color: white;
        padding: 4rem 0 1.5rem;
        font-size: 0.9rem;
        position: relative;
    }
    footer .containery {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem;
    }
    .footer-main-content {
        display: grid;
        grid-template-columns: 350px 1fr;
        gap: 40px;
        padding-bottom: 2.5rem;
        align-items: start;
    }
    .footer-info-column {
        display: flex;
        flex-direction: column;
    }
    .footer-logo img {
        max-width: 140px;
        height: auto;
        margin-bottom: 1rem;
    }
    .footer-description {
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.95rem;
        line-height: 1.6;
        margin: 0 0 1.5rem 0;
    }
    .footer-social-icons {
        display: flex;
        gap: 15px;
    }
    .footer-social-icons a {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: white;
        font-size: 1.2rem;
        text-decoration: none;
        transition: all 0.3s ease;
        line-height: 1;
    }
    .footer-social-icons a:hover {
        background-color: white;
        color: #352E61;
        transform: translateY(-3px);
        border-color: white;
    }
    .tool-categories-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
        padding-bottom: 0;
    }
    .tool-categories-grid h3 {
        margin-bottom: 1rem;
        font-size: 0.9rem;
        color: white;
        position: relative;
        display: inline-block;
        font-weight: 700;
        letter-spacing: 0.5px;
    }
    .tool-categories-grid h3::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 30px;
        height: 2px;
        background: rgba(255, 255, 255, 0.5);
    }
    .tool-categories-grid ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .tool-categories-grid li {
        margin-bottom: 0.75rem;
    }
    .tool-categories-grid a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative;
    }
    .tool-categories-grid a::before {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 1px;
        background: white;
        transition: width 0.3s ease;
    }
    .tool-categories-grid a:hover {
        color: white;
    }
    .tool-categories-grid a:hover::before {
        width: 100%;
    }
    .footer-bottom-main {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 2rem;
        margin-top: 0rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    .footer-horizontal-nav {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 1.5rem;
    }
    .footer-horizontal-nav a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: color 0.3s ease;
        font-size: 0.95rem;
        white-space: nowrap;
    }
    .footer-horizontal-nav a:hover {
        color: white;
    }
    .footer-copyright-text {
        color: rgba(255, 255, 255, 0.7);
        margin: 0;
        white-space: nowrap;
        text-align: right;
    }
    .footer-copyright-text .zenfied {
        color: white;
        font-weight: 600;
    }
    @media (max-width: 1024px) {
        .footer-main-content {
            grid-template-columns: 300px 1fr;
            gap: 30px;
        }
        
        .tool-categories-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }
    @media (max-width: 768px) {
        footer {
            padding-top: 3rem;
        }
        
        .footer-main-content {
            grid-template-columns: 1fr;
            text-align: center;
        }
        
        .footer-info-column {
            align-items: center;
            margin-bottom: 2rem;
        }
        
        .tool-categories-grid {
            grid-template-columns: repeat(2, 1fr);
            text-align: left;
        }
        
        .tool-categories-grid h3 {
            display: block;
        }
        
        .footer-bottom-main {
            flex-direction: column;
            gap: 1rem;
        }
        
        .footer-copyright-text {
            text-align: center;
        }
        
        .footer-horizontal-nav {
            justify-content: center;
            gap: 1rem 1.5rem;
        }
    }
    @media (max-width: 480px) {
        .tool-categories-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    @media (max-width: 380px) {
        .tool-categories-grid {
            grid-template-columns: 1fr;
        }
    }
    @media (max-width: 800px) {
        h1 {
            font-size: 30px;
            line-height: 120%;
        }
        
        .container {
            max-width: 700px;
        }
        
        h2 {
            font-size: 28px;
            line-height: 130%;
        }
        
        h3 {
            font-size: 20px;
        }
        
        nav .menu-items {
            display: none;
        }
        
        .features-container {
            flex-direction: column;
        }
        
        #why .container {
            flex-direction: column;
        }
    }
    .mobile-menu-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #ffffff;
        z-index: 1002;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.3s ease, visibility 0s linear 0.3s;
    }
    .mobile-menu-container.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition: opacity 0.3s ease, visibility 0s linear 0s;
    }
    .menu-toggle {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        z-index: 1002;
        position: relative;
        width: 32px;
        height: 32px;
    }
    .menu-toggle .icon-burger,
    .menu-toggle .icon-close {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 24px;
        color: #333;
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    .menu-toggle .icon-close {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(-90deg);
    }
    .menu-toggle.active .icon-burger {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(90deg);
    }
    .menu-toggle.active .icon-close {
        opacity: 1;
        transform: translate(-50%, -50%) rotate(0deg);
        color: #333;
    }
    .mobile-icons-container .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .mobile-icons-container .menu-icon {
        display: none;
    }
    .mobile-menu-container.active+.container nav {
        background-color: #ffffff;
    }
    .mobile-menu-panel {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #ffffff;
        padding: 80px 24px 30px 24px;
        display: flex;
        flex-direction: column;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
        overflow-y: auto;
    }
    .mobile-menu-panel.active-panel {
        transform: translateX(0);
    }
    .mobile-menu-panel.is-leaving {
        transform: translateX(-100%);
    }
    .mobile-menu-panel-header {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
        border-bottom: 1px solid #eee;
        padding-bottom: 15px;
    }
    .mobile-menu-panel-header .back-btn {
        background: none;
        border: none;
        font-size: 1rem;
        font-weight: 600;
        color: #555;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 5px;
        margin-left: -5px;
    }
    .mobile-menu-panel-header .back-btn i {
        font-size: 1.2rem;
    }
    .mobile-menu-panel-header h3 {
        font-size: 1.2rem;
        color: #333;
        margin: 0 0 0 16px;
    }
    .mobile-menu-panel-body {
        display: flex;
        flex-direction: column;
    }
    .menu-item {
        font-size: 1.2rem;
        font-weight: 600;
        color: #333;
        text-decoration: none;
        padding: 16px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #f0f0f0;
    }
    .menu-item:last-child {
        border-bottom: none;
    }
    .mobile-menu-panel-body.with-description {
        gap: 10px;
    }
    .menu-item-detailed {
        display: block;
        text-decoration: none;
        padding: 12px 16px;
        border-radius: 8px;
        background-color: #fff;
        transition: background-color 0.2s ease;
    }
    .menu-item-detailed:hover {
        background-color: #f7f7fa;
    }
    .menu-item-detailed .item-title {
        font-size: 1rem;
        font-weight: 600;
        color: #333;
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 4px;
    }
    .menu-item-detailed .item-description {
        font-size: 0.85rem;
        color: #666;
        line-height: 1.4;
    }
    .badge {
        font-size: 0.7rem;
        font-weight: 700;
        padding: 3px 8px;
        border-radius: 4px;
        text-transform: uppercase;
    }
    .badge.new {
        background-color: #e8f0fe;
        color: #1967d2;
    }
    .badge.optimized {
        background-color: #e6f4ea;
        color: #1e8e3e;
    }
    @media (max-width: 1070px) {
        .menu-toggle {
            display: flex;
        }
    }
    @keyframes arrow-jiggle-horizontal {
        0%,
        100% {
            transform: translateX(0);
        }
        
        50% {
            transform: translateX(6px);
        }
    }
    .mobile-menu-panel .menu-item {
        margin: 0 -16px;
        padding: 16px;
        border-radius: 8px;
        transition: background-color 0.2s ease;
    }
    .menu-item.has-submenu:hover {
        background-color: #f7f7fa;
    }
    .menu-item.has-submenu:hover .fi-rr-angle-right {
        animation: arrow-jiggle-horizontal 0.6s ease-in-out;
    }
    .mobile-menu-panel-header .back-btn {
        transition: color 0.2s ease, transform 0.2s ease;
    }
    .mobile-menu-panel-header .back-btn:hover {
        color: var(--primary-color);
        transform: translateX(-3px);
    }
    .mobile-menu-panel .menu-item,
    .mobile-menu-panel .menu-item-detailed {
        cursor: pointer !important;
    }
    .nav-actions {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    .search-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        background-color: #F3F3F3;
        border-radius: 50%;
        border: none;
        cursor: pointer;
        transition: all 0.2s ease;
    }
    .search-button:hover {
        transform: scale(1.1);
    }
    .search-button i {
        font-size: 22px;
        color: #6F55FF;
        line-height: 1;
    }
    #search-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(26, 20, 35, 0.6);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        z-index: 99999;
        display: none;
        align-items: flex-start;
        justify-content: center;
        padding-top: 15vh;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    #search-overlay.active {
        display: flex;
        opacity: 1;
    }
    #search-container {
        background: white;
        border-radius: 12px;
        padding: 1.5rem;
        width: 90%;
        max-width: 600px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        transform: translateY(-20px) scale(0.98);
        transition: transform 0.3s cubic-bezier(0.215, 0.610, 0.355, 1), opacity 0.3s;
        opacity: 0;
    }
    #search-overlay.active #search-container {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    .search-header {
        display: flex;
        align-items: center;
        gap: 1rem;
        border-bottom: 1px solid #eee;
        padding-bottom: 1rem;
        margin-bottom: 1rem;
    }
    .search-input-wrapper {
        position: relative;
        flex-grow: 1;
    }
    .search-input-wrapper i {
        position: absolute;
        left: 16px;
        top: 50%;
        transform: translateY(-50%);
        color: #999;
        font-size: 1.3rem;
        pointer-events: none;
    }
    #search-input {
        width: 100%;
        padding: 14px 15px 14px 45px;
        font-size: 1rem;
        border: 1px solid #ddd;
        border-radius: 8px;
        outline: none;
        transition: border-color 0.2s, box-shadow 0.2s;
        box-shadow: 0 0 0 6px rgba(111, 85, 255, 0.2);
    }
    #search-input:focus {
        border: 2px solid #6F55FF;
    }
    #close-search-btn {
        background: #f1f1f1;
        border: 1px solid #eee;
        color: #888;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.2s;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        flex-shrink: 0;
    }
    #close-search-btn:hover {
        background: #e2dbfc;
        color: #6F55FF;
        transform: rotate(90deg);
    }
    .search-body {
        min-height: 150px;
    }
    #search-history-container .history-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 10px;
    }
    #search-history-container p {
        font-size: 0.9rem;
        font-weight: 600;
        color: #555;
        margin: 0;
    }
    #clear-history-btn {
        font-size: 0.8rem;
        color: #6F55FF;
        background: none;
        border: none;
        cursor: pointer;
        padding: 5px;
    }
    #clear-history-btn:hover {
        text-decoration: underline;
    }
    #history-items {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }
    .history-chip {
        background-color: #f1f1f1;
        border: 1px solid #eee;
        border-radius: 20px;
        padding: 8px 15px;
        font-size: 0.9rem;
        color: #555;
        cursor: pointer;
        transition: all 0.2s ease;
    }
    .history-chip:hover {
        background-color: #E2DBFC;
        color: #6F55FF;
        border-color: #6F55FF;
    }
    #autocomplete-results {
        max-height: 300px;
        overflow-y: auto;
        display: none;
    }
    .autocomplete-item {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px 10px;
        font-size: 1rem;
        cursor: pointer;
        border-radius: 6px;
        transition: background-color 0.2s;
    }
    .autocomplete-item:hover {
        background-color: #f7f5ff;
    }
    .autocomplete-item i {
        color: #6F55FF;
        font-size: 1rem;
    }
    .autocomplete-item strong {
        color: #6F55FF;
        font-weight: 600;
    }
    @media (max-width: 1070px) {
        .nav-actions .search-button {
            display: none;
        }
        
        .menu-items {
            display: none !important;
        }
        
        .mobile-icons-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        nav .btn {
            display: none !important;
        }
    }
    .related-tools-links {
        margin-top: 20px;
        padding-top: 15px;
        border-top: 1px solid #e9e4ff;
    }
    .related-tools-links p {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        margin: 0 0 12px 0;
        font-size: 0.95rem;
        color: #555;
        line-height: 1.5;
        flex-wrap: wrap;
        /* allow text to wrap properly */
    }
    .related-tools-links p:last-child {
        margin-bottom: 0;
    }
    .related-tools-links i {
        color: #6F55FF;
        font-size: 1.1rem;
        flex-shrink: 0;
        margin-top: 3px;
    }
    .related-tools-links a {
        color: #6F55FF;
        font-weight: 600;
        text-decoration: none;
        transition: text-decoration 0.2s ease;
        word-break: break-word;
    }
    .related-tools-links a:hover {
        text-decoration: underline;
    }
    @media (max-width: 480px) {
        .related-tools-links p {
            flex-direction: row;
            gap: 8px;
            font-size: 0.9rem;
        }
        
        .related-tools-links i {
            margin-top: 4px;
            font-size: 1rem;
        }
    }
    .specific-converter-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .specific-converter-item {
        display: flex;
        flex-direction: column;
        background-color: #fff;
        padding: 25px;
        border-radius: 12px;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .converter-info {
        flex-grow: 1;
    }
    .converter-info h4 {
        font-size: 1.1rem;
        font-weight: 600;
        color: #333;
        margin: 0 0 8px 0;
    }
    .converter-info p {
        font-size: 0.9rem;
        color: #555;
        line-height: 1.5;
        margin: 0;
    }
    .converter-link-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 18px;
        background-color: #6F55FF;
        color: #fff;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.9rem;
        transition: all 0.2s ease-in-out;
        white-space: nowrap;
        border: 1px solid transparent;
        margin-top: 15px;
        align-self: flex-start;
        box-shadow: 0 8px 24px rgba(111 85, 255, 0.6);
      text-decoration: none !important; 
    }
    .converter-link-btn:hover {
        background-color: #FFB840;
        color: #fff !important;
        box-shadow: 0 4px 12px rgba(111, 85, 255, 0.2);
    }
    .converter-link-btn i {
        display: inline-block;
        font-size: 1rem;
        line-height: 1;
        vertical-align: middle;
        position: relative;
        top: 0.5px;
        transition: transform 0.2s ease-in-out;
    }
    .converter-link-btn:hover i {
        transform: translateX(3px);
    }
    @media (max-width: 992px) {
        .specific-converter-list {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    @media (max-width: 768px) {
        .specific-converter-list {
            grid-template-columns: 1fr;
        }
    }
    
