        @import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
    scroll-behavior: smooth;
}

:root {
    --transition-speed: 0.8s;
        }

body {
    background: #000000;
    overflow-x: hidden;
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -5;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 5px;
    height: 5px;
    background: rgba(255, 215, 0, 0.5);
    border-radius: 50%;
    animation: fall linear infinite;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

@keyframes fall {
    0% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
    50% {
        transform: translateY(50vh) scale(1.5);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) scale(1);
        opacity: 0;
    }
}

.navbar {
    background: rgb(16, 16, 16);
    padding: 1rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(255, 217, 0, 0.499);
}



.navbar.scrolled {
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.98);
}

@media (max-width: 767px) {
            .navbar {
                flex-direction: column;
                padding: 0.5rem 1rem;
            }

            .logo {
                font-size: 1.4rem;
                margin-bottom: 2px;
            }

            .nav-links {
                flex-wrap: wrap;
                gap: 1rem;
                justify-content: center;
            }

            .nav-links a {
                font-size: 0.9rem;
                padding: 0.4rem 0.8rem;
            }

        }

.logo {
    color: #f1cc54;
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.5s ease;
}


.logo:hover {
    transform: scale(1.55);
    text-shadow: 0 0 10px #FFD700;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    position: relative;
}

.logo-wrapper {
    position: relative;
    width: 80px;  /* تم زيادة الحجم */
    height: 80px; /* تم زيادة الحجم */
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.glowing-effect {
    position: absolute;
    inset: -15%;
    background: radial-gradient(
        circle at center,
        rgba(255, 215, 0, 0.8) 0%,
        rgba(255, 215, 0, 0.3) 40%,
        transparent 70%
    );
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s ease;
    z-index: 1;
}

/* تأثيرات الحركة */
@keyframes float {
    0% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-8px) scale(1.08);
    }
    100% {
        transform: translateY(0) scale(1);
    }
}

@keyframes glow-pulse {
    0% {
        opacity: 0.4;
        transform: scale(0.9);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
    100% {
        opacity: 0.4;
        transform: scale(0.9);
    }
}

/* تأثيرات عند مرور المؤشر */
.logo-container:hover .logo-img {
    animation: float 2s ease-in-out infinite;
    filter: drop-shadow(0 8px 16px rgba(255, 215, 0, 0.4));
}

.logo-container:hover .glowing-effect {
    opacity: 1;
    animation: glow-pulse 3s ease-in-out infinite;
}

.logo-container:hover .logo {
    transform: translateY(-4px);
    text-shadow: 
        0 0 15px rgba(255, 215, 0, 0.8),
        0 0 30px rgba(255, 215, 0, 0.4),
        0 0 45px rgba(255, 215, 0, 0.2);
    letter-spacing: 2px;
    transition: all 0.5s ease;
}

/* تحسين للشاشات المتوسطة والصغيرة */
@media (max-width: 991px) {
    .logo-wrapper {
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 767px) {
    .logo-container {
        gap: 0.8rem;
    }
    
    .logo-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .logo {
        font-size: 1.4rem;
    }
}

/* Extremely powerful styling for Store link */
.store-link {
    animation: intense-glow 1.5s infinite;
    font-weight: 800;
    position: relative;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.5rem 1.2rem !important;
    z-index: 2;
}
  
/* Multiple layers of glowing effects */
.store-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 0, 68, 0.15);
    box-shadow: 
        0 0 10px rgba(255, 0, 68, 0.5),
        0 0 20px rgba(255, 0, 68, 0.3),
        0 0 30px rgba(255, 0, 68, 0.2),
        0 0 40px rgba(255, 0, 68, 0.1);
    border-radius: 4px;
    z-index: -1;
    animation: intense-pulse 1.5s infinite;
}
  
/* Powerful text animation with bright glow */
@keyframes intense-glow {
    0% {
        color: #ff1744;
        text-shadow: 
            0 0 5px rgba(255, 23, 68, 0.8),
            0 0 10px rgba(255, 23, 68, 0.5);
    }
    50% {
        color: #ff0052;
        text-shadow: 
            0 0 10px rgba(255, 0, 82, 1),
            0 0 20px rgba(255, 0, 82, 0.8),
            0 0 30px rgba(255, 0, 82, 0.6),
            0 0 40px rgba(255, 0, 82, 0.4);
    }
    100% {
        color: #ff1744;
        text-shadow: 
            0 0 5px rgba(255, 23, 68, 0.8),
            0 0 10px rgba(255, 23, 68, 0.5);
    }
}
  
