/* إعادة تعيين أساسية */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
       background-color: #121212;
    color: #eee; /* لون نص فاتح */
    font-family: sans-serif; /* خط بسيط وسهل القراءة */
    line-height: 1.6;
    direction: ltr; /* للتأكد من الاتجاه الصحيح للعربية */
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    overflow: hidden; /* أو padding مناسب */
}

/* Header & Nav */
.main-header {
    background: #333;
    color: #fff;
    padding: 1rem 0;
    position: sticky; /* لتثبيت الشريط في الأعلى عند التمرير */
    top: 0;
    z-index: 1000;
}

.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.logo a {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
}
.logo img{
    width: 150px ;
    height: 40px;
}
.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 20px; /* سيكون margin-right في الاتجاه LTR */
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #f0ad4e; /* لون مميز للرابط النشط أو عند المرور */
}

.cta-button {
    background: #f0ad4e;
    color: #333;
    border: none;
    padding: 0.7rem 1.2rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.cta-button:hover {
    background: #eea236;
}

.mobile-menu-icon {
    display: none; /* سيظهر فقط في شاشات الجوال */
    cursor: pointer;
}

.mobile-menu-icon span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
}


/* Hero Section */
.hero-section {
    height: 80vh; /* ارتفاع الشاشة المرئي */
    position: relative;
    overflow: hidden; /* لإخفاء أجزاء الصور التي تتحرك خارج الحدود */
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out; /* تأثير التلاشي عند تغيير الصور */
    display: flex; /* لتوسيط المحتوى */
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-slider .slide.active {
    opacity: 1;
    z-index: 1; /* للتأكد أن الشريحة النشطة فوق الأخريات */
    
}

.slide-content {
    color: #fff;
    background: rgba(0, 0, 0, 0.5); /* خلفية شفافة للنص لتحسين القراءة */
    padding: 2rem;
    border-radius: 5px;
    max-width: 70%;
}

.slide-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-primary {
    background-color: #f0ad4e;
    color: #333;
}

.btn-primary:hover {
    background-color: #eea236;
}

.slider-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2; /* فوق الصور */
}

.slider-controls button {
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    margin: 0 5px;
    cursor: pointer;
    border-radius: 3px;
}

@media (max-width: 600px) {
  .slide-content {
    max-width: 90%; /* زيادة عرض الصندوق على الشاشات الصغيرة */
    padding: 1rem; /* تقليل الهوامش الداخلية */
    word-wrap: break-word; /* كسر الكلمات الطويلة تلقائيًا */
    overflow-wrap: break-word; /* دعم أوسع للمتصفحات القديمة */
  }

  .slide-content h1 {
    font-size: 1.5rem; /* تصغير حجم العنوان */
  }

  .slide-content p {
    font-size: 1rem; /* تصغير حجم الفقرة */
  }

  .btn {
    padding: 0.6rem 1rem; /* تصغير أزرار CTA */
    font-size: 1rem;
  }
}

.services-details-section {
  background: linear-gradient(135deg, #1a1a1a 70%, #23243a 100%);
  padding: 4rem 0;
  color: #e0e0e0;
  font-family: 'Segoe UI', 'Roboto', sans-serif;
}

.services-details-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.service-category {
  background-color: #242424e6;
  border-radius: 14px;
  padding: 2rem 1.5rem;
  margin-bottom: 3rem;
  border-left: 4px solid #d4af37;
  box-shadow: 0 4px 24px rgba(0,0,0,0.22);
  transition: box-shadow 0.3s;
}

.service-category:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}

