.material-symbols-outlined {
            font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
        }

        .brutalist-border {
            box-shadow: 8px 8px 0px 0px #000000;
        }

        .brutalist-border-blue {
            box-shadow: 8px 8px 0px 0px #2E5BFF;
        }

        .text-glow {
            text-shadow: 0 0 15px rgba(46, 91, 255, 0.2);
        }

        .service-card {
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
        }

        .reveal-on-scroll {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .reveal-on-scroll.active {
            opacity: 1;
            transform: translateY(0);
        }

        ::-webkit-scrollbar {
            width: 12px;
        }

        ::-webkit-scrollbar-track {
            background: #f9f9f9;
        }

        ::-webkit-scrollbar-thumb {
            background: #2E5BFF;
            border: 3px solid #f9f9f9;
        }