        /* Freelance Section Styling */
        .freelance-available {
            position: relative;
            padding: 100px 0;
            background-color: #121313;
            overflow: hidden;
        }

        .freelance-content {
            position: relative;
            z-index: 2;
        }

        .freelance-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 30px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease forwards;
        }

        .text-highlight {
            color: #0d6efd;
            position: relative;
            display: inline-block;
        }

        .text-highlight::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 10px;
            background-color: rgba(13, 110, 253, 0.2);
            z-index: -1;
            transform: scaleX(0);
            transform-origin: left;
            animation: highlightGrow 1s ease forwards 1s;
        }

        .freelance-text-wrapper {
            overflow: hidden;
        }

        .freelance-text {
            font-size: 1.2rem;
            line-height: 1.8;
            color: #6c757d;
            margin-bottom: 40px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease forwards 0.5s;
        }

        .freelance-btn-wrapper {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease forwards 1s;
        }

        .btn-freelance {
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            letter-spacing: 1px;
            border-radius: 50px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            box-shadow: 0 5px 15px rgba(13, 110, 253, 0.2);
        }

        .btn-freelance:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(13, 110, 253, 0.3);
        }

        .btn-freelance::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: 0.5s;
        }

        .btn-freelance:hover::before {
            left: 100%;
        }

        /* Background Elements */
        .freelance-bg-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 1;
        }

        .freelance-circle {
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(13, 110, 253, 0.05);
            top: -150px;
            right: -150px;
            animation: float 8s ease-in-out infinite;
        }

        .freelance-square {
            position: absolute;
            width: 200px;
            height: 200px;
            background: rgba(13, 110, 253, 0.03);
            bottom: -100px;
            left: -100px;
            transform: rotate(45deg);
            animation: float 10s ease-in-out infinite 2s;
        }

        /* Animations */
        @keyframes highlightGrow {
            to {
                transform: scaleX(1);
            }
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0) rotate(0deg);
            }

            50% {
                transform: translateY(-20px) rotate(5deg);
            }
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .freelance-available {
                padding: 80px 0;
            }

            .freelance-title {
                font-size: 2.2rem;
            }

            .freelance-text {
                font-size: 1rem;
            }

            .btn-freelance {
                padding: 12px 30px;
            }
        }