         * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


:root {
  --primary-color:#FF0101;/* b0b0b0  white  1a1f3a     330a0a      #FF0505     #1a1a1a */
  --dark-bg: #2B1F1F ;
  --dark-secondary: #190606;
  --text-primary: #ffffff;
  --text-secondary: #fffff0;
  --accent-yellow: #fdd835;
  --accent-green: #81c784;
  --accent-cyan:#00bcd4 ;
  --text-muted: #b0b0b0;
  --accent-teal: #36A630;
    --text-light: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: #190606; /*var(--dark-secondary)  */
  color: var(--text-primary);
  line-height: 1.6;

}  /*hero control */

section {
    margin: 80px 0px;
}



 /*.hero { 

 position: ;
  
  position: relative;
  overflow:hidden ;
  bottom: 50px;
background-color: #190606;
} */

.search-container{
  position: relative;
    
}

/* الطبقة الملونة الشفافة */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
 background:rgba(18, 18, 16, 0.7)  ; /*rgba(20, 15, 10, 0.88)            */                                         
  z-index: 2;
  pointer-events: none;
}

.container {
  max-width: 100%;
  margin: 0 ;
  padding: 0px 7px 0px 15px;

}

/* الحاوية التي فيها الصور */
.filmstrip-container {
  position: relative;
  z-index: 1; /* تحت الطبقة */
  width: 1000px;
}




/* Header Styles */
.header {
  position: fixed;
  top: 5px;
  left: 0;
  right: 0;
  background: #1a1410; /*      rgba(10, 14, 39, 0.95)*/;
  background: rgba(26, 20, 16, 0.7);

  backdrop-filter: blur(5px);
  border-bottom: 1px solid rgba(230, 57, 70, 0.1);
  z-index: 1000;
  padding: 27px 0px 20px 0px;
  margin: 0px 25px;
  border-radius: 15px;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between; 

  font-weight: bold;
  gap: 50px;
}


.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 20px;
  text-decoration: none;
  color: var(--text-primary);
  
}

.hero-price {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon {
  background-color: #fff;      /* خلفية بيضاء */
  width: 70px;
  height: 70px;
  border-radius: 50%;          /* يجعلها دائرية */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;             /* حجم الأيقونة */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15); /* ظل اختياري */
}


.logo-icon {
  width: 32px;
  height: 32px;
  background: #FF0101;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;

}

.nav-menu {
  display: flex;
  gap: 30px;
  flex: 2;

}

.nav-link {
  display: inline-block;
  color: var(--text-secondary); 
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;


}

.icon-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.icon-btn:hover {
  color: var(--primary-color);
}

.hero-price .icon {
  font-size: 2.5rem; /* make it big*/
  text-align: left;
}
.hero-price .pricing-price {
  font-weight: bold;
  font-size: 3rem;
}
.cart-btn {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #FF0101;
  color: white;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
}

/* Button Styles */
.btn {
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #FF0101;
  color: white;
}

.btn-primary:hover {
  background: #d62828;
  transform: translateY(-2px);
}



.rotating-border-btn {
    position: relative;
    padding: 1rem 2.4rem; /* #0f172aنسبية أكثر */
    background: var(--primary-color);
    color:#fff ;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    border: none;
    border-radius: 0.6rem;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.3s ease;
     align-items: center;
  }

  /* الإطار المتحرك */
  .rotating-border-btn::before {
    content: "";
    position: absolute;
    top: -3px;
    left: -3px;
    width: calc(100% + 6px);
    height: calc(100% + 6px);
    border-radius: 0.8rem;
    background:conic-gradient(from 0deg, #3b82f6, #8b5cf6, #ec4899, #3b82f6);
    z-index: 0;
    transform: rotate(0deg);
    animation: none;
    align-items: center;
  }

  /* الطبقة الداخلية        #0f172a   */
  .rotating-border-btn::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    background:var(--primary-color) ;
    border-radius: 0.5rem;
    z-index: 1;
    transition: background 0.4s ease;
    align-items: center;
  }

  .rotating-border-btn span {
    position: relative;
    z-index: 2;
    align-items: center;
  }

  /* يبدأ الدوران عند المرور */
  .rotating-border-btn:hover::before {
    animation: spinBorder 2s linear infinite;
  }

  .rotating-border-btn:hover::after {
    background: #1e293b;
  }

  .rotating-border-btn:hover {
    transform: scale(1.05);
  }

  @keyframes spinBorder {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }



/* Hero Section */
.hero {
  position: relative;
  top: ;
  min-height: 110vh;
  width: 100vW;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0px ;
  overflow: hidden;
 background:#2B1F1F;  /*    #190606      */ 
}

.filmstrip-container {
  position: absolute; 
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  gap: 1px;
}

 .filmstrip {
  display: flex;
  position: relative;  
  display: flex;
  gap: 10px;
  width: 100%;
 
}

.filmstrip-1 {
  top: 4%;
  
  height: 100px;
  left: 1%;
                 /* left:1000px ;  قطة البداية عند منتصف الحاوية */
  transform: translateX(50%);
  animation: scroll-safe 15s linear infinite;
}

.filmstrip-2 {
  top: 25%;
  
  height: 100px;
  right:100%;
                 /* نقطة البداية عند منتصف الحاوية */
  transform: translateX(50%);
  animation: scroll-safe-reverse 15s linear infinite;
 } 

.filmstrip-3 {
  top: 45%; /* 70% */
  left: 0;
 /* width: 100px;  */
  height: 100px;
   left: 1%;               /* نقطة البداية عند منتصف الحاوية */
  transform: translateX(-50%);
  animation: scroll-safe 15s linear infinite;
}

.film-item {
 flex-shrink: 0;
  width: 600px;
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.filmstrip-1 img,
.filmstrip-2 img,
.filmstrip-3 img {
  width: 100%;       /* حجم ثابت للعرض */
  height: 100%;      /* حجم ثابت للارتفاع */
  object-fit: cover;   /* قص الصورة للحفاظ على التناسب */
    margin-right: 10px; /*مسافة بين الصور */
  display: inline-block;


}





@keyframes scroll-safe {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%); /* يتحرك قليلاً فقط */
  }
}
@keyframes scroll-safe-reverse {
  0% { transform: translateX(0); }
  100% { transform: translateX(50%); } /* يتحرك يميناً */
}








/*.film-item img {
 width: 100%;
  max-width: 100%;   
  height: auto;
  border-radius: 15px;
  object-fit: cover;
  transition: transform 0.3s ease; 
} */


.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
 background: rgba(25, 20, 18, 0.1) ;   /*rgba(0, 0, 0, 0.80)        */

  z-index: 1;
}



.hero-label {
  display: block; /* أو flex إذا كنت ترغب في محاذاة العناصر داخل هذا الكلاس */
  font-size: clamp(2px, 4vw, 12px); 
  color: var(--primary-color); 
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 10px;
  margin-right: auto;
  margin-left: auto;
  text-transform: uppercase;
  text-align: center; /* تأكد من أن النص في الوسط */
}

.label {
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;

}

.hero-title {
   font-size: clamp(20px, 4vw, 50px); /* قلل الحدود العليا */
  
                                                 /*font-size: clamp(1.8rem, 5vw, 3.5rem); 
                                   font-size: clamp(24px, 5vw, 60px);                                           */
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 75px;
} 

.hero-title p{
  font-size: 60px;
}

.hero-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  margin-bottom: 6px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  
}


       /* تنسيق search-bar كما هو */


.search-bar {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    flex-wrap: nowrap; /* منع العناصر من النزول للأسفل */
    margin: 10px 250px;
}


/* تنسيق input */
.search-input {
    flex: 1;  /* يجعل الـ input يأخذ المساحة المتبقية */
    background: transparent;
    border: none;
    outline: none;
    padding: 15px 25px;
    font-size: 16px;
    color: #fff;
    font-weight: 300;
    min-width: 0; /* مهم لتجنب التأثيرات الغير مرغوب فيها */
}

