
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-orange: #FF5F15;
            --secondary-orange: #FFA802;
            --gradient-primary: linear-gradient(135deg, #FF5F15 0%, #FFA802 100%);
            --bg-dark: #0d163e;
            --bg-dark-light: #1a1f3a;
            --text-light: #ffffff;
            --shadow-primary: 0 20px 40px rgba(255, 95, 21, 0.2);
            --shadow-hover: 0 25px 50px rgba(255, 95, 21, 0.3);
            --border-orange: rgba(255, 95, 21, 0.3);
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        body {
            font-family: 'DM Sans', sans-serif;
            background: var(--bg-dark);
            color: var(--text-light);
            line-height: 1.6;
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        .myFontSize {
            font-size: 18px !important;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            color: var(--text-light);
            line-height: 1.2;
        }

        h1 {
            font-size: clamp(2.5rem, 6vw, 4rem);
        }

        h2 {
            font-size: clamp(2rem, 5vw, 3.5rem);
        }

        h3 {
            font-size: clamp(1.5rem, 4vw, 2.5rem);
        }

        h4 {
            font-size: clamp(1.2rem, 3vw, 2rem);
        }

        p {
            /*font-size: clamp(0.95rem, 2vw, 1.1rem);*/
            font-size: 22px;
            color: white;
            line-height: 1.7;
        }

        /* Hero Section */
        .hero-awards-section {
            position: relative;
            min-height: 75vh;
            display: flex;
            align-items: center;
            padding: clamp(80px, 15vw, 100px) 0;
            overflow: hidden;
            margin-top: 5rem;
            border-bottom: 4px solid var(--primary-orange);
            border-radius: 0 0 30px 30px;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #0a0f2c 0%, #1a1f3a 50%, #0a0f2c 100%);
            z-index: 0;
        }

        .hero-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
            overflow: hidden;
        }

        .shape {
            position: absolute;
            border-radius: 50%;
            background: var(--gradient-primary);
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
        }

        .shape-1 {
            width: 300px;
            height: 300px;
            top: 10%;
            right: -5%;
            animation-delay: 0s;
        }

        .shape-2 {
            width: 200px;
            height: 200px;
            bottom: 20%;
            left: -3%;
            animation-delay: 2s;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px) rotate(0deg);
            }

            50% {
                transform: translateY(-30px) rotate(180deg);
            }
        }

        .hero-content {
            position: relative;
            z-index: 5;
            max-width: 1850px;
            margin: 0 auto;
            padding: 0 max(40px, 3vw);
            width: 100%;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 95, 21, 0.1);
            border: 2px solid rgba(255, 95, 21, 0.3);
            color: var(--secondary-orange);
            padding: 12px 24px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 30px;
            backdrop-filter: blur(10px);
            animation: slideInLeft 1s ease-out;
        }

        .hero-title {
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 25px;
            animation: slideInLeft 1.2s ease-out 0.3s both;
        }

        .hero-title .highlight {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: clamp(1.1rem, 2.5vw, 1.4rem);
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 35px;
            max-width: 700px;
            animation: slideInLeft 1.2s ease-out 0.6s both;
        }

        /* Premium Hero Visual Styles */
        .hero-visual {
            position: absolute;
            right: 5%;
            top: 50%;
            transform: translateY(-50%);
            width: 500px;
            height: 500px;
            z-index: 3;
        }

        .premium-award-showcase {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        /* Enhanced Trophy Container */
        .trophy-container {
            position: relative;
            width: 200px;
            height: 250px;
            margin-bottom: 40px;
        }

        .trophy-base {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
        }

        .trophy-cup {
            position: relative;
            width: 120px;
            height: 140px;
            background:
                linear-gradient(135deg,
                    #FFD700 0%,
                    #FFA802 30%,
                    #FF8C00 70%,
                    #FF5F15 100%);
            border-radius: 60px 60px 40px 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow:
                0 15px 35px rgba(255, 95, 21, 0.5),
                inset 0 -8px 15px rgba(0, 0, 0, 0.3),
                inset 0 8px 15px rgba(255, 255, 255, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.1);
            animation: trophyFloat 4s ease-in-out infinite;
            z-index: 10;
            overflow: hidden;
        }

        .trophy-cup i {
            font-size: 48px;
            color: white;
            text-shadow:
                0 2px 10px rgba(0, 0, 0, 0.4),
                0 0 20px rgba(255, 255, 255, 0.3);
            animation: trophyShine 3s ease-in-out infinite;
            position: relative;
            z-index: 2;
        }

        .trophy-highlight {
            position: absolute;
            top: 15px;
            left: 15px;
            width: 40px;
            height: 60px;
            background: linear-gradient(135deg,
                    rgba(255, 255, 255, 0.8) 0%,
                    rgba(255, 255, 255, 0.3) 50%,
                    transparent 100%);
            border-radius: 50%;
            transform: rotate(25deg);
            z-index: 1;
        }

        .trophy-glow {
            position: absolute;
            width: 180px;
            height: 180px;
            background: radial-gradient(circle,
                    rgba(255, 168, 2, 0.6) 0%,
                    rgba(255, 95, 21, 0.3) 50%,
                    transparent 80%);
            border-radius: 50%;
            animation: glowPulse 3s ease-in-out infinite;
            z-index: -1;
        }

        .trophy-shine {
            position: absolute;
            top: 25px;
            left: 25px;
            width: 25px;
            height: 40px;
            background: linear-gradient(90deg,
                    transparent,
                    rgba(255, 255, 255, 0.8),
                    transparent);
            transform: rotate(30deg);
            animation: shineMove 4s ease-in-out infinite;
            border-radius: 50%;
            z-index: 1;
        }

        .trophy-stand {
            width: 45px;
            height: 35px;
            background: linear-gradient(135deg,
                    #B8B8B8 0%,
                    #D0D0D0 30%,
                    #E8E8E8 70%,
                    #C8C8C8 100%);
            border-radius: 8px 8px 0 0;
            box-shadow:
                0 5px 15px rgba(0, 0, 0, 0.3),
                inset 0 -2px 5px rgba(0, 0, 0, 0.2);
            z-index: 5;
            position: relative;
        }

        .trophy-stand::before {
            content: '';
            position: absolute;
            top: 5px;
            left: 5px;
            right: 5px;
            height: 10px;
            background: linear-gradient(90deg,
                    transparent,
                    rgba(255, 255, 255, 0.4),
                    transparent);
            border-radius: 3px;
        }

        .trophy-platform {
            width: 90px;
            height: 25px;
            background: linear-gradient(135deg,
                    #909090 0%,
                    #A8A8A8 30%,
                    #C0C0C0 70%,
                    #989898 100%);
            border-radius: 12px;
            box-shadow:
                0 8px 25px rgba(0, 0, 0, 0.4),
                inset 0 -3px 8px rgba(0, 0, 0, 0.3);
            z-index: 4;
            position: relative;
        }

        .platform-details {
            position: absolute;
            top: 8px;
            left: 15px;
            right: 15px;
            height: 3px;
            background: linear-gradient(90deg,
                    transparent,
                    rgba(255, 255, 255, 0.3),
                    transparent);
            border-radius: 2px;
        }

        /* Enhanced Floating Sparks */
        .floating-sparks {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .spark {
            position: absolute;
            width: 4px;
            height: 4px;
            background: #FFA802;
            border-radius: 50%;
            animation: sparkFloat 4s ease-in-out infinite;
            filter: blur(0.5px);
            box-shadow: 0 0 8px #FFA802;
        }

        .spark-1 {
            top: 10%;
            left: 20%;
            animation-delay: 0s;
        }

        .spark-2 {
            top: 30%;
            right: 15%;
            animation-delay: 0.8s;
        }

        .spark-3 {
            bottom: 40%;
            left: 25%;
            animation-delay: 1.6s;
        }

        .spark-4 {
            bottom: 20%;
            right: 30%;
            animation-delay: 2.4s;
        }

        .spark-5 {
            top: 60%;
            left: 40%;
            animation-delay: 3.2s;
        }

        /* Enhanced Certification Badges with Equal Width */
        .certification-badges {
            display: flex;
            gap: 15px;
            margin-bottom: 30px;
            z-index: 10;
            width: 100%;
            max-width: 400px;
            justify-content: center;
        }

        .badge-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            padding: 20px 15px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 95, 21, 0.4);
            border-radius: 20px;
            backdrop-filter: blur(15px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            animation: badgeFloat 6s ease-in-out infinite;
            width: 120px;
            /* Fixed equal width */
            min-height: 100px;
            position: relative;
            overflow: hidden;
        }

        .badge-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg,
                    transparent,
                    rgba(255, 255, 255, 0.1),
                    transparent);
            transition: left 0.6s ease;
        }

        .badge-item:hover::before {
            left: 100%;
        }

        .badge-item:hover {
            transform: translateY(-8px) scale(1.05);
            background: rgba(255, 255, 255, 0.12);
            border-color: var(--primary-orange);
            box-shadow:
                0 15px 35px rgba(255, 95, 21, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.1);
        }

        .badge-1 {
            animation-delay: 0s;
        }

        .badge-2 {
            animation-delay: 2s;
        }

        .badge-3 {
            animation-delay: 4s;
        }

        .badge-icon {
            width: 55px;
            height: 55px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: white;
            box-shadow: 0 5px 15px rgba(255, 95, 21, 0.3);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .badge-icon::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg,
                    transparent,
                    rgba(255, 255, 255, 0.3),
                    transparent);
            transform: rotate(45deg);
            transition: all 0.6s ease;
        }

        .badge-item:hover .badge-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 8px 25px rgba(255, 95, 21, 0.5);
        }

        .badge-item:hover .badge-icon::before {
            left: 100%;
        }

        .iso-icon {
            width: 24px;
            height: 24px;
        }

        .badge-item span {
            font-size: 18px;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.95);
            text-transform: uppercase;
            letter-spacing: 0.8px;
            text-align: center;
            line-height: 1.2;
        }

        /* Enhanced Animated Stats */
        .animated-stats {
            display: flex;
            gap: 40px;
            z-index: 10;
        }

        .stat-circle {
            position: relative;
            width: 120px;
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .progress-ring {
            position: absolute;
            top: 0;
            left: 0;
            transform: rotate(-90deg);
            filter: drop-shadow(0 5px 15px rgba(255, 95, 21, 0.3));
        }

        .progress-ring-bg {
            opacity: 0.3;
        }

        .progress-ring-circle {
            stroke-dasharray: 326.56;
            stroke-dashoffset: 326.56;
            animation: progressFill 2s ease-out forwards;
            animation-delay: 1s;
            filter: url(#glow);
        }

        .stat-content {
            text-align: center;
            z-index: 2;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 800;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            margin-bottom: 5px;
            text-shadow: 0 2px 10px rgba(255, 95, 21, 0.3);
        }

        .stat-label {
            font-size: 0.65rem;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 1.2px;
        }

        /* Enhanced Floating Particles */
        .floating-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            background: var(--gradient-primary);
            border-radius: 50%;
            opacity: 0.4;
            animation: particleFloat 10s linear infinite;
            filter: blur(0.5px);
        }

        /* Particle positions remain the same */
        .particle:nth-child(1) {
            width: 8px;
            height: 8px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .particle:nth-child(2) {
            width: 6px;
            height: 6px;
            top: 60%;
            left: 15%;
            animation-delay: 1s;
        }

        .particle:nth-child(3) {
            width: 10px;
            height: 10px;
            top: 40%;
            right: 20%;
            animation-delay: 2s;
        }

        .particle:nth-child(4) {
            width: 5px;
            height: 5px;
            bottom: 30%;
            right: 10%;
            animation-delay: 3s;
        }

        .particle:nth-child(5) {
            width: 7px;
            height: 7px;
            top: 10%;
            right: 30%;
            animation-delay: 4s;
        }

        .particle:nth-child(6) {
            width: 9px;
            height: 9px;
            bottom: 20%;
            left: 25%;
            animation-delay: 5s;
        }

        .particle:nth-child(7) {
            width: 4px;
            height: 4px;
            top: 70%;
            right: 25%;
            animation-delay: 6s;
        }

        .particle:nth-child(8) {
            width: 6px;
            height: 6px;
            bottom: 10%;
            right: 35%;
            animation-delay: 7s;
        }

        /* Enhanced Background Glow */
        .background-glow {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .glow-1 {
            position: absolute;
            width: 350px;
            height: 350px;
            background: radial-gradient(circle,
                    rgba(255, 95, 21, 0.2) 0%,
                    rgba(255, 168, 2, 0.1) 40%,
                    transparent 80%);
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: glowPulseLarge 5s ease-in-out infinite;
            filter: blur(20px);
        }

        .glow-2 {
            position: absolute;
            width: 250px;
            height: 250px;
            background: radial-gradient(circle,
                    rgba(255, 168, 2, 0.15) 0%,
                    rgba(255, 95, 21, 0.08) 50%,
                    transparent 80%);
            border-radius: 50%;
            top: 30%;
            right: 20%;
            animation: glowMove 7s ease-in-out infinite;
            filter: blur(15px);
        }

        .glow-3 {
            position: absolute;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle,
                    rgba(255, 95, 21, 0.12) 0%,
                    rgba(255, 168, 2, 0.06) 50%,
                    transparent 80%);
            border-radius: 50%;
            bottom: 20%;
            left: 25%;
            animation: glowMoveReverse 6s ease-in-out infinite;
            filter: blur(12px);
        }

        /* Enhanced Animations */
        @keyframes trophyFloat {

            0%,
            100% {
                transform: translateY(0px) rotate(0deg);
            }

            50% {
                transform: translateY(-12px) rotate(1deg);
            }
        }

        @keyframes trophyShine {

            0%,
            100% {
                filter: brightness(1) drop-shadow(0 2px 10px rgba(0, 0, 0, 0.4));
            }

            50% {
                filter: brightness(1.4) drop-shadow(0 2px 15px rgba(255, 255, 255, 0.3));
            }
        }

        @keyframes glowPulse {

            0%,
            100% {
                transform: scale(1);
                opacity: 0.5;
            }

            50% {
                transform: scale(1.3);
                opacity: 0.8;
            }
        }

        @keyframes glowPulseLarge {

            0%,
            100% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 0.15;
            }

            50% {
                transform: translate(-50%, -50%) scale(1.2);
                opacity: 0.25;
            }
        }

        @keyframes glowMove {

            0%,
            100% {
                transform: translate(0, 0);
            }

            50% {
                transform: translate(25px, -20px);
            }
        }

        @keyframes glowMoveReverse {

            0%,
            100% {
                transform: translate(0, 0);
            }

            50% {
                transform: translate(-20px, 15px);
            }
        }

        @keyframes shineMove {

            0%,
            100% {
                left: 25px;
                opacity: 0;
            }

            50% {
                left: 70px;
                opacity: 0.9;
            }
        }

        @keyframes sparkFloat {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
                opacity: 0;
            }

            20% {
                opacity: 1;
            }

            50% {
                transform: translate(15px, -25px) scale(1.2);
                opacity: 0.8;
            }

            80% {
                opacity: 0.2;
            }
        }

        @keyframes badgeFloat {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-8px);
            }
        }

        @keyframes progressFill {
            to {
                stroke-dashoffset: 0;
            }
        }

        @keyframes particleFloat {
            0% {
                transform: translateY(0) translateX(0) scale(0.8);
                opacity: 0;
            }

            10% {
                opacity: 0.6;
            }

            90% {
                opacity: 0.1;
            }

            100% {
                transform: translateY(-120px) translateX(60px) scale(1.2);
                opacity: 0;
            }
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .hero-visual {
                width: 450px;
                height: 450px;
                right: 2%;
            }

            .certification-badges {
                max-width: 360px;
            }

            .badge-item {
                width: 110px;
                min-height: 90px;
                padding: 18px 12px;
            }
        }

        @media (max-width: 992px) {
            .hero-visual {
                position: relative;
                right: auto;
                top: auto;
                transform: none;
                width: 100%;
                max-width: 500px;
                height: 500px;
                margin: 40px auto 0;
            }
        }

        @media (max-width: 768px) {
            .hero-visual {
                height: 450px;
                max-width: 400px;
                margin-top: 7rem;

            }

            .certification-badges {
                max-width: 320px;
                gap: 12px;
            }

            .badge-item {
                width: 95px;
                min-height: 85px;
                padding: 15px 10px;
            }

            .badge-icon {
                width: 45px;
                height: 45px;
                font-size: 18px;
            }

            .iso-icon {
                width: 20px;
                height: 20px;
            }

            .badge-item span {
                font-size: 0.7rem;
            }
        }

        @media (max-width: 576px) {
            .hero-visual {
                height: 420px;
                max-width: 350px;
            }

            .certification-badges {
                flex-direction: row;
                flex-wrap: wrap;
                max-width: 280px;
                gap: 10px;
            }

            .badge-item {
                width: 85px;
                min-height: 80px;
                padding: 12px 8px;
            }

            .badge-icon {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }

            .iso-icon {
                width: 18px;
                height: 18px;
            }
        }

        /* Certificates Section */
        .certificates-section {
            max-width: 1850px;
            margin: 0 auto;
            padding: 80px max(40px, 3vw);
        }

        .section-header {
            text-align: center;
            margin-bottom: 70px;
        }

        .section-header h2 {
            margin-bottom: 20px;
        }

        .section-header p {
            max-width: 600px;
            margin: 0 auto;
            color: white;
            font-size: 22px;
        }

        /* Certificate Cards Grid */
        .certificates-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-bottom: 80px;
        }

        .certificate-card {
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 95, 21, 0.2);
            border-radius: 25px;
            overflow: hidden;
            transition: var(--transition);
            position: relative;
            display: flex;
            flex-direction: column;
            height: 100%;
            animation: fadeInUp 0.8s ease-out forwards;
            opacity: 0;
        }

        .certificate-card:nth-child(1) {
            animation-delay: 0.1s;
        }

        .certificate-card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .certificate-card:nth-child(3) {
            animation-delay: 0.3s;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .certificate-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 95, 21, 0.1), transparent);
            transition: left 0.5s;
            z-index: 1;
            pointer-events: none;
        }

        .certificate-card:hover::before {
            left: 100%;
        }

        .certificate-card:hover {
            transform: translateY(-10px) scale(1.02);
            border-color: var(--primary-orange);
            box-shadow: 0 25px 60px rgba(255, 95, 21, 0.3);
            background: rgba(255, 255, 255, 0.08);
        }

        .certificate-image-wrapper {
            position: relative;
            height: 380px;
            overflow: hidden;
            background: linear-gradient(135deg, rgba(255, 95, 21, 0.1), rgba(255, 168, 2, 0.05));
        }

        .certificate-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
            padding: 20px;
            box-sizing: border-box;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .certificate-card:hover .certificate-image {
            transform: scale(1.05);
        }

        .expand-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 45px;
            height: 45px;
            background: var(--gradient-primary);
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            z-index: 20;
            box-shadow: 0 8px 20px rgba(255, 95, 21, 0.3);
        }

        .expand-btn:hover {
            transform: scale(1.15) rotate(90deg);
            box-shadow: 0 12px 30px rgba(255, 95, 21, 0.5);
        }

        .expand-btn:active {
            transform: scale(0.95);
        }

        /* Modal styles for full certificate view */
        .modal-backdrop {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            z-index: 1000;
            animation: fadeIn 0.4s ease;
            backdrop-filter: blur(5px);
        }

        .modal-backdrop.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        .modal-content-wrapper {
            position: relative;
            max-width: 95vw;
            max-height: 95vh;
            animation: zoomIn 0.4s ease;
        }

        @keyframes zoomIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .modal-image {
            max-width: 100%;
            max-height: 85vh;
            object-fit: contain;
            border-radius: 15px;
            display: block;
        }

        .modal-close-btn {
            position: absolute;
            top: -45px;
            right: 0;
            width: 50px;
            height: 50px;
            background: var(--gradient-primary);
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 24px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            z-index: 1001;
            box-shadow: 0 8px 20px rgba(255, 95, 21, 0.3);
        }

        .modal-close-btn:hover {
            transform: scale(1.1) rotate(90deg);
        }

        /* Benefits Section */
        .benefits-section {
            background: rgba(255, 95, 21, 0.08);
            border: 2px solid rgba(255, 95, 21, 0.2);
            border-radius: 30px;
            padding: 60px max(40px, 3vw);
            margin: 80px 0;
        }

        .benefits-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .benefits-header h2 {
            margin-bottom: 15px;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .benefit-item {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 95, 21, 0.15);
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            transition: var(--transition);
        }

        .benefit-item:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.08);
            border-color: var(--primary-orange);
        }

        .benefit-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 36px;
            color: white;
            transition: var(--transition);
        }

        .benefit-item:hover .benefit-icon {
            transform: scale(1.1) rotateY(360deg);
        }

        .benefit-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: orange;
        }

        .benefit-text {
            font-size: 19px
            color: white;
            line-height: 1.6;
            text-align: justify;
        }

        /* Awards Timeline */
        .awards-timeline {
            max-width: 900px;
            margin: 80px auto 0;
            padding: 0 max(40px, 3vw);
        }

        .timeline-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .timeline-header h2 {
            margin-bottom: 15px;
        }

        .timeline {
            position: relative;
            padding: 40px 0;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 3px;
            height: 100%;
            background: var(--gradient-primary);
            border-radius: 10px;
        }

        .timeline-item {
            margin-bottom: 50px;
            position: relative;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .timeline-item:nth-child(1) {
            animation-delay: 0.1s;
        }

        .timeline-item:nth-child(2) {
            animation-delay: 0.2s;
        }

        .timeline-item:nth-child(3) {
            animation-delay: 0.3s;
        }

        .timeline-item:nth-child(odd) {
            text-align: right;
            padding-right: 55%;
        }

        .timeline-item:nth-child(even) {
            text-align: left;
            padding-left: 55%;
        }

        .timeline-dot {
            position: absolute;
            left: 50%;
            top: 10px;
            transform: translateX(-50%);
            width: 24px;
            height: 24px;
            background: var(--gradient-primary);
            border: 4px solid var(--bg-dark);
            border-radius: 50%;
            z-index: 10;
        }

        .timeline-content {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 95, 21, 0.2);
            border-radius: 15px;
            padding: 25px;
            transition: var(--transition);
        }

        .timeline-item:hover .timeline-content {
            background: rgba(255, 255, 255, 0.08);
            border-color: var(--primary-orange);
            box-shadow: 0 20px 40px rgba(255, 95, 21, 0.2);
        }

        .timeline-year {
            font-size: 1.8rem;
            font-weight: 800;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 8px;
        }

        .timeline-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: white;
            margin-bottom: 8px;
        }

        .timeline-desc {
            font-size: 22px;
            color: white;
            text-align: justify;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .hero-visual {
                width: 250px;
                height: 300px;
                right: 2%;
            }

            .stat-number {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 992px) {
            /* .hero-visual {
                display: none;
            } */
        }

        @media (max-width: 768px) {
            .certificates-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .timeline::before {
                left: 15px;
                display: none;

            }

            .timeline-item:nth-child(odd),
            .timeline-item:nth-child(even) {
                text-align: left;
                padding-left: unset;
                padding-right: unset;
            }

            .timeline-dot {
                left: 0;
                display: none;
            }

            .benefits-grid {
                grid-template-columns: 1fr;
            }

            .certificates-section {
                padding: 60px 20px;
            }

            .benefits-section {
                padding: 40px 20px;
                margin: 50px 0;
            }
        }

        @media (max-width: 576px) {
          .hero-awards-section {
        padding: 50px 20px;
        min-height: 60vh;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 11rem;
    }

            .certificate-content {
                padding: 25px;
            }

            .benefits-section {
                padding: 30px 20px;
                margin: 50px 0;
            }

            .timeline-header {
                margin-bottom: 40px;
            }
        }

        .certificate-content {
            padding: 35px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .cert-badge {
            display: inline-block;
            background: var(--gradient-primary);
            color: white;
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            width: fit-content;
            margin-bottom: 15px;
        }

        .certificate-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: orange;
        }

        .certificate-subtitle {
            font-size: 0.95rem;
            color: var(--secondary-orange);
            font-weight: 600;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .certificate-subtitle i {
            font-size: 16px;
        }

        .certificate-description {
            font-size: 22px;
            color: white;
            margin-bottom: 20px;
            flex-grow: 1;
            line-height: 1.6;
            text-align: justify;
        }

        .certificate-details {
            display: flex;
            flex-direction: column;
            gap: 10px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 95, 21, 0.2);
            margin-top: auto;
        }

        .detail-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.9rem;
        }

        .detail-label {
            color: rgba(255, 255, 255, 0.7);
            font-weight: 500;
        }

        .detail-value {
            color: var(--secondary-orange);
            font-weight: 600;
        }


        /* Add this CSS for carousel */
        .certificates-carousel-wrapper {
            position: relative;
            max-width: 100%;
            overflow: hidden;
            padding: 0 60px;
        }

        .certificates-carousel {
            overflow: hidden;
            width: 100%;
        }

        .certificates-track {
            display: flex;
            gap: 40px;
            transition: transform 0.5s ease-in-out;
        }

        .certificates-track .certificate-card {
            flex: 0 0 calc(33.333% - 27px);
            min-width: calc(33.333% - 27px);
        }

        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: var(--gradient-primary);
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            z-index: 10;
            box-shadow: 0 8px 20px rgba(255, 95, 21, 0.3);
        }

        .carousel-nav:hover {
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 12px 30px rgba(255, 95, 21, 0.5);
        }

        .carousel-nav.prev {
            left: 0;
        }

        .carousel-nav.next {
            right: 0;
        }

        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 40px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 95, 21, 0.3);
            cursor: pointer;
            transition: var(--transition);
        }

        .dot.active,
        .dot:hover {
            background: var(--primary-orange);
            transform: scale(1.2);
        }

        /* Responsive Carousel */
        @media (max-width: 1200px) {
            .certificates-track .certificate-card {
                flex: 0 0 calc(50% - 20px);
                min-width: calc(50% - 20px);
            }
        }

        @media (max-width: 768px) {
            .certificates-carousel-wrapper {
                padding: unset;
            }

            .certificates-track {
                gap: 20px;
            }

            .certificates-track .certificate-card {
                flex: 0 0 100%;
                min-width: 100%;
            }

            .carousel-nav {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
        }

        @media (max-width: 576px) {
            .certificates-carousel-wrapper {
                padding: unset;

            }
        }



        /* Hero Actions */
        .hero-actions {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            animation: slideInLeft 1.2s ease-out 0.9s both;
        }

        .hero-btn-primary {
            background: var(--gradient-primary);
            color: white;
            border: none;
            padding: 18px 35px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 16px;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            transition: var(--transition);
            box-shadow: var(--shadow-primary);
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .hero-btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .hero-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
            color: white;
            text-decoration: none;
        }

        .hero-btn-primary:hover::before {
            left: 100%;
        }

        .hero-btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
            padding: 16px 35px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 16px;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            transition: var(--transition);
            backdrop-filter: blur(10px);
            cursor: pointer;
        }

        .hero-btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--primary-orange);
            color: var(--primary-orange);
            transform: translateY(-3px);
            text-decoration: none;
        }





        .section-title {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 700;
            color: white;
            margin-bottom: 20px;
        }

        .section-title .highlight {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Awards Excellence Section */
.awards-excellence-section {
    max-width: 1850px;
    margin: 0 auto;
    padding: 80px max(40px, 3vw);
}

/* Awards Carousel */
.awards-carousel-wrapper {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    padding: 0 60px;
    margin-bottom: 40px;
}

.awards-carousel {
    overflow: hidden;
    width: 100%;
}

.awards-track {
    display: flex;
    gap: 40px;
    transition: transform 0.5s ease-in-out;
}

.awards-track .award-card {
    flex: 0 0 calc(33.333% - 27px);
    min-width: calc(33.333% - 27px);
}

/* Award Card */
.award-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 95, 21, 0.2);
    border-radius: 25px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    animation: fadeInUp 0.8s ease-out forwards;
}

