        /* Custom Theme Variables and Base Styles */
        :root {
            --color-primary: #0A0A2A;
            /* Deep Blue/Black */
            --color-secondary: #2C0B5A;
            /* Deep Purple */
            --color-accent-neon: #36D8E2;
            /* Cyan Neon */
            --color-accent-glow: #8B5CF6;
            /* Purple Glow */
            --color-text: #E5E7EB;
            /* Light Gray */
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--color-primary);
            color: var(--color-text);
            overflow-x: hidden;
            /* Hide default cursor and apply custom one */
            cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2336D8E2' width='24px' height='24px'%3E%3Cpath d='M20 3H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 11l-3-3 3-3v2h5v2h-5v2z'/%3E%3C/svg%3E") 12 12, auto;
        }

        .navbar-app{
            background-color: #310258;
            position: fixed;
        }

         /* Gradient Text on Hover (for .nav-link-item class) */
        .nav-link-item:hover {
            background-image: linear-gradient(to right, #5d92db, #a45ed3, #c85fe2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            color: transparent;
            transform: scale(1.01);
            transition: transform 0.3s ease;
        }

        /* Animated Underline for Links */
        .nav-link-item {
            position: relative;
            color: white !important;
        }
        @media (max-width:1024px) {
            .nav-link-item{
                color: black !important;
            }
        }
        .nav-link-item::before {
            content: '';
            position: absolute;
            height: 2px;
            width: 0%;
            bottom: 0;
            left: 0;
            /* Using one of the gradient colors for consistency */
            background-color: #9100f1; 
            transition: width 0.5s linear;
            margin: 0 0 -10px 0;
            display: inline-block;
        }
        .nav-link-item:hover::before {
            width: 100%;
        }

        /* Responsive adjustments for underline on small screens */
        @media (max-width: 768px) {
            .nav-link-item::before {
                margin: 0 0 -1px 0;
            }
            .nav-link-item:hover::before {
                width: 30%;
            }
        }
        
        /* Dropdown Menu Custom Border */
        .custom-dropdown-menu {
            border-radius: 0 !important;
            border: 2px solid rgba(134, 134, 245, 0.151) !important;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            margin-top: -5px !important;
            z-index: +99999;
        }

        /* Custom Button Style */
        .nav-contact-btn {
            background-image: linear-gradient(to right, #005ee2, #9100f1, #ce0aff);
            box-shadow: 0 4px 10px rgba(145, 0, 241, 0.3);
            transition: all 0.3s ease;
        }
        .nav-contact-btn:hover {
            box-shadow: 0 6px 15px rgba(145, 0, 241, 0.5);
            transform: translateY(-1px);
        }

        /* NEW: Neon Text Glow for Titles and Key text */
        .neon-text-glow {
            color: rgb(162, 162, 255);
            text-shadow: 0px 4px 10px rgb(111, 111, 226);
        }

        .neon-icon-glow {
            filter: drop-shadow(0 0 4px var(--color-primary)) drop-shadow(0 0 8px rgba(100, 53, 230, 0.5));
        }

        /* --- Section Gradient Background --- */
        .hero-bg {
            background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
            min-height: 100vh;
        }



        /* --- Text & Title Styles --- */
        h1,
        h2 {
            font-weight: 800;
            line-height: 1.1;
        }

        .neon-text {
            color: var(--color-accent-neon);
            text-shadow: 0 0 5px var(--color-accent-neon), 0 0 10px rgba(54, 216, 226, 0.5);
            transition: all 0.3s ease;
        }

        /* --- Button Styles --- */
        .btn-primary {
            background-color: var(--color-accent-glow);
            color: var(--color-primary);
            padding: 0.75rem 2rem;
            border-radius: 9999px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 0 15px rgba(139, 92, 246, 0.6);
        }

        .btn-primary:hover {
            transform: translateY(-2px) scale(1.02);
            box-shadow: 0 0 25px rgba(139, 92, 246, 0.9);
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--color-accent-neon);
            border: 2px solid var(--color-accent-neon);
            padding: 0.75rem 2rem;
            border-radius: 9999px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background-color: rgba(54, 216, 226, 0.1);
            box-shadow: 0 0 15px rgba(54, 216, 226, 0.5);
        }

        /* --- Card Styles (For Trust/Services) --- */
        .feature-card {
            background-color: rgba(44, 11, 90, 0.3);
            /* Transparent purple */
            border: 1px solid rgba(139, 92, 246, 0.2);
            border-radius: 0.75rem;
            backdrop-filter: blur(5px);
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .feature-card:hover {
            transform: translateY(-5px) scale(1.02);
            border-color: var(--color-accent-glow);
            box-shadow: 0 10px 20px rgba(139, 92, 246, 0.2), 0 0 15px rgba(139, 92, 246, 0.5);
        }

        .card-icon {
            color: var(--color-accent-neon);
            font-size: 2rem;
            filter: drop-shadow(0 0 5px var(--color-accent-neon));
        }

        /* --- Directional Scroll Reveal Animations --- */
        .reveal-element {
            opacity: 0;
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
            will-change: opacity, transform;
        }

        /* Starting positions for the animation */
        .from-bottom {
            transform: translateY(50px);
        }

        .from-left {
            transform: translateX(-50px);
        }

        .from-right {
            transform: translateX(50px);
        }

        .from-top {
            transform: translateY(-30px);
        }

        /* Final visible state */
        .reveal-element.visible {
            opacity: 1;
            transform: translate(0, 0);
            /* Reset to original position */
        }

        /* Custom animation for the Mockup (IT Security Theme) */
        .mockup-container {
            position: relative;
            transform: rotateY(15deg) rotateX(5deg);
            transition: transform 1s ease-out;
            perspective: 1000px;
        }

        .mobile-mockup {
            /* ... (Mockup styles remain the same) ... */
            width: 100%;
            max-width: 300px;
            aspect-ratio: 9/16;
            background: rgba(0, 0, 0, 0.6);
            border: 8px solid var(--color-text);
            border-radius: 40px;
            box-shadow:
                0 0 30px var(--color-accent-glow),
                inset 0 0 15px rgba(139, 92, 246, 0.5);
            position: relative;
            overflow: hidden;

        }

        .mockup-screen {
            background: repeating-linear-gradient(45deg,
                    rgba(54, 216, 226, 0.1),
                    rgba(54, 216, 226, 0.1) 10px,
                    transparent 10px,
                    transparent 20px);
            height: 100%;
            padding: 1rem;
            font-size: 0.8rem;
            color: var(--color-accent-neon);
            animation: scanline 4s infinite linear;
        }

        @keyframes scanline {
            0% {
                background-position: 0% 0%;
            }

            100% {
                background-position: 100% 100%;
            }
        }

        .fa-phone-alt {
            transform: rotate(90deg);
        }

        /* Process Timeline Styling */
        .timeline {
            position: relative;
            padding-bottom: 2rem;
        }

        .timeline:before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            width: 2px;
            height: 100%;
            background-color: var(--color-accent-glow);
            transform: translateX(-50%);
            z-index: 0;
        }

        .timeline-dot {
            /* ... (Dot styles remain the same) ... */
            box-shadow: 0 0 10px var(--color-accent-neon);
            transition: all 0.4s ease;
            z-index: 10;
        }

        /* Mobile adjustment for timeline */
        @media (max-width: 767px) {
            .timeline:before {
                left: 1.5rem;
            }

            .timeline-item {
                padding-left: 3rem;
            }

            .timeline-dot {
                left: 1.5rem;
                transform: translateY(-50%);
            }

            .timeline-content {
                text-align: left !important;
            }
        }

        /* --- Custom Mouse Cursor CSS (IT Theme) --- */
        /* Glowing Dot */
        :root {
            --color-accent-neon: #00e5ff;
            --color-accent-glow: #8b5cf6;
        }

        #cursor-dot {
            position: fixed;
            width: 8px;
            height: 8px;
            background: var(--color-accent-neon);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            transform: translate(-50%, -50%);
            transition: width 0.3s ease, height 0.3s ease;
            box-shadow: 0 0 10px var(--color-accent-neon);
        }

        /* Lagging Outline Circle */
        #cursor-outline {
            position: fixed;
            width: 40px;
            height: 40px;
            border: 2px solid var(--color-accent-glow);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            opacity: 0.6;
            transform: translate(-50%, -50%);
            transition: transform 0.15s ease-out, opacity 0.3s ease, border-width 0.3s ease;
            box-shadow: 0 0 15px rgba(139, 92, 246, 0.5);
        }

        /* Hover Effects */
        a:hover~#cursor-outline,
        button:hover~#cursor-outline,
        .card:hover~#cursor-outline {
            width: 60px;
            height: 60px;
            opacity: 0.8;
            border-width: 4px;
            background: rgba(139, 92, 246, 0.1);
        }

        a:hover~#cursor-dot,
        button:hover~#cursor-dot,
        .card:hover~#cursor-dot {
            width: 16px;
            height: 16px;
            box-shadow: 0 0 20px var(--color-accent-neon);
        }

        @media (max-width:768px) {
          #cursor-dot{
            display: none;
          }  
          #cursor-outline{
            display: none;
          }
        }


        .site-top {
            position: fixed;
            background-color: white;
            right: 50px;
            bottom: 20px;
            padding: 13px 15px;
            border-radius: 50%;
            display: none;
            transition: opacity 0.3s ease;
            z-index: +9999;
            border: none;
            animation: topbtn 1.5s infinite linear alternate;
        }

        .site-top i {
            color: rgb(40, 113, 223);

        }

        @keyframes topbtn {
            0% {
                transform: translateY(20px);
            }

            100% {
                transform: translateY(0px);
            }
        }

        .site-top.show {
            display: block;
            opacity: 1;
        }

        .whatsapp-btn {
            position: fixed;
            bottom: 70px;
            left: 20px;
            font-size: 30px;
            border-radius: 10px;
            background-color: white;
            z-index: +1;
            border: none;
            padding: 0px 5px;
        }

        .fa-whatsapp {
            color: rgb(40, 113, 223) !important;
        }

        @media (max-width: 600px) {
            .topBtn {
                z-index: +1;
            }

            .whatsapp-btn {
                z-index: +1;
            }
        }