*{
   
            font-family: 'Tajawal', sans-serif;
        
}
        body {
            font-family: 'Tajawal', sans-serif;
        }

        /* Custom animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-fade-in-up {
            animation: fadeInUp 1s ease-out forwards;
        }

        /* Hero text styling */
        .hero-text {
            font-size: clamp(4rem, 15vw, 12rem);
            font-weight: 800;
            line-height: 0.9;
            color: #154461;
            letter-spacing: -0.02em;
        }

        /* Mobile menu animation */
        .mobile-menu {
            transform: translateX(100%);
            transition: transform 0.3s ease-in-out;
        }

        .mobile-menu.active {
            transform: translateX(0);
        }

        /* Orange dot on furniture */
        .orange-dot {
            width: 12px;
            height: 12px;
            background: #FF6B35;
            border-radius: 50%;
            position: absolute;
            top: 28%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 1;
            }

            50% {
                transform: translate(-50%, -50%) scale(1.3);
                opacity: 0.7;
            }
        }

        /* Furniture Cleaning label */
        .cleaning-label {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 14px;
            color: #333;
            font-style: italic;
            position: absolute;
            top: 24%;
            left: 50%;
            transform: translateX(-50%);
            white-space: nowrap;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .hero-text {
                font-size: clamp(3rem, 12vw, 6rem);
            }

            .cleaning-label {
                font-size: 11px;
                padding: 6px 15px;
            }

            .orange-dot {
                width: 8px;
                height: 8px;
            }
        }


  
    /* من محن   */


        .floating-card {
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .floating-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
        }

        .feature-item {
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            transform: translateX(-5px);
        }

        .stat-card {
            background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
            position: relative;
            overflow: hidden;
        }

        .stat-card::before {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2310b981' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .pulse-animation {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }

            100% {
                transform: scale(1);
            }
        }

    /*  serve */


        .service-card {
            transition: all 0.4s ease;
            overflow: hidden;
            position: relative;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .service-image {
            transition: transform 0.6s ease;
            height: 220px;
            object-fit: cover;
        }

        .service-card:hover .service-image {
            transform: scale(1.08);
        }

        .service-overlay {
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
            display: flex;
            align-items: flex-end;
            padding: 20px;
        }

        .service-card:hover .service-overlay {
            opacity: 1;
        }

        .badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: #33abde;
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
            z-index: 10;
        }

        .btn-whatsapp {
            background: #0ec244;
            transition: all 0.3s ease;
        }

        .btn-whatsapp:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
        }

        .btn-call {
            background: #154461;
            transition: all 0.3s ease;
        }

        .btn-call:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
        }

        .floating-icon {
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-10px);
            }

            100% {
                transform: translateY(0px);
            }
        }

        .section-title {
            position: relative;
            display: inline-block;
        }
 
    /*why-us  */
  


        .feature-card {
            transition: all 0.5s ease;
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .gradient-bg {
            background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 50%, #f8fafc 100%);
        }

        .floating-icon {
            animation: float-icon 6s ease-in-out infinite;
        }

        @keyframes float-icon {

            0%,
            100% {
                transform: translateY(0px) rotate(0deg);
            }

            33% {
                transform: translateY(-15px) rotate(5deg);
            }

            66% {
                transform: translateY(10px) rotate(-5deg);
            }
        }

        .pulse-dot {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                opacity: 0.6;
            }

            50% {
                opacity: 1;
            }

            100% {
                opacity: 0.6;
            }
        }

        .tech-badge {
            background: linear-gradient(135deg, #154461, #154461);
            animation: badge-pulse 3s ease-in-out infinite;
        }

        @keyframes badge-pulse {

            0%,
            100% {
                box-shadow: 0 4px 12px #154461;
            }

            50% {
                box-shadow: 0 6px 20px #154461;
            }
        }

        .stat-counter {
            font-feature-settings: "tnum";
            font-variant-numeric: tabular-nums;
        }

        .leaf-fall {
            animation: leaf-fall 8s ease-in infinite;
        }

        @keyframes leaf-fall {
            0% {
                transform: translateY(-50px) rotate(0deg);
                opacity: 0;
            }

            50% {
                opacity: 0.7;
            }

            100% {
                transform: translateY(50px) rotate(360deg);
                opacity: 0;
            }
        }

        .progress-ring {
            animation: progress-spin 3s linear infinite;
        }

        @keyframes progress-spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

   /* footer  */


        .footer-gradient {
            background: linear-gradient(135deg, #154461 0%, #154461 50%, #154461 100%);
        }

        .footer-divider {
            border-color: rgba(255, 255, 255, 0.2);
        }

        .social-icon {
            transition: all 0.3s ease;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .social-icon:hover {
            transform: translateY(-3px);
            border-color: white;
            box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
        }

        .footer-link {
            transition: all 0.3s ease;
            position: relative;
        }

        .footer-link:hover {
            transform: translateX(-5px);
            color: white;
        }

        .footer-link::after {
            content: "";
            position: absolute;
            right: -10px;
            top: 50%;
            transform: translateY(-50%);
            width: 5px;
            height: 5px;
            background: #f97316;
            border-radius: 50%;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .footer-link:hover::after {
            opacity: 1;
        }

        .payment-method {
            filter: brightness(0) invert(1);
            opacity: 0.7;
            transition: opacity 0.3s ease;
        }

        .payment-method:hover {
            opacity: 1;
        }

        .newsletter-input {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
        }

        .newsletter-input:focus {
            background: rgba(255, 255, 255, 0.15);
            border-color: white;
            box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
        }

        .floating-badge {
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-5px);
            }

            100% {
                transform: translateY(0px);
            }
        }

        .app-download {
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .app-download:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

   /* اراء العملاء */
 


        .gradient-bg {
            background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 50%, #f8fafc 100%);
        }

        .faq-card {
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid #e5e7eb;
        }

        .faq-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            border-color: #154461;
        }

        .faq-card.active {
            border-color: #154461;
            box-shadow: 0 10px 25px rgba(16, 185, 129, 0.15);
        }

        .testimonial-card {
            transition: all 0.5s ease;
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .client-avatar {
            width: 60px;
            height: 60px;
            border: 3px solid #154461;
        }

        .rating-stars {
            color: #fbbf24;
        }

        .floating-element {
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px) rotate(0deg);
            }

            50% {
                transform: translateY(-15px) rotate(5deg);
            }
        }

        .pulse-dot {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                opacity: 0.6;
            }

            50% {
                opacity: 1;
            }

            100% {
                opacity: 0.6;
            }
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .accordion-content.open {
            max-height: 500px;
        }

        .accordion-icon {
            transition: all 0.3s ease;
        }

        .accordion-icon.rotated {
            transform: rotate(180deg);
        }

        .fresh-badge {
            background: linear-gradient(135deg, #154461, #154461);
            animation: badge-pulse 3s ease-in-out infinite;
        }

        @keyframes badge-pulse {

            0%,
            100% {
                box-shadow: 0 4px 12px #154461;
            }

            50% {
                box-shadow: 0 6px 20px #154461;
            }
        }

        .question-mark {
            animation: bounce 2s ease-in-out infinite;
        }

        @keyframes bounce {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.1);
            }
        }
  
