﻿.awards-section {
            background: linear-gradient(135deg, #032d56 0%, #011a2f 50%, #032d56 100%);
            padding: 30px 0px;
            position: relative;
            overflow: hidden;
        }

        /* Animated Background */
        .bg-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.1;
            animation: pulse 4s ease-in-out infinite;
        }

        .orb-1 {
            top: 80px;
            left: 40px;
            width: 300px;
            height: 300px;
            background: #3b82f6;
        }

        .orb-2 {
            top: 160px;
            right: 40px;
            width: 300px;
            height: 300px;
            background: #06b6d4;
            animation-delay: 0.7s;
        }

        .orb-3 {
            bottom: 80px;
            left: 50%;
            width: 300px;
            height: 300px;
            background: #6366f1;
            animation-delay: 1s;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.1; }
            50% { transform: scale(1.1); opacity: 0.15; }
        }

        

        /* Header */
        .award-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .trophy-icon {
            width: 50px;
            height: 50px;
            margin: 0 auto 0px;
            animation: bounce 2s ease-in-out infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        .trophy-icon svg {
            width: 100%;
            height: 100%;
            fill: #fbbf24;
            filter: drop-shadow(0 10px 20px rgba(251, 191, 36, 0.3));
        }

        .main-title {
            font-size: 56px;
            font-weight: 800;
            color: white !important;
            margin-bottom: 24px;
            letter-spacing: -1px;
        }

        .title-highlight {
            background: linear-gradient(to right, #fbbf24, #f59e0b, #fbbf24);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .subtitle {
            font-size: 20px;
            color: #bfdbfe;
            max-width: 800px;
            margin: 0 auto 15px;
            line-height: 1.6;
        }

        .stars {
            display: flex;
            justify-content: center;
            gap: 8px;
        }

        .star {
            width: 24px;
            height: 24px;
            fill: #fbbf24;
            animation: star-pulse 2s ease-in-out infinite;
        }

        .star:nth-child(1) { animation-delay: 0s; }
        .star:nth-child(2) { animation-delay: 0.2s; }
        .star:nth-child(3) { animation-delay: 0.4s; }
        .star:nth-child(4) { animation-delay: 0.6s; }
        .star:nth-child(5) { animation-delay: 0.8s; }

        @keyframes star-pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(0.9); }
        }

        /* Awards Grid */
        .awards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
        }

        .award-card {
            position: relative;
            animation: fadeInUp 0.6s ease-out forwards;
            opacity: 0;
        }

        .award-card:nth-child(1) { animation-delay: 0.1s; }
        .award-card:nth-child(2) { animation-delay: 0.2s; }
        .award-card:nth-child(3) { animation-delay: 0.3s; }
        .award-card:nth-child(4) { animation-delay: 0.4s; }
        .award-card:nth-child(5) { animation-delay: 0.5s; }
        .award-card:nth-child(6) { animation-delay: 0.6s; }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .card-glow {
            position: absolute;
            inset: -2px;
            border-radius: 16px;
            opacity: 0;
            transition: opacity 0.5s;
            z-index: -1;
            filter: blur(20px);
        }

        .award-card:hover .card-glow {
            opacity: 0.75;
        }

        .award-card-content {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            border-radius: 16px;
            padding: 32px;
            border: 1px solid #475569;
            transition: all 0.3s ease;
            height: 100%;
        }

        .award-card:hover .card-content {
            transform: translateY(-8px);
            border-color: #64748b;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
        }

        .card-icon {
            width: 64px;
            height: 64px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
        }

        .award-card:hover .card-icon {
            transform: scale(1.1) rotate(6deg);
        }

        .card-icon svg {
            width: 32px;
            height: 32px;
            fill: white;
        }

        .category-badge {
            display: inline-block;
            padding: 6px 12px;
            border-radius: 20px;
            background: rgba(59, 130, 246, 0.2);
            border: 1px solid rgba(59, 130, 246, 0.3);
            font-size: 12px;
            font-weight: 600;
            color: #93c5fd;
            margin-bottom: 16px;
        }

        .card-title {
            font-size: 24px;
            font-weight: 700;
            color: white;
            margin-bottom: 8px;
            transition: all 0.3s ease;
        }

        .award-card:hover .card-title {
            background: linear-gradient(to right, #fbbf24, #f59e0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .card-date {
            font-size: 14px;
            color: #93c5fd;
            font-weight: 500;
            margin-bottom: 16px;
        }

        .card-description {
            color: #cbd5e1;
            line-height: 1.6;
        }

        .sparkle-icon {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 24px;
            height: 24px;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .award-card:hover .sparkle-icon {
            opacity: 1;
            animation: sparkle 1.5s ease-in-out infinite;
        }

        @keyframes sparkle {
            0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
            50% { transform: scale(1.2) rotate(180deg); opacity: 0.7; }
        }

        .sparkle-icon svg {
            width: 100%;
            height: 100%;
            fill: #fbbf24;
        }

        /* CTA Section */
        .cta-section {
            text-align: center;
        }

        .cta-box {
            display: inline-block;
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            border-radius: 16px;
            padding: 48px;
            border: 1px solid #475569;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
        }

        .cta-title {
            font-size: 32px;
            font-weight: 700;
            color: white;
            margin-bottom: 16px;
        }

        .cta-text {
            font-size: 18px;
            color: #bfdbfe;
            max-width: 700px;
            margin: 0 auto 32px;
            line-height: 1.6;
        }

        .cta-button {
            display: inline-block;
            padding: 16px 32px;
            background: linear-gradient(to right, #f59e0b, #d97706);
            color: white;
            font-size: 16px;
            font-weight: 600;
            border-radius: 12px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 10px 25px -5px rgba(245, 158, 11, 0.4);
        }

        .cta-button:hover {
            transform: scale(1.05);
            box-shadow: 0 20px 35px -5px rgba(245, 158, 11, 0.6);
            background: linear-gradient(to right, #d97706, #b45309);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .main-title {
                font-size: 36px;
            }

            .subtitle {
                font-size: 16px;
            }

            .awards-grid {
                grid-template-columns: 1fr;
            }

            .cta-title {
                font-size: 24px;
            }

            .cta-box {
                padding: 32px 24px;
            }
        }
        
        
       