/* تنسيق الزر */
.send-button {
  position: absolute;
    right: 5px;
    top: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    background:#FF0101 ; /*    #e63946  */
    border: none;
    border-radius: 50px;
    padding: 10px 15px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

/* تأثير hover */
.search-bar:hover {
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

/* تنسيق الـ placeholder داخل الـ input */
.search-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* تأثيرات عند التمرير على الزر */
.send-button:hover {
    background: #d62828;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}

/* تأثير عند النقر على الزر */
.send-button:active {
    transform: translateY(0);
}

/* إظهار النص داخل الزر */
.send-button .button-text {
    display: inline;
}

/* إخفاء الأيقونة بشكل افتراضي */
.send-button .button-icon {
    display: none;
    font-size: 18px;
}

.hero-features {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}


body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x:clip ;
}

.hero-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  background: url('action27.png') center/cover no-repeat;
  background-size: cover;  /* تجعل الصورة تغطي المساحة */
  background-position: center center; /* تحديد موقع الصورة */
  color: ;
  min-height: 80vh; /* إبقاء الارتفاع كما هو */
  width: 100vw; /* عرض الشاشة بالكامل */
  text-align: center;
  position: relative;
  padding: 8vh 5vw; 
  box-sizing: border-box;
  margin:auto 0px;
  
}
.hero-content {

  position: relative;
  z-index: 3;
  text-align: left;
  width: 100%;
  max-height: 100%;
  top: 20%;
  bottom: 10px;
  margin: 0px auto;
  

  /*
  position: relative;
  z-index: 3;
  text-align: left;
  width: 100%;
  top: 20%;
  bottom: 10px;
  margin: 10px auto ; */
 
}

.hero-testing {
  /*position: relative; */
  top: ;
  min-height: 110vh;
  width: 100vW;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0px ;
  overflow: hidden;
 background:#1c1414;  /*    #190606      */ 
}


@media (max-width: 600px) {
  .hero-section {
    padding: 12vh 5vw;
    background-position: center top; /* مثال لتعديل الخلفية */
  }
}





.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:rgba(4, 9, 0, 0.7) ; /*     */
  z-index: 1;
}
.hero-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
  font-size: 1.5rem;
}
.btnt {
  padding: 10px 25px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
}


/* Features Section */

  .features-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .features-subtitle {
            color: #ff4444;
            font-size: 14px;
            letter-spacing: 3px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .features-title {
            font-size: 42px;
            font-weight: 700;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 30px;
            padding: 0 20px ;
        }

        .feature-card {
           background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
            border: 1px solid #333;
            border-radius: 20px;
            padding: 50px 40px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            cursor: pointer;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(255, 68, 68, 0.25) 0%, transparent 70%);

            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
          /*  border-color: #ff4444;  */
            box-shadow: inset 0 0 50px rgba(255, 68, 68, 0);
        }

        .feature-card:hover::before {
            opacity: 1;
        }

        .feature-number {
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 130px;
            font-weight: 900;
            color: rgba(255, 255, 255, 0.03);
            line-height: 1;
            transition: all 0.4s ease;
        }

        .feature-card:hover .feature-number {
            color: rgba(255, 68, 68, 0.08);
            transform: scale(1.1);
        } 

        .feature-icon {
            width: 60px;
            height: 60px;
            margin-bottom: 30px;
            position: relative;
            z-index: 2;
        }

        .feature-icon svg {
            width: 100%;
            height: 100%;
            stroke: #ffdd44;
            stroke-width: 2;
            fill: none;
            transition: all 0.4s ease;
        }

        .feature-card:hover .feature-icon svg {
            stroke: #ff4444;
            transform: scale(1.1);
        }

        .feature-content {
            position: relative;
            z-index: 2;
        }

        .feature-title {
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 20px;
            text-align: left;
        }

        .feature-description {
            font-size: 16px;
            line-height: 1.6;
            color: #bbb;
            margin-bottom: 25px;
        }

        .feature-link {
            display: inline-flex;
            align-items: center;
            color: #fff;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .feature-link::after {
            content: '→';
            margin-left: 10px;
            transition: margin-left 0.3s ease;
        }

        .feature-link:hover {
            color: #ff4444;
        }

        .feature-link:hover::after {
            margin-left: 15px;
        }

        

        .feature-card-full {
           /* grid-column: 1 / -1;
            max-width: 600px;
            margin: 0 auto;
            width: 100%; */
        }

/* shop now */

.link-arrow {
    color: var(--accent-red);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.link-arrow:hover {
    color: var(--accent-yellow);
}
/* Explore our item     */

.explore-link {
    display: block;
    text-align: center;
    color: var(--accent-teal);
    text-decoration: none;
    font-weight: 600;
    margin: 2rem 0;
    transition: color 0.3s;
}

.explore-link:hover {
    color: var(--accent-yellow);
}



.slider-wrap-custom {
  overflow-x: scroll;
  white-space: nowrap;
  cursor: grab;
  scrollbar-width: none;

  scroll-behavior: auto 
                          /* ;       position: relative;*/

}


.slider-wrap-custom::-webkit-scrollbar {
  display: none;
}

.slider-track-custom {
  display: inline-flex;
  gap: 20px;
   /* 🔥 أهم خطوة: إجبار الشريط أن يكون أعرض من الشاشة */
}

.slide-item-custom{
  flex-shrink: 0;
  width: 400px;
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  gap: 2px;
}

.slide-item-custom img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 15px;
  gap: 2px;
}