/* banner */
   


        .gradient-bg {
            background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 50%, #f8fafc 100%);
        }

        .floating-icon {
            animation: float-icon 4s ease-in-out infinite;
        }

        @keyframes float-icon {

            0%,
            100% {
                transform: translateY(0px) rotate(0deg);
            }

            50% {
                transform: translateY(-10px) rotate(5deg);
            }
        }

        .pulse-dot {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                opacity: 0.6;
            }

            50% {
                opacity: 1;
            }

            100% {
                opacity: 0.6;
            }
        }

        .btn-whatsapp {
            background: linear-gradient(135deg, #0ec244);
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px #0ec244
        }

        .btn-whatsapp:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px #0ec244;
        }

        .btn-call {
            background: linear-gradient(135deg, #154461, #154461);
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px #154461;
        }

        .btn-call:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px #154461;
        }

        .contact-card {
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
            transition: all 0.3s ease;
            border: 1px solid #e5e7eb;
        }

        .contact-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .separator-line {
            background: linear-gradient(90deg, transparent 0%, #154461 50%, transparent 100%);
            height: 1px;
            opacity: 0.3;
        }

        .leaf-float {
            animation: leaf-float 8s ease-in-out infinite;
        }

        @keyframes leaf-float {

            0%,
            100% {
                transform: translateY(0px) translateX(0px) rotate(0deg);
                opacity: 0.3;
            }

            33% {
                transform: translateY(-15px) translateX(10px) rotate(120deg);
                opacity: 0.6;
            }

            66% {
                transform: translateY(10px) translateX(-10px) rotate(240deg);
                opacity: 0.4;
            }
        }

        .icon-glow {
            filter: drop-shadow(0 2px 8px #154461);
        }
    