        .traning-container {
            max-width: auto;
            margin: 0 auto;
            padding: 100px 20px;
            background: linear-gradient(to bottom, rgb(34, 40, 49), rgba(43, 47, 59));
        }

        .traningSection {
            position: relative;
        }

        .training-grid {
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 80px;
        }

        .training-card {
            background: rgba(30, 41, 59, 0.8);
            border-radius: 20px;
            padding: 35px;
            border: 1px solid rgba(6, 182, 212, 0.2);
            backdrop-filter: blur(10px);
            position: relative;
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateY(50px);
            overflow: hidden;
            margin-bottom: 20px;
        }

        .training-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #06b6d4, #0891b2, #06b6d4);
            background-size: 200% 100%;
            animation: shimmer 3s ease-in-out infinite;
        }

        .training-card.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .training-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 0 1px cyan, 0 0 3px cyan, 0 0 5pc cyan, 0 0 10px cyan, 0 0 20px cyan;
            border-color: rgba(6, 182, 212, 0.4);
        }

        .training-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(45deg, #06b6d4, #0891b2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 25px;
            box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3);
            position: relative;
        }

        .training-icon::after {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            border: 2px solid rgba(6, 182, 212, 0.3);
            border-radius: 50%;
            animation: rotate 4s linear infinite;
        }

        .training-category {
            display: inline-block;
            background: rgba(6, 182, 212, 0.1);
            color: #06b6d4;
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 15px;
            border: 1px solid rgba(6, 182, 212, 0.3);
        }

        .training-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: #ffffff;
        }

        .training-provider {
            color: #06b6d4;
            font-weight: 600;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .training-provider::before {
            content: '🏛️';
            font-size: 1.1rem;
        }

        .training-duration {
            color: #94a3b8;
            font-size: 0.9rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .training-duration::before {
            content: '⏱️';
            font-size: 1rem;
        }

        .training-description {
            color: #cbd5e1;
            line-height: 1.7;
            margin-bottom: 20px;
            text-align: justify;
        }

        .skills-learned {
            list-style: none;
            padding: 0;
        }

        .skills-learned li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 8px;
            color: #e2e8f0;
            font-size: 0.95rem;
        }

        .skills-learned li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #06b6d4;
            font-weight: bold;
        }

        .certificate-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(45deg, #0891b2, #06b6d4);
            color: white;
            padding: 8px 15px;
            border-radius: 25px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-top: 15px;
            box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
            transition: all 0.3s ease;
        }

        .certificate-badge:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 20px rgba(6, 182, 212, 0.4);
        }

        .certificate-badge::before {
            content: '🏆';
            font-size: 1rem;
        }

        .stats-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 60px;
            padding: 40px;
            background: rgba(15, 23, 42, 0.5);
            border-radius: 20px;
            border: 1px solid rgba(6, 182, 212, 0.1);
        }

        .stats-section:hover {
            box-shadow: 0 0 1px cyan, 0 0 3px cyan, 0 0 5pc cyan, 0 0 10px cyan, 0 0 20px cyan;
        }

        .stat-item {
            text-align: center;
            opacity: 0;
            transform: translateY(30px);
        }

        .stat-item.animate {
            animation: fadeInUp 0.8s ease forwards;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            background: linear-gradient(45deg, #06b6d4, #0891b2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
        }

        .stat-label {
            color: #94a3b8;
            font-size: 1rem;
            margin-top: 10px;
        }

        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }

        .floating-element {
            position: absolute;
            width: 8px;
            height: 8px;
            background: #06b6d4;
            border-radius: 50%;
            opacity: 0.2;
            animation: float 8s ease-in-out infinite;
        }

        .floating-element:nth-child(1) { top: 15%; left: 5%; animation-delay: 0s; }
        .floating-element:nth-child(2) { top: 45%; left: 85%; animation-delay: 2s; }
        .floating-element:nth-child(3) { top: 75%; left: 15%; animation-delay: 4s; }
        .floating-element:nth-child(4) { top: 25%; left: 75%; animation-delay: 6s; }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes shimmer {
            0%, 100% {
                background-position: -200% 0;
            }
            50% {
                background-position: 200% 0;
            }
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
            }
            50% {
                transform: translateY(-30px) rotate(180deg);
            }
        }

        @media (max-width: 768px) {
            .training-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .training-card {
                padding: 25px;
            }

            .stats-section {
                grid-template-columns: repeat(2, 1fr);
                padding: 30px 20px;
            }

            .stat-number {
                font-size: 2rem;
            }
        }
