.blink-text {
  color: white; /* starting color */
  font-weight: bold;
  animation: blinkColor 1s infinite;
}

@keyframes blinkColor {
  0%, 100% {
    color: white;
  }
  50% {
    color: #f75b1e;
  }
}

.sec-text {
    text-align: justify;
}

 :root {
            --primary: #f75b1e;
            --secondary: #1a466b;
            --light-bg: #f0f6ff;
            --card-bg: #ffffff;
            --text-dark: #2d3748;
            --text-light: #4a5568;
        }
        
      
        
        /* Gaming styled header */
        .gaming-header {
            background: linear-gradient(to right, var(--secondary), #2c5282);
            color: white;
            padding: 60px 0 40px;
            margin-bottom: 40px;
            text-align: center;
            border-radius: 0 0 20px 20px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }
        
        .gaming-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(to right, transparent, var(--primary), transparent);
        }
        
        .gaming-header h1 {
            font-family: 'Chakra Petch', sans-serif;
            font-weight: 700;
            font-size: 3rem;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }
        
        .gaming-header p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
        }
        
        .gaming-subtitle {
            color: var(--primary);
            font-weight: 600;
        }
        
       
        
        /* Gaming service card */
        .game-service-card {
            background: var(--card-bg);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.4s ease;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            position: relative;
            border-top: 4px solid var(--primary);
            height: 100%;
           
        }
        
        .game-service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
        }
        
        .game-service-img {
            height: auto;
            overflow: hidden;
            position: relative;
        }
        
        .game-service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .game-service-card:hover .game-service-img img {
            transform: scale(1.1);
        }
        
        .game-service-img::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 60%;
            background: linear-gradient(to top, var(--card-bg), transparent);
        }
        
        .game-service-icon {
            position: absolute;
            top: 10px;
            right: 20px;
            width: 60px;
            height: 60px;
            background: var(--card-bg);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 0 0px var(--primary);
            transition: all 0.4s ease;
            z-index: 3;
            transform: rotate(0deg);
            border: 2px solid var(--primary);
        }
        
        .game-service-icon i {
            font-size: 24px;
            color: var(--primary);
            transform: rotate(0deg);
        }
        
        .game-service-card:hover .game-service-icon {
            transform: rotate(15deg);
            background: var(--primary);
        }
        
        .game-service-card:hover .game-service-icon i {
            color: white;
        }
        
        .game-service-content {
            padding: 25px 15px;
            position: relative;
        }
        
        .game-service-content h3 {
            font-family: 'Chakra Petch', sans-serif;
            color: var(--secondary);
            font-weight: 700;
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        
        .game-service-content p {
            color: var(--text-light);
            margin-bottom: 20px;
            line-height: 1.6;
            font-size: 0.95rem;
        }
        
        .game-service-features {
            list-style: none;
            padding: 0;
            margin-bottom: 25px;
        }
        
        .game-service-features li {
            padding: 6px 0;
            padding-left: 28px;
            position: relative;
            color: var(--text-light);
            font-size: 0.9rem;
        }
        
        .game-service-features li:before {
            content: "▶";
            color: var(--primary);
            position: absolute;
            left: 0;
            font-size: 0.8rem;
        }
        
        .btn-game {
            display: inline-flex;
            align-items: center;
            background: var(--primary);
            color: white;
            padding: 10px 22px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            font-family: 'Chakra Petch', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
            box-shadow: 0 4px 10px rgba(247, 91, 30, 0.3);
        }
        
        .btn-game:hover {
            background: var(--secondary);
            box-shadow: 0 6px 15px rgba(26, 70, 107, 0.4);
            transform: translateY(-3px);
            color: #fff;
        }
        
        .btn-game i {
            margin-left: 8px;
            transition: transform 0.3s ease;
        }
        
        .btn-game:hover i {
            transform: translateX(5px);
        }
        
        .game-service-number {
            position: absolute;
            bottom: 15px;
            right: 25px;
            font-size: 40px;
            font-weight: 800;
            color: rgba(26, 70, 107, 0.05);
            line-height: 1;
            font-family: 'Chakra Petch', sans-serif;
        }
        
        /* Decorative elements */
        .pixel-divider {
            height: 4px;
            background: 
                linear-gradient(90deg, 
                    transparent 0%, 
                    var(--primary) 20%, 
                    var(--primary) 80%, 
                    transparent 100%);
            margin: 40px auto;
            max-width: 200px;
            position: relative;
        }
        
        .pixel-divider::before,
        .pixel-divider::after {
            content: '';
            position: absolute;
            top: -4px;
            width: 8px;
            height: 12px;
            background: var(--primary);
        }
        
        .pixel-divider::before {
            left: 20%;
        }
        
        .pixel-divider::after {
            right: 20%;
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .gaming-header h1 {
                font-size: 2.6rem;
            }
        }
        
        @media (max-width: 768px) {
            .gaming-header {
                padding: 40px 0 25px;
            }
            
            .gaming-header h1 {
                font-size: 2.2rem;
            }
            
           
            
            .gaming-grid {
                grid-template-columns: 1fr;
             
            }
        }
        
        @media (max-width: 576px) {
            .gaming-header h1 {
                font-size: 1.9rem;
            letter-spacing: 1px;
            margin-bottom: 10px;
            padding: 0 15px;
            line-height: 1.2;
            font-size: 1.7rem;
        }
        
        .gaming-header p {
            padding: 0 15px;
            font-size: 1rem;
        }
        
        .game-service-content {
            padding: 20px;
        }
        
        .game-service-icon {
            width: 50px;
            height: 50px;
           
        }
        
        .game-service-icon i {
            font-size: 20px;
        }
        
        .gaming-footer {
            text-align: center;
            margin-top: 60px;
            color: var(--secondary);
            font-family: 'Chakra Petch', sans-serif;
            font-weight: 500;
        }
        
        .gaming-footer p {
            margin: 0;
            font-size: 1.1rem;
        }
        
        .gaming-footer span {
            color: var(--primary);
            font-weight: 600;
        } }



        .stats-section-custom {
            background: linear-gradient(rgba(13, 36, 85, 0.85), rgba(0, 5, 16, 0.7)), 
                        url('../imgz/count-down.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            padding: 80px 0;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .stats-section-custom::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ff8c00' fill-opacity='0.1' d='M0,128L48,117.3C96,107,192,85,288,112C384,139,480,213,576,218.7C672,224,768,160,864,138.7C960,117,1056,139,1152,149.3C1248,160,1344,160,1392,160L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
            background-size: cover;
            background-position: bottom;
            opacity: 0.7;
        }
        
        .stats-header-custom {
            margin-bottom: 50px;
            position: relative;
        }
        
        .stats-header-custom h2 {
            font-size: 3rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
            color: #fff;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
        }
        
        .stats-header-custom p {
            font-size: 1.2rem;
            color: #f75b1e;
            font-weight: 500;
        }
        
        .stat-card-custom {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 30px 20px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.15);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        
        .stat-card-custom:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
            background: rgba(255, 255, 255, 0.15);
        }
        
        .stat-card-custom::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, #1a56db, #f75b1e);
            transform: scaleX(0);
            transform-origin: bottom right;
            transition: transform 0.5s ease;
        }
        
        .stat-card-custom:hover::after {
            transform: scaleX(1);
            transform-origin: bottom left;
        }
        
        .stat-icon-custom {
            font-size: 2.5rem;
            color: #f75b1e;
            margin-bottom: 15px;
        }
        
        .stat-value-custom {
            font-size: 3.5rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 5px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
            margin-top: 25px;
        }
        
        .stat-label-custom {
            font-size: 1.1rem;
            color: #e6e6e6;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 500;
            margin-top: 22px;
        }
        
        .stat-suffix-custom {
            font-size: 1.8rem;
            color: #f75b1e;
            font-weight: 700;
            margin-left: 5px;
        }
        
        .stat-cta-button-custom {
            background: linear-gradient(to right, #f75b1e, #ff6600);
            color: white;
            border: none;
            border-radius: 50px;
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(255, 140, 0, 0.4);
            margin-top: 30px;
        }
        
        .stat-cta-button-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 140, 0, 0.6);
            background: linear-gradient(to right, #ff9900, #ff7730);
        }
        
        /* Animation for stats */
        @keyframes statPulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        .stat-card-custom:hover .stat-icon-custom {
            animation: statPulse 1s infinite;
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .stat-value-custom {
                font-size: 3rem;
            }
        }
        
        @media (max-width: 768px) {
            .stat-card-custom {
                margin-bottom: 20px;
            }
            
            .stats-header-custom h2 {
                font-size: 2.5rem;
            }
        }
