

        :root {
            --gradient-start: #E91E63;
            --gradient-middle: #9C27B0;
            --gradient-end: #2196F3;
            --primary-color: #E91E63;
            --secondary-color: #f8fafc;
            --accent-color: #2196F3;
            --text-dark: #1e293b;
            --text-light: #64748b;
            --card-shadow: 0 10px 30px rgba(233, 30, 99, 0.1);
        }




#WORK {




        .hero-section {
            background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-middle) 50%, var(--gradient-end) 100%);
            color: white;
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        .hero-section h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            animation: fadeInUp 0.8s ease-out;
            text-shadow: 0 4px 8px rgba(0,0,0,0.2);
            position: relative;
            z-index: 1;
        }

        .hero-section p {
            font-size: 1.25rem;
            opacity: 0.95;
            max-width: 600px;
            margin: 0 auto;
            animation: fadeInUp 0.8s ease-out 0.2s both;
            position: relative;
            z-index: 1;
        }

        .timeline-section {
            /* padding: 120px 0; */
            background: linear-gradient(180deg, #ffffff 0%, var(--secondary-color) 50%, #ffffff 100%);
        }

        .section-title {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        .section-title p {
            font-size: 1.1rem;
            color: var(--text-light);
            max-width: 500px;
            margin: 0 auto;
        }

        .timeline {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 30px;
            bottom: 70px;
            width: 6px;
            background: linear-gradient(180deg, var(--gradient-start), var(--gradient-middle), var(--gradient-end));
            transform: translateX(-50%);
            z-index: 1;
            border-radius: 3px;
            box-shadow: 0 0 20px rgba(233, 30, 99, 0.3);
        }

        .timeline-item {
            position: relative;
            margin-bottom: 60px;
            width: 100%;
        }

        .timeline-item:nth-child(odd) .timeline-content {
            margin-left: 0;
            margin-right: 50%;
            padding-right: 40px;
            text-align: right;
        }

        .timeline-item:nth-child(even) .timeline-content {
            margin-left: 50%;
            margin-right: 0;
            padding-left: 40px;
            text-align: left;
        }

        .timeline-content {
            /* background: white;
            border-radius: 20px;
            padding: 35px;
            box-shadow: var(--card-shadow);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            border: 1px solid rgba(233, 30, 99, 0.1); */
        }

        /* .timeline-content:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 20px 40px rgba(233, 30, 99, 0.2);
        } */

        .timeline-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            /* background: linear-gradient(90deg, var(--gradient-start), var(--gradient-middle), var(--gradient-end)); */
            border-radius: 20px 20px 0 0;
        }

        .timeline-marker {
            position: absolute;
            left: 50%;
            top: 30px;
            transform: translateX(-50%);
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-middle), var(--gradient-end));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.6rem;
            font-weight: 700;
            z-index: 2;
            border: 5px solid white;
            box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
            transition: all 0.3s ease;
        }

        .timeline-marker:hover {
            transform: translateX(-50%) scale(1.1);
            box-shadow: 0 12px 35px rgba(233, 30, 99, 0.4);
        }

        .timeline-icon {
            font-size: 2.8rem;
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
            filter: drop-shadow(0 2px 4px rgba(233, 30, 99, 0.2));
        }

        .timeline-content h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--text-dark);
            padding-top: 30px;
        }

        .timeline-item:last-child .timeline-content h3 {
            padding-top: 0;
        }

        .timeline-content p {
            color: var(--text-light);
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 0;
        }

        .timeline-content ul {
            margin: -10px 0 0 0;
            padding-left: 20px;
        }

        .timeline-content li {
            color: var(--text-light);
            margin-bottom: -3px;
            font-size: 1.2rem;
        }

        .payment-options {
            display: flex;
            gap: 15px;
            margin-top: 20px;
            justify-content: flex-end;
        }

        .timeline-item:nth-child(even) .payment-options {
            justify-content: flex-start;
        }

        .payment-badge {
            background: linear-gradient(135deg, var(--gradient-middle), var(--gradient-end));
            color: white;
            padding: 8px 16px;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(156, 39, 176, 0.3);
            transition: all 0.3s ease;
        }

        .payment-badge:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(156, 39, 176, 0.4);
        }

        .cta-section {
            background: linear-gradient(135deg, var(--text-dark) 0%, #2d3748 100%);
            color: white;
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent 30%, rgba(233, 30, 99, 0.1) 50%, transparent 70%);
            animation: shimmer 3s ease-in-out infinite;
        }

        @keyframes shimmer {
            0%, 100% { opacity: 0; }
            50% { opacity: 1; }
        }

        .cta-section h2 {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
        }

        .cta-section p {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 40px;
            position: relative;
            z-index: 1;
        }

        .btn-primary-custom {
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-middle), var(--gradient-end));
            border: none;
            padding: 18px 45px;
            font-size: 1.2rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            z-index: 1;
            box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
        }

        .btn-primary-custom:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 35px rgba(233, 30, 99, 0.4);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in-up {
            animation: fadeInUp 0.6s ease-out;
        }

        @media (max-width: 768px) {
            .timeline::before {
                left: 35px;
                width: 4px;
            }

            .timeline-marker {
                left: 35px;
                width: 60px;
                height: 60px;
                font-size: 1.4rem;
            }

            .timeline-item:nth-child(odd) .timeline-content,
            .timeline-item:nth-child(even) .timeline-content {
                margin-left: 80px;
                margin-right: 0;
                padding-left: 20px;
                padding-right: 20px;
                text-align: left;
            }

            .payment-options,
            .timeline-item:nth-child(even) .payment-options {
                justify-content: flex-start;
            }

            .hero-section h1 {
                font-size: 2.5rem;
            }
            
            .hero-section p {
                font-size: 1.1rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
        }

        @media (min-width: 769px) {
            .hero-section h1 {
                font-size: 4rem;
            }
        }



}