.award-card:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: var(--primary-orange);
    box-shadow: 0 30px 70px rgba(255, 95, 21, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

/* Award Ribbon */
.award-ribbon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(255, 95, 21, 0.5);
    animation: ribbonFloat 3s ease-in-out infinite;
}

.award-ribbon-gold {
    background: linear-gradient(135deg, #FFD700 0%, #FFA802 100%);
}

.award-ribbon-silver {
    background: linear-gradient(135deg, #C0C0C0 0%, #E8E8E8 100%);
}

.award-ribbon-bronze {
    background: linear-gradient(135deg, #CD7F32 0%, #B87333 100%);
}

@keyframes ribbonFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

/* Award Image Wrapper */
.award-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 95, 21, 0.15), rgba(255, 168, 2, 0.08));
}

.award-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 95, 21, 0.3) 0%, transparent 70%);
    animation: glowPulse 3s ease-in-out infinite;
    pointer-events: none;
}

.award-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9);
}

.award-card:hover .award-image {
    transform: scale(1.1);
    filter: brightness(1);
}

.award-year-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 5px 15px rgba(255, 95, 21, 0.4);
}

/* Award Content */
.award-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.award-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 95, 21, 0.1);
    border: 1px solid rgba(255, 95, 21, 0.3);
    color: var(--secondary-orange);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
    margin-bottom: 15px;
}