.service-category h3 {
  font-size: 2.2rem;
  color: #d4af37;
  margin-bottom: 0.5rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.category-description {
  font-size: 1.15rem;
  color: #b0b0b0;
  margin-bottom: 2rem;
  max-width: 800px;
}

.service-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.service-detail-item {
  background: #2f2f2fe0;
  padding: 1.5rem 1rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
  border-bottom: 2px solid #d4af37;
}

.service-detail-item:hover {
  transform: translateY(-7px) scale(1.03);
  box-shadow: 0 6px 24px rgba(0,0,0,0.24);
}

.service-detail-item h4 {
  font-size: 1.28rem;
  color: #ffebc1;
  margin-bottom: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.service-detail-item p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #b0b0b0;
}

.service-detail-item.single-item {
  grid-column: 1 / -1;
  text-align: center;
  background: linear-gradient(90deg, #23243a 60%, #2f2f2f 100%);
  border-bottom: none;
}

.service-image {
  display: block;
  margin: 0 auto 1.25rem auto;
  max-width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  border: 2px solid #d4af37;
  background: #222;
}

/* Responsive Design */
@media (max-width: 992px) {
  .services-details-section {
    padding: 2.5rem 0;
  }
  .service-category {
    padding: 1.5rem 0.8rem;
  }
  .service-details-grid {
    gap: 1.2rem;
  }
}

@media (max-width: 768px) {
  .service-details-grid {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }
  .service-image {
    height: 210px;
    max-width: 96%;
  }
  .service-detail-item {
    padding: 1.2rem 0.5rem;
  }
  .service-category h3 {
    font-size: 1.55rem;
  }
  .service-detail-item h4 {
    font-size: 1.1rem;
  }
  .category-description {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .service-category {
    padding: 1rem 0.3rem;
  }
  .service-image {
    height: 150px;
    max-width: 98%;
  }
  .service-detail-item {
    padding: 0.7rem 0.2rem;
  }
}

/* ============================================= */
/* ==      تنسيق قسم تواصل معنا - تصميم داكن     == */
/* ============================================= */

.contact-section {
    padding: 4rem 0;
    background-color: #1a1a1a; /* خلفية داكنة جدًا */
    color: #ffffff; /* اللون الأبيض للنصوص العامة داخل القسم */
}

/* العنوان الرئيسي للقسم */
.contact-section h2 {
    text-align: center;      /* -- الأهم: لوضع العنوان في المنتصف -- */
    color: #d4af37;           /* لون ذهبي للعنوان */
    margin-bottom: 3rem;     /* مسافة أسفل العنوان */
    font-size: 2.5rem;       /* حجم خط كبير وواضح */
    font-weight: bold;
}

/* حاوية المحتوى (لتقسيم المعلومات والفورم) */
.contact-section .container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

/* === عمود معلومات الشركة === */
.company-info {
    flex: 1;
    min-width: 300px;
}

.company-info p {
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #f0f0f0; /* لون أبيض فاتح للنصوص لراحة العين */
}

.company-info strong {
    color: #d4af37; /* اللون الذهبي للنصوص المهمة (مثل Y-tunnus) */
}

.company-info a {
    color: #d4af37; /* اللون الذهبي للروابط */
    text-decoration: none;
    transition: color 0.3s;
}

.company-info a:hover {
    color: #ffffff; /* تغيير لون الرابط عند مرور الماوس */
}

/* تنسيق أيقونات الهاتف والواتساب */
.company-info .icon-phone svg,
.company-info .icon-whatsapp svg {
    fill: #d4af37; /* تلوين أيقونات SVG باللون الذهبي */
    vertical-align: middle;
    margin-right: 8px;
}


/* === عمود نموذج الاتصال === */
.contact-form {
    flex: 1.5;
    min-width: 300px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #d4af37; /* لون ذهبي لعناوين الحقول */
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #d4af37;     /* إطار ذهبي للحقول */
    border-radius: 5px;
    font-size: 1rem;
    background-color: #2c2c2c; /* خلفية داكنة قليلًا للحقول */
    color: #ffffff;             /* نص أبيض للكتابة داخل الحقول */
}

/* لجعل النص المؤقت داخل الحقول يظهر باللون الذهبي */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #d4af37;
    opacity: 0.7;
}

.contact-form button.btn-primary {
    background-color: #d4af37; /* خلفية ذهبية للزر */
    color: #1a1a1a;           /* نص داكن على الزر للتباين */
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.2s;
}

.contact-form button.btn-primary:hover {
    background-color: #b89b3c; /* لون ذهبي أغمق عند مرور الماوس */
    transform: translateY(-2px); /* تأثير بسيط عند المرور */
}



/* Footer */
.main-footer {
    background: #333;
    color: #fff;
    padding: 2rem 0 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap; /* لتناسب الشاشات الصغيرة */
    padding-bottom: 2rem;
    max-width: 1100px;
    margin: auto;
}

.footer-section {
    flex: 1;
    min-width: 250px; /* لضمان عدم ضغط المحتوى كثيرًا */
    margin: 1rem;
    text-align: left; /* أو center حسب التصميم */
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #f0ad4e;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-section ul li a:hover {
    color: #fff;
}

.footer-bottom {
    background: #222;
    padding: 1rem 0;
    font-size: 0.9rem;
}

/* استجابة لشاشات الجوال - مثال بسيط لشريط التنقل */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* إخفاء الروابط الرئيسية */
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 70px; /* أسفل الهيدر */
        left: 0;
        background-color: #333;
        padding: 1rem 0;
    }

    .nav-links.active { /* سيُضاف هذا الكلاس بـ JavaScript */
        display: flex;
    }

    .nav-links li {
        margin: 0;
        text-align: center;
        padding: 0.5rem 0;
    }

    .mobile-menu-icon {
        display: block; /* إظهار أيقونة القائمة */
    }

    .nav-extra .cta-button { /* يمكنك إخفاء الزر أو نقله داخل القائمة المنسدلة */
        display: none;
    }
}


@keyframes kenburns {
  0% {
    transform: scale(1) translate(0, 0);
  }
  100% {
    transform: scale(1.2) translate(-20px, -10px);
  }
}

/* نطبق الأنيميشن فقط على الشريحة النشطة */
.hero-slider .slide.active {
  animation: kenburns 15s ease-in-out forwards;
  /* مدة الأنيميشن 20 ثانية، يمكن تعديلها حسب الرغبة */
}


/* الأنماط الأولية للأحرف */
.animated-heading span,
.animated-text span {
    display: inline-block; /* مهم! */
    opacity: 0; /* مخفي في البداية */
}

/* الأنماط الأولية للكلمات المتحركة */
.slide-content h1 .animated-word, /* استهداف الكلمات داخل h1 */
.slide-content p .animated-word {  /* استهداف الكلمات داخل p */
    display: inline-block; /* للسماح بالتحويلات والحفاظ على التدفق السطري */
    opacity: 0;
    transform: translateY(20px); /* تبدأ الكلمة من الأسفل قليلاً */
    /* لا حاجة للـ animation هنا مباشرة، سيتم إضافته عند التفعيل */
}

/* تأثير الظهور للكلمات عند تفعيل الشريحة */
.slide.active .animated-word {
    opacity: 1;
    transform: translateY(0);
    transition-property: opacity, transform; /* تحديد الخصائص التي سيتم تحريكها */
    transition-duration: 0.6s; /* مدة الأنيميشن للكلمة الواحدة */
    transition-timing-function: ease-out;
    /* تأخير لكل كلمة بناءً على ترتيبها لخلق تأثير الموجة */
    transition-delay: calc(var(--word-index) * 0.1s); /* يمكنك تعديل 0.1s لتغيير سرعة الموجة */
}
.about-section {
  padding: 4rem 0 4.5rem 0;
  background: linear-gradient(120deg, #1a1a1a 75%, #23243a 100%);
  color: #e0e0e0;
  font-family: 'Segoe UI', 'Roboto', sans-serif;
}

.about-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.2rem;
}

.about-content {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr;
  gap: 2.5rem;
  align-items: center;
}

.about-image {
  width: 100%;
  min-height: 380px;
  height: 410px;
  background-image: url('images/about-image.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.32);
  border: 2.5px solid #d4af37;
  transition: transform 0.3s, box-shadow 0.3s;
}
.about-image:hover {
  transform: scale(1.025) rotate(-1deg);
  box-shadow: 0 12px 40px rgba(0,0,0,0.38);
}

.about-text {
  width: 100%;
}

.dark-box {
  background: linear-gradient(100deg, #222 70%, #2f2f2f 100%);
  padding: 2rem 1.5rem;
  border-radius: 14px;
  margin-bottom: 1.7rem;
  box-shadow: 0 4px 18px rgba(0,0,0,0.22);
  border-left: 4px solid #d4af37;
}

.dark-box h3 {
  font-size: 2rem;
  margin-bottom: 0.7rem;
  color: #d4af37;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-shadow: 1px 2px 6px rgba(0,0,0,0.18);
}

.dark-box p {
  font-size: 1.15rem;
  color: #ffebc1;
  line-height: 1.6;
}

.about-desc {
  font-size: 1.13rem;
  color: #b0b0b0;
  margin-bottom: 1.8rem;
  line-height: 1.7;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.about-list li {
  display: flex;
  align-items: center;
  font-size: 1.08rem;
  color: #e0e0e0;
  background: rgba(44,44,44,0.85);
  border-radius: 7px;
  padding: 0.75rem 1.2rem;
  box-shadow: 0 1px 6px rgba(0,0,0,0.09);
  border-left: 3px solid #d4af37;
  transition: background 0.2s;
}
.about-list li:hover {
  background: rgba(212,175,55,0.10);
}
.about-list li span {
  font-weight: bold;
  font-size: 1.2rem;
  color: #d4af37;
  margin-right: 15px;
  letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-image {
    min-height: 270px;
    height: 280px;
    margin-bottom: 1.3rem;
  }
  .dark-box {
    padding: 1.2rem 1rem;
  }
}
@media (max-width: 600px) {
  .about-section {
    padding: 2rem 0 2.5rem 0;
  }
  .about-image {
    min-height: 180px;
    height: 170px;
    border-radius: 10px;
  }
  .dark-box h3 {
    font-size: 1.2rem;
  }
  .dark-box {
    padding: 0.7rem 0.5rem;
    margin-bottom: 1rem;
    border-left-width: 2px;
  }
  .about-desc {
    font-size: 1rem;
  }
  .about-list li {
    font-size: 0.98rem;
    padding: 0.55rem 0.7rem;
    border-left-width: 2px;
  }
  .about-list li span {
    font-size: 1rem;
    margin-right: 8px;
  }
}

/* قسم الميزات - Features Section */
.features-section {
    padding: 4rem 0;
    background-color: #1a1a1a; /* خلفية داكنة متناسقة */
        overflow: hidden; /* منع تجاوز العناصر */

}

.features-section .section-title {
    text-align: center;
    color: #d4af37; /* لون ذهبي للعنوان */
    font-size: 2.2rem;
    margin-bottom: 3rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    
    /* حركة خفيفة للعنوان */
    animation: fadeInTitle 1s ease-out forwards;
    opacity: 0; /* مخفي في البداية */
}


@keyframes fadeInTitle {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* شبكة مرنة */
    gap: 2.5rem; /* مسافة بين العناصر */
        padding: 0 1rem; /* هوامش داخلية */

}

.feature-item {
    background-color: #2a2a2a; /* خلفية أغمق قليلاً للعناصر */
    padding: 2rem 1.5rem;
    border-radius: 10px;
    text-align: center;
    color: #cccccc; /* لون نص فاتح غير أبيض نقي */
    position: relative;
    overflow: hidden; /* لإدارة التوهج بشكل أفضل */
     /* تأثير الإضاءة المحسن */
    box-shadow: 0 0 12px 3px rgba(212, 175, 55, 0.15); /* توهج ذهبي خفيف */
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    box-shadow: 0 0 10px 2px rgba(212, 175, 55, 0.2); /* توهج ذهبي خافت */
}

.feature-item:hover,
.feature-item:focus-within { /* إضافة :focus-within لدعم التنقل بلوحة المفاتيح */
    transform: translateY(-5px); /* رفع بسيط */
    box-shadow: 0 0 20px 5px rgba(212, 175, 55, 0.3); /* توهج ذهبي أكثر وضوحًا */
}


.feature-icon {
    margin-bottom: 1.5rem;
}

.feature-icon svg {
     width: 60px;
    height: 60px;
    fill: #d4af37;
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.4)); /* ظل ذهبي للأيقونة */
    transition: filter 0.3s ease; /* انتقال سلس للظل */
}

/* زيادة وضوح ظل الأيقونة عند التفاعل */
.feature-item:hover .feature-icon svg,
.feature-item:focus-within .feature-icon svg {
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.6));
}
.feature-title {
      color: #d4af37;
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease; /* انتقال سلس للون */
}