/*    content text   */


.content-text h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }

.content-text p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}



    .benefits-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
  }

.benefits-list li {
    color: var(--text-muted);
    margin: 0.5rem 0;
}

    /*  content section */

    
.content-section {

  display: flex;
  align-items: center;        
  justify-content: space-between;
  gap: 50px;                 
  padding: 60px 100px;        
 max-width: 1200px;
 width: 100%;
  margin: 0 auto;
}

.content-image img {
    width: 300px;
    max-width: 700px;
    height: auto;
    border-radius: 10px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
  }
  .content-image img:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  }
.content-image {
    flex: 1;
    display: flex;
    justify-content: center;
  }
.image-placeholder {
  width: 10%;
  height: 400px;
  background: #222;
  color: #999;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border-radius: 8px;
}

.content-text {
    order: 1;
}

.content-text .label {
  display: inline-block;
  font-weight: bold;
  color: #e63946; 
  margin-bottom: 10px;
  letter-spacing: 2px;
}


    /* Pricing Section */
.pricing {
      padding: 4rem 0; 

    background-color: var(--secondary-dark);
}

.pricing h2 {
    font-size: 2.5rem;
    text-align: center;
    margin: 1rem 0 3rem 0;
}

.pricing-grid {
 display: grid;
    grid-template-columns: repeat(3, 1fr); /* ثلاث أعمدة في الشاشات الكبيرة */
    gap: 2.5rem; /* المسافة بين الأعمدة */
    padding: 0 20px;
    justify-items: center; /* لتوسيط العناصر داخل الأعمدة */
    margin: 100px auto; /* لضمان توسيط الـ grid بالكامل */
    width: 100%;
    max-width: 1400px; /* أقصى عرض للـ grid */
    

}

.pricing-card {

  width: 100%;
    max-width: 500px; /* حجم ثابت للبطاقة (يمكنك تعديلها) */
    margin: 0 auto; /* للتوسيط التام */
    padding: 2rem 1.5rem;
    text-align: center;
    background: url("action21.webp") center/cover no-repeat;
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1; /* لضبط ترتيب العناصر */

  /*     
  position: relative;
  background: url("action21.webp") center/cover no-repeat;
  border-radius: 1rem;
  color: #fff;
  overflow: hidden;
  padding: 2rem 1.5rem;
  z-index: 0;
*/

}
.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9); /* ← غطاء أسود شفاف */
  z-index: 1;
}
/* النصوص فوق الغطاء */
.pricing-card * {
  position: relative;
  z-index: 2;
}

.pricing-card.featured {
    border-color: var(--accent-red);
    transform: scale(1.05);
}

.pricing-header {
    background-color: var(--accent-teal);
    color: var(--primary-dark);
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    border-radius: 15px;
}

.pricing-image {
    padding: 1rem;
}

.pricing-duration {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-top: 1rem;
}

.pricing-price {
    text-align: center;
    font-size: 2.5rem;
    color:red; /* var(--accent-red);  */
    font-weight: bold;
    margin: 0.5rem 0;
}

.pricing-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    padding: 0 1.5rem;
    margin-bottom: 1.5rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    color:white; /* var(--text-muted); */
background: hsla(0,0%,100%,.2);
backdrop-filter: blur(72px);
padding: 10px 10px;
border-bottom: 1px solid #060606;
}

.pricing-features .check {
  color: #22c55e; /* أخضر */
  font-weight: bold;
  margin-right: 8px;
  text-align: right;
}


.pricing-features .cross {
  color: #ef4444; /* أحمر */
  font-weight: bold;
  margin-right: 8px;
}

.pricing-card .btn {
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem 1.5rem;
}



/* About Section */
.about {
  position: relative;
  z-index: 10;
  background: #1c1414; /*var(--dark-bg)      #190606 */
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.section-label {
  display: inline-block;
  color: var(--primary-color);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 15px;
  text-transform: uppercase;
  padding: 20px;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  padding: 10px;
}

.section-description {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 30px;
  line-height: 1.8;
  padding: 10px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
  margin-left: 15px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}

.about-feature svg {
  color: var(--primary-color);
  flex-shrink: 0;
}

/* ==========  الأساسيات  ========== */

.about-visual {
  position: relative;
  padding: 40px 10px;
  min-height: 520px;
}

/* ==========  بطاقات الإحصائيات  ========== */

.stats-card {
  position: absolute;
  padding: 18px 20px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: center;
  font-weight: 700;
  width: 140px;
}

.stats-card-1 {
  background: var(--accent-yellow);
  color: #333;
  top: 15px;
  right: 220px;
}

.stats-card-2 {
  background: var(--accent-green);
  color: #333;
  bottom: 300px;
  left: 100px;
  z-index: 2;
}

.stats-label {
  font-size: 11px;
  text-transform: uppercase;
  opacity: 0.7;
}

.stats-number {
  font-size: 32px;
}


/* ==========  تقييم Google  ========== */

.google-rating {
  position: absolute;
  top: 525px;
  display: flex;
  align-items: center;
  gap: 10px;
 /*background: rgba(255, 255, 255, 0.05);*/ 
 /*  padding: 15px 20px;*/
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1); 
}

.rating-text {
  font-size: 14px;
  color: var(--text-secondary);
}


/* ==========  صورة الجهاز  ========== */

.device-image {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 360px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(230, 57, 70, 0.2);
}

.device-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*what you want to know */
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            background-color: #1c1414; /* #1a1410   #190606 */
            color: #fff;
            padding: 0px 0px;
            min-height: 100vh;
        }

        .wrap-main {
           /* max-width: 800px; */
            margin: 0 15px;
        }

        .stats-box {
            background: linear-gradient(135deg, #f4e4b0 0%, #e8d89f 100%);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    flex-wrap: wrap;
        }

        .stats-unit {
            text-align: center;
        }

        .stats-num {
            font-size: 2.5em;
            font-weight: bold;
            color: #2a1a0a;
            display: inline-block;
            margin-bottom: 8px;
             opacity: 0;
            transform: translateY(8px);
             transition: all 0.4s ease;
        }

           .plus-sign, .unit-suffix {
              font-size: 1.5em;
              font-weight: bold;
              color: #2a1a0a;
              margin-left: 4px;
                      }

        .stats-text {
            font-size: 0.75em;
            color: #6a5a3a;
            text-transform: uppercase;
            letter-spacing: 1px;
            line-height: 1.4;
        }

        .faq-header-box {
            margin-bottom: 30px;
        }

        .faq-label {
            color: #FF0101;
            font-size: 1em;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
            display: block;
        }

        .faq-heading {
            font-size: 2.5em;
            font-weight: bold;
            margin-bottom: 30px;
        }

        .toggle-box {
            margin-bottom: 12px;
        }

        .toggle-item {
            background-color: #2d2520;
            border-radius: 12px;
            margin-bottom: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .toggle-head {
            padding: 20px 24px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s ease;

        }

        .toggle-head:hover {
            background-color: #352d27;
        }

        .toggle-title {
            font-size: 1.1em;
            color: #fff;
        }

        .toggle-icon {
            font-size: 1.5em;
            color: #a89070;
            transition: transform 0.3s ease;
        }

        .toggle-item.active .toggle-icon {
            transform: rotate(45deg);


        }

        .toggle-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;


        }

        .toggle-item.active .toggle-content {
            max-height: 200px;

        }

        .toggle-body {
            padding: 0 24px 20px 24px;
            color: #c0b8a8;
            line-height: 1.6;
        }

        .img-box {
            margin-top: 40px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .img-box img {
            width: 100%;
            height: auto;
            display: block;
        }

        .rtl-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: #ff0000;
            color: #fff;
            padding: 12px 24px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            box-shadow: 0 4px 15px rgba(214, 69, 69, 0.4);
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .rtl-btn:hover {
            background-color: #b83737;
            transform: translateY(-2px);
        }


        .section-hero-custom {
  overflow: hidden;
}

.slider-wrap-custom {
  width: 100%;
  overflow: hidden;
}

.slider-track-custom {
  display: flex;
  width: max-content;
}

.slide-item-custom {
  flex: 0 0 auto;
}

.slide-item-custom img {
   /* width: 200px;نفس عرض الحركة */
  display: block;
}


/* ===========================================================
     🎯 الاستجابة للشاشات المتوسطة (تابلت)
   =========================================================== */

  

   @media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-visual {
    height: 400px;
  }

  .hero-title {
    font-size: 42px;
  }

 
}

@media (max-width: 900px) {
  .about-visual {
    min-height: 480px;
  }

  .stats-card {
    width: 130px;
  }

  .device-image {
    width: 240px;
    height: 300px;
  }

  .stats-card-1 {
    right: 20px;
  }

  .stats-card-2 {
    left: 20px;
    bottom: 90px;
  }
  .stats-text {
                font-size: 0.7em;
            }

  .google-rating {
    right: 20px;
  }
  .pricing-header{
    border-radius: 15px;
  }
}




/* Responsive Design */

.pricing-image {
  width: 100%;
  display: flex;
  justify-content: center; /* لتوسيط الصورة داخل الحاوية */
  margin-bottom: 1rem;
}

.pricing-image img {
  width: 100%;
  max-width: 350px;   /* الحد الأقصى للصورة */
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* تأثير بسيط عند المرور */
.pricing-image img:hover {
  transform: scale(1.05);
}




   /* footer */

    footer {
      background-color: #000;
      border-top: 1px solid #1f2937;
      padding: 3rem 1rem;
      color: #9ca3af;
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem;
      margin-bottom: 2rem;
    }

    .footer-column h3 {
      font-weight: bold;
      margin-bottom: 1rem;
      color: #fff;
    }

    .footer-column ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-column li {
      margin-bottom: 0.5rem;
    }

    .footer-column a {
      color: #9ca3af;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-column a:hover {
      color: #ef4444; /* red-500 */
    }

    .footer-bottom {
      border-top: 1px solid #1f2937;
      padding-top: 2rem;
      text-align: center;
      color: #9ca3af;
      font-size: 0.9rem;
    }

  

    /*   responsivity  */




@media (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .pricing-card {
    width: 90%;
    max-width: 350px;
  }
  .pricing-header{
    border-radius: 15px;
  }

    .hero-content h1 {
    font-size: 2.6rem;
    text-align: center;
  }

  .hero-subtitle {
    font-size: 1rem;
    text-align: center;
  }

  .search-bar {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .search-input {
    width: 100%;
  }

  .hero-features {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .about-visual {
    flex-direction: column;
    text-align: center;
    padding: 50px 8%;
  }

  .stats-card {
    width: 80%;
    margin: 10px auto;
  }

  .device-image {
    margin-top: 30px;
  }

  .google-rating {
    position: static;
    margin-top: 20px;
  }

  .stats-box {
        padding: 30px 20px;
        gap: 20px;
    }

    .stats-num {
        font-size: 2.2em;
    }

    .stats-text {
        font-size: 0.7em;
    }

    .faq-heading {
        font-size: 2.2em;
    }

    .toggle-title {
        font-size: 1em;
    }


}


@media  (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  

  .pricing-grid {
 grid-template-columns: 1fr; /* عمود واحد فقط في الشاشات الصغيرة */
        margin: 0 10px; /* هامش صغير */
   margin-bottom:250px;
   
    /*
    display: block;
     grid-template-columns:repeat(1, 1fr) !important; 
        margin: 0 5px;
        align-items: center; 
        justify-content: center; */
  }

  .pricing {
    padding: 2rem 1rem;
  }

  .pricing h2 {
    font-size: 1.8rem;
  }

  .pricing-card {
   max-width: 100%; 
  }

  .pricing-card.featured {
    transform: none;
    justify-content: center;
  }

  .pricing-price {
    font-size: 1.8rem;
  }

  .pricing-note {
    font-size: 0.85rem;
  }

  .pricing-card .btn {
    width: 80%;
    margin: 1rem auto;
  }
  .pricing-header{
    border-radius: 15px;
  }

  .content-section {
     
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
    gap: 30px;
  }

  .content-text {
    flex: unset;
    width: 100%;
  }

  .content-image img {
    width: 90%;
    max-width: 400px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;

  }

  .feature-card {
    margin-bottom: 20px;
  }
  .filmstrip {
    position: absolute;
    gap: 8px;
  }

  .footer {
    text-align: center;
  }

  .nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100vh;
  background:white ;    /*  rgba(26, 20, 16, 0.9)  */
  backdrop-filter: blur(10px);
  flex-direction: column;
  align-items: safe;
  padding: 60px 60px;
  transition: right 0.3s ease;
  
}

.nav-menu, 
.nav-menu * {
  color: black ;
}



.nav-menu.active {
  right: 0;
}


  .menu-toggle {
    display: flex;
    order: 1;
  }

  .menu-toggle.active + .nav-menu {
    display: flex;

  }

  .film-item img {
    max-width: 100%;
    height: 100%;
    border-radius: 8px;
  }
  .film-item {
    width: 400px;
    height: 250px;
  }
  
  .filmstrip-1 { height: 170px; top: 8%; }
.filmstrip-2 { top:37% ; }  /* 35%*/
.filmstrip-3 { top: 68%; }  /* 62 */
  .header-actions .btn.btn-primary {
    display: none;
  }
  .header{
    justify-content: flex-end;
    padding: 15px 8px;
    gap: 10px;
  }

  .header-content {
    flex-wrap: nowrap;
   
  }


.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 900;
  transition: opacity 0.3s ease;
}

.menu-overlay.active {
  display: block;
}

.header-actions{
  order: 2;
  justify-content: flex-end;


}


  .about-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    min-height: auto;
    padding: 0 20px; /* إضافة هامش داخلي ليبدو المحتوى أرتب */
  }

  /* إزالة التموضع المطلق ليصبح التصميم عمودي */
  .stats-card,
  .google-rating,
  .device-image {
    position: static;
    transform: none;
    align-items: center;
    width: 80%; 
    margin: 0 auto;
  }

  .stats-card {
    width: 80%;
    max-width: 350px; /* أكبر قليلاً للشاشات المتوسطة */
  }

  .device-image {
    width: 90%;  /* مناسبة أكثر للتابلت */
    height: auto;
  }

  .google-rating {
    width: auto;
    margin-top: 15px;
  
}

.slide-item-custom{
  width: 400px;
  height: 400px;
  gap: 2px;
}

.slide-item-custom img {
    width: 100%;  /* أكبر قليلاً لتناسب الهواتف */
    height: 100%;
    gap: 1px;
  }


  /* before footer */

     .stats-box {
        flex-wrap: wrap;
        gap: 30px;
        padding: 30px 15px;
    }

    .stats-unit {
    text-align: center;
    position: relative;
}

    .stats-num {
        font-size: 2em;
    }

    .stats-text {
        font-size: 0.65em;
    }

    .faq-heading {
        font-size: 2em;
    }

    .toggle-head {
        padding: 18px 20px;
    }

    .toggle-title {
        font-size: 0.95em;
    }

    .toggle-body {
        padding: 0 20px 18px 20px;
        font-size: 0.95em;
    }

.hero{
  min-height: 130vh;
}
.search-bar {
   
    flex-direction: column;
    align-items: stretch;
  }

  .search-input {
              
                padding: 12px 20px;
                font-size: 15px;
            }

            .send-button {
              
                padding: 12px 30px;
                font-size: 15px;
                min-width: 130px;
            }

  .rotating-border-btn {
    width: 30%;
    padding: 20px 8px;
    font-size: 14px;
    margin-left: 25px
  }

  .search-bar {
        padding:  5px ;
        width: 100%;  /* بدلاً من 400px */
        max-width: 400px;
        height: 50px;
        margin:  auto;
        margin-bottom: 25px;
       /* margin: 40px 130px; */
    }
    
    .search-input {
        padding: 10px 15px;
        font-size: 14px;
        flex: 1;
        min-width: 0;  /* مهم جداً */
        
    }
    
    .send-button {
        flex-shrink: 0;  /* منع تقلص الزر */
        min-width: 40px;
        width: 40px;
        height: 40px;
        padding: 0;
        top: 5px;
        border-radius: 50%;
    }
    .send-button .button-text {
        display: none; /* إخفاء النص في الشاشات الصغيرة */
        
    }

    .send-button .button-icon {
        display: inline-block;  /* إظهار الأيقونة فقط */
        font-size: 18px;         /* تحديد حجم الأيقونة */
    }

}




.pricing-image img {
    max-width: 100%;  /* تملأ عرض البطاقة بالكامل */
    border-radius: 15px;
  }


@media screen and (max-width: 480px) {

  .search-bar {
        padding: 5px ;
        width: 100%;  /* بدلاً من 400px */
        max-width: 400px;
        height: 50px;
        margin: 2px 2px;
        margin-bottom: 25px;
    }
    
    .search-input {
        padding: 10px 15px;
        font-size: 14px;
        flex: 1;
        min-width: 0;  /* مهم جداً */
    }
    
    .send-button {
        flex-shrink: 0;  /* منع تقلص الزر */
        min-width: 40px;
        width: 40px;
        height: 40px;
        padding: 0;
        top: 5px;
        border-radius: 50%;
    }
    .send-button .button-text {
        display: none; /* إخفاء النص في الشاشات الصغيرة */
        
    }

    .send-button .button-icon {
        display: inline-block;  /* إظهار الأيقونة فقط */
        font-size: 18px;         /* تحديد حجم الأيقونة */
    }
           
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

   .pricing h2 {
    font-size: 1.5rem;
  }

  .pricing-price {
    font-size: 3.5rem;
  }

  .pricing-features li {
    font-size: 0.9rem;
  }

  .pricing-card .btn {
    width: 90%;
    font-size: 0.9rem;
  }
  .pricing-header{
    border-radius: 15px;
  }
  
  .header-content {
   
   flex-wrap: nowrap;
  }

  .logo-text {
    display: none;
  }
  .hero{
    bottom: 35px;
  }
  .hero-content{
    top: 30px;
    align-items: center;
    top: 70%;
  }


  .hero-title {
    font-size: 60px;
  }
  .hero-title p{
    font-size: 60px;
  }

  .hero-label {
    font-size: 10px;
    text-align: center;
  }

  .section-title {
    font-size: 22px;
  }

  

   .pricing-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
  }

  .film-item img {
    max-width: 200px;
    height: 300px;
    border-radius: 8px;
  }
  .film-item {
    width: 200px;
    height: 300px;
  }
  
  .filmstrip-1 { height: 170px; top: 8%; }
.filmstrip-2 { top: 35%; }
.filmstrip-3 { top: 62%; }


  .header-actions .btn.btn-primary {
    display: none;
  }

  .about-visual {
    flex-direction: column;
    align-items: center;
    gap: 15px; /* تقليل المسافات */
    padding: 0 15px;
  }

  .stats-card,
  .google-rating,
  .device-image {
    width: 100%; /* ملء العرض بالكامل */
    position: static;
    transform: none;
    margin: 0 auto;
    min-width: fit-content;
  }

  .stats-card {
    max-width: 280px; /* مناسب للشاشات الصغيرة */
  }

  .device-image {
    width: 80%;
    height: 100%; 
    /*height: auto; */
  }

  .google-rating {
    margin-top: 10px;
    width: auto;
  }

  .slide-item-custom {
    
  }

   .slide-item-custom img {
    width: 100%;
    height: 100%;
    gap: 2px;

  }


  .stats-box {
        flex-direction: column;
        padding: 25px 15px;
        gap: 25px;
    }

    .stats-unit {
        flex-basis: 100%;
        width: 100%;
    }

    .stats-num {
        font-size: 2.5em;
    }

    .stats-text {
        font-size: 0.8em;
    }

    .faq-label {
        font-size: 0.8em;
    }

    .faq-heading {
        font-size: 1.6em;
    }

    .toggle-head {
        padding: 16px 18px;
    }

    .toggle-title {
        font-size: 0.9em;
        padding-right: 10px;
    }

    .toggle-icon {
        font-size: 1.3em;
    }

    .toggle-body {
        padding: 0 18px 16px 18px;
        font-size: 0.9em;
    }

    .toggle-item.active .toggle-content {
        max-height: 250px;
    }

    .rtl-btn {
        bottom: 20px;
        right: 20px;
        padding: 10px 20px;
        font-size: 0.9em;
        z-index: 1000;
    }
   
 /*        nav minu */

 .nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100vh;
  background:white ;    /*  rgba(26, 20, 16, 0.9)  */
  backdrop-filter: blur(10px);
  flex-direction: column;
  align-items: safe;
  padding: 60px 20px;
  transition: right 0.3s ease;
  
}

