 .main_services {
            padding: 10px 0;
            position: relative;
            overflow: hidden;
        }

        .main_services::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(34,197,94,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(34,197,94,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(34,197,94,0.03)"/><circle cx="10" cy="90" r="0.5" fill="rgba(34,197,94,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
            pointer-events: none;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        .highlight-text {
            text-align: center;
            margin-bottom: 60px;
            animation: slideDown 1s ease-out;
        }

        .highlight-text {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            border: 2px solid rgba(34, 197, 94, 0.3);
            border-radius: 50px;
            padding: 15px 40px;
            display: inline-block;
            color: #1f2937;
            font-size: 24px;
            font-weight: 600;
            box-shadow: 0 8px 32px rgba(34, 197, 94, 0.1);
            transition: all 0.3s ease;
        }

        .highlight-text:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(34, 197, 94, 0.2);
            border-color: rgba(34, 197, 94, 0.5);
        }

        .highlight-text span {
            background: linear-gradient(45deg, #22c55e, #16a34a);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 700;
            animation: pulse 2s infinite;
        }

        .wrapper {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 60px;
            align-items: center;
        }

        .left {
            animation: slideInLeft 1s ease-out;
        }

        .left span {
            background: linear-gradient(45deg, #22c55e, #16a34a);
            color: white;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: inline-block;
            margin-bottom: 20px;
            box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
        }

        .left h1 {
            font-size: 3.5rem;
            color: #1f2937;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .left h1 mark {
            background: linear-gradient(45deg, #22c55e, #16a34a);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            background-color: transparent;
            position: relative;
        }

        .left h1 mark::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(45deg, #22c55e, #16a34a);
            border-radius: 2px;
            animation: expandWidth 1.5s ease-out 0.5s both;
        }

        .right {
            animation: slideInRight 1s ease-out;
        }

        .services {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .box {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            border: 2px solid rgba(34, 197, 94, 0.2);
            border-radius: 20px;
            padding: 40px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            cursor: pointer;
            box-shadow: 0 8px 30px rgba(34, 197, 94, 0.1);
        }

        .box::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(34, 197, 94, 0.1), transparent);
            transform: rotate(-45deg);
            transition: all 0.6s ease;
            opacity: 0;
        }

        .box:hover::before {
            animation: shimmer 1.5s ease-in-out;
        }

        .box:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(34, 197, 94, 0.2);
            border-color: rgba(34, 197, 94, 0.4);
        }

        .file-itself {
            border-left: 4px solid #22c55e;
        }

        .hire_eca {
            border-left: 4px solid #059669;
        }

        .off_tag {
            position: absolute;
            top: -10px;
            right: 20px;
            z-index: 2;
        }

        .off_tag::before {
            content: '15% OFF';
            background: linear-gradient(45deg, #22c55e, #16a34a);
            color: white;
            padding: 10px 20px;
            border-radius: 25px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
            animation: bounce 2s infinite;
            display: block;
        }

        .box figure {
            width: 80px;
            height: 80px;
            background: linear-gradient(45deg, #22c55e, #16a34a);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
            transition: all 0.3s ease;
        }

        .box:hover figure {
            transform: scale(1.1) rotate(5deg);
        }

        .file-itself figure {
            background: linear-gradient(45deg, #22c55e, #16a34a);
        }

        .hire_eca figure {
            background: linear-gradient(45deg, #059669, #047857);
        }

        .icon {
            font-size: 32px;
            color: white;
        }

        .box h2 {
            font-size: 1.8rem;
            color: #1f2937;
            font-weight: 700;
            margin-bottom: 15px;
            transition: all 0.3s ease;
        }

        .box:hover h2 {
            transform: translateX(5px);
            color: #22c55e;
        }

        .box p {
            color: #6b7280;
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .file-itself .btn {
            background: linear-gradient(45deg, #22c55e, #16a34a);
            color: white;
            box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
        }

        .hire_eca .btn {
            background: linear-gradient(45deg, #059669, #047857);
            color: white;
            box-shadow: 0 8px 25px rgba(5, 150, 105, 0.4);
        }

        .btn::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.6s ease;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn:hover {
            transform: translateX(5px);
            box-shadow: 0 12px 35px rgba(34, 197, 94, 0.3);
        }

        .btn i {
            font-size: 14px;
            transition: transform 0.3s ease;
        }

        .btn:hover i {
            transform: translateX(3px);
        }

        /* Animations */
        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @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 pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-10px);
            }
            60% {
                transform: translateY(-5px);
            }
        }

        @keyframes expandWidth {
            from {
                width: 0;
            }
            to {
                width: 100%;
            }
        }

        @keyframes shimmer {
            0% {
                opacity: 0;
                transform: translateX(-100%) translateY(-100%) rotate(-45deg);
            }
            50% {
                opacity: 1;
            }
            100% {
                opacity: 0;
                transform: translateX(100%) translateY(100%) rotate(-45deg);
            }
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            .wrapper {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .left h1 {
                font-size: 2.5rem;
            }

            .services {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .main_services {
                padding: 60px 0;
            }

            .container {
                padding: 0 15px;
            }

            .highlight-text {
                font-size: 20px;
                padding: 12px 30px;
            }

            .left h1 {
                font-size: 2rem;
            }

            .box {
                padding: 30px;
            }

            .box h2 {
                font-size: 1.5rem;
            }
        }

        /* Floating particles animation */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            background: rgba(34, 197, 94, 0.2);
            border-radius: 50%;
            animation: float 6s infinite linear;
        }

        .particle:nth-child(1) {
            width: 6px;
            height: 6px;
            left: 10%;
            animation-delay: 0s;
        }

        .particle:nth-child(2) {
            width: 4px;
            height: 4px;
            left: 20%;
            animation-delay: 1s;
        }

        .particle:nth-child(3) {
            width: 8px;
            height: 8px;
            left: 70%;
            animation-delay: 2s;
        }

        .particle:nth-child(4) {
            width: 5px;
            height: 5px;
            left: 80%;
            animation-delay: 3s;
        }

        .particle:nth-child(5) {
            width: 3px;
            height: 3px;
            left: 90%;
            animation-delay: 4s;
        }

        @keyframes float {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }