  ::-webkit-scrollbar { width: 6px; }
        ::-webkit-scrollbar-track { background: #000; }
        ::-webkit-scrollbar-thumb { background: #D32F2F; border-radius: 10px; }

        /* Mobile Menu Animation - Slides from Right */
        .nav-menu { 
            transform: translateX(100%); 
            transition: transform 0.3s ease-in-out; 
        }
        .nav-menu.active { 
            transform: translateX(0); 
        }
        
        .card-glow:hover {
            box-shadow: 0 25px 50px -12px rgba(211, 47, 47, 0.25);
            border-color: rgba(211, 47, 47, 0.6);
        }

        .training-card {
            position: relative;
            overflow: hidden;
        }
        
        .training-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, #D32F2F, transparent);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }
        
        .training-card:hover::before {
            transform: scaleX(1);
        }

        

        .number-badge {
            background: linear-gradient(135deg, #D32F2F 0%, #B71C1C 100%);
        }

        .counter-text {
            background: linear-gradient(135deg, #EF5350 0%, #D32F2F 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-label {
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: #D32F2F;
            display: inline-block;
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 900;
            line-height: 1.2;
            color: #ffffff;
            margin-bottom: 1rem;
        }

        .section-description {
            font-size: 1rem;
            line-height: 1.75;
            color: #fff;
            max-width: 42rem;
            margin-left: auto;
            margin-right: auto;
        }

                .section-descriptionx {
            font-size: 1rem;
            line-height: 1.75;
            color: #fff;
            max-width: 68rem;
            margin-left: auto;
            margin-right: auto;
        }

        .logo{
            height: 58px;
            width: 100%;
        }

        @media (min-width: 768px) {
            .section-title { font-size: 3rem; }
        }

        html { scroll-behavior: smooth; }

        @media (prefers-reduced-motion: reduce) {
            html { scroll-behavior: auto; }
        }


        /* 
         * UNIQUE CLASS: zulfiqar_sticky_whatsapp_widget_v1
         * Glow Animation Pulse Effect Included
         */
        
        /* Glow Animation Keyframes */
        @keyframes pulse-green {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        .zulfiqar_sticky_whatsapp_widget_v1 {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 9999;
            width: 60px;
            height: 60px;
            background-color: #25D366; /* WhatsApp Green */
            border-radius: 50%;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: transform 0.3s ease, background-color 0.3s ease;
            
            /* Glow Effect Apply Kiya */
            animation: pulse-green 2s infinite;
        }

        /* Hover Effect - Jab mouse le jaaye */
        .zulfiqar_sticky_whatsapp_widget_v1:hover {
            transform: scale(1.1); /* Thoda bada ho jayega */
            background-color: #1ebc57;
        }

        /* Icon Styling */
        .zulfiqar_sticky_whatsapp_widget_v1 svg {
            width: 36px; 
            height: 36px;
            fill: #ffffff; /* White Icon */
        }

        .kalar{
            color: #fff;
        }