.nav-menu, 
.nav-menu * {
  color: black ;
}



.nav-menu.active {
  right: 0;
}


  .menu-toggle {
    display: flex;
    order: 1;
  }

  .menu-toggle.active + .nav-menu {
    display: flex;

  }

  .pricing-grid {
    grid-template-columns: repeat(1, 1fr) !important; /* عمود واحد */
    margin: 0 2px; /* لتوسيع الهوامش قليلاً */
    text-align: center; /* لتوسيط المحتوى */
  margin-bottom: 250px;
  padding: inherit;
  }

  .pricing-card {
    width: 100% !important; /* جعل العرض 90% من المساحة */
    margin: 10px auto; /* لتوسيط البطاقة */
    text-align: center; /* تأكد من أن النص داخل البطاقة متموضع */
  }

  .rotating-border-btn {
    width: 40%;
    padding: 20px 8px;
    font-size: 14px;
    margin-left: 25px
  }

}


@media screen and (max-width: 360px) {

  .search-bar {
        padding: 6px;
    }

    .search-input {
        padding: 10px 15px;
        font-size: 14px;
    }

    .send-button {
        min-width: 50px;
        width: 50px;
        height: 50px;
        padding: 0;
        border-radius: 50%;
    }

    .send-button .button-text {
        display: none; /* إخفاء النص في الشاشات الصغيرة */
    }

    .send-button .button-icon {
        display: inline-block;
        font-size: 18px; /* تحديد حجم الأيقونة */
    }

}
         