
        .minitech-navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: #ffffff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .minitech-navbar-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            /* padding: 100 10px; */
            height: 90px;
        }

        .minitech-navbar-logo {
            display: flex;
            align-items: center;
            order: 1;
        }

        .minitech-navbar-logo-img {
            height: 50px;
            width: auto;
            filter: brightness(0) invert(1);
        }

        .minitech-navbar-logo-text {
            font-size: 1.8rem;
            font-weight: 700;
            color: #c41e3a;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .minitech-navbar-menu {
            display: flex;
            list-style: none;
            gap: 45px;
            order: 2;
            padding-top: 10px;
        }

        .minitech-navbar-item {
            position: relative;
        }

        .minitech-navbar-link {
            text-decoration: none;
            color: #333333;
            font-size: .9rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 8px 0;
            transition: all 0.3s ease;
            display: inline-block;
            /* padding-top: 40px; */
            position: relative;
            text-decoration: none !important;
        }

        .minitech-navbar-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #c41e3a;
            transition: width 0.3s ease;
             text-decoration: none !important;
        }

        .minitech-navbar-link:hover {
            color: #c41e3a;
             text-decoration: none !important;
        }

        .minitech-navbar-link:hover::after {
            width: 100%;
             text-decoration: none !important;
        }

        .minitech-navbar-cta {
            background: #c41e3a;
            color: #ffffff !important;
            padding: 12px 28px !important;
            border-radius: 50px;
            transition: all 0.3s ease;
             text-decoration: none !important;
             margin-top: 5px;
        }

        .minitech-navbar-cta::after {
            display: none;
        }

        .minitech-navbar-cta:hover {
            background: #a01628;
            color: #ffffff !important;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(196, 30, 58, 0.3);
        }

        .minitech-navbar-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            order: 3;
        }

        .minitech-navbar-toggle-bar {
            width: 28px;
            height: 3px;
            background: #333333;
            margin: 4px 0;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .minitech-navbar-toggle.active .minitech-navbar-toggle-bar:nth-child(1) {
            transform: rotate(-45deg) translate(-6px, 6px);
            background: #c41e3a;
        }

        .minitech-navbar-toggle.active .minitech-navbar-toggle-bar:nth-child(2) {
            opacity: 0;
        }

        .minitech-navbar-toggle.active .minitech-navbar-toggle-bar:nth-child(3) {
            transform: rotate(45deg) translate(-6px, -6px);
            background: #c41e3a;
        }

        /* Mobile Menu Styles */
        @media (max-width: 1024px) {
            .minitech-navbar-container {
                padding: 0 25px;
                height: 70px;
            }

            .minitech-navbar-menu {
                gap: 30px;
            }

            .minitech-navbar-link {
                font-size: 0.95rem;
            }
        }

        @media (max-width: 768px) {
            .minitech-navbar-container {
                padding: 0 20px;
            }

            .minitech-navbar-logo {
                order: 1;
            }

            .minitech-navbar-toggle {
                display: flex;
                order: 2;
            }

            .minitech-navbar-menu {
                position: fixed;
                top: -100%;
                left: 0;
                width: 100%;
                background: #ffffff;
                flex-direction: column;
                align-items: center;
                gap: 0;
                padding: 100px 20px 40px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
                transition: top 0.4s ease-in-out;
                order: 3;
                max-height: 100vh;
                overflow-y: auto;
            }

            .minitech-navbar-menu.active {
                top: 70px;
            }
            .minitech-navbar-menu-mobilenone{
                display: none;
            }

            .minitech-navbar-item {
                width: 100%;
                text-align: center;
                padding: 0;
                border-bottom: 1px solid #f0f0f0;
            }

            .minitech-navbar-item:last-child {
                border-bottom: none;
            }

            .minitech-navbar-link {
                display: block;
                padding: 18px 20px;
                font-size: 1.1rem;
                width: 100%;
            }

            .minitech-navbar-link::after {
                display: none;
            }

            .minitech-navbar-cta {
                margin-top: 20px;
                border-radius: 50px;
                display: inline-block;
                width: auto;
            }

            .minitech-navbar-logo-text {
                font-size: 1.5rem;
            }

            .minitech-navbar-close {
                position: absolute;
                top: 20px;
                right: 20px;
                width: 40px;
                height: 40px;
                background: #c41e3a;
                border-radius: 50%;
                display: none;
                align-items: center;
                justify-content: center;
                cursor: pointer;
                transition: all 0.3s ease;
            }

            .minitech-navbar-close.active {
                display: flex;
            }

            .minitech-navbar-close:hover {
                background: #a01628;
                transform: rotate(90deg);
            }

            .minitech-navbar-close::before,
            .minitech-navbar-close::after {
                content: '';
                position: absolute;
                width: 20px;
                height: 2px;
                background: #ffffff;
            }

            .minitech-navbar-close::before {
                transform: rotate(45deg);
            }

            .minitech-navbar-close::after {
                transform: rotate(-45deg);
            }
        }

        @media (max-width: 480px) {
            .minitech-navbar-logo-text {
                font-size: 1.3rem;
            }

            .minitech-navbar-link {
                font-size: 1rem;
                padding: 16px 15px;
            }
        }

        /* Page content spacing */
        .page-content {
            margin-top: 80px;
        }