/* Intense pulsating background glow */
@keyframes intense-pulse {
    0% {
        opacity: 0.7;
        box-shadow: 
            0 0 10px rgba(255, 0, 68, 0.5),
            0 0 20px rgba(255, 0, 68, 0.3);
    }
    50% {
        opacity: 1;
        box-shadow: 
            0 0 15px rgba(255, 0, 68, 0.7),
            0 0 25px rgba(255, 0, 68, 0.5),
            0 0 35px rgba(255, 0, 68, 0.3),
            0 0 45px rgba(255, 0, 68, 0.2);
    }
    100% {
        opacity: 0.7;
        box-shadow: 
            0 0 10px rgba(255, 0, 68, 0.5),
            0 0 20px rgba(255, 0, 68, 0.3);
    }
}
  
/* Powerful underline effect */
.store-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ff0052;
    box-shadow: 
        0 0 5px #ff0052,
        0 0 10px #ff0052,
        0 0 15px #ff0052;
    z-index: 1;
    animation: underline-flare 1.5s infinite;
}
  
@keyframes underline-flare {
    0% {
        opacity: 0.8;
        box-shadow: 
            0 0 5px #ff0052,
            0 0 10px #ff0052;
    }
    50% {
        opacity: 1;
        box-shadow: 
            0 0 10px #ff0052,
            0 0 20px #ff0052,
            0 0 30px #ff0052;
        height: 4px;
    }
    100% {
        opacity: 0.8;
        box-shadow: 
            0 0 5px #ff0052,
            0 0 10px #ff0052;
    }
}
  
/* Add an outer glow effect */
.store-link {
    filter: drop-shadow(0 0 8px rgba(255, 0, 82, 0.5));
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #FFD700;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #FFD700;
}

.nav-links a:hover::after {
    width: 100%;
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 5px;
    width: 0;
    background: #FFD700;
    z-index: 1100;
    transition: width 0.2s ease;
}

.notification {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    padding: 15px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 2000;
}

.notification.show {
    opacity: 1;
    visibility: visible;
    top: 30px;
}

.service-icon i {
    font-size: 48px;
    color: #FF1493;
}

/* تنسيق زر العودة إلى الأعلى */
.back-to-top-btn {
    position: fixed;
    bottom: 15px;
    right: 25px;
    width: 50px;
    height: 50px;
    background-color: #e9d521;
    color: #000000;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }
  
  .back-to-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .back-to-top-btn:hover {
    background-color: #333;
    transform: translateY(-5px);
  }

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #F0E68C;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(transparent, #000000);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: slideIn 1s ease-out;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    color: #FFD700;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 0.5s;
}

.cta-btn {
    background: transparent;
    color: #FFD700;
    padding: 0.5rem 1.5rem;
    border: 2px solid #FFD700;
    border-radius: 5px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-decoration: none;  /* إضافة هذا السطر لإزالة الخط */
    display: inline-block;  /* لضمان عمل الpadding بشكل صحيح */
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 215, 0, 0.2);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    transition: width 0.5s ease, height 0.5s ease;
    z-index: -1;
}

.cta-btn:hover::before {
    width: 60px;
    height: 52px;
}

.cta-btn:hover {
    color: #000000;
    background: #FFD700;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Container styles with improved grid system */
.services {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.section-title {
  text-align: center;
  color: #FFD700;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #FFD700;
  border-radius: 2px;
}

.service-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  padding: 1rem;
}

.service-box {
  background: linear-gradient(145deg, #252525, #2b2b2b);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 215, 0, 0.1),
    transparent
  );
  transition: 0.5s;
}

.service-box:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.service-box:hover::before {
  left: 100%;
}

.service-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
  position: relative;
}

.service-icon img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  filter: drop-shadow(0 4px 6px rgba(255, 215, 0, 0.2));
  transition: transform 0.3s ease;
}

.service-box:hover .service-icon img {
  transform: scale(1.2);
}

.service-box h3 {
  color: #FFD700;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  text-align: center;
  position: relative;
  padding-bottom: 0.8rem;
}

.service-box h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: #FFD700;
  border-radius: 2px;
}

.service-box p {
  color: #ccd6f6;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-align: center;
}

