
html {
  scroll-behavior: smooth;
}

  :root {
    --color-primary: #96653f;
    --color-accent: #9ed2c2;
    --color-dark: #111826;
    --color-bg: #f8f9fa;
  }

  /* الألوان كنص */
  .primary-color { color: var(--color-primary); }
  .accent-color { color: var(--color-accent); }
  .dark-color { color: var(--color-dark); }

  /* الألوان كخلفيات */
  .primary-bg { background-color: var(--color-primary); }
  .accent-bg { background-color: var(--color-accent); }
  .dark-bg { background-color: var(--color-dark); }

  /* أزرار / حدود */
  .primary-border {
    border-color: var(--color-primary);
  }

  /* تأثير رفع Hover */
  .hover-lift {
    transition: all 0.3s ease;
  }
  .hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }

  /* نصوص صغيرة بلون رمادي */
  .text-muted {
    color: #6b7280;
  }

  /* حواف ناعمة */
  .rounded-xl {
    border-radius: 1rem;
  }

  /* ظل خفيف */
  .shadow-light {
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  }




/* style header */

  /* خلفية خافتة (Overlay) تظهر مع القائمة الجانبية */
  #mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.3);
    z-index: 40;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out;
  }
  #mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
  }

/* end style header */

/* style hero */
       
        /* إعدادات الانتقال للصور */
        .slide {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transform: scale(1);
            transition: all 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            z-index: 0;
            filter: brightness(0.8);
        }

        .slide.active {
            opacity: 1;
            transform: scale(1);
            z-index: 1;
            animation: continuousZoomIn 12s linear forwards;
        }

        /* أنيميشن التكبير المستمر فقط (بدون تصغير) */
        @keyframes continuousZoomIn {
            0% {
                transform: scale(1);
            }
            100% {
                transform: scale(1.15);
            }
        }

        /* تأثير الانتقال بين الصور */
        .slide.exiting {
            opacity: 0;
            transform: scale(1.1);
            transition: all 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .slide.entering {
            opacity: 0;
            transform: scale(1);
        }

        .slide.entering.active {
            opacity: 1;
            transform: scale(1);
        }

        /* تأثير الضباب على المحتوى */
        .content-fog {
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
            z-index: 1;
        }

        /* تأثير الضباب العام */
        .fog-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.3);
            z-index: 1;
        }

        /* منع التمرير الأفقي */
        html, body {
            overflow-x: hidden;
            width: 100%;
        }

        /* أنيميشن للمحتوى - يظهر من اليمين إلى اليسار */
        @keyframes slideInFromRight {
            from {
                opacity: 0;
                transform: translateX(100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .text-animation {
            animation: slideInFromRight 1s ease-out forwards;
            opacity: 0;
        }

        .text-animation.delay-1 {
            animation-delay: 0.3s;
        }

        .text-animation.delay-2 {
            animation-delay: 0.6s;
        }

        .text-animation.delay-3 {
            animation-delay: 0.9s;
        }

        /* تحسينات للشاشات الصغيرة */
        @media (max-width: 768px) {
            .hero-section {
                min-height: 70vh !important;
                padding-top: 1rem;
                padding-bottom: 1rem;
            }
            
            .content-container {
                padding-left: 1rem !important;
                padding-right: 1rem !important;
                min-height: 70vh !important;
            }
            
            .hero-content {
                text-align: right;
                padding: 0;
            }
            
            .hero-title {
                font-size: 1.75rem !important;
                line-height: 1.3;
                margin-bottom: 1rem !important;
            }
            
            .hero-subtitle {
                font-size: 1rem !important;
                margin-bottom: 1.5rem !important;
            }
            
            .hero-description {
                font-size: 0.9rem !important;
                line-height: 1.6;
                padding: 1rem !important;
                margin-bottom: 1.5rem !important;
            }
            
            .hero-button {
                padding: 0.75rem 1.5rem !important;
                font-size: 0.9rem;
                margin-bottom: 1.5rem !important;
            }
            
            .indicators-container {
                margin-top: 1.5rem !important;
            }
            
            /* تعديل تأثير الضباب للمحتوى على الشاشات الصغيرة */
            .content-fog {
                background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 70%, transparent 100%);
            }

            /* تكبير أقل على الشاشات الصغيرة */
            @keyframes continuousZoomIn {
                0% {
                    transform: scale(1);
                }
                100% {
                    transform: scale(1.08);
                }
            }
        }

        /* تحسينات للشاشات المتوسطة */
        @media (min-width: 769px) and (max-width: 1024px) {
            .hero-section {
                min-height: 600px !important;
            }
            
            .content-container {
                min-height: 600px !important;
            }
            
            .hero-title {
                font-size: 2.5rem !important;
            }
            
            .hero-description {
                font-size: 1.1rem !important;
            }
        }
    
/* end style hero */
    /* style our work */

        /* أنيميشن الظهور */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        .project-card {
            opacity: 0;
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .section-title {
            opacity: 0;
            animation: fadeInLeft 0.8s ease-out forwards;
        }

        /* تأثيرات Hover */
        .project-item {
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            transform: translateY(0);
        }

        .project-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(150, 101, 63, 0.2);
        }

        .project-overlay {
            background: linear-gradient(to top, rgba(150, 101, 63, 0.9) 0%, transparent 100%);
            opacity: 0;
            transition: all 0.4s ease;
        }

        .project-item:hover .project-overlay {
            opacity: 1;
        }

        /* فلتر الأزرار */
        .filter-btn {
            transition: all 0.3s ease;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .filter-btn::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 0;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transition: width 0.3s ease;
            border-radius: 50px;
        }

        .filter-btn:hover::before {
            width: 100%;
        }

        .filter-btn.active,
        .filter-btn:hover {
            background: #96653f;
            color: white;
            border-color: #96653f;
        }

        /* أنيميشن التأخير */
        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }
        .delay-3 { animation-delay: 0.3s; }
        .delay-4 { animation-delay: 0.4s; }
        .delay-5 { animation-delay: 0.5s; }
        .delay-6 { animation-delay: 0.6s; }

        /* تأثيرات إضافية */
        .project-image {
            transition: transform 0.7s ease;
        }

        .project-item:hover .project-image {
            transform: scale(1.1);
        }

        .stat-card {
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        /* شريط التقدم */
        .progress-bar {
            height: 4px;
            background-color: #e5e7eb;
            border-radius: 2px;
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            background-color: #96653f;
            width: 0;
            transition: width 1.5s ease-in-out;
        }
 
/* end style our work */


    
        .swiper {
            width: 100%;
            height: 100%;
        }
        .swiper-slide {
            text-align: center;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .testimonial-card {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

/* style footer  */

 

        
        body {
            font-family: 'Tajawal', sans-serif;
        }
        
        .footer-gradient {
            background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
        }
        
        .footer-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .hover-lift {
            transition: all 0.3s ease;
        }
        
        .hover-lift:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }
        
        .social-icon {
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            transform: scale(1.1) rotate(5deg);
        }
        
        .newsletter-input {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .newsletter-input:focus {
            background: rgba(255, 255, 255, 0.15);
            border-color: #96653f;
        }
        
        .footer-link {
            position: relative;
            transition: all 0.3s ease;
        }
        
        .footer-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            right: 0;
            width: 0;
            height: 2px;
            background: #96653f;
            transition: width 0.3s ease;
        }
        
        .footer-link:hover::after {
            width: 100%;
        }
        
        .floating-shape {
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }
        
        .shape-1 { animation-delay: 0s; }
        .shape-2 { animation-delay: 2s; }
        .shape-3 { animation-delay: 4s; }
 
/* end style footer */