@import url('https://fonts.googleapis.com/css2?family=Kufam:ital,wght@0,400..900;1,400..900&display=swap');

:root {
    --neon-green: #00ff9d;
    --bg-color: #050505;
}

* {
    font-family: 'Kufam';
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #fff;
    overflow-x: hidden;
}

/* === Header === */
header {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* طبقة التدرج الأخضر فوق لون الخلفية الأصلي */
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 255, 157, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(0, 255, 157, 0.1) 0%, transparent 40%),
        var(--bg-color);
    overflow: hidden;
    margin-left: 2rem;
    margin-right: 2rem;
    margin-top: 2rem;
    border-radius: 1.5rem;
}

/* عنصر وهمي لعمل "بوكيه" أو هالة ضوئية مركزة في المنتصف */
header::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(0, 255, 157, 0.08);
    border-radius: 50%;
    filter: blur(100px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none; /* لضمان عدم التأثير على النقر على العناصر */
}

/* لضمان ظهور المحتوى فوق التدرجات */
header > * {
    position: relative;
    z-index: 1;
}

/* كورة الضوء خلفية */
.mouse-spotlight {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 255, 157, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
}

/* === حاوية الخط المتعرج الواحد === */
.wave-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
    pointer-events: none;
}

/* 
   نستخدم عرضاً مضاعفاً (200%) ونحركه بمقدار نصف العرض (50%)
   لضمان عدم تكرار الرموز أو انقطاعها 
*/
.wave-line {
    position: absolute;
    top: 40%;
    left: 0;
    width: 200%; 
    height: 100px;
    transform: translateY(-50%);
    animation: seamless-wave 10s linear infinite;
}

.wave-path {
    fill: none;
    stroke: var(--neon-green);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 10px var(--neon-green)) drop-shadow(0 0 20px var(--neon-green));
}

@keyframes seamless-wave {
    0% {
        transform: translateY(-50%) translateX(0);
    }
    100% {
        /* نحرك الصورة بمقدار 50% من عرضها (الذي هو 200% من الشاشة) */
        transform: translateY(-50%) translateX(-50%);
    }
}

/* === النصوص (بدون خلفية) === */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 20px;
}

.hero-content h3 {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: -1px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.hero-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    text-align: center;
    margin-bottom: 1rem;
}

section {
    padding: 80px 20px;
    color: #666;
    text-align: center;
    position: relative;
    z-index: 20;
}

/* الزر الأول - مع التأثير الدائم والتأثير عند المرور */
.bt {
    font-size: 14px;
    font-weight: 400;
    background-color: #00ff9d;
    color: #000;
    text-decoration: none;
    padding-right: 1rem;
    padding-left: 1rem;
    padding-bottom: 0.4rem;
    padding-top: 0.4rem;
    border-radius: 1rem;
    margin-left: 0.5rem;
    
    /* لجعل الحركات سلسة */
    transition: all 0.3s ease;
    
    /* تشغيل الأنيميشن الدائم */
    animation: pulse-animation 2s infinite;
}

/* تأثير المرور على الزر الأول */
.bt:hover {
    font-size: 15px;
    transform: scale(1.05); /* تكبير طفيف */
    box-shadow: 0 0 15px rgba(0, 255, 157, 0.6); /* وهج حول الزر */
    background-color: #00e68a; /* تغيير بسيط في درجة اللون */
}

/* الزر الثاني - مع التأثير عند المرور فقط */
.btu {
    font-size: 13px;
    font-weight: 400;
    border-color: #00ff9d;
    border: solid 1px #00ff9d; /* تم توضيح اللون هنا */
    color: #fff;
    text-decoration: none;
    padding-right: 1rem;
    padding-left: 1rem;
    padding-bottom: 0.4rem;
    padding-top: 0.4rem;
    border-radius: 1rem;
    margin-right: 0.5rem;
    background-color: transparent; /* خلفية شفافة */
    
    /* لجعل الحركات سلسة */
    transition: all 0.3s ease;
}

.btu:hover {
    font-size: 14px;
    box-shadow: 0 0 10px rgba(0, 255, 157, 0.4); 
}

/* تعريف حركة النبض الدائمة للزر الأول */
@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 255, 157, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 255, 157, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 157, 0);
    }
}


.icon{
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24; 
    font-size: 22px;
    vertical-align: middle;
}