.see-more {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: linear-gradient(45deg, #FFD700, #FFA500);
  color: #000;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  text-align: center;
  margin-top: 8rem;
  width: 100%;
}

.see-more:hover {
  transform: translateY(-20px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* كل الكود السابق يظل كما هو، فقط نعدل الـ media query */

@media (max-width: 768px) {
  .service-boxes {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  
  .service-box {
    padding: 1.5rem 1.2rem;  /* تقليل الـ padding */
  }
  
  .section-title {
    font-size: 2rem;
  }

  /* إضافات جديدة لتقليل حجم المحتوى في الموبايل */
  .service-icon img {
    width: 70px;    /* تصغير الأيقونة */
    height: 70px;
  }

  .service-box h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    padding-bottom: 0.6rem;
  }

  .service-box p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
  }

  .see-more {
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
  }

  /* تقليل المسافات بين العناصر */
  .service-icon {
    margin-bottom: 1rem;
  }
}

a.button {
  display: inline-block; /* Makes the link behave like a block element */
  padding: 10px 20px;
  text-transform: uppercase;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 500;
  color: #000;
  text-shadow: none;
  background: transparent;
  cursor: pointer;
  box-shadow: transparent;
  border: 1px solid #000;
  transition: 0.5s ease;
  user-select: none;
  text-decoration: none; /* Removes the default underline from links */
}

a.button:hover,
a.button:focus {
  color: #ffffff;
  background: #FFD700;
  border: 1px solid #FFD700;
  text-shadow: 0 0 5px #ffffff, 0 0 10px #ffffff, 0 0 20px #ffffff;
  box-shadow: 0 0 5px #FFD700, 0 0 20px #FFD700, 0 0 50px #FFD700,
    0 0 100px #FFD700;
}

.services {
    padding: 5rem 2rem;
    background: #1a1a1a;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    color: #F0E68C;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #FFD700, #000000);
    opacity: 0;
    transition: 0.4s;
    z-index: 1;
}

.service-card:hover::before {
    opacity: 0.1;
}

.service-card .service-details {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.service-card:hover .service-details {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
    transition: 0.4s;
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(10deg);
}

.service-icon i {
    font-size: 3rem;
    color: #FFD700;
    transition: 0.4s;
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
    color: #fff;
}

.service-card h3 {
    color: #FFD700;
    margin: 1rem 0;
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
}

.service-card p {
    color: #F0E68C;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

.section-title {
    color: #FFD700;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #FFD700;
    animation: expandWidth 2s ease-in-out infinite;
}

/* Footer Styles */
.footer {
    background: #222222;
    color: #ccd6f6;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    color: #FFD700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #FFD700;
    animation: expand 2s ease-out infinite;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: #ccd6f6;
    text-decoration: none;
    padding: 0.8rem;
    border: 1px solid #FFD700;
    border-radius: 50%;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    background: #FFD700;
    color: #0a192f;
    transform: translateY(-5px) rotate(360deg);
}

.footer-bottom {
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    margin-top: 2rem;
}

/* Additional Animations */
@keyframes glow {
    from {
        text-shadow: 0 0 5px #64ffda, 0 0 10px #64ffda;
    }
    to {
        text-shadow: 0 0 15px #64ffda, 0 0 20px #64ffda;
    }
}

@keyframes expand {
    0% { width: 0; }
    50% { width: 100px; }
    100% { width: 0; }
}

/* Animations and media queries remain the same */
/* Rest of the previous CSS remains unchanged */

        /* الرسوم المتحركة */
        @keyframes glow {
            from {
                text-shadow: 0 0 5px #64ffda, 0 0 10px #64ffda;
            }
            to {
                text-shadow: 0 0 15px #64ffda, 0 0 20px #64ffda;
            }
        }

        @keyframes slideIn {
            from {
                transform: translateY(-100px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes fadeInUp {
            from {
                transform: translateY(50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        @keyframes expandWidth {
            0% { width: 0; }
            50% { width: 100px; }
            100% { width: 0; }
        }

        @keyframes float {
            0% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0); }
        }

        /* تحسينات إضافية للتجاوب */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .nav-links {
                gap: 1rem;
            }
        }

        .floating-section {
            width: 100%;
            max-width: 800px;
            padding: 20px;
            margin: 0 auto; /* تمركز إضافي */
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
            100% {
                transform: translateY(0px);
            }
        }

        .offer-banner {
            background: linear-gradient(45deg, #1e1e1e, #1e1e1e);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .offer-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, #d0ff0120, transparent);
            animation: shine 3s infinite linear;
        }

        @keyframes shine {
            0% {
                transform: translateX(-100%) rotate(45deg);
            }
            100% {
                transform: translateX(100%) rotate(45deg);
            }
        }

        h3 {
            font-size: 2rem;
            margin-bottom: 2rem;
            color: #FFD700;
            text-shadow: 0 0 10px rgba(100, 255, 218, 0.3);
        }

        h4 {
            font-size: 1rem;
            margin-bottom: 0rem;
            color: #ffcc00;
            text-shadow: 0 0 10px rgba(100, 255, 218, 0.3);
        }
        

        .countdown {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin: 2rem 0;
            flex-wrap: wrap;
        }

        .countdown-item {
            background: #131313;
            padding: 1.5rem;
            border-radius: 15px;
            min-width: 120px;
            position: relative;
            backdrop-filter: blur(5px);
            border: 1px solid #FFD700;
            transition: transform 0.3s ease;
        }

        .countdown-item:hover {
            transform: translateY(-5px);
        }

        .count {
            font-size: 2.5rem;
            font-weight: bold;
            color: #e7c404;
            display: block;
            margin-bottom: 0.5rem;
            text-shadow: 0 0 10px rgba(100, 255, 218, 0.5);
            transition: all 0.3s ease;
        }

        .label {
            font-size: 1rem;
            color: #8892b0;
            display: block;
        }

        .cta-button {
            background: #64ffda;
            color: #0a192f;
            border: none;
            padding: 1rem 2.5rem;
            font-size: 1.2rem;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
            margin-top: 1rem;
            position: relative;
            overflow: hidden;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(100, 255, 218, 0.4);
        }

        .flip {
            animation: flipNumber 0.6s ease-in-out;
        }

            /* styles.css */
#whatsapp-container {
    position: fixed;
    bottom: 15px;
    left: 15px;
    z-index: 1000;
    opacity: 0;
    transform: translateX(-100%);
    transition: all 0.5s ease-in-out;
}

#whatsapp-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(212, 206, 21, 0.433);
    text-decoration: none;
    transition: background-color 0.5s ease;
    transition: color 0.5 ease;
}

#whatsapp-icon:hover {
    background-color: #000000;
    color: #FFD700;
}

/* تنسيق متجاوب للشاشات المختلفة */
@media screen and (max-width: 768px) {
    #whatsapp-container {
        bottom: 15px;
        left: 10px;
    }

    #whatsapp-icon {
        width: 50px;
        height: 50px;
        font-size: 28px;
    }
}

@media screen and (max-width: 480px) {
    #whatsapp-container {
        bottom: 15px;
        left: 15px;
    }

    #whatsapp-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

/* للشاشات الصغيرة جدًا */
@media screen and (max-width: 320px) {
    #whatsapp-container {
        bottom: 10px;
        left: 10px;
    }

    #whatsapp-icon {
        width: 35px;
        height: 35px;
        font-size: 21px;
    }
}

/* استخدام flexbox للتوسيط */
#whatsapp-icon {
    font-size: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-container {
      position: relative;
      height: 500px;
      min-height: 250px;
      overflow: hidden;
      border-radius: 15px;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
      background: #000;
      perspective: 1000px;
      width: 50%;
      right: 25%;
    }

    .slider-track {
      position: relative;
      height: 100%;
      width: 100%;
      transform-style: preserve-3d;
    }

    .slide-wrapper {
      position: absolute;
      width: 100%;
      height: 100%;
      overflow: hidden;
    }

    .slider-image {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      transform: scale(1.4) translateZ(-100px);
      filter: brightness(0.7) blur(5px);
      transition: all 1.5s cubic-bezier(0.7, 0, 0.3, 1);
    }

    .slider-image.active {
      opacity: 1;
      transform: scale(1) translateZ(0);
      filter: brightness(1) blur(0);
    }

    .slider-image.previous {
      opacity: 0;
      transform: scale(0.8) translateZ(100px) rotateX(10deg);
    }

    .slide-content {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2;
      opacity: 0;
      transform: translateY(50px);
      transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .active .slide-content {
      opacity: 1;
      transform: translateY(0);
    }

    .progress-container {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: rgba(255, 255, 255, 0.1);
      z-index: 10;
      overflow: hidden;
    }

    .progress-bar {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 0%;
      background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.614) 0%,
        rgba(255, 255, 255, 0.678) 50%,
        rgba(255,255,255,0.3) 100%);
      transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .slide-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(
        45deg,
        rgba(0,0,0,0.4) 0%,
        rgba(0,0,0,0) 50%,
        rgba(0,0,0,0.4) 100%
      );
      z-index: 1;
      opacity: 0;
      transition: opacity 1s ease;
    }

    .active .slide-overlay {
      opacity: 1;
    }

    @keyframes glowingProgress {
      0% { box-shadow: 0 0 5px #fff; }
      50% { box-shadow: 0 0 20px #fff; }
      100% { box-shadow: 0 0 5px #fff; }
    }


    @media screen and (max-width: 768px) {
      .slider-container {
        height: 28vh;
        min-height: 200px;
        width: 80%;
        right: 10%;
      }
    }

    /* للشاشات الصغيرة جداً */
    @media screen and (max-width: 480px) {
      .slider-container {
        height: 30vh;
        min-height: 150px;
        width: 90%;
        right: 6%;
      }
    }
.featured-image-container {
            max-width: 525px;
            margin: 0 auto;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(155, 131, 11, 0.3);
        }
        .featured-image {
            width: 100%;
            transition: transform 0.1s ease-in-out;
        }
        .featured-image-container:hover .featured-image {
            transform: scale(1.05);
        }
        
/* الصندوق الرئيسي */
.neon-card {
    background: linear-gradient(145deg, #000000, #cfb805a1);
    color: #f6ff00;
    width: 400px;
    padding: 2.5rem;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.7s ease-in-out;
    transform-style: preserve-3d;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    border: 2px solid #ffee00;
    right: 36%;
    animation: cardPulse 3s infinite alternate;
}

/* الخلفية المتحركة */
.neon-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(3, 22, 22, 0.2), transparent);
    transform: rotate(-45deg);
    transition: all 0.7s ease;
    z-index: 1;
}

/* محتوى الكارد - دائمًا ظاهر */
.card-content {
    position: relative;
    z-index: 2;
    text-align: center;
    opacity: 1;
    transform: translateY(0);
}

.card-content h2 {
    margin: 0 0 1rem 0;
    font-size: 2rem;
    color: #fff;
    position: relative;
    display: inline-block;
}

.card-contentt {
    margin: 0 0 1rem 0;
    font-size: 1.2rem;
    color: #000000;
    position: relative;
    display: inline-block;
}

.card-content h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #e1ff00;
}

/* الوظيفة - دائمًا ظاهرة */
.profession {
    font-size: 1.2rem;
    color: #030303;
    margin-bottom: 1.5rem;
    opacity: 1;
    font: bold;
    transform: translateY(0);
}

/* معلومات التواصل - دائمًا ظاهرة */
.contact-info {
    display: grid;
    gap: 0.5rem;
    opacity: 1;
    transform: translateY(0);
}

.contact-item {
    background: rgba(0,255,255,0.1);
    padding: 0.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s ease;
}

.contact-item:hover {
    background: rgba(246, 255, 0, 0.2);
}

.contact-icon {
    width: 20px;
    height: 20px;
    fill: #000000;
}

/* الرسوم المتحركة التلقائية */
@keyframes cardPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    }
    50% {
        transform: scale(1.18);
        box-shadow: 0 20px 40px rgba(255, 251, 0, 0.2);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    }
}

