@keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes glow {
            from {
                text-shadow: 0 0 10px rgba(255, 121, 0, 0.5);
            }

            to {
                text-shadow: 0 0 20px rgba(255, 121, 0, 0.8);
            }
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: #FF7900;
            border-radius: 50%;
            opacity: 0.5;
            animation: float 20s infinite linear;
        }

        .hero-animate-left {
            animation: slideInLeft 1s ease-out;
        }

        .hero-animate-right {
            animation: slideInRight 1s ease-out;
        }

        .glow-text {
            animation: glow 2s ease-in-out infinite alternate;
        }

        .btn-ripple {
            position: relative;
            overflow: hidden;
        }

        .btn-ripple::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn-ripple:hover::before {
            width: 300px;
            height: 300px;
        }

        .service-icon-animated {
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .service-icon-animated::before {
            content: attr(data-service);
            position: absolute;
            bottom: -30px;
            left: 50%;
            transform: translateX(-50%);
            background: #FF7900;
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            white-space: nowrap;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .service-icon-animated:hover {
            background: #FF7900 !important;
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 25px rgba(255, 121, 0, 0.3);
        }

        .service-icon-animated:hover::before {
            bottom: -40px;
            opacity: 1;
        }

        .transformation-slider {
            position: relative;
            width: 100%;
            height: 500px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .before-after-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .before-image,
        .after-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .after-image {
            clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
            transition: clip-path 0.5s ease;
        }

        .slider-handle {
            position: absolute;
            top: 0;
            left: 50%;
            width: 4px;
            height: 100%;
            background: #FF7900;
            cursor: ew-resize;
            z-index: 10;
            transform: translateX(-50%);
        }

        .slider-handle::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 40px;
            height: 40px;
            background: #FF7900;
            border-radius: 50%;
            transform: translate(-50%, -50%);
            box-shadow: 0 0 20px rgba(255, 121, 0, 0.5);
        }

        .slider-handle::after {
            content: '◀ ▶';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 0.8rem;
            font-weight: bold;
        }

        .transformation-labels {
            position: absolute;
            top: 20px;
            left: 20px;
            right: 20px;
            display: flex;
            justify-content: space-between;
            z-index: 5;
        }

        .label {
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-weight: 600;
            backdrop-filter: blur(10px);
        }

        @media (max-width: 768px) {
            .transformation-slider {
                height: 300px;
            }
        }

        /* Custom animations */
        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-slide-up {
            animation: slideInUp 0.6s ease-out;
        }

        .animate-slide-up-delay {
            animation: slideInUp 0.6s ease-out 0.2s both;
        }

        .animate-slide-up-delay-2 {
            animation: slideInUp 0.6s ease-out 0.4s both;
        }

        /* Gradient text animation */
        @keyframes gradient {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0% 50%;
            }
        }

        .gradient-text {
            background: linear-gradient(-45deg, #FF7900, #0E4C92, #00A896, #FF7900);
            background-size: 400% 400%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradient 6s ease infinite;
        }

        /* Service card hover effect */
        .service-card {
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .service-card:hover::before {
            left: 100%;
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        ::-webkit-scrollbar-thumb {
            background: #FF7900;
            border-radius: 5px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #e06b00;
        }