.award-category i {
    font-size: 14px;
}

.award-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: orange;
    line-height: 1.3;
}

.award-description {
    font-size: 22px;
    color: white;
    margin-bottom: 20px;
    flex-grow: 1;
    line-height: 1.6;
    text-align: justify;
}

.award-footer {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 95, 21, 0.2);
}

.award-organization {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.award-organization i {
    color: var(--secondary-orange);
    font-size: 16px;
}

/* Awards Stats Grid */
.awards-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 95, 21, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 95, 21, 0.1), transparent);
    transition: left 0.6s;
}

.stat-box:hover::before {
    left: 100%;
}

.stat-box:hover {
    transform: translateY(-10px);
    border-color: var(--primary-orange);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(255, 95, 21, 0.3);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: white;
    transition: var(--transition);
}

.stat-box:hover .stat-icon {
    transform: scale(1.1) rotate(360deg);
}

.stat-number-large {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label-large {
    font-size: 22px;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .awards-track .award-card {
        flex: 0 0 calc(50% - 20px);
        min-width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .awards-excellence-section {
        padding: 60px 20px;
    }

    .awards-carousel-wrapper {
        padding: 0;
    }

    .awards-track {
        gap: 20px;
    }

    .awards-track .award-card {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .award-ribbon {
        width: 50px;
        height: 50px;
        font-size: 22px;
        top: 15px;
        right: 15px;
    }

    .award-image-wrapper {
        height: 240px;
    }

    .award-content {
        padding: 25px;
    }

    .award-title {
        font-size: 1.2rem;
    }

    .awards-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-number-large {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .awards-stats-grid {
        grid-template-columns: 1fr;
    }

    .award-content {
        padding: 20px;
    }

    .stat-box {
        padding: 30px 20px;
    }
}

/* Achievement Section */

.nebula {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(circle at 20% 30%, rgb(11 57 215 / 35%), transparent 40%), radial-gradient(circle at 80% 70%, rgb(12 60 255 / 35%), #f1771500 45%), radial-gradient(circle at 50% 50%, rgba(255, 122, 24, .25), transparent 60%);
    filter: blur(90px);
    animation: nebulaMove 18s infinite alternate ease-in-out;
}

@keyframes nebulaMove {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.25) translate(4%, 4%);
        }
    }

    .achievement-section {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 90px 10%;
        perspective: 2000px;
        overflow: hidden;
    }

    .container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 90px;
        max-width: 1300px;
        width: 100%;
        align-items: center;
    }

    .video-scene {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
            
        background: url('/media/images/gold.png');
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .ring {
        position: absolute;
        width: 420px;
        height: 420px;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, .12);
        filter: drop-shadow(0 0 30px rgba(0, 242, 255, .35));
        animation: spin 18s linear infinite;
        transform-style: preserve-3d;
    }

    .ring:nth-child(1) {
        transform: rotateX(70deg);
    }

    .ring:nth-child(2) {
        transform: rotateY(70deg);
        animation-duration: 22s;
    }

    @keyframes spin {
        from {
            transform: rotateX(70deg) rotateZ(0deg);
        }

        to {
            transform: rotateX(70deg) rotateZ(360deg);
        }
    }

    .video-card {
        width: 320px;
        height: 568px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 34px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(18px);
        transform-style: preserve-3d;
            
        box-shadow: 0 40px 90px rgba(0, 0, 0, .65);
        position: relative;
        z-index: 2;
    }

    .video-card::before {
        content: '';
        position: absolute;
        inset: -2px;
        border-radius: 36px;
        background: linear-gradient(135deg, #00f2ff, transparent 40%, #bc13fe);
        opacity: .45;
        z-index: -1;
    }

    .video-card video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 30px;
    }

    .shine {
        position: absolute;
        inset: 0;
        border-radius: 30px;
        background: linear-gradient(120deg, rgba(255, 255, 255, .18), transparent 55%);
        pointer-events: none;
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0) rotateX(0);
        }

        50% {
            transform: translateY(-12px) rotateX(3deg);
        }
    }

    .content-side .tag {
        font-size: 14px;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: wheat;
        margin-bottom: 14px;
        display: inline-block;
        border: 1px solid wheat;
        border-radius: 15px;
        padding: 9px;
    }

    .content-side h2 {
        font-size: 40px;
        line-height: 1.1;
        margin-bottom: 22px;
        background: orange;

        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .content-side p {
        /* max-width: 460px; */
        color: white;
        font-size: 22px;
        line-height: 1.7;
        margin-bottom: 42px;
    }

    .stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 26px;
    }

    .stat {
        position: relative;
        padding: 26px;
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid var(--border);
        backdrop-filter: blur(14px);
        transform-style: preserve-3d;
        transition: .4s cubic-bezier(.22, 1, .36, 1);
        overflow: hidden;
    }

    .stat::after {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top left, rgba(0, 242, 255, .18), transparent 60%);
        opacity: 0;
        transition: .4s;
    }

    .stat:hover {
        transform: translateY(-10px) rotateX(6deg);
        box-shadow: 0 25px 60px rgb(154 94 26 / 42%);
        border-color: orange;
    }

    .stat:hover::after {
        opacity: 1;
    }

    .stat strong {
        font-size: 2.1rem;
        display: block;
        margin-bottom: 6px;
    }

    .stat span {
        color: #a5a5a5;
        font-size: .95rem;
    }

    @media (max-width: 980px) {
        .container {
            grid-template-columns: 1fr;
            text-align: center;
            gap: 60px;
        }

        .video-scene {
            order: 1;
            transform: scale(0.9);
        }

        .video-card {
            width: 260px;
            height: 462px;
        }

        .ring,
        .orbit,
        .light-rays {
            transform: scale(0.75);
        }

        .stats {
            grid-template-columns: 1fr;
        }

        .content-side p {
            margin-inline: auto;
        }
    }

    /* ===== PARTICLES ===== */
    #particles-js {
        position: fixed;
        inset: 0;
        z-index: 1;
        pointer-events: none;
    }

    .dark {
        background: #04060a;
        color: #fff;
        position: relative;
        overflow: hidden;
    }

    .dark #particles-js {
        position: absolute;
        inset: 0;
            
        width: 100%;
        height: 100%;
        z-index: 0;
        pointer-events: none;
    }