@media screen  and (min-width:1200px) {
    .certificate-text p{
            font-size: 17px!important;
        }
}
        .certificate-text p{
            font-size: 16px;
        }

        .certificate-text{
            margin-top: 15px;
        }


          .gallery-container {
          
            margin: 0 auto;
            padding: 20px;
        }
        
        .gallery-title {
            text-align: center;
            margin: 30px 0;
            color: #333;
            font-weight: 600;
        }
        
        .gallery-img {
            width: 100%;
            
            object-fit: cover;
            border-radius: 8px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
        }
        
        .gallery-item {
            margin-bottom: 25px;
            overflow: hidden;
            border-radius: 8px;
        }
        
        .gallery-img:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        
        /* Lightbox Styles */
        .lightbox-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }
        
        .lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
        }
        
        .lightbox-img {
            max-width: 100%;
         
            border-radius: 8px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
        }
        
        .lightbox-close {
            position: absolute;
            top: -40px;
            right: -10px;
            color: white;
            font-size: 2rem;
            background: none;
            border: none;
            cursor: pointer;
        }
        
        .lightbox-nav {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            padding: 0 20px;
        }
        
        .lightbox-button {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            width: 50px;
            height: 50px;
            border: none;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s ease;
        }
        
        .lightbox-button:hover {
            background: rgba(255, 255, 255, 0.3);
        }
        
         .yt-gallery-container {
           
            padding: 20px;
        }
        
        .yt-gallery-title {
            text-align: center;
            margin: 30px 0;
            color: #333;
            font-weight: 600;
            font-size: 2.5rem;
        }
        
        .yt-video-item {
            margin-bottom: 25px;
            transition: transform 0.3s ease;
        }
        
        .yt-video-item:hover {
            transform: translateY(-5px);
        }
        
        .yt-video-thumb {
            position: relative;
            width: 100%;
           
            border-radius: 8px;
            overflow: hidden;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .yt-video-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .yt-video-thumb:hover img {
            transform: scale(1.05);
        }
        
        .yt-play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background: rgba(255, 0, 0, 0.8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            transition: all 0.3s ease;
        }
        
        .yt-video-thumb:hover .yt-play-btn {
            background: rgba(255, 0, 0, 1);
            transform: translate(-50%, -50%) scale(1.1);
        }
        
        .yt-video-title {
            margin-top: 10px;
            font-size: 16px;
            font-weight: 500;
            color: #333;
            text-align: center;
            padding: 0 10px;
        }
        
        /* Video Modal Styles */
        .yt-video-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .yt-video-modal.active {
            display: flex;
            opacity: 1;
        }
        
        .yt-modal-content {
            position: relative;
            width: 80%;
            max-width: 900px;
        }
        
        .yt-video-iframe {
            width: 100%;
            height: 0;
            padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
            position: relative;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .yt-video-iframe iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 8px;
        }
        
        .yt-modal-close {
            position: absolute;
            top: -40px;
            right: -10px;
            color: white;
            font-size: 2rem;
            background: none;
            border: none;
            cursor: pointer;
            z-index: 1001;
        }
        
        .yt-modal-nav {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            padding: 0 20px;
            z-index: 1001;
        }
        
        .yt-modal-btn {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            width: 50px;
            height: 50px;
            border: none;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s ease;
        }
        
        .yt-modal-btn:hover {
            background: rgba(255, 255, 255, 0.3);
        }
        
      
        
        @media (max-width: 768px) {
           
            
            .yt-modal-content {
                width: 95%;
            }
            
            .yt-gallery-title {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 576px) {
           
            
            .yt-play-btn {
                width: 50px;
                height: 50px;
                font-size: 18px;
            }
        }
        
        
        
        .custom-gradient {
            background: linear-gradient(to right, #1a466c, #366e9d);
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 20px;
            color: white;
        }
        
        .audio-player-custom {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .audio-player-body {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .audio-player-top, .audio-player-bottom {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .audio-player-top {
            justify-content: space-between;
        }
        
        .audio-player-bottom {
            justify-content: flex-start;
        }
        
        .audio-controls-custom {
            display: flex;
            gap: 10px;
        }
        
        .audio-controls-custom button {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .audio-controls-custom button:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.05);
        }
        
        .audio-content-custom {
            flex: 1;
        }
        
        .audio-title-custom {
            font-size: 18px;
            margin-bottom: 5px;
            font-weight: 500;
        }
        
        .audio-meta-custom {
            font-size: 14px;
            opacity: 0.8;
        }
        
        .audio-time-custom, .audio-duration-custom {
            min-width: 40px;
            text-align: center;
            font-variant-numeric: tabular-nums;
        }
        
        .audio-waveform-custom {
            flex: 1;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 6px;
            position: relative;
            overflow: hidden;
        }
        
        .waveform-bars-custom {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 100%;
            display: flex;
            align-items: flex-end;
            gap: 2px;
            padding: 0 2px;
        }
        
        .waveform-bar-custom {
            flex: 1;
            background: #FFFFFF;
            border-radius: 1px;
            min-height: 2px;
        }
        
        .audio-progress-custom {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 100%;
            background: transparent;
            border-right: 3px solid #f75b1e;
            width: 0%;
            z-index: 1;
            transition: width 0.2s ease;
        }
        
        .audio-mic-custom {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .audio-mic-custom:hover {
            background: rgba(255, 255, 255, 0.3);
        }
        
        .audio-mic-custom.muted {
            opacity: 0.5;
        }
        
        .custom-divider {
            border: none;
            height: 1px;
            background: rgba(255, 255, 255, 0.2);
            margin: 25px 0;
        }
        
        .fallback-audio {
            margin-top: 15px;
            width: 100%;
            border-radius: 8px;
        }


        