
        body {
            font-family: 'Georgia', serif;
          
            color: #fff;
            overflow-x: hidden;
            background: #000;
        }

        .achievement-section {
            position: relative;
            padding:50px 0;
          
            overflow: hidden;
        }

        .achievement-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.08) 0%, transparent 50%);
            animation: backgroundShimmer 8s ease-in-out infinite alternate;
        }

        @keyframes backgroundShimmer {
            0% { opacity: 0.3; }
            100% { opacity: 0.6; }
        }


        .section-title {
            text-align: center;
            margin-bottom:10px;
        }

        .section-title h2 {
            font-size:2.5rem;
            font-weight: 700;
            color:#000;
            -webkit-background-clip: text;
            background-clip: text;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 20px;
            position: relative;
            animation: titleGlow 3s ease-in-out infinite alternate;
        }

        @keyframes titleGlow {
            0% { filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3)); }
            100% { filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.6)); }
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, transparent, #FFD700, transparent);
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
        }

        .achievements-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 50px;
            margin-top: 60px;
        }

        .achievement-card {
            background: linear-gradient(145deg, rgba(26, 26, 26, 0.9), rgba(0, 0, 0, 0.95));
            border: 2px solid transparent;
            border-radius: 20px;
            padding: 50px 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
            transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
            cursor: pointer;
        }

        .achievement-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, #FFD700, #FFA500, #DAA520, #B8860B);
            background-size: 400% 400%;
            opacity: 0;
            transition: opacity 0.6s ease;
            animation: gradientShift 4s ease infinite;
            z-index: -1;
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .achievement-card:hover::before {
            opacity: 0.1;
        }

        .achievement-card:hover {
            transform: translateY(-15px) scale(1.02);
            border-color: rgba(255, 215, 0, 0.5);
            box-shadow: 
                0 25px 50px rgba(0, 0, 0, 0.5),
                0 0 50px rgba(255, 215, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

        .achievement-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 30px;
            background: linear-gradient(45deg, #c08830, #fdb746);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            box-shadow: 
                0 10px 30px rgba(255, 215, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            position: relative;
            animation: iconFloat 3s ease-in-out infinite;
        }

        @keyframes iconFloat {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-8px); }
        }

        .achievement-icon::after {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            background: linear-gradient(45deg, #FFD700, transparent, #FFA500);
            border-radius: 50%;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .achievement-card:hover .achievement-icon::after {
            opacity: 0.6;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }

        .achievement-number {
            font-size: 4rem;
            font-weight: 900;
            background: linear-gradient(45deg, #c08830, #c08830);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 15px;
            line-height: 1;
            position: relative;
        }

        .achievement-label {
            font-size: 1.4rem;
            color: #e0e0e0;
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px;
        }

        .achievement-description {
            font-size: 1rem;
            color: #b0b0b0;
            line-height: 1.6;
            font-style: italic;
        }

        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .floating-element {
            position: absolute;
            width: 6px;
            height: 6px;
            background: linear-gradient(45deg, #c08830, #c08830);
            border-radius: 50%;
            animation: float 6s infinite linear;
            opacity: 0.6;
        }

        /* .floating-element:nth-child(1) { left: 10%; animation-delay: 0s; }
        .floating-element:nth-child(2) { left: 20%; animation-delay: 1s; }
        .floating-element:nth-child(3) { left: 30%; animation-delay: 2s; }
        .floating-element:nth-child(4) { left: 40%; animation-delay: 3s; }
        .floating-element:nth-child(5) { left: 50%; animation-delay: 4s; }
        .floating-element:nth-child(6) { left: 60%; animation-delay: 5s; }
        .floating-element:nth-child(7) { left: 70%; animation-delay: 0.5s; }
        .floating-element:nth-child(8) { left: 80%; animation-delay: 1.5s; }
        .floating-element:nth-child(9) { left: 90%; animation-delay: 2.5s; } */

        @keyframes float {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 0.6;
            }
            90% {
                opacity: 0.6;
            }
            100% {
                transform: translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }

        @media (max-width: 768px) {
            .section-title h2 {
                font-size: 2.5rem;
            }
            
            .achievements-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .achievement-card {
                padding: 40px 25px;
            }
            
            .achievement-number {
                font-size: 3rem;
            }
        }

        /* Counter Animation */
        @keyframes countUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .achievement-card.animate .achievement-number {
            animation: countUp 1s ease-out;
        }