 /* Main Services Card Class */
        .services-card01 {
            background-color: white;
            border-radius: 16px;
            /* box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); */
            padding: 24px;
            min-width: 280px;
            flex-shrink: 0;
            transition: all 0.3s ease;
            border: 1px solid #cccccc78;
        }

        .services-card01:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }

        .services-card01 .card-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 16px;
        }

        .services-card01 .badge {
            padding: 4px 12px;
            border-radius: 9999px;
            font-size: 12px;
            font-weight: 600;
        }

        .services-card01 .rating {
            color: #059669;
            font-size: 14px;
        }

        .services-card01 .card-content {
            display: flex;
            gap: 16px;
            margin-bottom: 16px;
            align-items: center;
        }

        .services-card01 .icon-container {
            padding: 16px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .services-card01 .icon-container i {
            font-size: 24px;
        }

        .services-card01 .card-title {
            font-size: 20px;
            font-weight: 700;
            color: #111827;
            margin-bottom: 4px;
        }

        .services-card01 .card-description {
            color: #6b7280;
            font-size: 12px;
        }

        .services-card01 .services-list {
            margin-bottom: 16px;
            list-style: none;
        }

        .services-card01 .services-list li {
            font-size: 12px;
            color: #374151;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .services-card01 .services-list i {
            color: #059669;
            font-size: 10px;
        }

        .services-card01 .time-info {
            font-size: 12px;
            color: #6b7280;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .services-card01 .services-button {
            width: 100;
            color: white;
            padding: 12px 20px;
            border-radius: 8px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: background-color 0.2s ease;
            font-size: 14px;
        }

        /* Color Variations - nested inside .services-card01 */
        .services-card01.color-orange .badge { background-color: #fee2e2; color: #dc2626; }
        .services-card01.color-orange .icon-container { background-color: #fee2e2; }
        .services-card01.color-orange .icon-container i { color: #dc2626; }
        .services-card01.color-orange .services-button { background-color: #f97316; }
        .services-card01.color-orange .services-button:hover { background-color: #ea580c; }

        .services-card01.color-blue .badge { background-color: #dbeafe; color: #2563eb; }
        .services-card01.color-blue .icon-container { background-color: #dbeafe; }
        .services-card01.color-blue .icon-container i { color: #2563eb; }
        .services-card01.color-blue .services-button { background-color: #3b82f6; }
        .services-card01.color-blue .services-button:hover { background-color: #2563eb; }

        .services-card01.color-purple .badge { background-color: #e9d5ff; color: #7c3aed; }
        .services-card01.color-purple .icon-container { background-color: #e9d5ff; }
        .services-card01.color-purple .icon-container i { color: #7c3aed; }
        .services-card01.color-purple .services-button { background-color: #8b5cf6; }
        .services-card01.color-purple .services-button:hover { background-color: #7c3aed; }

        .services-card01.color-green .badge { background-color: #d1fae5; color: #059669; }
        .services-card01.color-green .icon-container { background-color: #d1fae5; }
        .services-card01.color-green .icon-container i { color: #059669; }
        .services-card01.color-green .services-button { background-color: #10b981; }
        .services-card01.color-green .services-button:hover { background-color: #059669; }

        .services-card01.color-red .badge { background-color: #fecaca; color: #dc2626; }
        .services-card01.color-red .icon-container { background-color: #fecaca; }
        .services-card01.color-red .icon-container i { color: #dc2626; }
        .services-card01.color-red .services-button { background-color: #ef4444; }
        .services-card01.color-red .services-button:hover { background-color: #dc2626; }

        .services-card01.color-indigo .badge { background-color: #e0e7ff; color: #4f46e5; }
        .services-card01.color-indigo .icon-container { background-color: #e0e7ff; }
        .services-card01.color-indigo .icon-container i { color: #4f46e5; }
        .services-card01.color-indigo .services-button { background-color: #6366f1; }
        .services-card01.color-indigo .services-button:hover { background-color: #4f46e5; }

        @media (min-width: 768px) {
            .scroll-container {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 32px;
                overflow-x: hidden;
                padding-bottom: 0;
            }

            .services-card01 {
                min-width: auto;
            }
        }