@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700;900&display=swap');

:root {
    --primary-color: #07324f;
    --secondary-color: #d68522;
    --light-color: #f8f9fa;
    --dark-color: #333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Tajawal', sans-serif;
}
 html,body {
  height:100%;
      margin:0;
    background: var(--light-color);
    color: var(--dark-color);
    line-height: 1.6;
   -webkit-font-smoothing:antialiased;
      direction: rtl;
}

    html,body{
      height:100%;
      margin:0;
      font-family: 'Tajawal', sans-serif;
      background: var(--light-color);
      color: var(--dark-color);
      -webkit-font-smoothing:antialiased;
      direction: rtl;
    }

/* الشريط العلوي */
.top-bar {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.top-links a {
    color: white;
    text-decoration: none;
    margin-right: 20px;
    transition: color 0.3s;
}

.top-links a:hover {
    color: var(--secondary-color);
}

.language-switcher {
    display: flex;
    align-items: center;
}

.language-switcher a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
}

/* شريط التنقل الرئيسي */
.main-nav {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    margin-left: 10px;
}

.logo-text {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.main-menu {
    display: flex;
    list-style: none;
}

.main-menu li {
    margin-left: 25px;
    position: relative;
}

.main-menu a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    padding: 5px 0;
    display: block;
    transition: color 0.3s;
}

.main-menu a:hover {
    color: var(--secondary-color);
}

.main-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    bottom: 0;
    right: 0;
    transition: width 0.3s;
}

.main-menu a:hover::after {
    width: 100%;
    left: 0;
}
.request-btn {
    background-color: var(--secondary-color);
    color:var(--primary-color);
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.request-btn:hover {
    background-color: #c5761e;
    color: white !important; /* هذه السطر يضمن أن لون النص أبيض حتى عند التحويم */
}
.hero-section {
  background: linear-gradient(rgba(7, 50, 79, 0.8), rgba(7, 50, 79, 0.8)),
    url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 1px 1px; /* بدل 80px */
  text-align: center;
  min-height: 5vh;   /* بدل 100dvh */
    display: flex;
  align-items: center;  
  justify-content: center; 
}


.hero-content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}


/* الشعار */
.logo-container {
  width: 300px;
  height: 300px;
  margin: 0 auto 25px;
  perspective: 1000px;
}


#hero-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-style: preserve-3d;
  animation: spinLogo 10s infinite linear; 
  transition: opacity 1s ease;
  filter: drop-shadow(0 0 15px rgba(255,255,255,0.8)) 
          drop-shadow(0 0 30px rgba(214,133,34,1));
}

@keyframes spinLogo {
  from { transform: rotateY(0deg); }
  to { transform: rotateY(360deg); }
}

/* النصوص */
.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 15px;
  font-weight: 900;
  animation: fadeInUp 1.2s ease forwards;
}

.hero-headline {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 10px;
  line-height: 1.6;
  animation: slideInLeft 1.5s ease forwards;
}

.hero-description {
  font-size: 1.2rem;
  font-weight: 400;
  color: #f1f1f1;
  margin-bottom: 20px;
  line-height: 1.8;
  animation: slideInRight 1.8s ease forwards;
}

/* أنيميشن */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
  0% { opacity: 0; transform: translateX(-50px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  0% { opacity: 0; transform: translateX(50px); }
  100% { opacity: 1; transform: translateX(0); }
}

/* الأزرار */
.hero-btns {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 25px;
}

.primary-btn {
  background-color: var(--secondary-color);
  color: white;
  padding: 12px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s;
}

.primary-btn:hover {
  background-color: #c5761e;
  transform: translateY(-3px) scale(1.05);
}

.secondary-btn {
  background-color: transparent;
  color: white;
  padding: 12px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  border: 2px solid white;
  transition: all 0.3s;
}

.secondary-btn:hover {
  background-color: rgba(255,255,255,0.1);
  transform: translateY(-3px) scale(1.05);
}

.features-section {
  padding: 60px 20px;
  background: #f9fafa;
  font-family: "Cairo", sans-serif;
  text-align: center;
  
}
.section-title {
  font-size: 24px;
  font-weight: 700;
  color: #07324f;
  margin-bottom: 40px;
}
.section-title3 {
  font-size: 24px;
  font-weight: 700;
  color: #07324f;
  margin-bottom: 40px;
}
.features-container {
  max-width: 1200px;
  margin: auto;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.feature-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;

}
.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}
.feature-icon {
  font-size: 40px;
  color: #07324f;
  margin-bottom: 15px;
}
.feature-box h3 {
  font-size: 18px;
  font-weight: bold;
  color: #07324f;
  margin-bottom: 10px;
}
.feature-box p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}
.about-section {
    background: #fff;
    padding: 100px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    text-align: center;
    font-family: "Tajawal", sans-serif;
}

/* الحاوية الرئيسية للشعارات */
.logo-orbit-container {
    position: relative;
    width: 400px;
    height: 400px;
}

/* الشعار الرئيسي */
.main-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.15); /* تكبير أكثر */
    z-index: 5;
}
.main-logo img {
    width: 250px; /* كان 200 */
    height: 250px; /* كان 200 */
    object-fit: contain;
    background: transparent;
    animation: spin 12s linear infinite;
    filter: drop-shadow(0 0 25px  rgba(255,255,255,0.8)) drop-shadow(0 0 40px #07324f);
}

/* الشعارات الفرعية */
.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: center;
}
.orbit img {
    width: 95px;
    height: 95px;
    object-fit: contain;
    background: transparent;
    filter: drop-shadow(0 0 20px #07324f) drop-shadow(0 0 35px #07324f);
    transform: scale(1.1);
}

/* الدوران التلقائي */
.orbit1 {
    animation: orbit1 6s linear infinite;
}
.orbit2 {
    animation: orbit2 6s linear infinite;
}
.orbit3 {
    animation: orbit3 6s linear infinite;
}

/* مسار الدوران (إبعاد المسافة) */
@keyframes orbit1 {
    0% { transform: rotate(0deg) translateX(200px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(200px) rotate(-360deg); }
}
@keyframes orbit2 {
    0% { transform: rotate(120deg) translateX(200px) rotate(-120deg); }
    100% { transform: rotate(480deg) translateX(200px) rotate(-480deg); }
}
@keyframes orbit3 {
    0% { transform: rotate(240deg) translateX(200px) rotate(-240deg); }
    100% { transform: rotate(600deg) translateX(200px) rotate(-600deg); }
}
.section-title1 {
    width: 100%;
    text-align: center;
    margin-bottom: 20px; /* تقليل المسافة تحت العنوان */
    margin-top: 20px; /* تقليل المسافة فوق العنوان */
}
.section-title1 h2 {
    font-size: 2.2rem; /* تصغير الخط */
    font-weight: bold;
    color: #07324f;
    position: relative;
    display: inline-block;
}
.section-title1 h2::after {
    content: "";
    position: absolute;
    bottom: -6px; /* تقريب الخط للعنوان */
    left: 50%;
    transform: translateX(-50%);
    width: 40px; /* تقليل طول الخط */
    height: 3px; /* تصغير سماكته */
    background-color: #d68522;
    border-radius: 2px;}

/* النص */
.about-text {
    max-width: 500px;
}
.about-text h2 {
     color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 15px;
}
.about-text p {
    color: #555;
    margin-bottom: 20px;
    font-size: 1.1rem;
}
.btn-more {
    display: inline-block;
    background-color: #d68522;
    color: white;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}
.btn-more:hover {
    background-color: #b96d1a;
}

.newlux-section {
  padding: 60px 20px;
  background: #ffffff;
  font-family: "Cairo", sans-serif;
}

.newlux-container {
  max-width: 1200px;
  margin: auto;
}

.newlux-section .grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

/* الغلاف الخارجي للظرف */
.envelope-wrap {
  position: relative;
  width: 250px;
  height: 180px;
  cursor: pointer;
  perspective: 1000px;
  outline: none;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

/* شكل الظرف */
.envelope {
  width: 100%;
  height: 100%;
  position: relative;
  background: linear-gradient(135deg, #07324f, #ffffff);
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.5s ease;
}

/* غطاء الظرف */
.envelope .flap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(135deg, #07324f, #ffffff);
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  transform-origin: top;
  transition: transform 0.6s ease;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* العنوان داخل المثلث */
.title-closed {
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
  pointer-events: none;
}

/* المحتوى المخفي */
.newlux-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
  display: none;
  text-align: center;
  width: 80%;
}

.newlux-content h3 {
  font-size: 20px;
  font-weight: bold;
  color: #07324f;
  margin-bottom: 8px;
}

.newlux-content p {
  font-size: 15px;
  color: #444;
}

/* حركة الفتح */
.envelope.open .flap {
  transform: rotateX(180deg);
}

.envelope.open + .newlux-content {
  display: block;
}



/* قسم خدماتنا */
.services-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.5s ease;
    position: relative;
    overflow: visible;
    z-index: 1;
    border-top: 3px solid var(--secondary-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* دوائر تدور حول الخدمات */
.orbiting-circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 8px;
    pointer-events: none;
}

.circle {
    position: absolute;
    border-radius: 50%;
    border: 2px dashed rgba(214, 133, 34, 0.2);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.circle-1 {
    width: 110%;
    height: 110%;
    animation: orbit 15s linear infinite;
}

.circle-2 {
    width: 120%;
    height: 120%;
    animation: orbit 20s linear infinite reverse;
    border-width: 1.5px;
}

.circle-3 {
    width: 130%;
    height: 130%;
    animation: orbit 25s linear infinite;
    border-width: 1px;
}

@keyframes orbit {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.service-card:hover .circle {
    border-color: rgba(214, 133, 34, 0.5);
}

/* تصميم الأيقونات */
.service-icon {
    width: 80px;
    height: 80px;
    background: white;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 10px var(--light-color);
    border: 2px solid var(--secondary-color);
}

.service-card:hover .service-icon {
    background: var(--secondary-color);
    color: white;
    transform: rotate(15deg) scale(1.1);
    box-shadow: 0 0 0 10px rgba(214, 133, 34, 0.2);
}

.service-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.service-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* تأثيرات الظهور */
.service-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.service-card:nth-child(1) { animation-delay: 0.2s; }
.service-card:nth-child(2) { animation-delay: 0.4s; }
.service-card:nth-child(3) { animation-delay: 0.6s; }
.service-card:nth-child(4) { animation-delay: 0.8s; }

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}


/* قسم الرسوم البيانية */
.charts-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.charts-container {
    max-width: 1200px;
    margin: 0 auto;
}

.charts-container h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 2rem;
}

.chart-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.chart-card {
    flex: 1;
    min-width: 300px;
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.chart-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.3rem;
}

.chart-placeholder {
    height: 200px;
    background-color: #f5f5f5;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-weight: bold;
}

.chart-data {
    text-align: center;
}

.chart-percentage {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-weight: bold;
}

/* قسم الفاتورة الإلكترونية */
.invoice-section {
    padding: 80px 20px;
    background-color: white;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

.section-text {
    flex: 1;
}

.section-text h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.section-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #555;
}

.section-image {
    flex: 1;
}

.section-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.section-image img:hover {
    transform: scale(1.02);
}
/* قسم التطبيقات */
.apps-section {
  padding: 80px 0;
  background: transparent;
  text-align: center;
}
.section-title {
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: bold;
}
.apps-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.apps-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px;
}
.app-slide {
  flex: 0 0 300px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.app-slide img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.app-slide:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}
.arrow {
  background: #fff;
  border: none;
  padding: 12px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  cursor: pointer;
  font-size: 20px;
  margin: 0 10px;
  transition: background 0.3s;
}
.arrow:hover {
  background: #f0f0f0;
}

/* قسم الهواتف */
.phones-hero {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phones-stage {
  position: relative;
  width: 100%;
  max-width: 1100px;
  height: 420px;
  margin: 0 auto;
}
.phone {
  position: absolute;
  bottom: 20px;
  width: 220px;
  height: 430px;
  border-radius: 28px;
  box-shadow: 0 12px 30px rgba(36,41,61,0.12);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-origin: center bottom;
  transition: transform .35s ease, filter .35s ease;
  border: 6px solid rgba(233,233,239,0.6);
  background: transparent;
}
.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.phone.center {
  width: 320px;
  height: 560px;
  border-radius: 36px;
  z-index: 60;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  border: 8px solid rgba(234,239,244,0.6);
}
.p1 { left: 6%; transform: rotate(-8deg) scale(.92); z-index: 10; }
.p2 { left: 18%; transform: rotate(-4deg) scale(.94); z-index: 20; }
.p3 { left: 32%; transform: rotate(-2deg) scale(.96); z-index: 30; }
.p4 { left: 68%; transform: rotate(2deg) scale(.96); z-index: 30; }
.p5 { left: 82%; transform: rotate(6deg) scale(.94); z-index: 20; }
.p6 { left: 92%; transform: rotate(10deg) scale(.92); z-index: 10; }

.phone:hover {
  transform: translateY(-10px) scale(1.02);
  filter: brightness(1.02);
  z-index: 80;
}
.phone.center:hover {
  transform: translateY(-14px) scale(1.03);
}
.testimonials-section {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}

.testimonials-section .section-title {
  font-size: 1.8rem;
  margin-bottom: 50px;
  color: var(--primary-color);
  font-weight: 700;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: #f9f9f9;
  padding: 25px 20px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.testimonial-image {
  width: 90px;
  height: 90px;
  margin: 0 auto 15px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card h3 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.testimonial-card p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.testimonial-card audio {
  width: 100%;
  outline: none;
}
.testimonial-translation {
  display: none; /* مخفي افتراضياً */
  margin-top: 12px;
  font-size: 0.95rem;
  color: #444;
  background: #f1f1f1;
  padding: 10px;
  border-radius: 8px;
  line-height: 1.6;
  text-align: center;
}
.testimonial-translation.active {
  display: block; /* يظهر عند التشغيل */
}
.features-pro-section {
  padding: 80px 20px;
  background:    #fff;

  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.features-pro-section::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(199, 120, 24, 0.2);
  border-radius: 50%;
  animation: floatShape 6s infinite ease-in-out;
}

.features-pro-section::after {
  content: "";
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  background: rgba(199, 120, 24, 0.2);
  border-radius: 50%;
  animation: floatShape 8s infinite ease-in-out reverse;
}

@keyframes floatShape {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}



.features-pro-section .section-subtitle {
  font-size: 1.4rem;
  margin-bottom: 50px;
  color: #07324f;
  font-weight: 400;

}

.features-pro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-pro-card {
  background: linear-gradient(135deg, #07324f, #0a466d);
  border-radius: 15px;
  padding: 30px 20px;
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
}

.feature-pro-card:hover {
  transform: translateY(-10px) scale(1.05);
  background: linear-gradient(135deg, #07324f, #0a466d);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.feature-pro-icon {
  font-size: 45px;
  color: #ffb84d;
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.feature-pro-card h4 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  font-weight: bold;
  color: #fff;
}

.feature-pro-card p {
  font-size: 1rem;
  color: #ddd;
  line-height: 1.6;
}
.features-contact {
  margin-top: 40px;
  text-align: center;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffb84d;/* لون واتساب */
  color: white;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.contact-btn:hover {
  background: #ffb84d;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.contact-btn i {
  font-size: 1.3rem;
}

.faq-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9fa, #e9eff5);
  text-align: center;
}

.faq-section .section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-weight: bold;
  color: var(--primary-color);
}

.faq-chat {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* الرسائل */
.faq-message {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  padding: 15px 20px;
  border-radius: 20px;
  max-width: 75%;
  font-size: 1rem;
  line-height: 1.6;
  animation: fadeInUp 0.6s ease both;
  position: relative;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

/* تأثير تظليل عند المرور */
.faq-message:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transform: scale(1.02);
}

/* أيقونة */
.faq-message .icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-message .icon img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

/* سؤال (يسار) */
.faq-message.user {
  align-self: flex-start;
  background: linear-gradient(135deg, #ffffff, #f1f1f1);
  color: #333;
  border-bottom-left-radius: 5px;
}

/* جواب (يمين) */
.faq-message.bot {
  align-self: flex-end;
  background: linear-gradient(135deg, #07324f, #0a4d74);
  color: #fff;
  border-bottom-right-radius: 5px;
}

/* أنيميشن دخول */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* زر واتساب داخل الرسالة */
.faq-btn.inline {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: white;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.95rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.faq-btn.inline:hover {
  background: #1ebe5c;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
} .stats-section {
            position: relative;
            padding: 80px 20px;
            text-align: center;
            width: 100%;
            max-width: 1200px;
        }

        .stats-title {
            font-size: 2.5rem;
            margin-bottom: 70px;
            font-weight: bold;
            color: #07324f;
            position: relative;
            padding-bottom: 15px;
        }
        
        .stats-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 50%;
            transform: translateX(50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(to right, #ffb84d, #ff7b00);
            border-radius: 2px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 50px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .stat-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: transform 0.3s ease;
        }
        
        .stat-item:hover {
            transform: translateY(-5px);
        }

        .stat-icon {
            font-size: 48px;
            color: #07324f;
            margin-bottom: 20px;
            transition: all 0.3s ease;
            background: linear-gradient(135deg, #ffb84d 0%, #ff7b00 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .stat-item:hover .stat-icon {
            transform: scale(1.2);
        }

        .number-container {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 10px;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            color: #07324f;
            line-height: 1;
        }

        .plus {
            font-size: 2.2rem;
            font-weight: bold;
            color: #ff7b00;
            margin-right: 5px;
            line-height: 1;
        }

        .stat-label {
            color: #07324f;
            font-size: 1.3rem;
            font-weight: 500;
            margin-top: 5px;
        }
        
        .decoration {
            position: absolute;
            z-index: -1;
            opacity: 0.1;
        }
        
        .decoration-1 {
            top: 10%;
            right: 5%;
            font-size: 120px;
            color: #07324f;
        }
        
        .decoration-2 {
            bottom: 15%;
            left: 5%;
            font-size: 100px;
            color: #ff7b00;
        }
        
        /* تأثيرات للخلفية */
        .bg-circle {
            position: absolute;
            border-radius: 50%;
            z-index: -1;
            opacity: 0.15;
        }
        
        .circle-11 {
            width: 300px;
            height: 300px;
            background: #ff7b00;
            top: -100px;
            left: -100px;
        }
        
        .circle-21 {
            width: 200px;
            height: 200px;
            background: #07324f;
            bottom: -50px;
            right: -50px;
        }

        /* أنيميشن النبض للأيقونات */
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }
        

.our-systems {
  text-align: center;
  background: transparent;
  padding: 50px 0;
}

.section-title {
  font-size: 28px;
  margin-bottom: 30px;
  position: relative;
}

.swiper {
  width: 90%;
  padding-bottom: 50px;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
transition: transform 0.4s ease, opacity 0.4s ease !important;
  transform: scale(1.2) !important;
  opacity: 0.6 !important;
}

.swiper-slide img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 15px;
  transition: transform 0.5s ease;
}


.swiper-slide-active {
  transform: scale(1.5) !important;
  opacity: 1 !important;
}

.swiper-button-next,
.swiper-button-prev {
  color: #ff9800;
  transition: transform 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  transform: scale(1.2);
}
/* قسم جديدنا */
.new-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
    direction: rtl;
}

.new-section .section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.new-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--secondary-color);
}

.new-section .section-title {
    color: var(--primary-color);
    font-size: 2rem;
    margin: 0;
}

.new-section .app-name {
    font-size: 1.5rem;
    color: var(--secondary-color);
    font-weight: bold;
}

.new-section .app-content {
    display: flex;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.new-section .app-image {
    flex: 0 0 45%;
}

.new-section .app-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.new-section .app-description {
    flex: 1;
    padding: 40px;
}

.new-section .app-description h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 20px;
}

.new-section .app-description p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.new-section .app-features {
    margin-bottom: 30px;
}

.new-section .feature {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #555;
}

.new-section .feature i {
    color: var(--secondary-color);
}

.new-section .app-buttons {
    display: flex;
    gap: 15px;
}

.new-section .app-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.new-section .app-button:first-child {
    background-color: #4285F4;
    color: white;
}

.new-section .app-button:last-child {
    background-color: var(--secondary-color);
    color: white;
}

.new-section .app-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}


 footer {
      background: #07324f;
      color: #fff;
      padding: 40px 20px;
      text-align: center;
    }

    .footer-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      max-width: 1200px;
      margin: auto;
      gap: 20px;
    }

    .footer-column {
      flex: 1 1 300px;
      min-width: 250px;
      text-align: right;
    }

    .footer-column h3 {
      font-size: 20px;
      margin-bottom: 15px;
      border-bottom: 2px solid #ff9800;
      display: inline-block;
      padding-bottom: 5px;
    }

    .footer-column p {
      line-height: 1.8;
      font-size: 15px;
    }

    .footer-column ul {
      list-style: none;
      padding: 0;
    }

    .footer-column ul li {
      margin: 10px 0;
      font-size: 15px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .footer-column a {
      color: #ddd;
      text-decoration: none;
      transition: color 0.3s;
    }

    .footer-column a:hover {
      color: #ff9800; /* أخضر واتساب */
    }

    .footer-column i.fab.fa-whatsapp {
      color:#ff9800;
      font-size: 18px;
    }

    .footer-column i.fas.fa-map-marker-alt {
      color: #ff9800;
      font-size: 18px;
    }

    .copyright {
      margin-top: 30px;
      font-size: 14px;
      border-top: 1px solid rgba(255, 255, 255, 0.2);
      padding-top: 15px;
      color: #ccc;
    }

    

/* تأثيرات الحركة */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-content, .stat-card, .chart-card, .section-container {
    animation: fadeIn 0.8s ease-out forwards;
}







/* 📱 ميديا كويريز لتوافق الجوال والتابلت */
@media (max-width: 1200px) {
  .nav-container {
    flex-wrap: wrap;
    gap: 15px;
  }
  .main-menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  .hero-content h1 {
    font-size: 2.8rem;
  }
  .hero-headline {
    font-size: 1.6rem;
  }
}

@media (max-width: 992px) {
  .hero-section {
    padding: 1px 1px;
    min-height: 5vh;
  }
  .logo-container {
    width: 300px;
    height: 300px;
  }
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .hero-description {
    font-size: 1rem;
  }
  .section-container {
    flex-direction: column;
    text-align: center;
  }
  .section-image img {
    max-width: 90%;
    margin: 0 auto;
  }
  .phones-hero {
    height: auto;
    flex-direction: column;
  }
  .phone {
    position: relative;
    transform: none !important;
    left: auto !important;
    margin: 10px auto;
    width: 200px;
    height: 380px;
  }
  .phone.center {
    width: 260px;
    height: 460px;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }
  .hero-headline {
    font-size: 1.4rem;
  }
  .hero-description {
    font-size: 0.95rem;
  }
  .product-card {
    padding: 20px 15px;
  }
  .products-grid {
    gap: 20px;
  }
  .apps-carousel {
    gap: 10px;
  }
  .app-slide {
    flex: 0 0 240px;
  }
  .app-slide img {
    height: 160px;
  }
  .about-section {
    gap: 30px;
    padding: 60px 15px;
  }
  .logo-orbit-container {
    width: 280px;
    height: 280px;
  }
  .main-logo img {
    width: 160px;
    height: 160px;
  }
  .orbit img {
    width: 65px;
    height: 65px;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 1.5rem;
  }
  .hero-headline {
    font-size: 1.2rem;
  }
  .hero-description {
    font-size: 0.85rem;
  }
  .hero-btns {
    flex-direction: column;
    gap: 12px;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-card {
    padding: 20px 15px;
  }
  .app-slide {
    flex: 0 0 200px;
  }
  .phone {
    width: 180px;
    height: 320px;
  }
  .phone.center {
    width: 220px;
    height: 380px;
  }
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}



@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700;900&display=swap');

:root {
    --primary-color: #07324f;
    --secondary-color: #d68522;
    --light-color: #f8f9fa;
    --dark-color: #333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Tajawal', sans-serif;
}
body {
    background: var(--light-color);
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden; /* يمنع الطلوع يمين/يسار بالجوال */
    text-align: center; /* يخلي كل النصوص بالوسط */
}

/* الشريط العلوي */
.top-bar {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.top-links a {
    color: white;
    text-decoration: none;
    margin-right: 20px;
    transition: color 0.3s;
}

.top-links a:hover {
    color: var(--secondary-color);
}

.language-switcher {
    display: flex;
    align-items: center;
}

.language-switcher a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
}

/* شريط التنقل الرئيسي */
.main-nav {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    margin-left: 10px;
}

.logo-text {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.main-menu {
    display: flex;
    list-style: none;
}

.main-menu li {
    margin-left: 25px;
    position: relative;
}

.main-menu a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    padding: 5px 0;
    display: block;
    transition: color 0.3s;
}

.main-menu a:hover {
    color: var(--secondary-color);
}

.main-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    bottom: 0;
    right: 0;
    transition: width 0.3s;
}

.main-menu a:hover::after {
    width: 100%;
    left: 0;
}
.request-btn {
    background-color: var(--secondary-color);
    color:var(--primary-color);
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.request-btn:hover {
    background-color: #c5761e;
    color: white !important; /* هذه السطر يضمن أن لون النص أبيض حتى عند التحويم */
}
.hero-section {
  background: linear-gradient(rgba(7, 50, 79, 0.8), rgba(7, 50, 79, 0.8)),
    url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 1px 1px; /* بدل 80px */
  text-align: center;
  min-height: 5vh;   /* بدل 100dvh */
    display: flex;
  align-items: center;  
  justify-content: center; 
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}


/* الشعار */
.logo-container {
  width: 300px;
  height: 300px;
  margin: 0 auto 25px;
  perspective: 1000px;
}

@media (min-width: 769px) {
  .logo-container {
    width: 300px !important;
    height: 300px !important;
  }
}

@media (max-width: 768px) {
  .logo-container {
    width: 300px !important;
    height: 300px !important;
    margin-bottom: 15px !important;
  }
}

#hero-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-style: preserve-3d;
  animation: spinLogo 10s infinite linear; 
  transition: opacity 1s ease;
  filter: drop-shadow(0 0 15px rgba(255,255,255,0.8)) 
          drop-shadow(0 0 30px rgba(214,133,34,1));
}

@keyframes spinLogo {
  from { transform: rotateY(0deg); }
  to { transform: rotateY(360deg); }
}

/* النصوص */
.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 15px;
  font-weight: 900;
  animation: fadeInUp 1.2s ease forwards;
}

.hero-headline {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 10px;
  line-height: 1.6;
  animation: slideInLeft 1.5s ease forwards;
}

.hero-description {
  font-size: 1.2rem;
  font-weight: 400;
  color: #f1f1f1;
  margin-bottom: 20px;
  line-height: 1.8;
  animation: slideInRight 1.8s ease forwards;
}

/* أنيميشن */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
  0% { opacity: 0; transform: translateX(-50px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  0% { opacity: 0; transform: translateX(50px); }
  100% { opacity: 1; transform: translateX(0); }
}

/* الأزرار */
.hero-btns {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 25px;
}

.primary-btn {
  background-color: var(--secondary-color);
  color: white;
  padding: 12px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s;
}

.primary-btn:hover {
  background-color: #c5761e;
  transform: translateY(-3px) scale(1.05);
}

.secondary-btn {
  background-color: transparent;
  color: white;
  padding: 12px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  border: 2px solid white;
  transition: all 0.3s;
}

.secondary-btn:hover {
  background-color: rgba(255,255,255,0.1);
  transform: translateY(-3px) scale(1.05);
}

/* للشاشات الصغيرة */
@media (max-width: 768px) {
  .hero-content h1 { font-size: 2.2rem; }
  .hero-headline { font-size: 1.5rem; }
  .hero-description { font-size: 1rem; }
}

/* قسم المنتجات */
.products-section {
    padding: 80px 20px;
    background: white;
}

.section-title {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: #fff;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    border: 1px solid #eee;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--secondary-color);
}

.product-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    position: relative;
    transition: all 0.5s;
}

.product-icon img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.5s;
}

.icon-main {
    opacity: 1;
    transform: translateY(0) rotate(0);
}

.icon-hover {
    opacity: 0;
    transform: translateY(20px) rotate(10deg);
}

.product-card:hover .icon-main {
    opacity: 0;
    transform: translateY(-20px) rotate(-10deg);
}

.product-card:hover .icon-hover {
    opacity: 1;
    transform: translateY(0) rotate(0);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.product-name {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.product-desc {
    color: #666;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.product-btn {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.product-btn:hover {
    background-color: #c5761e;
    transform: scale(1.05);
}

/* تأثير دخان/شرارات عند hover */
.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255,200,100,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.product-card:hover::before {
    opacity: 1;
    animation: sparkle 2s linear infinite;
}
/* إضافات جديدة للحركات عند التمرير */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.scroll-animate.animated {
    opacity: 1;
    transform: translateY(0);
}

/* التأخير بين البطاقات */
.products-grid .product-card:nth-child(1) {
    transition-delay: 0.1s;
}
.products-grid .product-card:nth-child(2) {
    transition-delay: 0.3s;
}
.products-grid .product-card:nth-child(3) {
    transition-delay: 0.5s;
}
.products-grid .product-card:nth-child(4) {
    transition-delay: 0.7s;
}

/* بقية الستايل كما هو مع تعديلات بسيطة */
.product-card {
    /* إزالة التحويلات القديمة من هنا */
    background: #fff;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    border: 1px solid #eee;
}

.product-card:hover {
    transform: translateY(-5px) !important; /* مهم للتأكد من تطبيق التأثير */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--secondary-color);
}

@keyframes sparkle {
    0% {
        background: radial-gradient(circle at center, rgba(255,200,100,0.1) 0%, transparent 70%);
    }
    50% {
        background: radial-gradient(circle at center, rgba(255,220,120,0.15) 0%, transparent 70%);
    }
    100% {
        background: radial-gradient(circle at center, rgba(255,200,100,0.1) 0%, transparent 70%);
    }
}
.features-section {
  padding: 60px 20px;
  background: #f9fafa;
  font-family: "Cairo", sans-serif;
  text-align: center;
  
}
.section-title {
  font-size: 24px;
  font-weight: 700;
  color: #07324f;
  margin-bottom: 40px;
}
.section-title3 {
  font-size: 24px;
  font-weight: 700;
  color: #07324f;
  margin-bottom: 40px;
}
.features-container {
  max-width: 1200px;
  margin: auto;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.feature-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;

}
.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}
.feature-icon {
  font-size: 40px;
  color: #07324f;
  margin-bottom: 15px;
}
.feature-box h3 {
  font-size: 18px;
  font-weight: bold;
  color: #07324f;
  margin-bottom: 10px;
}
.feature-box p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}
.about-section {
    background: #fff;
    padding: 100px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    text-align: center;
    font-family: "Tajawal", sans-serif;
}

/* الحاوية الرئيسية للشعارات */
.logo-orbit-container {
    position: relative;
    width: 400px;
    height: 400px;
}

/* الشعار الرئيسي */
.main-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.15); /* تكبير أكثر */
    z-index: 5;
}
.main-logo img {
    width: 250px; /* كان 200 */
    height: 250px; /* كان 200 */
    object-fit: contain;
    background: transparent;
    animation: spin 12s linear infinite;
    filter: drop-shadow(0 0 25px  rgba(255,255,255,0.8)) drop-shadow(0 0 40px #07324f);
}

/* الشعارات الفرعية */
.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: center;
}
.orbit img {
    width: 95px;
    height: 95px;
    object-fit: contain;
    background: transparent;
    filter: drop-shadow(0 0 20px #07324f) drop-shadow(0 0 35px #07324f);
    transform: scale(1.1);
}

/* الدوران التلقائي */
.orbit1 {
    animation: orbit1 6s linear infinite;
}
.orbit2 {
    animation: orbit2 6s linear infinite;
}
.orbit3 {
    animation: orbit3 6s linear infinite;
}

/* مسار الدوران (إبعاد المسافة) */
@keyframes orbit1 {
    0% { transform: rotate(0deg) translateX(200px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(200px) rotate(-360deg); }
}
@keyframes orbit2 {
    0% { transform: rotate(120deg) translateX(200px) rotate(-120deg); }
    100% { transform: rotate(480deg) translateX(200px) rotate(-480deg); }
}
@keyframes orbit3 {
    0% { transform: rotate(240deg) translateX(200px) rotate(-240deg); }
    100% { transform: rotate(600deg) translateX(200px) rotate(-600deg); }
}
.section-title1 {
    width: 100%;
    text-align: center;
    margin-bottom: 20px; /* تقليل المسافة تحت العنوان */
    margin-top: 20px; /* تقليل المسافة فوق العنوان */
}
.section-title1 h2 {
    font-size: 2.2rem; /* تصغير الخط */
    font-weight: bold;
    color: #07324f;
    position: relative;
    display: inline-block;
}
.section-title1 h2::after {
    content: "";
    position: absolute;
    bottom: -6px; /* تقريب الخط للعنوان */
    left: 50%;
    transform: translateX(-50%);
    width: 40px; /* تقليل طول الخط */
    height: 3px; /* تصغير سماكته */
    background-color: #d68522;
    border-radius: 2px;}

/* النص */
.about-text {
    max-width: 500px;
}
.about-text h2 {
     color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 15px;
}
.about-text p {
    color: #555;
    margin-bottom: 20px;
    font-size: 1.1rem;
}
.btn-more {
    display: inline-block;
    background-color: #d68522;
    color: white;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}
.btn-more:hover {
    background-color: #b96d1a;
}

.newlux-section {
  padding: 60px 20px;
  background: #ffffff;
  font-family: "Cairo", sans-serif;
}

.newlux-container {
  max-width: 1200px;
  margin: auto;
}

.newlux-section .grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

/* الغلاف الخارجي للظرف */
.envelope-wrap {
  position: relative;
  width: 250px;
  height: 180px;
  cursor: pointer;
  perspective: 1000px;
  outline: none;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

/* شكل الظرف */
.envelope {
  width: 100%;
  height: 100%;
  position: relative;
  background: linear-gradient(135deg, #07324f, #ffffff);
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.5s ease;
}

/* غطاء الظرف */
.envelope .flap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(135deg, #07324f, #ffffff);
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  transform-origin: top;
  transition: transform 0.6s ease;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* العنوان داخل المثلث */
.title-closed {
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
  pointer-events: none;
}

/* المحتوى المخفي */
.newlux-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
  display: none;
  text-align: center;
  width: 80%;
}

.newlux-content h3 {
  font-size: 20px;
  font-weight: bold;
  color: #07324f;
  margin-bottom: 8px;
}

.newlux-content p {
  font-size: 15px;
  color: #444;
}

/* حركة الفتح */
.envelope.open .flap {
  transform: rotateX(180deg);
}

.envelope.open + .newlux-content {
  display: block;
}



/* قسم خدماتنا */
.services-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.5s ease;
    position: relative;
    overflow: visible;
    z-index: 1;
    border-top: 3px solid var(--secondary-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* دوائر تدور حول الخدمات */
.orbiting-circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 8px;
    pointer-events: none;
}

.circle {
    position: absolute;
    border-radius: 50%;
    border: 2px dashed rgba(214, 133, 34, 0.2);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.circle-1 {
    width: 110%;
    height: 110%;
    animation: orbit 15s linear infinite;
}

.circle-2 {
    width: 120%;
    height: 120%;
    animation: orbit 20s linear infinite reverse;
    border-width: 1.5px;
}

.circle-3 {
    width: 130%;
    height: 130%;
    animation: orbit 25s linear infinite;
    border-width: 1px;
}

@keyframes orbit {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.service-card:hover .circle {
    border-color: rgba(214, 133, 34, 0.5);
}

/* تصميم الأيقونات */
.service-icon {
    width: 80px;
    height: 80px;
    background: white;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 10px var(--light-color);
    border: 2px solid var(--secondary-color);
}

.service-card:hover .service-icon {
    background: var(--secondary-color);
    color: white;
    transform: rotate(15deg) scale(1.1);
    box-shadow: 0 0 0 10px rgba(214, 133, 34, 0.2);
}

.service-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.service-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* تأثيرات الظهور */
.service-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.service-card:nth-child(1) { animation-delay: 0.2s; }
.service-card:nth-child(2) { animation-delay: 0.4s; }
.service-card:nth-child(3) { animation-delay: 0.6s; }
.service-card:nth-child(4) { animation-delay: 0.8s; }

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 768px) {
    

/* قسم خدماتنا */
  .services-section {
      padding: 30px 10px; /* تصغير الحواف */
  }
 .services-grid {
      display: flex;
      flex-direction: column; /* تحت بعض */
      gap: 15px;             /* مسافة أصغر بين الكروت */
      max-width: 100%;
      margin: 0 auto;
  }
  .service-card {
      width: 90%;              /* ما ياخذ الشاشة كاملة */
      margin: 0 auto;          /* يظل في الوسط */
      padding: 15px;           /* تصغير البادينغ */
      border-radius: 6px;      /* زوايا أصغر */
      box-shadow: 0 3px 8px rgba(0,0,0,0.05); /* ظل أخف */
  }


.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* دوائر تدور حول الخدمات */
.orbiting-circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 8px;
    pointer-events: none;
}

.circle {
    position: absolute;
    border-radius: 50%;
    border: 2px dashed rgba(214, 133, 34, 0.2);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.circle-12 {
    width: 110%;
    height: 110%;
    animation: orbit 15s linear infinite;
}

.circle-22 {
    width: 120%;
    height: 120%;
    animation: orbit 20s linear infinite reverse;
    border-width: 1.5px;
}

.circle-32 {
    width: 130%;
    height: 130%;
    animation: orbit 25s linear infinite;
    border-width: 1px;
}

@keyframes orbit {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.service-card:hover .circle {
    border-color: rgba(214, 133, 34, 0.5);
}

  .service-icon {
      width: 60px;
      height: 60px;
      font-size: 1.2rem;
      margin-bottom: 15px;
  }

.service-card:hover .service-icon {
    background: var(--secondary-color);
    color: white;
    transform: rotate(15deg) scale(1.1);
    box-shadow: 0 0 0 10px rgba(214, 133, 34, 0.2);
}
 .service-card h3 {
      font-size: 1rem;
      margin-bottom: 10px;
  }

.service-card p {
      font-size: 0.85rem;
      line-height: 1.4;
  }

/* تأثيرات الظهور */
.service-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.service-card:nth-child(1) { animation-delay: 0.2s; }
.service-card:nth-child(2) { animation-delay: 0.4s; }
.service-card:nth-child(3) { animation-delay: 0.6s; }
.service-card:nth-child(4) { animation-delay: 0.8s; }

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}
}

/* قسم الرسوم البيانية */
.charts-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.charts-container {
    max-width: 1200px;
    margin: 0 auto;
}

.charts-container h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 2rem;
}

.chart-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.chart-card {
    flex: 1;
    min-width: 300px;
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.chart-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.3rem;
}

.chart-placeholder {
    height: 200px;
    background-color: #f5f5f5;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-weight: bold;
}

.chart-data {
    text-align: center;
}

.chart-percentage {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-weight: bold;
}

/* قسم الفاتورة الإلكترونية */
.invoice-section {
    padding: 80px 20px;
    background-color: white;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

.section-text {
    flex: 1;
}

.section-text h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.section-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #555;
}

.section-image {
    flex: 1;
}

.section-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.section-image img:hover {
    transform: scale(1.02);
}
/* قسم التطبيقات */
.apps-section {
  padding: 80px 0;
  background: transparent;
  text-align: center;
}
.section-title {
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: bold;
}
.apps-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.apps-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px;
}
.app-slide {
  flex: 0 0 300px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.app-slide img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.app-slide:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}
.arrow {
  background: #fff;
  border: none;
  padding: 12px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  cursor: pointer;
  font-size: 20px;
  margin: 0 10px;
  transition: background 0.3s;
}
.arrow:hover {
  background: #f0f0f0;
}

/* قسم الهواتف */
.phones-hero {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phones-stage {
  position: relative;
  width: 100%;
  max-width: 1100px;
  height: 420px;
  margin: 0 auto;
}
.phone {
  position: absolute;
  bottom: 20px;
  width: 220px;
  height: 430px;
  border-radius: 28px;
  box-shadow: 0 12px 30px rgba(36,41,61,0.12);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-origin: center bottom;
  transition: transform .35s ease, filter .35s ease;
  border: 6px solid rgba(233,233,239,0.6);
  background: transparent;
}
.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.phone.center {
  width: 320px;
  height: 560px;
  border-radius: 36px;
  z-index: 60;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  border: 8px solid rgba(234,239,244,0.6);
}
.p1 { left: 6%; transform: rotate(-8deg) scale(.92); z-index: 10; }
.p2 { left: 18%; transform: rotate(-4deg) scale(.94); z-index: 20; }
.p3 { left: 32%; transform: rotate(-2deg) scale(.96); z-index: 30; }
.p4 { left: 68%; transform: rotate(2deg) scale(.96); z-index: 30; }
.p5 { left: 82%; transform: rotate(6deg) scale(.94); z-index: 20; }
.p6 { left: 92%; transform: rotate(10deg) scale(.92); z-index: 10; }

.phone:hover {
  transform: translateY(-10px) scale(1.02);
  filter: brightness(1.02);
  z-index: 80;
}
.phone.center:hover {
  transform: translateY(-14px) scale(1.03);
}
@media (max-width: 768px) {
  /* قسم الهواتف */
  .phones-hero {
    position: relative;
    height: 420px !important; /* قللت الارتفاع */
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .phones-stage {
    position: relative;
       max-width: 900px !important;
    height: 320px !important; /* صغرته */
    margin: 0 auto;
  }
  .phone {
    position: absolute;
    bottom: 20px;
      width: 90px !important;   /* تصغير */
    height: 140px !important; /* تصغير */
    border-radius: 20px !important;
    box-shadow: 0 12px 30px rgba(36,41,61,0.12);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-origin: center bottom;
    transition: transform .35s ease, filter .35s ease, width .35s ease, height .35s ease;
    border: 6px solid rgba(233,233,239,0.6);
    background: transparent;
    cursor: pointer; /* يخليها قابلة للضغط */
  }
  .phone img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .phone.center {
    width: 150px;
    height: 320px;
    border-radius: 36px;
    z-index: 60;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    border: 8px solid rgba(234,239,244,0.6);
  }
  .p1 { left: 6%; transform: rotate(-8deg) scale(.92); z-index: 10; }
  .p2 { left: 18%; transform: rotate(-4deg) scale(.94); z-index: 20; }
  .p3 { left: 32%; transform: rotate(-2deg) scale(.96); z-index: 30; }
  .p4 { left: 68%; transform: rotate(2deg) scale(.96); z-index: 30; }
  .p5 { left: 82%; transform: rotate(6deg) scale(.94); z-index: 20; }
  .p6 { left: 92%; transform: rotate(10deg) scale(.92); z-index: 10; }

  .phone:hover {
    transform: translateY(-10px) scale(1.02);
    filter: brightness(1.02);
    z-index: 80;
  }
  .phone.center:hover {
    transform: translateY(-14px) scale(1.03);
  }
}
.testimonials-section {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}

.testimonials-section .section-title {
  font-size: 1.8rem;
  margin-bottom: 50px;
  color: var(--primary-color);
  font-weight: 700;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: #f9f9f9;
  padding: 25px 20px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.testimonial-image {
  width: 90px;
  height: 90px;
  margin: 0 auto 15px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card h3 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.testimonial-card p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.testimonial-card audio {
  width: 100%;
  outline: none;
}
.testimonial-translation {
  display: none; /* مخفي افتراضياً */
  margin-top: 12px;
  font-size: 0.95rem;
  color: #444;
  background: #f1f1f1;
  padding: 10px;
  border-radius: 8px;
  line-height: 1.6;
  text-align: center;
}
.testimonial-translation.active {
  display: block; /* يظهر عند التشغيل */
}
.features-pro-section {
  padding: 80px 20px;
  background:    #fff;

  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.features-pro-section::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(199, 120, 24, 0.2);
  border-radius: 50%;
  animation: floatShape 6s infinite ease-in-out;
}

.features-pro-section::after {
  content: "";
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  background: rgba(199, 120, 24, 0.2);
  border-radius: 50%;
  animation: floatShape 8s infinite ease-in-out reverse;
}

@keyframes floatShape {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}



.features-pro-section .section-subtitle {
  font-size: 1.4rem;
  margin-bottom: 50px;
  color: #07324f;
  font-weight: 400;

}

.features-pro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-pro-card {
  background: linear-gradient(135deg, #07324f, #0a466d);
  border-radius: 15px;
  padding: 30px 20px;
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
}

.feature-pro-card:hover {
  transform: translateY(-10px) scale(1.05);
  background: linear-gradient(135deg, #07324f, #0a466d);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.feature-pro-icon {
  font-size: 45px;
  color: #ffb84d;
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.feature-pro-card h4 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  font-weight: bold;
  color: #fff;
}

.feature-pro-card p {
  font-size: 1rem;
  color: #ddd;
  line-height: 1.6;
}
.features-contact {
  margin-top: 40px;
  text-align: center;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffb84d;/* لون واتساب */
  color: white;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.contact-btn:hover {
  background: #ffb84d;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.contact-btn i {
  font-size: 1.3rem;
}

.faq-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9fa, #e9eff5);
  text-align: center;
}

.faq-section .section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-weight: bold;
  color: var(--primary-color);
}

.faq-chat {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* الرسائل */
.faq-message {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  padding: 15px 20px;
  border-radius: 20px;
  max-width: 75%;
  font-size: 1rem;
  line-height: 1.6;
  animation: fadeInUp 0.6s ease both;
  position: relative;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

/* تأثير تظليل عند المرور */
.faq-message:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transform: scale(1.02);
}

/* أيقونة */
.faq-message .icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-message .icon img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

/* سؤال (يسار) */
.faq-message.user {
  align-self: flex-start;
  background: linear-gradient(135deg, #ffffff, #f1f1f1);
  color: #333;
  border-bottom-left-radius: 5px;
}

/* جواب (يمين) */
.faq-message.bot {
  align-self: flex-end;
  background: linear-gradient(135deg, #07324f, #0a4d74);
  color: #fff;
  border-bottom-right-radius: 5px;
}

/* أنيميشن دخول */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* زر واتساب داخل الرسالة */
.faq-btn.inline {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: white;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.95rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.faq-btn.inline:hover {
  background: #1ebe5c;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
} .stats-section {
            position: relative;
            padding: 80px 20px;
            text-align: center;
            width: 100%;
            max-width: 1200px;
        }

        .stats-title {
            font-size: 2.5rem;
            margin-bottom: 70px;
            font-weight: bold;
            color: #07324f;
            position: relative;
            padding-bottom: 15px;
        }
        
        .stats-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 50%;
            transform: translateX(50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(to right, #ffb84d, #ff7b00);
            border-radius: 2px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 50px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .stat-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: transform 0.3s ease;
        }
        
        .stat-item:hover {
            transform: translateY(-5px);
        }

        .stat-icon {
            font-size: 48px;
            color: #07324f;
            margin-bottom: 20px;
            transition: all 0.3s ease;
            background: linear-gradient(135deg, #ffb84d 0%, #ff7b00 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .stat-item:hover .stat-icon {
            transform: scale(1.2);
        }

        .number-container {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 10px;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            color: #07324f;
            line-height: 1;
        }

        .plus {
            font-size: 2.2rem;
            font-weight: bold;
            color: #ff7b00;
            margin-right: 5px;
            line-height: 1;
        }

        .stat-label {
            color: #07324f;
            font-size: 1.3rem;
            font-weight: 500;
            margin-top: 5px;
        }
        
        .decoration {
            position: absolute;
            z-index: -1;
            opacity: 0.1;
        }
        
        .decoration-1 {
            top: 10%;
            right: 5%;
            font-size: 120px;
            color: #07324f;
        }
        
        .decoration-2 {
            bottom: 15%;
            left: 5%;
            font-size: 100px;
            color: #ff7b00;
        }
        
        /* تأثيرات للخلفية */
        .bg-circle {
            position: absolute;
            border-radius: 50%;
            z-index: -1;
            opacity: 0.15;
        }
        
        .circle-11 {
            width: 300px;
            height: 300px;
            background: #ff7b00;
            top: -100px;
            left: -100px;
        }
        
        .circle-21 {
            width: 200px;
            height: 200px;
            background: #07324f;
            bottom: -50px;
            right: -50px;
        }

        /* أنيميشن النبض للأيقونات */
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }
        
        /* التكيف مع الشاشات الصغيرة */
        @media (max-width: 768px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px 20px;
            }
            
            .stats-title {
                font-size: 2rem;
                margin-bottom: 50px;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
            
            .plus {
                font-size: 1.8rem;
            }
            
            .stat-label {
                font-size: 1.1rem;
            }
        }

.our-systems {
  text-align: center;
  background: transparent;
  padding: 50px 0;
}

.section-title {
  font-size: 28px;
  margin-bottom: 30px;
  position: relative;
}

.swiper {
  width: 90%;
  padding-bottom: 50px;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
transition: transform 0.4s ease, opacity 0.4s ease !important;
  transform: scale(1.2) !important;
  opacity: 0.6 !important;
}

.swiper-slide img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 15px;
  transition: transform 0.5s ease;
}


.swiper-slide-active {
  transform: scale(1.5) !important;
  opacity: 1 !important;
}

.swiper-button-next,
.swiper-button-prev {
  color: #ff9800;
  transition: transform 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  transform: scale(1.2);
}
@media (max-width: 768px) {


.our-systems {
  text-align: center;
  background: transparent;
  padding: 50px 0;
}

.section-title {
  font-size: 28px;
  margin-bottom: 30px;
  position: relative;
}

.swiper {
  width: 90%;
  padding-bottom: 50px;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
transition: transform 0.4s ease, opacity 0.4s ease !important;
  transform: scale(1.2) !important;
  opacity: 0.6 !important;
}

.swiper-slide img {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 15px;
  transition: transform 0.5s ease;
}


.swiper-slide-active {
  transform: scale(1.5) !important;
  opacity: 1 !important;
}

.swiper-button-next,
.swiper-button-prev {
  color: #ff9800;
  transition: transform 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  transform: scale(1.2);
}
}
/* قسم جديدنا */
.new-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
    direction: rtl;
}

.new-section .section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.new-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--secondary-color);
}

.new-section .section-title {
    color: var(--primary-color);
    font-size: 2rem;
    margin: 0;
}

.new-section .app-name {
    font-size: 1.5rem;
    color: var(--secondary-color);
    font-weight: bold;
}

.new-section .app-content {
    display: flex;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.new-section .app-image {
    flex: 0 0 45%;
}

.new-section .app-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.new-section .app-description {
    flex: 1;
    padding: 40px;
}

.new-section .app-description h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 20px;
}

.new-section .app-description p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.new-section .app-features {
    margin-bottom: 30px;
}

.new-section .feature {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #555;
}

.new-section .feature i {
    color: var(--secondary-color);
}

.new-section .app-buttons {
    display: flex;
    gap: 15px;
}

.new-section .app-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.new-section .app-button:first-child {
    background-color: #4285F4;
    color: white;
}

.new-section .app-button:last-child {
    background-color: var(--secondary-color);
    color: white;
}

.new-section .app-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .new-section .app-content {
        flex-direction: column;
    }
    
    .new-section .app-image {
        flex: 0 0 auto;
        height: 250px;
    }
    
    .new-section .app-description {
        padding: 25px;
    }
    
    .new-section .app-buttons {
        flex-direction: column;
    }
    
    .new-section .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

 footer {
      background: #07324f;
      color: #fff;
      padding: 40px 20px;
      text-align: center;
    }

    .footer-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      max-width: 1200px;
      margin: auto;
      gap: 20px;
    }

    .footer-column {
      flex: 1 1 300px;
      min-width: 250px;
      text-align: right;
    }

    .footer-column h3 {
      font-size: 20px;
      margin-bottom: 15px;
      border-bottom: 2px solid #ff9800;
      display: inline-block;
      padding-bottom: 5px;
    }

    .footer-column p {
      line-height: 1.8;
      font-size: 15px;
    }

    .footer-column ul {
      list-style: none;
      padding: 0;
    }

    .footer-column ul li {
      margin: 10px 0;
      font-size: 15px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .footer-column a {
      color: #ddd;
      text-decoration: none;
      transition: color 0.3s;
    }

    .footer-column a:hover {
      color: #ff9800; /* أخضر واتساب */
    }

    .footer-column i.fab.fa-whatsapp {
      color:#ff9800;
      font-size: 18px;
    }

    .footer-column i.fas.fa-map-marker-alt {
      color: #ff9800;
      font-size: 18px;
    }

    .copyright {
      margin-top: 30px;
      font-size: 14px;
      border-top: 1px solid rgba(255, 255, 255, 0.2);
      padding-top: 15px;
      color: #ccc;
    }

    /* استجابة للشاشات الصغيرة */
    @media (max-width: 768px) {
      .footer-container {
        flex-direction: column;
        text-align: center;
      }

      .footer-column {
        text-align: center;
      }

      .footer-column ul li {
        justify-content: center;
      }
    }

/* تأثيرات الحركة */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-content, .stat-card, .chart-card, .section-container {
    animation: fadeIn 0.8s ease-out forwards;
}

/* التكيف مع الأجهزة المحمولة */
@media (max-width: 768px) {
    .section-container {
        flex-direction: column;
    }
    
    .hero-btns {
        flex-direction: column;
        align-items: center;
    }
    
    .main-menu {
        display: none;
    }
    
    .chart-row {
        flex-direction: column;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .top-bar-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .top-links {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
}
/* ===================== */
@media (max-width: 768px) {

  /* الهيدر والشعار */
  .logo img {
    height: 40px !important;
  }
  .logo-text {
    font-size: 1rem !important;
  }

  /* زر المنيو (هامبورجر) */
  .hamburger {
    display: block;
    cursor: pointer;
    font-size: 24px;
    color: var(--primary-color);
  }
  .main-menu {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }
  .main-menu.active {
    display: flex;
  }
  .main-menu li {
    margin: 15px 0;
    text-align: center;
  }

  /* المنتجات */
  .products-grid {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    scroll-snap-type: x mandatory;
    padding-bottom: 15px;
  }
  .product-card {
    min-width: 250px;
    flex: 0 0 auto;
    scroll-snap-align: center;
  }

  /* قسم الخدمات */
  .services-grid {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    scroll-snap-type: x mandatory;
    padding-bottom: 15px;
  }
  .service-card {
    min-width: 250px;
    flex: 0 0 auto;
    scroll-snap-align: center;
  }



  /* الفوتر */
  .footer-container {
    grid-template-columns: 1fr !important;
    text-align: center;
  }
  .footer-column li {
    justify-content: center;
  }
}html, body {
  overflow-x: hidden;  /* يمنع التمرير يمين ويسار */
  width: 100%;       
    /* يثبت العرض */
      position: relative;

}
