   /* الأساسيات */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f8f9fa;
            color: #333;
            padding-top: 80px; /* لمنع المحتوى من الاختفاء تحت النافبار الثابت */
        }
        
        /* شريط التنقل */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 5%;
            background-color: white;
            box-shadow: 0 2px 20px rgba(138, 43, 226, 0.15);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        /* الشعار */
        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            z-index: 1001;
        }
        
        .logo-icon {
            width: 42px;
            height: 42px;
            background: linear-gradient(135deg, #910292, #890289);
            color: white;
            border-radius: 10px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 22px;
            font-weight: bold;
            margin-left: 10px;
            transition: transform 0.3s ease;
            box-shadow: 0 4px 8px rgba(138, 43, 226, 0.2);
        }
        
        .logo:hover .logo-icon {
            transform: rotate(15deg);
        }
        
        .logo-text {
            font-size: 1.6rem;
            font-weight: 800;
            background: linear-gradient(135deg, #910292, #860286);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        /* قائمة التنقل */
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            padding: 0 12px;
        }
        
        .nav-links a {
            text-decoration: none;
            color: #555;
            font-weight: 600;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            position: relative;
            padding: 8px 5px;
        }
        
        .nav-links a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            bottom: 0;
            right: 0;
            background: linear-gradient(90deg, #910292, #8d028d);
            border-radius: 2px;
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover {
            color: #910292;
        }
        
        .nav-links a:hover:after {
            width: 100%;
        }
        
        /* أزرار التنقل */
        .nav-buttons {
            display: flex;
            align-items: center;
        }
        
        .btn {
            padding: 0.7rem 1.4rem;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-left: 12px;
            font-size: 0.95rem;
        }
        
        .btn-login {
            background-color: transparent;
            border: 2px solid #910292;
            color: #910292;
        }
        
        .btn-login:hover {
            background-color: #910292;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(138, 43, 226, 0.25);
        }
        
        .btn-register {
            background: linear-gradient(135deg, #910292, #840284);
            border: none;
            color: white;
            box-shadow: 0 4px 10px rgba(138, 43, 226, 0.3);
        }
        
        .btn-register:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(138, 43, 226, 0.4);
        }
        
        /* قائمة الهاتف */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            width: 30px;
            height: 24px;
            position: relative;
            z-index: 1001;
        }
        
        .hamburger span {
            width: 100%;
            height: 3px;
            background: linear-gradient(135deg, #910292, #810281);
            margin: 3px 0;
            border-radius: 3px;
            transition: all 0.3s ease;
            transform-origin: center;
        }
        
        /* القائمة الجانبية للجوال */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 280px;
            height: 100vh;
            background: linear-gradient(to bottom, #ffffff, #f8f5ff);
            box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
            z-index: 999;
            padding: 90px 25px 30px;
            transition: right 0.4s ease;
            overflow-y: auto;
        }
        
        .mobile-menu.active {
            right: 0;
        }
        
        .mobile-nav-links {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .mobile-nav-links li {
            margin-bottom: 15px;
        }
        
        .mobile-nav-links a {
            display: block;
            text-decoration: none;
            color: #555;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 12px 15px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        
        .mobile-nav-links a:hover {
            background-color: rgba(138, 43, 226, 0.1);
            color: #910292;
            transform: translateX(-5px);
        }
        
        .mobile-buttons {
            display: flex;
            flex-direction: column;
        }
        
        .mobile-buttons .btn {
            margin: 8px 0;
            text-align: center;
            width: 100%;
        }
        
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
   /* تصميم جديد لقسم المتجر الإلكتروني */
        .service-detail-section {
            padding: 100px 5% 80px;
            background: linear-gradient(135deg, #f9f7ff 0%, #f1ebff 100%);
            position: relative;
            overflow: hidden;
        }
        
        .service-detail-section:before {
            content: '';
            position: absolute;
            top: -100px;
            left: -100px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(138, 43, 226, 0.1) 0%, rgba(106, 13, 173, 0.05) 100%);
        }
        
        .service-detail-section:after {
            content: '';
            position: absolute;
            bottom: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(138, 43, 226, 0.1) 0%, rgba(106, 13, 173, 0.05) 100%);
            z-index: 0;
        }
        
        .service-detail-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .service-header {
            text-align: center;
            margin-bottom: 80px;
        }
        
        .service-title {
            font-size: 3.2rem;
            color: #910292;
            margin-bottom: 25px;
            position: relative;
            display: inline-block;
            font-weight: 800;
            text-shadow: 0 2px 10px rgba(138, 43, 226, 0.2);
        }
        
        .service-title:after {
            content: '';
            position: absolute;
            bottom: -15px;
            right: 50%;
            transform: translateX(50%);
            width: 100px;
            height: 5px;
            background: linear-gradient(90deg, #910292, #850285);
            border-radius: 3px;
        }
        
        .service-subtitle {
            color: #6c757d;
            line-height: 1.8;
            font-size: 1.3rem;
            max-width: 800px;
            margin: 30px auto 0;
            font-weight: 500;
        }
        
        .service-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-bottom: 60px;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            position: relative;
        }
        
        .service-features {
            flex: 1;
            min-width: 300px;
            padding: 40px;
            background: white;
        }
        
        .service-features h2 {
            font-size: 2rem;
            color: #910292;
            margin-bottom: 30px;
            position: relative;
            display: inline-block;
        }
        
        .service-features h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            right: 0;
            width: 50px;
            height: 4px;
            background: linear-gradient(90deg, #910292, #880288);
            border-radius: 2px;
        }
        
        .features-list {
            list-style: none;
            margin-top: 30px;
        }
        
        .features-list li {
            padding: 15px 0;
            color: #555;
            font-size: 1.1rem;
            position: relative;
            padding-right: 40px;
            border-bottom: 1px solid #f0f0f0;
            transition: all 0.3s ease;
        }
        
        .features-list li:hover {
            background-color: #faf7ff;
            padding-right: 50px;
        }
        
        .features-list li:before {
            content: '✓';
            position: absolute;
            right: 0;
            width: 30px;
            height: 30px;
            background: linear-gradient(135deg, #910292, #810181);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            box-shadow: 0 3px 10px rgba(138, 43, 226, 0.3);
        }
        
        .service-image {
            flex: 1;
            min-width: 300px;
            padding: 0;
            background: linear-gradient(135deg, #910292, #910292);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        
        .service-image:before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
        }
        
        .service-image:after {
            content: '';
            position: absolute;
            bottom: -50px;
            left: -50px;
            width: 150px;
            height: 150px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
        }
        
        .cartoon-service-img {
            width: 90%;
            max-width: 450px;
            z-index: 2;
            filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
            transition: all 0.5s ease;
        }
        
        .cartoon-service-img:hover {
            transform: translateY(-10px) rotate(3deg);
        }
        
        /* تأثيرات للعناصر الكرتونية داخل الصورة */
        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 1;
        }
        
        .floating-element {
            position: absolute;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .element-1 {
            width: 60px;
            height: 60px;
            top: 20%;
            right: 20%;
            animation: float 6s ease-in-out infinite;
            background: rgba(255, 255, 255, 0.25);
        }
        
        .element-2 {
            width: 40px;
            height: 40px;
            bottom: 30%;
            left: 20%;
            animation: float 7s ease-in-out infinite;
            background: rgba(255, 255, 255, 0.2);
        }
        
        .element-3 {
            width: 50px;
            height: 50px;
            top: 40%;
            left: 30%;
            animation: float 5s ease-in-out infinite;
            background: rgba(255, 255, 255, 0.3);
        }
        
      
        /* قسم الأسعار */
        .pricing-section {
            background: white;
            padding: 80px 5%;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            margin-top: 40px;
        }
        
        .pricing-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .pricing-title {
            font-size: 2.2rem;
            color: #910292;
            margin-bottom: 15px;
        }
        
        .pricing-subtitle {
            color: #777;
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .pricing-options {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
        }
        
        .pricing-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(138, 43, 226, 0.1);
            width: 300px;
            transition: all 0.3s ease;
            border: 2px solid #f0f0f0;
            position: relative;
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(138, 43, 226, 0.15);
            border-color: #910292;
        }
        
        .pricing-card.popular {
            border-color: #910292;
            transform: scale(1.05);
        }
        
        .pricing-card.popular:before {
            content: 'الأكثر طلباً';
            position: absolute;
            top: 15px;
            left: 15px;
            background: linear-gradient(135deg, #910292, #850285);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .pricing-card-header {
            padding: 25px;
            text-align: center;
            background: linear-gradient(135deg, #f8f5ff, #e6d6ff);
        }
        
        .pricing-card-title {
            font-size: 1.5rem;
            color: #910292;
            margin-bottom: 10px;
            font-weight: 700;
        }
        
        .pricing-card-price {
            font-size: 2.5rem;
            color: #910292;
            font-weight: 800;
            margin-bottom: 5px;
        }
        
        .pricing-card-period {
            color: #777;
            font-size: 0.9rem;
        }
        
        .pricing-card-features {
            padding: 25px;
            list-style: none;
        }
        
        .pricing-card-features li {
            padding: 10px 0;
            color: #555;
            border-bottom: 1px solid #f5f5f5;
            display: flex;
            align-items: center;
        }
        
        .pricing-card-features li:before {
            content: '✓';
            color: #910292;
            font-weight: bold;
            margin-left: 10px;
        }
        
        .pricing-card-button {
            display: block;
            text-align: center;
            padding: 15px;
            background: linear-gradient(135deg, #910292, #850385);
            color: white;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .pricing-card-button:hover {
            background: linear-gradient(135deg,#910292, #800280);
        }
        
        /* قسم الاشتراك */
        .subscription-section {
            padding: 80px 5%;
            text-align: center;
        }
        
        .subscription-title {
            font-size: 2.2rem;
            color: #910292;
            margin-bottom: 20px;
        }
        
        .subscription-text {
            color: #555;
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto 40px;
            line-height: 1.7;
        }
        
        .subscription-options {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 40px;
        }
        
        .subscription-option {
            background: white;
            padding: 20px 30px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            min-width: 200px;
            transition: all 0.3s ease;
            border: 2px solid #f0f0f0;
        }
        
        .subscription-option:hover {
            border-color: #910292;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(138, 43, 226, 0.1);
        }
        
        .subscription-option-title {
            font-size: 1.2rem;
            color: #910292;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .subscription-option-price {
            font-size: 1.8rem;
            color: #910292;
            font-weight: 700;
            margin-bottom: 5px;
        }
        
        .subscription-option-desc {
            color: #777;
            font-size: 0.9rem;
        }
        
        .contact-button {
            display: inline-block;
            padding: 15px 40px;
            background: linear-gradient(135deg, #910292, #880388);
            color: white;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1.1rem;
            text-decoration: none;
            box-shadow: 0 5px 20px rgba(138, 43, 226, 0.3);
            transition: all 0.3s ease;
        }
        
        .contact-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(138, 43, 226, 0.4);
        }
        
          @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(10deg);
            }
        }
        /* قسم معرض الأعمال */
.portfolio-section {
    padding: 80px 5%;
    background: linear-gradient(135deg, #f9f7ff 0%, #f1ebff 100%);
    position: relative;
    overflow: hidden;
}

.portfolio-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.portfolio-header {
    text-align: center;
    margin-bottom: 60px;
}

.portfolio-title {
    font-size: 2.5rem;
    color: #910292;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    font-weight: 800;
}

.portfolio-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #910292, #840384);
    border-radius: 2px;
}

.portfolio-subtitle {
    color: #6c757d;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 30px auto 0;
    line-height: 1.6;
}

.portfolio-grid {
    justify-content: center;
    display: flex;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.portfolio-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.2);
}

.portfolio-image-container {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(106, 13, 173, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-link {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #910292;
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.portfolio-link:hover {
    transform: scale(1.1);
    background: #910292;
    color: white;
}

.portfolio-info {
    padding: 20px;
}

.portfolio-item-title {
    font-size: 1.2rem;
    color: #910292;
    margin-bottom: 10px;
    font-weight: 700;
}

.portfolio-item-desc {
    color: #777;
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 0.9rem;
}

.portfolio-item-link {
    display: inline-block;
    color: #910292;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.portfolio-item-link:after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 2px;
    background: #910292;
    transition: width 0.3s ease;
}

.portfolio-item-link:hover {
    color: #910292;
}

.portfolio-item-link:hover:after {
    width: 100%;
}


/*                                                                                           -------------------------*/
 .nav-buttonss {
  display: flex;
  gap: 12px; /* مسافة بين الرقمين */
  padding: 6px 12px;
  background: #910292; /* لون خلفية */
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  color: #fff;
  box-shadow: 0 2px 6px #910292;
  font-family: 'Arial', sans-serif;
}

.nav-buttonss p {
  margin: 0;
}

/* الروابط */
.nav-buttonss a {
  color: #fff;
  text-decoration: none; /* بدون خط */
  transition: transform 0.2s, color 0.2s;
  display: inline-block;
}

.nav-buttonss a:hover {
  transform: scale(1.05);
}
/* الفيديو */
.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px; /* للتحكم بالعرض */
    margin: 0 auto; 
    padding: 20px; /* مسافة من الجوانب */
}

.video-wrapper iframe {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* فيديو متجاوب للموبايل */
@media (max-width: 768px) {
    .video-wrapper iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .video-wrapper iframe {
        height: 220px;
    }
}








:root {
            --primary-purple: #910292;
            --light-purple: #850485;
            --soft-purple: #7a0a7a;
            --very-light-purple: #EDE9FE;
            --white: #FFFFFF;
            --light-gray: #F8FAFC;
            --text-dark: #1E293B;
            --text-light: #64748B;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Tajawal', sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background: linear-gradient(135deg, var(--very-light-purple) 0%, var(--white) 50%, var(--very-light-purple) 100%);
            min-height: 100vh;
        }

        .idea-section {
            padding: 60px 20px;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%23EDE9FE" points="0,0 1000,0 1000,1000 0,1000"/><circle fill="%238B5CF6" opacity="0.03" cx="200" cy="200" r="150"/><circle fill="%236D28D9" opacity="0.05" cx="800" cy="300" r="200"/><circle fill="%23A78BFA" opacity="0.04" cx="600" cy="700" r="180"/></svg>');
            background-size: cover;
        }

        .idea-container {
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
        }

        .idea-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .idea-title {
            font-size: 3.2rem;
            font-weight: 800;
            color: var(--primary-purple);
            margin-bottom: 20px;
            line-height: 1.2;
            position: relative;
        }

        .idea-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            right: 50%;
            transform: translateX(50%);
            width: 120px;
            height: 4px;
            background: linear-gradient(90deg, var(--light-purple), var(--primary-purple));
            border-radius: 2px;
        }

        .idea-subtitle {
            font-size: 1.3rem;
            color: var(--text-light);
            margin-top: 30px;
            font-weight: 400;
            max-width: 600px;
            margin-right: auto;
            margin-left: auto;
        }

        .idea-content {
            background: var(--white);
            border-radius: 24px;
            padding: 50px;
            box-shadow: 
                0 10px 25px rgba(109, 40, 217, 0.08),
                0 5px 10px rgba(109, 40, 217, 0.05);
            border: 1px solid var(--very-light-purple);
            position: relative;
            overflow: hidden;
        }

        .idea-content::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--light-purple), var(--primary-purple));
        }

        .intro-text {
            font-size: 1.25rem;
            text-align: center;
            color: var(--text-light);
            margin-bottom: 50px;
            line-height: 1.8;
            padding: 0 20px;
        }

        .intro-text strong {
            color: var(--primary-purple);
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary-purple), var(--light-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .feature-card {
            background: var(--white);
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 8px 25px rgba(109, 40, 217, 0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--very-light-purple) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .feature-card:hover::before {
            opacity: 1;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            border-color: var(--soft-purple);
            box-shadow: 0 15px 40px rgba(109, 40, 217, 0.15);
        }

        .feature-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, var(--light-purple), var(--primary-purple));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: var(--white);
            font-size: 2.2rem;
            box-shadow: 0 10px 25px rgba(109, 40, 217, 0.3);
            position: relative;
            z-index: 2;
            transition: transform 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1);
        }

        .feature-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 15px;
            position: relative;
            z-index: 2;
        }

        .feature-card p {
            color: var(--text-light);
            font-size: 1.05rem;
            line-height: 1.7;
            position: relative;
            z-index: 2;
        }

        .process-section {
            margin-bottom: 60px;
        }

        .process-section h2 {
            font-size: 2.3rem;
            font-weight: 700;
            text-align: center;
            color: var(--primary-purple);
            margin-bottom: 50px;
            position: relative;
        }

        .process-section h2::after {
            content: '';
            position: absolute;
            bottom: -12px;
            right: 50%;
            transform: translateX(50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, var(--light-purple), var(--primary-purple));
            border-radius: 2px;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 25px;
            counter-reset: step-counter;
        }

        .process-step {
            background: var(--white);
            padding: 35px 25px;
            border-radius: 18px;
            text-align: center;
            box-shadow: 0 6px 20px rgba(109, 40, 217, 0.08);
            border: 1px solid var(--very-light-purple);
            position: relative;
            transition: all 0.3s ease;
            counter-increment: step-counter;
        }

        .process-step::before {
            content: counter(step-counter);
            position: absolute;
            top: -15px;
            right: 50%;
            transform: translateX(50%);
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--light-purple), var(--primary-purple));
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.1rem;
            box-shadow: 0 5px 15px rgba(109, 40, 217, 0.3);
        }

        .process-step:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(109, 40, 217, 0.12);
        }

        .process-step h4 {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 15px;
            margin-top: 10px;
        }

        .process-step p {
            color: var(--text-light);
            font-size: 1rem;
            line-height: 1.7;
        }

        .final-cta {
            text-align: center;
            background: linear-gradient(135deg, var(--very-light-purple) 0%, var(--white) 100%);
            padding: 50px 40px;
            border-radius: 20px;
            color: var(--text-dark);
            box-shadow: 0 10px 30px rgba(109, 40, 217, 0.1);
            border: 1px solid var(--very-light-purple);
            position: relative;
            overflow: hidden;
        }

        .final-cta::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle fill="%236D28D9" opacity="0.03" cx="20" cy="20" r="15"/><circle fill="%238B5CF6" opacity="0.05" cx="80" cy="30" r="20"/><circle fill="%23A78BFA" opacity="0.04" cx="60" cy="70" r="18"/></svg>');
        }

        .final-cta h2 {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--primary-purple);
            position: relative;
            z-index: 2;
        }

        .final-cta p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: var(--text-light);
            position: relative;
            z-index: 2;
            max-width: 600px;
            margin-right: auto;
            margin-left: auto;
        }

        .whatsapp-button {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, #25D366, #1DA851);
            color: white;
            padding: 18px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 1.2rem;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
            position: relative;
            z-index: 2;
        }

        .whatsapp-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
            background: linear-gradient(135deg, #1DA851, #25D366);
        }

        .whatsapp-button i {
            font-size: 1.4rem;
        }

        @media (max-width: 768px) {
            .idea-title {
                font-size: 2.4rem;
            }
            
            .idea-content {
                padding: 35px 25px;
                border-radius: 20px;
            }
            
            .intro-text {
                font-size: 1.15rem;
                padding: 0 10px;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .feature-card {
                padding: 30px 25px;
            }
            
            .process-steps {
                grid-template-columns: 1fr;
                gap: 35px;
            }
            
            .process-step {
                padding: 30px 20px;
            }
            
            .process-section h2 {
                font-size: 1.9rem;
            }
            
            .final-cta {
                padding: 40px 25px;
            }
            
            .final-cta h2 {
                font-size: 1.9rem;
            }
            
            .whatsapp-button {
                padding: 16px 32px;
                font-size: 1.1rem;
            }
        }

        @media (max-width: 480px) {
            .idea-title {
                font-size: 2rem;
            }
            
            .idea-section {
                padding: 40px 15px;
            }
            
            .idea-content {
                padding: 30px 20px;
            }
            
            .feature-card {
                padding: 25px 20px;
            }
            
            .feature-icon {
                width: 70px;
                height: 70px;
                font-size: 1.8rem;
            }
            
            .final-cta h2 {
                font-size: 1.7rem;
            }
            
            .final-cta p {
                font-size: 1.1rem;
            }
            
            .whatsapp-button {
                padding: 14px 28px;
                font-size: 1rem;
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        .idea-title {
            animation: fadeInUp 0.8s ease-out;
        }

        .feature-card {
            animation: fadeInUp 0.6s ease-out;
        }

        .feature-card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .feature-card:nth-child(3) {
            animation-delay: 0.4s;
        }

        .process-step {
            animation: fadeInUp 0.6s ease-out;
        }

        .process-step:nth-child(2) {
            animation-delay: 0.1s;
        }

        .process-step:nth-child(3) {
            animation-delay: 0.2s;
        }

        .process-step:nth-child(4) {
            animation-delay: 0.3s;
        }

        .final-cta {
            animation: fadeInUp 0.8s ease-out 0.5s both;
        }

        .feature-card:hover .feature-icon {
            animation: float 2s ease-in-out infinite;
        }

        .intro-text, .feature-card p, .process-step p, .final-cta p {
            letter-spacing: 0.3px;
        }

        .idea-title, .feature-card h3, .process-step h4, .final-cta h2 {
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        }
/*                                                                                           -------------------------*/
/* التجاوب مع الشاشات المتوسطة */
@media (max-width: 992px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-title {
        font-size: 2.2rem;
    }
}

/* التجاوب مع الشاشات الصغيرة (جوال) */
@media (max-width: 768px) {
    .portfolio-section {
        padding: 60px 4%;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .portfolio-title {
        font-size: 1.8rem;
    }
    
    .portfolio-subtitle {
        font-size: 1rem;
    }
    
    .portfolio-image-container {
        height: 160px;
    }
    
    .portfolio-info {
        padding: 15px;
    }
    
    .portfolio-item-title {
        font-size: 1.1rem;
    }
    
    .portfolio-item-desc {
        font-size: 0.85rem;
    }
}

/* التجاوب مع الشاشات الصغيرة جداً */
@media (max-width: 480px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .portfolio-image-container {
        height: 140px;
    }
    
    .portfolio-info {
        padding: 12px;
    }
    
    .portfolio-item-title {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .portfolio-item-desc {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }
    
    .portfolio-item-link {
        font-size: 0.85rem;
    }
    
    .portfolio-link {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}
        /* التجاوب مع الشاشات الصغيرة */
        @media (max-width: 992px) {
            .service-content {
                flex-direction: column;
            }
            
            .service-image {
                order: 1;
                padding: 40px 20px;
            }
            
            .service-features {
                order: 2;
            }
            
            .service-title {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 768px) {
            .service-title {
                font-size: 2rem;
            }
            
            .service-subtitle {
                font-size: 1.1rem;
            }
            
            .service-features h2 {
                font-size: 1.7rem;
            }
            
            .features-list li {
                font-size: 1rem;
            }
        }
        
        @media (max-width: 576px) {
            .service-detail-section {
                padding: 80px 4% 60px;
            }
            
            .service-header {
                margin-bottom: 50px;
            }
            
            .service-title {
                font-size: 1.8rem;
            }
            
            .service-features {
                padding: 25px;
            }
        }
        /* التجاوب مع الشاشات الصغيرة */
        @media (max-width: 992px) {
            .service-content {
                flex-direction: column;
            }
            
            .service-features, .service-image {
                width: 100%;
            }
            
            .pricing-card.popular {
                transform: scale(1);
            }
        }
        
        @media (max-width: 768px) {
            .service-title {
                font-size: 2.2rem;
            }
            
            .pricing-options {
                flex-direction: column;
                align-items: center;
            }
            
            .pricing-card {
                width: 100%;
                max-width: 350px;
            }
            
            .subscription-options {
                flex-direction: column;
                align-items: center;
            }
            
            .subscription-option {
                width: 100%;
                max-width: 300px;
            }
        }
        
        @media (max-width: 576px) {
            .service-detail-section {
                padding: 80px 4% 60px;
            }
            
            .service-title {
                font-size: 1.8rem;
            }
            
            .service-subtitle {
                font-size: 1rem;
            }
            
            .pricing-title {
                font-size: 1.8rem;
            }
            
            .subscription-title {
                font-size: 1.8rem;
            }
        }


         /* التجاوب مع الشاشات الصغيرة */
        @media (max-width: 992px) {
            .nav-links, .nav-buttons {
                display: none;
            }
            
            .hamburger {
                display: flex;
            }
            
            .about-container {
                flex-direction: column;
            }
            
            .about-content {
                order: 2;
            }
            
            .about-image {
                order: 1;
                margin-bottom: 40px;
            }
            
            .feature {
                width: 100%;
            }
        }
        
        @media (max-width: 576px) {
            .navbar {
                padding: 1rem 4%;
            }
            
            .logo-text {
                font-size: 1.4rem;
            }
            
            .logo-icon {
                width: 38px;
                height: 38px;
                font-size: 20px;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .animated-image {
                height: 300px;
            }
            
            .main-object {
                width: 150px;
                height: 150px;
            }
            
            .main-object:before {
                font-size: 60px;
            }
        }
   