 /* <!-- Custom Styles --> */
  
        * {
            font-family: 'Tajawal', sans-serif;
        }
        
        :root {
            --primary-color: #eb1a32;
            --primary-dark: #c51628;
            --primary-light: #ff3b52;
        }
        
        .bg-primary {
            background-color: var(--primary-color);
        }
        
        .text-primary {
            color: var(--primary-color);
        }
        
        .hover-primary:hover {
            background-color: var(--primary-dark);
        }
        
        .border-primary {
            border-color: var(--primary-color);
        }
        
        /* Smooth Scroll */
        html {
            scroll-behavior: smooth;
        }
        
        /* Hero Background */
        .hero-gradient {
            background: linear-gradient(135deg, #eb1a32 0%, #c51628 50%, #a01220 100%);
        }
        
        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .scale-on-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .scale-on-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(235, 26, 50, 0.2);
        }
        
        /* Pulse Animation */
        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }
        
        .pulse-animation {
            animation: pulse 2s infinite;
        }
        
        /* Floating Animation */
        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
        }
        
        .float-animation {
            animation: float 3s ease-in-out infinite;
        }
        
        /* Card Hover Effect */
        .service-card {
            transition: all 0.4s ease;
            border: 2px solid transparent;
        }
        
        .service-card:hover {
            border-color: var(--primary-color);
            transform: translateY(-5px);
        }
        
        /* Image Overlay */
        .image-overlay {
            position: relative;
            overflow: hidden;
        }
        
        .image-overlay::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .image-overlay:hover::after {
            opacity: 1;
        }
        
        /* Gradient Text */
        .gradient-text {
            background: linear-gradient(135deg, #eb1a32 0%, #ff3b52 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        /* WhatsApp Button Float */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            left: 30px;
            z-index: 1000;
            animation: pulse 2s infinite;
        }
        
        /* Mobile Menu */
        .mobile-menu {
            transform: translateX(100%);
            transition: transform 0.3s ease;
        }
        
        .mobile-menu.active {
            transform: translateX(0);
        }
        
        /* Section Spacing */
        .section-padding {
            padding: 80px 0;
        }
        
        @media (max-width: 768px) {
            .section-padding {
                padding: 50px 0;
            }
        }
        
        /* Star Rating */
        .star-rating {
            color: #fbbf24;
        }
   