.tex-header{
    margin-top: 3rem;
}

.card-three{
    margin-top: 5rem;
}
.ret{
    text-align: right !important;

}

.hct{
    text-align: right !important;
    color: #fff;
    font-weight: 800;
    font-size: 16px;
}
.hcd{
    text-align: right !important;
    width: 80%;
    font-size: 8px;
}

.title-card {
    margin-bottom: 1.2rem;
}


/* === تنسيقات قسم الخدمات === */
.services-section {
    padding: 80px 0;
    background-color: #0a0a0a; /* خلفية داكنة مختلفة قليلاً */
    position: relative;
    overflow: hidden;
    margin-left: 2rem;
    margin-right: 2rem;
    margin-top: 2rem;
    border-radius: 1.5rem;
}

/* إضافة نقاط متوهجة خلفية للقسم */
.services-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 255, 157, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--neon-green);
    border-radius: 2px;
}

.wsection-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.wsection-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--neon-green);
    border-radius: 2px;
}

.section-desc {
    color: #888;
    text-align: justify;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* بطاقة الخدمة */
.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 255, 157, 0.3);
    box-shadow: 0 0 30px rgba(0, 255, 157, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.service-card .icon-box {
    width: 60px;
    height: 60px;
    background: rgba(0, 255, 157, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    transition: all 0.3s ease;
}

.service-card .icon-box .material-symbols-outlined {
    font-size: 32px;
    color: var(--neon-green);
}

.service-card:hover .icon-box {
    background: var(--neon-green);
    box-shadow: 0 0 20px rgba(0, 255, 157, 0.4);
}

.service-card:hover .icon-box .material-symbols-outlined {
    color: #000;
}

.service-card h4 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.service-card p {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1; /* لجعل النصوص متساوية الطول */
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--neon-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 1.5rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.service-card:hover .service-link {
    opacity: 1;
    transform: translateY(0);
}

.service-link:hover {
    text-decoration: underline;
}

.service-link .material-symbols-outlined {
    font-size: 18px;
    transition: transform 0.2s;
}

.service-link:hover .material-symbols-outlined {
    transform: translateX(-5px);
}

/* البطاقة المميزة */
.service-card.featured {
    border: 1px solid rgba(0, 255, 157, 0.3);
    background: linear-gradient(145deg, rgba(0, 255, 157, 0.05), transparent);
}

.badge-popular {
    position: absolute;
    top: 15px;
    left: 15px; /* RTL */
    background: var(--neon-green);
    color: #000;
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: 800;
}



.img-info{
    width: 150px;
}
.title-info{
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 1rem;
}





/* === FAQ === */
/* إعادة تعيين التنسيقات الأساسية */


/* تنسيق الخلفية والحاوية الرئيسية */


.container {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* تنسيق عناصر الأسئلة */
.faq-item {
  overflow: hidden;
  border-radius: 1rem;
  background: #637f56;
  color: #ffffff;
}

.faq-question {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  outline: none;
}
.faq-question h2 {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  text-align: right;
}
.faq-question svg {
  transition: transform 300ms ease;
  flex-shrink: 0;
  margin-left: 16px;
}

/* تنسيق الإجابة (الحالة الافتراضية مخفية) */
.faq-answer {
    text-align: justify;
    max-height: 0;
    transform: translateY(16px); /* translate-y-4 */
    padding: 0 20px;
    color: #ffffff; /* gray-400 */
    opacity: 0;
    transition: all 400ms ease-in-out;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.6;
}

/* السحر يحدث هنا! :focus-within تحاكي عمل peer-focus */
/* عندما يكون الزر داخل هذا العنصر مفعلاً (مضغوطاً)، تتغير خصائص الإجابة */
.faq-item:focus-within .faq-answer {
  max-height: 90px;
  transform: translateY(0);
  padding-bottom: 20px; /* pb-5 تقريباً */
  opacity: 1;
}

.faq-item:focus-within .faq-question svg {
  transform: rotate(180deg);
}


/* === footer === */
footer {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 255, 157, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(0, 255, 157, 0.1) 0%, transparent 40%),
        var(--bg-color);
    overflow: hidden;
    margin-left: 2rem;
    margin-right: 2rem;
    margin-top: 2rem;
    border-radius: 1.5rem 1.5rem 0 0;
}
footer::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(0, 255, 157, 0.08);
    border-radius: 50%;
    filter: blur(100px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}
footer > * {
    position: relative;
    z-index: 1;
}
.mouse-spotlight {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 255, 157, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
}
.link-footer{
    align-items: center;
    margin-top: 2rem;
}
.a-footer{
    transition: all 0.3s ease;
    text-decoration: none; color: #637f56; font-size: 14px;
}
.a-footer:hover{
    text-decoration: none;
    color: #e6f8dd;
    font-size: 15px;
    transform: 1.05;
}
.seg-footer{
    font-size: 12px;
    color: #e6f8dd;
}






.frame_imitation {
  direction: ltr;
}

.frame_imitation {
  width: 70%;
  background-color: red;
}
.full_wide_wrapper {
  position: relative;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  width: 100vw;
}
.clients_logo {
  max-width: 12vw;
  max-height: 7vh;
  height: 100%;
}
.logos_container {
  left: 0%;
  display: flex;
  padding: 25px 0;
  justify-content: space-around;
  align-items: center;
  width: 200%;
  position: relative;
  will-change: transform;
  animation: marquee 60s linear infinite;
  color: white;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media only screen and (max-width: 765px) {
  .logos_container {
    width: 750%;
  }
  .clients_logo {
    max-width: 21vw;
  }
}



/* feedback */
.testimonial-card {
      background: #ffffff;
      border: 1px solid #e5e5e5;
      border-radius: 16px;
      padding: 40px 36px 32px;
      max-width: 420px;
      width: 100%;
      position: relative;
      transition: box-shadow 0.3s ease, border-color 0.3s ease;
      text-align: right;
      margin-bottom: 1.5rem;
    }

    .testimonial-card:hover {
      border-color: #d4d4d4;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    }

    /* علامة التنصيص الزخرفية */
    .quote-icon {
      width: 36px;
      height: 36px;
      margin-bottom: 20px;
      color: #171717;
      opacity: 0.15;
    }

    .quote-icon svg {
      width: 100%;
      height: 100%;
    }

    /* نص التقييم */
    .testimonial-text {
      font-size: 15px;
      font-weight: 400;
      line-height: 1.7;
      color: #525252;
      margin-bottom: 28px;
      position: relative;
    }

    /* الفاصل */
    .divider {
      height: 1px;
      background: linear-gradient(to right, transparent, #e5e5e5, transparent);
      margin-bottom: 24px;
    }

    /* معلومات الشخص */
    .author-info {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .author-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid #f5f5f5;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }

    .author-details {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .author-name {
      font-size: 14px;
      font-weight: 600;
      color: #171717;
      letter-spacing: -0.01em;
    }

    .author-role {
      font-size: 12px;
      font-weight: 400;
      color: #a3a3a3;
      letter-spacing: 0.02em;
    }




    

.container-box{
  position: relative;
  max-width: 70%;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #637f56;
  overflow: hidden;
  border-radius: 1.5rem;
  color: #fff;
}
.foc-text{
    color: #969696;
}


.cta-text{
    margin-bottom: 3rem;
    color: #969696;
}
.cta-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #4b4b4b;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}
.cta-bt {
    
    font-size: 20px;
    font-weight: 400;
    background-color: #819c75;
    color: #fff;
    text-decoration: none;
    padding-right: 1rem;
    padding-left: 1rem;
    padding-bottom: 0.4rem;
    padding-top: 0.4rem;
    border-radius: 1.5rem;
    margin-left: 0.5rem;
    
    /* لجعل الحركات سلسة */
    transition: all 0.3s ease;
    
    /* تشغيل الأنيميشن الدائم */
    animation: pulse-animations 2s infinite;
}

/* تأثير المرور على الزر الأول */
.cta-bt:hover {
    font-size: 22px;
    transform: scale(1.05); /* تكبير طفيف */
    box-shadow: 0 0 15px rgba(99, 127, 86, 0.6); /* وهج حول الزر */
    background-color: #78a165; /* تغيير بسيط في درجة اللون */
}

/* تعريف حركة النبض الدائمة للزر الأول */
@keyframes pulse-animations {
    0% {
        box-shadow: 0 0 0 0 rgba(99, 127, 86, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 255, 157, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 157, 0);
    }
}