.feature-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #b0b0b0; /* لون أفتح قليلاً للوصف لتمييزه عن الخلفية */
        transition: color 0.3s ease; /* انتقال سلس للون */
}

.feature-item:hover .feature-description,
.feature-item:focus-within .feature-description {
    color: #ddd; /* لون أفتح عند التفاعل */
}

/* تحسينات لتأثير ظهور الكلمات */
.feature-item .animated-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(10px); /* بداية من الأسفل */
    transition: transform 0.4s ease-out, opacity 0.4s ease-out; /* تحسين التوقيت */
}

.feature-item:hover .animated-word,
.feature-item:focus-within .animated-word {
    opacity: 1;
    transform: translateY(0);
}

@media (hover: hover) and (pointer: fine) {
  /* تأثيرات للمستخدمين الذين يستخدمون فأرة */
  .feature-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 10px 2px rgba(212, 175, 55, 0.2);
  }
  .feature-item:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px 6px rgba(212, 175, 55, 0.4);
  }
}

@media (hover: none) and (pointer: coarse) {
  /* تأثيرات للمستخدمين على الشاشات التي لا تدعم hover (الموبايل) */
  .feature-item {
    transition: transform 0.2s ease;
    box-shadow: none; /* إزالة الظل لتقليل الحمل */
  }
  .feature-item:active {
    transform: scale(1.05);
    /* يمكن إضافة ظل خفيف جدًا إذا أردت */
    box-shadow: 0 0 10px 3px rgba(212, 175, 55, 0.3);
  }
}

/* ============================================= */
/* ==      تنسيق صفحة تأكيد الإرسال          == */
/* ============================================= */

.confirmation-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh; /* لتأخذ ارتفاع مناسب بين الهيدر والفوتر */
    padding: 4rem 0;
    background-color: #1a1a1a; /* نفس لون خلفية موقعك */
}

.confirmation-box {
    background-color: #2c2c2c; /* لون أغمق قليلاً من الخلفية */
    padding: 40px;
    border-radius: 10px;
    border: 1px solid #d4af37; /* إطار ذهبي */
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
}

.confirmation-box h1 {
    color: #d4af37; /* لون ذهبي للعنوان الرئيسي */
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.confirmation-box p {
    color: #ffffff; /* لون أبيض للنص */
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* تنسيق الزر داخل صندوق التأكيد */
.confirmation-box .btn-primary {
    background-color: #d4af37;
    color: #1a1a1a;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.3s, transform 0.2s;
}

.confirmation-box .btn-primary:hover {
    background-color: #b89b3c;
    transform: translateY(-2px);
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr; /* عمود واحد على الشاشات الصغيرة */
    gap: 1.5rem; /* تقليل المسافة بين العناصر قليلاً */
  }
}