/* استجابة للشاشات الصغيرة */
@media screen and (max-width: 768px) {
    .neon-card {
        right: 0%;
        width: 350px;
    }
}


/* ستايل القائمة الجانبية الرئيسية */
.side-menu-container {
    position: fixed;
    bottom: 8px;
    right: -350px;
    width: 350px;
    max-width: 90%;
    background: linear-gradient(145deg, #000000, #cfb805a1);
    border-radius: 25px 0 0 25px;
    box-shadow: -10px 10px 30px rgba(181, 181, 6, 0.3);
    padding: 40px 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    transition: right 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    opacity: 1;
    visibility: visible;
    height: auto;
}

.side-menu-container.show {
    right: 0;
}

/* ستايل زر التبديل */
.side-menu-toggle {
    position: absolute;
    bottom: 5px;
    left: -70px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #000000, #8d8d03);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: -8px 8px 25px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    transition: all 0.5s ease;
}

.side-menu-toggle:hover{
    transform: scale(1.35);
}

/* ستايل الأيقونة داخل زر التبديل */
.side-menu-toggle svg {
    width: 40px;
    height: 40px;
    fill: var(--accent-color);
}

.animated-button {
  position: relative;
  display: inline-flex; /* Changed to inline-flex for link */
  align-items: center;
  gap: 4px;
  padding: 16px 36px;
  border: 4px solid;
  border-color: transparent;
  font-size: 16px;
  background-color: inherit;
  border-radius: 100px;
  font-weight: 600;
  color: #D4AF37;
  box-shadow: 0 0 0 2px #D4AF37;
  cursor: pointer;
  overflow: hidden;
  right: 2%;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  text-decoration: none; /* Added for link */
  text-align: center; /* Added for link */
}

.animated-button svg {
  position: absolute;
  width: 24px;
  fill: #D4AF37;
  z-index: 9;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .arr-1 {
  right: 16px;
}

.animated-button .arr-2 {
  left: -25%;
}

.animated-button .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-color: #D4AF37;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .text {
  position: relative;
  z-index: 1;
  transform: translateX(-12px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button:hover {
  box-shadow: 0 0 0 12px transparent;
  color: #212121;
  border-radius: 12px;
  text-decoration: none; /* Added to prevent underline on hover */
}

.animated-button:hover .arr-1 {
  right: -25%;
}

.animated-button:hover .arr-2 {
  left: 16px;
}

.animated-button:hover .text {
  transform: translateX(12px);
}

.animated-button:hover svg {
  fill: #212121;
}

.animated-button:active {
  scale: 0.95;
  box-shadow: 0 0 0 4px #D4AF37;
}

.animated-button:hover .circle {
  width: 220px;
  height: 220px;
  opacity: 1;
}

/* استجابة للشاشات المتوسطة */
@media screen and (max-width: 768px) {
    .side-menu-container {
        width: 300px;
        right: -300px;
        padding: 30px 20px;
    }

    .side-menu-toggle {
        left: -60px;
        width: 50px;
        height: 50px;
    }

    .side-menu-toggle svg {
        width: 30px;
        height: 30px;
    }

    .english-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* استجابة للشاشات الصغيرة */
@media screen and (max-width: 480px) {
    .side-menu-container {
        width: 250px; /* تصغير العرض للهاتف */
        right: -250px; /* تعديل موضع الإخفاء */
        padding: 20px 15px; /* تقليل البطانة */
    }

    .side-menu-toggle {
        left: -50px; /* تعديل موضع زر التبديل */
        width: 40px;
        height: 40px;
    }

    .english-btn {
        padding: 8px 15px;
        font-size: 12px;
        margin-top: 20px;
    }
}

        .mission-container {
            display: flex;
            align-items: center;
            gap: 6rem;
            margin-bottom: 10rem;
            position: relative;
        }

        .mission-container.reversed {
            flex-direction: row-reverse;
        }

        .mission-image {
            flex: 1;
            position: relative;
            animation: float 8s ease-in-out infinite;
        }

        .mission-image::before {
            content: '';
            position: absolute;
            inset: -15px;
            border: 2px solid #ebd725;
            border-radius: 20px;
            opacity: 0;
            animation: borderReveal 1.5s ease forwards 0.5s;
        }

        .mission-image img {
            width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
            transform: translateY(50px);
            animation: imageReveal 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
            object-fit: cover;
        }

        .mission-content {
            flex: 1;
            opacity: 0;
            transform: translateX(50px);
            animation: contentSlide 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.5s;
        }

        .reversed .mission-content {
            transform: translateX(-50px);
        }

        .mission-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 2rem;
            color: #FFD700;
            line-height: 1.2;
            opacity: 0;
            animation: titleReveal 1s ease forwards 0.6s;
            position: relative;
            right: 7%;
        }

        .mission-text {
            font-size: 1.2rem;
            line-height: 1.8;
            color: #a4a8ae;
            margin-bottom: 3rem;
            opacity: 0;
            right: 3%;
            animation: textReveal 1s ease forwards 0.9s;
            position: relative;
        }

        .contact-btn {
            position: relative;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 1.2rem 3rem;
            background: linear-gradient(250deg, #000000, #cfb805a1);
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.4s ease;
            opacity: 0;
            animation: buttonReveal 1s ease forwards 1.2s;
        }

        .contact-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(255, 255, 255, 0.3),
                transparent
            );
            transition: 0.5s;
        }

        .contact-btn span {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .contact-btn .icon {
            width: 20px;
            height: 20px;
            transition: 0.3s ease;
        }

        .contact-btn:hover {
            transform: translateY(-5px);
            box-shadow: 
                0 20px 40px -15px rgba(193, 218, 7, 0.3),
                0 0 20px rgba(153, 209, 12, 0.2);
            letter-spacing: 1px;
        }

        .contact-btn:hover::before {
            left: 100%;
        }

        .contact-btn:hover .icon {
            transform: translateX(4px);
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }
 
        .card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 420px;
  padding: 54px;
  border-radius: 24px;
  overflow: hidden;
  line-height: 1.6;
  border: 1px solid #999999;
  right: 35.8%;
  transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

@media screen and (max-width: 768px) {
    .card {
        width: 90%;
        padding: 40px;
        right: 0 !important;
        margin: 0 auto;
    }
}

.content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  color: #ffffff;
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
  width: 100%;
  position: relative;
  z-index: 2;
}

.content .heading {
  font-weight: 700;
  font-size: 36px;
  line-height: 1.3;
  z-index: 1;
  color: #ffffff;
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
  margin: 0;
}

.contact-infoo {
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 1;
  color: #ffffff;
  font-size: 18px;
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 16px;
}

.contact-infoo:last-child {
  margin-bottom: 0;
}

.contact-infoo i {
  font-size: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #ffffff;
}

.contact-box {
  width: 100%;
}

.card::before {
  content: "";
  position: absolute;
  right: -5.2rem;
  top: -5.2rem;
  width: 10.4rem;
  height: 10.4rem;
  background: #fed8014d;
  z-index: 0;
  opacity: 0;
  border-radius: 50%;
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.card::after {
  content: "";
  position: absolute;
  left: -5.2rem;
  bottom: -5.2rem;
  width: 10.4rem;
  height: 10.4rem;
  background: #ffd9004c;
  z-index: 0;
  opacity: 0;
  border-radius: 50%;
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.card:hover::before {
  scale: 7;
  opacity: 1;
}

.card:hover::after {
  scale: 7;
  opacity: 1;
}

.card:hover {
  box-shadow: 0rem 6px 13px rgba(0, 0, 0, 0.1),
    0rem 24px 24px rgba(0, 0, 0, 0.09), 0rem 55px 33px rgba(0, 0, 0, 0.05),
    0rem 97px 39px rgba(0, 0, 0, 0.01), 0rem 152px 43px rgba(0, 0, 0, 0);
  border-color: #ffd90044;
  scale: 1.2;
}


a.star-button {
  position: relative;
  padding: 12px 35px;
  background: #FFD700; /* لون ذهبي */
  font-size: 17px;
  font-weight: 500;
  color: #000000;
  border: 3px solid #FFD700;
  border-radius: 8px;
  box-shadow: 0 0 0 #FFD70080;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.star-1 {
  position: absolute;
  top: 20%;
  left: 20%;
  width: 25px;
  height: auto;
  filter: drop-shadow(0 0 0 #FFD700);
  z-index: -5;
  transition: all 1s cubic-bezier(0.05, 0.83, 0.43, 0.96);
}

.star-2 {
  position: absolute;
  top: 45%;
  left: 45%;
  width: 15px;
  height: auto;
  filter: drop-shadow(0 0 0 #FFD700);
  z-index: -5;
  transition: all 1s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-3 {
  position: absolute;
  top: 40%;
  left: 40%;
  width: 5px;
  height: auto;
  filter: drop-shadow(0 0 0 #FFD700);
  z-index: -5;
  transition: all 1s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-4 {
  position: absolute;
  top: 20%;
  left: 40%;
  width: 8px;
  height: auto;
  filter: drop-shadow(0 0 0 #FFD700);
  z-index: -5;
  transition: all 0.8s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-5 {
  position: absolute;
  top: 25%;
  left: 45%;
  width: 15px;
  height: auto;
  filter: drop-shadow(0 0 0 #FFD700);
  z-index: -5;
  transition: all 0.6s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-6 {
  position: absolute;
  top: 5%;
  left: 50%;
  width: 5px;
  height: auto;
  filter: drop-shadow(0 0 0 #FFD700);
  z-index: -5;
  transition: all 0.8s ease;
}

a.star-button:hover {
  background: transparent;
  color: #FFD700;
  box-shadow: 0 0 25px #FFD70080;
}

a.star-button:hover .star-1 {
  position: absolute;
  top: -80%;
  left: -30%;
  width: 25px;
  height: auto;
  filter: drop-shadow(0 0 10px #FFD700);
  z-index: 2;
}

a.star-button:hover .star-2 {
  position: absolute;
  top: -25%;
  left: 10%;
  width: 15px;
  height: auto;
  filter: drop-shadow(0 0 10px #FFD700);
  z-index: 2;
}

a.star-button:hover .star-3 {
  position: absolute;
  top: 55%;
  left: 25%;
  width: 5px;
  height: auto;
  filter: drop-shadow(0 0 10px #FFD700);
  z-index: 2;
}

a.star-button:hover .star-4 {
  position: absolute;
  top: 30%;
  left: 80%;
  width: 8px;
  height: auto;
  filter: drop-shadow(0 0 10px #FFD700);
  z-index: 2;
}

a.star-button:hover .star-5 {
  position: absolute;
  top: 25%;
  left: 115%;
  width: 15px;
  height: auto;
  filter: drop-shadow(0 0 10px #FFD700);
  z-index: 2;
}

a.star-button:hover .star-6 {
  position: absolute;
  top: 5%;
  left: 60%;
  width: 5px;
  height: auto;
  filter: drop-shadow(0 0 10px #FFD700);
  z-index: 2;
}

.fil0 {
  fill: #FFD700;
}


        @keyframes imageReveal {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes borderReveal {
            to {
                opacity: 0.5;
            }
        }

        @keyframes contentSlide {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes tagReveal {
            to {
                opacity: 1;
            }
        }

        @keyframes titleReveal {
            to {
                opacity: 1;
            }
        }

        @keyframes textReveal {
            to {
                opacity: 1;
            }
        }

        @keyframes buttonReveal {
            to {
                opacity: 1;
            }
        }

        @media (max-width: 768px) {
            .mission-container,
            .mission-container.reversed {
                flex-direction: column;
                gap: 4rem;
                text-align: center;
                margin-bottom: 6rem;
            }

            .mission-content {
                order: 1;
            }

            .mission-image {
                order: 2;
                width: 100%;
            }

            .mission-title {
                font-size: 2.5rem;
            right: 2%;
            }

            .contact-btn {
                width: 50%;
                justify-content: center;
            }
            .mission-text {
                right: -0.5%;
        }
        .mission-image{
            width: 82%;
        }
    }
        @keyframes flipNumber {
            0% {
                transform: rotateX(0deg);
                opacity: 1;
            }
            50% {
                transform: rotateX(90deg);
                opacity: 0.5;
            }
            100% {
                transform: rotateX(0deg);
                opacity: 1;
            }
        }

        @media (max-width: 600px) {
            .countdown {
                gap: 1rem;
            }
            
            .countdown-item {
                min-width: 90px;
                padding: 1rem;
            }
            
            .count {
                font-size: 2rem;
            }
            
            h3 {
                font-size: 1.5rem;
            }
        }
        /* إصلاح مشكلة التمرير الأفقي */
html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* للديسكتوب - إخفاء جميع عناصر BR */
@media screen and (min-width: 769px) {
    br {
        display: none;
    }
}

/* للهاتف والتابلت - إظهار عناصر BR */
@media screen and (max-width: 768px) {
    br {
        display: block;
        line-height: 1;
    }
}

/* بديل آخر: يمكنك إضافة class محدد للعناصر BR التي تريد التحكم فيها */
.mobile-break {
    display: none;
}

@media screen and (max-width: 768px) {
    .mobile-break {
        display: block;
        line-height: 1;
    }
}

/* إذا كنت تريد التحكم في المسافات بشكل أفضل */
.mobile-spacing {
    display: none;
}

@media screen and (max-width: 768px) {
    .mobile-spacing {
        display: block;
        height: 20px; /* يمكنك تغيير الارتفاع حسب الحاجة */
    }
}


/* للعناصر BR الخاصة بالهاتف فقط */
.mobile-break {
    display: none;
}

@media screen and (max-width: 768px) {
    .mobile-break {
        display: block;
        line-height: 1;
    }
}

/* للعناصر BR الخاصة بالديسكتوب فقط */
.desktop-break {
    display: block;
    line-height: 1;
}

@media screen and (max-width: 768px) {
    .desktop-break {
        display: none;
    }
}

/* إذا كنت تريد التحكم في المسافات بشكل أفضل */
.mobile-spacing {
    display: none;
}

@media screen and (max-width: 768px) {
    .mobile-spacing {
        display: block;
        height: 20px; /* يمكنك تغيير الارتفاع حسب الحاجة */
    }
}

/* Carousel Container */
.pricing-carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid #FFD700;
}

/* Main Image Display */
.main-image-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 500px;
    margin: 0 auto 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    background: #2a2a2a;
}

.pricing-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    background: #2a2a2a;
}

.pricing-image.active {
    opacity: 1;
    z-index: 2;
}

/* Image Counter */
.image-counter {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: #FFD700;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    z-index: 10;
}

/* Navigation Arrows - Now Outside the Image Container */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 215, 0, 0.9);
    color: #0b0b0b;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-arrow:hover {
    background: #FFD700;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

.nav-arrow.prev {
    left: -70px; /* Moved outside the container */
}

.nav-arrow.next {
    right: -70px; /* Moved outside the container */
}

/* Thumbnails Container */
.thumbnails-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.thumbnail {
    width: 60px;
    height: 45px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    overflow: hidden;
    position: relative;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.thumbnail:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.thumbnail.active {
    border-color: #FFD700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.thumbnail.active img {
    transform: scale(1.1);
}

/* Progress Bar */
.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 2px;
    margin-top: 1.5rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    border-radius: 2px;
    transition: width 0.3s ease;
}

/* Auto-play Controls */
.controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.play-pause-btn {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #0b0b0b;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-pause-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

@media screen and (max-width: 420px) {
    /* كاروسيل الأسعار */
    .pricing-carousel-container {
        padding: 0.3rem !important;
        margin: 0 0.2rem !important;
        max-width: 300px !important;
        right: 0 !important;
        left: 0 !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .main-image-container {
        max-width: 250px !important;
        height: 180px !important;
        margin: 0 auto !important;
    }

    .nav-arrow {
        width: 30px !important;
        height: 30px !important;
        font-size: 0.8rem !important;
        border-radius: 50% !important;
    }

    .nav-arrow.prev {
        left: -35px !important;
    }

    .nav-arrow.next {
        right: -35px !important;
    }

    .thumbnail {
        width: 35px !important;
        height: 28px !important;
    }

    .thumbnails-container {
        gap: 0.3rem !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
    }
    .nav-links {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 0.3rem !important;
        justify-content: center !important;
        margin: 0.2rem 0 !important;
        width: 100% !important;
        padding: 0.2rem 0 !important;
    }

    .nav-links a {
        font-size: 0.8rem !important;
        padding: 0.8rem rem !important;
        margin: 0 !important;
        font-weight: 500 !important;
        white-space: nowrap !important;
    }
}