/*
Theme Name: Comaizr Theme
Theme URI: 
Author: Antigravity
Author URI: 
Description: Custom WordPress theme for COMAIZR
Version: 1.0
Text Domain: comaizr
*/

        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Tajawal', sans-serif;
            background-color: #f8fafc;
        }
        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0B1120; 
        }
        ::-webkit-scrollbar-thumb {
            background: #FFDF00; 
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #eab308; 
        }
        
        .hero-gradient {
            background: linear-gradient(135deg, rgba(11,17,32,0.95) 0%, rgba(15,23,42,0.9) 100%);
        }
        
        .video-overlay {
            background: linear-gradient(90deg, rgba(11,17,32,0.9) 0%, rgba(11,17,32,0.6) 50%, rgba(11,17,32,0.3) 100%);
        }

        /* Image hover effects */
        .hover-zoom {
            transition: transform 0.3s ease;
        }
        .hover-zoom:hover {
            transform: scale(1.05);
        }
    
