:root {
    --primary: #6e44ff;
    --secondary: #ff5e63;
    --accent: #2ec4b6;
    --dark: #1a1a2e;
    --darker: #0d0d15;
    --light: #f8f9fa;
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
    --gradient-reverse: linear-gradient(135deg, var(--secondary), var(--primary));
     --game-primary: #ff3864;
    --game-secondary: #7140fd;
    --game-accent: #00e0c7;
    --game-dark: #0f0f1e;
    --game-darker: #080811;
    --game-light: #f8f9fa;
    --game-gradient: linear-gradient(135deg, var(--game-primary), var(--game-secondary));
    --game-gradient-reverse: linear-gradient(135deg, var(--game-secondary), var(--game-primary));
     --webdesign-primary: #4361ee;
    --webdesign-secondary: #3a0ca3;
    --webdesign-accent: #4cc9f0;
    --webdesign-dark: #0d1b2a;
    --webdesign-darker: #070d15;
    --webdesign-light: #f8f9fa;
    --webdesign-gradient: linear-gradient(135deg, var(--webdesign-primary), var(--webdesign-secondary));
    --webdesign-gradient-reverse: linear-gradient(135deg, var(--webdesign-secondary), var(--webdesign-primary));
    --mobile-primary: #4a6cfa;
    --mobile-secondary: #32cd32;
    --mobile-accent: #ff6b6b;
    --mobile-dark: #0f172a;
    --mobile-darker: #020617;
    --mobile-light: #f8f9fa;
    --mobile-gradient: linear-gradient(135deg, var(--mobile-primary), var(--mobile-secondary));
    --mobile-gradient-reverse: linear-gradient(135deg, var(--mobile-secondary), var(--mobile-primary));
    
}

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

body {

    background-color: var(--darker);
    color: var(--light);
    overflow-x: hidden;
    line-height: 1.6;
    direction: rtl;
        font-family: "Cairo", Sans-serif;
}


/* القسم الرئيسي */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0 5%;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.4;
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: #a1a1b5;
    max-width: 600px;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.btn-glow {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(110, 68, 255, 0.3);
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(110, 68, 255, 0.4);
}

.btn-glow:after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(30deg);
    transition: all 0.5s ease;
}

.btn-glow:hover:after {
    transform: rotate(30deg) translate(10%, 10%);
}

/* الأنيميشنات */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.shape {
    position: absolute;
    opacity: 0.2;
    border-radius: 50%;
    background: var(--gradient);
}

.code-particle {
    position: absolute;
    color: rgba(46, 196, 182, 0.7);
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    font-weight: bold;
    z-index: 1;
}

/* الأقسام */
.section {
    padding: 100px 5%;
    position: relative;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 3rem;
    text-align: center;
}

/* قسم من نحن */
.about-section {
    background: rgba(255, 255, 255, 0.02);
}

.about-content {
    position: relative;
    z-index: 2;
    padding-top: 200px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

/* قسم الخدمات */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover:before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* قسم لماذا نحن */
.why-us {
    background: rgba(255, 255, 255, 0.02);
}

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

.feature-box {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* قسم محفظة الأعمال */
.projects-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.project-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 300px;
    perspective: 1000px;
}

.project-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.project-card:hover .project-card-inner {
    transform: rotateY(180deg);
}

.project-card-front, .project-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
}

.project-card-front {
    background: linear-gradient(45deg, #1a1a2e, #16213e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
}

.project-card-back {
    background: var(--gradient);
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    text-align: center;
}

/* قسم خطوات العمل */
.work-steps {
    background: rgba(255, 255, 255, 0.02);
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 50px auto;
}

.timeline:before {
    content: '';
    position: absolute;
    width: 6px;
    background: var(--gradient);
    top: 0;
    bottom: 0;
    right: 50%;
    border-radius: 10px;
    transform: translateX(50%);
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
    right: 0;
}

.timeline-item:nth-child(even) {
    right: 50%;
}

.timeline-content {
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.timeline-item:after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    background: var(--accent);
    border: 4px solid var(--darker);
    border-radius: 50%;
    top: 20px;
    z-index: 1;
}

.timeline-item:nth-child(odd):after {
    left: -12px;
}

.timeline-item:nth-child(even):after {
    left: calc(100% - 12px);
}

/* قسم Call to Action */
.cta-section {
    background: var(--gradient);
    padding: 80px 5%;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-btn {
    background: var(--darker);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: var(--light);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* الفوتر */
footer {
    background: var(--dark);
    padding: 80px 5% 40px;
    position: relative;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gradient);
    transform: translateY(-5px);
}

/* تأثيرات التمرير */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* الوسائط المتعددة */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .timeline:before {
        right: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-right: 70px;
        padding-left: 25px;
    }
    
    .timeline-item:nth-child(even) {
        right: 0;
    }
    
    .timeline-item:nth-child(odd):after,
    .timeline-item:nth-child(even):after {
        left: 18px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .navbar-nav {
        background: rgba(13, 13, 21, 0.95);
        padding: 20px;
        border-radius: 10px;
        margin-top: 10px;
    }
}



.game-body {
    background-color: var(--game-darker);
    color: var(--game-light);
    overflow-x: hidden;
    line-height: 1.6;
}

/* الشريط العلوي */
.game-navbar {
    padding: 1.2rem 5%;
    background: rgba(15, 15, 30, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.game-navbar.scrolled {
    padding: 0.8rem 5%;
    background: rgba(15, 15, 30, 0.95);
}

.game-navbar-brand {
    font-weight: 800;
    font-size: 1.8rem;
    background: var(--game-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.game-navbar-nav .nav-link {
    color: var(--game-light) !important;
    font-weight: 500;
    margin: 0 0.7rem;
    position: relative;
    transition: all 0.3s ease;
}

.game-navbar-nav .nav-link:before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    right: 0;
    background: var(--game-gradient);
    transition: width 0.3s ease;
}

.game-navbar-nav .nav-link:hover:before {
    width: 100%;
}

.game-navbar-nav .nav-link.active {
    color: var(--game-primary) !important;
}

/* القسم الرئيسي */
.game-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0 5%;
}

.game-hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.4;
}

.game-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.game-hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.game-hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: #a1a1b5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.game-gradient-text {
    background: var(--game-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.game-btn-glow {
    background: var(--game-gradient);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 56, 100, 0.3);
}

.game-btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 56, 100, 0.4);
}

.game-btn-glow:after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(30deg);
    transition: all 0.5s ease;
}

.game-btn-glow:hover:after {
    transform: rotate(30deg) translate(10%, 10%);
}

/* جسيمات الخلفية */
.game-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}
.game-particle {
    position: absolute;
    will-change: transform, opacity;
    pointer-events: none;
    user-select: none;
    text-shadow: 0 0 10px rgba(255, 56, 100, 0.5);
    transition: transform 0.3s ease;
}

.game-particle:hover {
    transform: scale(1.2) !important;
    text-shadow: 0 0 20px rgba(255, 56, 100, 0.8);
    z-index: 10 !important;
}

/* تحسين أداء الحركة */
.game-particles {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}
/* الأقسام */
.game-section {
    padding: 100px 5%;
    position: relative;
}

.game-section-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 3rem;
    text-align: center;
}

/* قسم الخدمات */
.game-services-section {
    background: rgba(255, 255, 255, 0.02);
}

.game-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.game-service-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.game-service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--game-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.game-service-card:hover:before {
    transform: scaleX(1);
}

.game-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.game-service-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    background: var(--game-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.game-service-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    text-align: right;
}

.game-service-list li {
    padding: 5px 0;
    position: relative;
    padding-right: 20px;
}

.game-service-list li:before {
    content: '•';
    position: absolute;
    right: 0;
    color: var(--game-accent);
}

/* قسم معرض الألعاب */
.game-projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.game-project-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.game-project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.game-project-image {
    height: 200px;
    overflow: hidden;
}

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

.game-project-card:hover .game-project-image img {
    transform: scale(1.1);
}

.game-project-content {
    padding: 20px;
}

.game-project-tech {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.game-project-tech span {
    background: rgba(113, 64, 253, 0.2);
    color: var(--game-secondary);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
}

/* قسم عملية التصميم */
.game-process-section {
    background: rgba(255, 255, 255, 0.02);
}

.game-process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.game-process-timeline:before {
    content: '';
    position: absolute;
    top: 0;
    right: 50%;
    transform: translateX(50%);
    width: 4px;
    height: 100%;
    background: var(--game-gradient);
    border-radius: 10px;
}

.game-process-item {
    display: flex;
    margin-bottom: 40px;
    position: relative;
    width: 50%;
}

.game-process-item:nth-child(odd) {
    right: 0;
    padding-right: 40px;
    text-align: left;
}

.game-process-item:nth-child(even) {
    right: 50%;
    padding-left: 40px;
    text-align: right;
    flex-direction: row-reverse;
}

.game-process-icon {
    width: 70px;
    height: 70px;
    background: var(--game-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.game-process-content {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin: 0 20px;
    flex-grow: 1;
}

/* قسم التقنيات */
.game-tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.game-tech-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.game-tech-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.game-tech-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
    border-radius: 10px;
}

/* قسم الاتصال */
.game-contact-section {
    background: rgba(255, 255, 255, 0.02);
}

.game-contact-form {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.game-contact-form .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--game-light);
}

.game-contact-form .form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--game-primary);
    box-shadow: 0 0 0 0.2rem rgba(255, 56, 100, 0.25);
    color: var(--game-light);
}

.game-contact-info {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
}

.game-contact-details {
    margin: 30px 0;
}

.game-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.game-contact-item i {
    width: 40px;
    height: 40px;
    background: var(--game-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
}

.game-social-links {
    display: flex;
    gap: 15px;
}

.game-social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.game-social-link:hover {
    background: var(--game-gradient);
    transform: translateY(-5px);
}

/* الفوتر */
.game-footer {
    background: var(--game-dark);
    padding: 80px 5% 40px;
    position: relative;
}

.game-footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.game-footer-links a {
    color: var(--game-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.game-footer-links a:hover {
    color: var(--game-primary);
}

/* تأثيرات التمرير */
.game-fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.game-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* الوسائط المتعددة */
@media (max-width: 992px) {
    .game-hero-title {
        font-size: 3rem;
    }
    
    .game-section-title {
        font-size: 2.5rem;
    }
    
    .game-process-timeline:before {
        right: 30px;
    }
    
    .game-process-item {
        width: 100%;
        padding-right: 80px;
        padding-left: 0;
    }
    
    .game-process-item:nth-child(even) {
        right: 0;
        padding-right: 80px;
        padding-left: 0;
        flex-direction: row;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .game-hero-title {
        font-size: 2.5rem;
    }
    
    .game-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .game-section-title {
        font-size: 2rem;
    }
    
    .game-navbar-nav {
        background: rgba(15, 15, 30, 0.95);
        padding: 20px;
        border-radius: 10px;
        margin-top: 10px;
    }
    
    .game-process-item,
    .game-process-item:nth-child(even) {
        flex-direction: column;
        text-align: center;
        padding-right: 0;
    }
    
    .game-process-icon {
        margin: 0 auto 20px;
    }
}



.mobile-body {
    background-color: var(--mobile-darker);
    color: var(--mobile-light);
    overflow-x: hidden;
    line-height: 1.6;
}

/* الشريط العلوي */
.mobile-navbar {
    padding: 1.2rem 5%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.mobile-navbar.scrolled {
    padding: 0.8rem 5%;
    background: rgba(15, 23, 42, 0.95);
}

.mobile-navbar-brand {
    font-weight: 800;
    font-size: 1.8rem;
    background: var(--mobile-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.mobile-navbar-nav .nav-link {
    color: var(--mobile-light) !important;
    font-weight: 500;
    margin: 0 0.7rem;
    position: relative;
    transition: all 0.3s ease;
}

.mobile-navbar-nav .nav-link:before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    right: 0;
    background: var(--mobile-gradient);
    transition: width 0.3s ease;
}

.mobile-navbar-nav .nav-link:hover:before {
    width: 100%;
}

.mobile-navbar-nav .nav-link.active {
    color: var(--mobile-primary) !important;
}

/* القسم الرئيسي */
.mobile-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0 5%;
}

.mobile-hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.4;
}

.mobile-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.mobile-hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.mobile-hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: #a1a1b5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.mobile-gradient-text {
    background: var(--mobile-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.mobile-btn-glow {
    background: var(--mobile-gradient);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(74, 108, 250, 0.3);
}

.mobile-btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(74, 108, 250, 0.4);
}

.mobile-btn-glow:after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(30deg);
    transition: all 0.5s ease;
}

.mobile-btn-glow:hover:after {
    transform: rotate(30deg) translate(10%, 10%);
}

/* جسيمات الخلفية */
.mobile-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.mobile-particle {
    position: absolute;
    will-change: transform, opacity;
    pointer-events: none;
    user-select: none;
    font-size: 1.8rem;
    text-shadow: 0 0 10px rgba(74, 108, 250, 0.5);
    transition: transform 0.3s ease;
}

.mobile-particle:hover {
    transform: scale(1.2) !important;
    text-shadow: 0 0 20px rgba(74, 108, 250, 0.8);
    z-index: 10 !important;
}

/* تحسين أداء الحركة */
.mobile-particles {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* الأقسام */
.mobile-section {
    padding: 100px 5%;
    position: relative;
}

.mobile-section-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 3rem;
    text-align: center;
}

/* قسم الخدمات */
.mobile-services-section {
    background: rgba(255, 255, 255, 0.02);
}

.mobile-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.mobile-service-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.mobile-service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--mobile-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.mobile-service-card:hover:before {
    transform: scaleX(1);
}

.mobile-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.mobile-service-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    background: var(--mobile-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mobile-service-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    text-align: right;
}

.mobile-service-list li {
    padding: 5px 0;
    position: relative;
    padding-right: 20px;
}

.mobile-service-list li:before {
    content: '•';
    position: absolute;
    right: 0;
    color: var(--mobile-accent);
}

/* قسم الميزات */
.mobile-features-section {
    background: rgba(255, 255, 255, 0.01);
}

.mobile-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.mobile-feature-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mobile-feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: var(--mobile-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* قسم معرض الأعمال */
.mobile-projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.mobile-project-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.mobile-project-image {
    height: 200px;
    overflow: hidden;
}

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

.mobile-project-card:hover .mobile-project-image img {
    transform: scale(1.1);
}

.mobile-project-content {
    padding: 25px;
}

.mobile-project-tech {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.mobile-project-tech span {
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
}

/* قسم عملية التطوير */
.mobile-process-section {
    background: rgba(255, 255, 255, 0.02);
}

.mobile-process-steps {
    max-width: 800px;
    margin: 0 auto;
}

.mobile-process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
}

.mobile-process-step:not(:last-child):after {
    content: '';
    position: absolute;
    top: 60px;
    left: 30px;
    width: 2px;
    height: calc(100% - 40px);
    background: var(--mobile-gradient);
    opacity: 0.3;
}

.step-number {
    background: var(--mobile-gradient);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-left: 20px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.step-content {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 15px;
    flex: 1;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* قسم التقنيات */
.mobile-tech-section {
    background: rgba(255, 255, 255, 0.01);
}

.mobile-tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
}

.mobile-tech-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-tech-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mobile-tech-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
}

/* قسم التواصل */
.mobile-contact-section {
    background: rgba(255, 255, 255, 0.02);
}

.mobile-contact-form {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-contact-form .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 10px;
    padding: 12px 15px;
}

.mobile-contact-form .form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--mobile-primary);
    box-shadow: 0 0 0 0.2rem rgba(74, 108, 250, 0.25);
    color: white;
}

.mobile-contact-form label {
    margin-bottom: 8px;
    font-weight: 500;
}

.mobile-contact-info {
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-contact-details {
    margin: 30px 0;
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.mobile-contact-item i {
    background: var(--mobile-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.2rem;
    margin-left: 15px;
}

.mobile-social-links {
    display: flex;
    gap: 15px;
}

.mobile-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    transition: all 0.3s ease;
}

.mobile-social-link:hover {
    background: var(--mobile-gradient);
    transform: translateY(-3px);
}

/* الفوتر */
.mobile-footer {
    background: var(--mobile-dark);
    padding: 60px 5% 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.mobile-footer-links h5 {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.mobile-footer-links h5:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 2px;
    background: var(--mobile-gradient);
}

.mobile-footer-links a {
    color: #a1a1b5;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 10px;
}

.mobile-footer-links a:hover {
    color: white;
}

/* تأثيرات الحركة */
.mobile-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.mobile-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* تأثيرات الحركة للجسيمات */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* التجاوب مع الشاشات المختلفة */
@media (max-width: 992px) {
    .mobile-hero-title {
        font-size: 3rem;
    }
    
    .mobile-hero-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .mobile-hero-title {
        font-size: 2.5rem;
    }
    
    .mobile-section {
        padding: 70px 5%;
    }
    
    .mobile-section-title {
        font-size: 2.2rem;
    }
    
    .mobile-process-step {
        flex-direction: column;
    }
    
    .step-number {
        margin-left: 0;
        margin-bottom: 20px;
    }
    
    .mobile-process-step:not(:last-child):after {
        left: 30px;
        top: 60px;
        height: calc(100% - 40px);
    }
}

@media (max-width: 576px) {
    .mobile-hero-title {
        font-size: 2rem;
    }
    
    .mobile-hero-subtitle {
        font-size: 1rem;
    }
    
    .mobile-services-grid,
    .mobile-projects-grid {
        grid-template-columns: 1fr;
    }
    
    .mobile-contact-form,
    .mobile-contact-info {
        padding: 25px;
    }
}


.webdesign-body {
    background-color: var(--webdesign-darker);
    color: var(--webdesign-light);
    overflow-x: hidden;
    line-height: 1.6;
}

/* الشريط العلوي */
.webdesign-navbar {
    padding: 1.2rem 5%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.webdesign-navbar.scrolled {
    padding: 0.8rem 5%;
    background: rgba(15, 23, 42, 0.95);
}

.webdesign-navbar-brand {
    font-weight: 800;
    font-size: 1.8rem;
    background: var(--webdesign-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.webdesign-navbar-nav .nav-link {
    color: var(--webdesign-light) !important;
    font-weight: 500;
    margin: 0 0.7rem;
    position: relative;
    transition: all 0.3s ease;
}

.webdesign-navbar-nav .nav-link:before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    right: 0;
    background: var(--webdesign-gradient);
    transition: width 0.3s ease;
}

.webdesign-navbar-nav .nav-link:hover:before {
    width: 100%;
}

.webdesign-navbar-nav .nav-link.active {
    color: var(--webdesign-primary) !important;
}

/* القسم الرئيسي */
.webdesign-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0 5%;
}

.webdesign-hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.4;
}

.webdesign-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.webdesign-hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.webdesign-hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: #a1a1b5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.webdesign-gradient-text {
    background: var(--webdesign-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.webdesign-btn-glow {
    background: var(--webdesign-gradient);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(74, 108, 250, 0.3);
}

.webdesign-btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(74, 108, 250, 0.4);
}

.webdesign-btn-glow:after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(30deg);
    transition: all 0.5s ease;
}

.webdesign-btn-glow:hover:after {
    transform: rotate(30deg) translate(10%, 10%);
}

/* جسيمات الخلفية */
.webdesign-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.webdesign-particle {
    position: absolute;
    will-change: transform, opacity;
    pointer-events: none;
    user-select: none;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.3);
    text-shadow: 0 0 10px rgba(74, 108, 250, 0.5);
    transition: transform 0.3s ease;
}

.webdesign-particle:hover {
    transform: scale(1.2) !important;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 0 20px rgba(74, 108, 250, 0.8);
    z-index: 10 !important;
}

/* تحسين أداء الحركة */
.webdesign-particles {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* الأقسام العامة */
.webdesign-section {
    padding: 6rem 0;
    position: relative;
}

.webdesign-section-title {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.webdesign-section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--webdesign-gradient);
    border-radius: 2px;
}

/* قسم الخدمات */
.webdesign-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.webdesign-service-card {
    background: rgba(15, 23, 42, 0.7);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.webdesign-service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--webdesign-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.webdesign-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.webdesign-service-card:hover:before {
    opacity: 0.05;
}

.webdesign-service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(74, 108, 250, 0.1);
    border-radius: 50%;
    font-size: 2rem;
    color: var(--webdesign-primary);
    transition: all 0.3s ease;
}

.webdesign-service-card:hover .webdesign-service-icon {
    background: var(--webdesign-gradient);
    color: white;
    transform: scale(1.1);
}

.webdesign-service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.webdesign-service-card p {
    color: #a1a1b5;
    margin-bottom: 1.5rem;
}

.webdesign-service-list {
    list-style: none;
    padding: 0;
    text-align: right;
}

.webdesign-service-list li {
    padding: 0.5rem 0;
    color: #d1d5db;
    position: relative;
    padding-right: 1.5rem;
}

.webdesign-service-list li:before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--webdesign-secondary);
    font-weight: bold;
}

/* قسم الميزات */
.webdesign-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.webdesign-feature-item {
    background: rgba(15, 23, 42, 0.7);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.webdesign-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(74, 108, 250, 0.2);
}

.webdesign-feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(74, 108, 250, 0.1);
    border-radius: 50%;
    font-size: 1.8rem;
    color: var(--webdesign-primary);
    transition: all 0.3s ease;
}

.webdesign-feature-item:hover .webdesign-feature-icon {
    background: var(--webdesign-gradient);
    color: white;
    transform: scale(1.1);
}

.webdesign-feature-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: white;
}

.webdesign-feature-item p {
    color: #a1a1b5;
}

/* قسم معرض الأعمال */
.webdesign-projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.webdesign-project-card {
    background: rgba(15, 23, 42, 0.7);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.webdesign-project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.webdesign-project-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

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

.webdesign-project-card:hover .webdesign-project-image img {
    transform: scale(1.05);
}

.webdesign-project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.webdesign-project-card:hover .webdesign-project-overlay {
    opacity: 1;
}

.webdesign-project-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--webdesign-gradient);
    color: white;
    border-radius: 50%;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
}

.webdesign-project-link:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(74, 108, 250, 0.4);
}

.webdesign-project-content {
    padding: 1.5rem;
}

.webdesign-project-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: white;
}

.webdesign-project-content p {
    color: #a1a1b5;
    margin-bottom: 1rem;
}

.webdesign-project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.webdesign-project-tech span {
    background: rgba(74, 108, 250, 0.1);
    color: var(--webdesign-primary);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* قسم عملية التصميم */
.webdesign-process-timeline {
    position: relative;
    max-width: 1200px;
    margin: 4rem auto 0;
}

.webdesign-process-timeline:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: var(--webdesign-gradient);
    transform: translateX(-50%);
}

.webdesign-process-item {
    display: flex;
    margin-bottom: 4rem;
    position: relative;
    width: 100%;
}

.webdesign-process-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.webdesign-process-item:nth-child(odd) .webdesign-process-content {
    text-align: left;
    margin-right: 3rem;
    margin-left: 0;
}

.webdesign-process-item:nth-child(even) .webdesign-process-content {
    text-align: right;
    margin-left: 3rem;
    margin-right: 0;
}

.webdesign-process-icon {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--webdesign-gradient);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 10px rgba(74, 108, 250, 0.1);
}

.webdesign-process-content {
    background: rgba(15, 23, 42, 0.7);
    padding: 2rem;
    border-radius: 15px;
    flex: 1;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.webdesign-process-content h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: white;
}

.webdesign-process-content p {
    color: #a1a1b5;
}

/* قسم التقنيات */
.webdesign-tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.webdesign-tech-item {
    background: rgba(15, 23, 42, 0.7);
    border-radius: 15px;
    padding: 2rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.webdesign-tech-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(74, 108, 250, 0.2);
}

.webdesign-tech-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.webdesign-tech-item:hover img {
    transform: scale(1.1);
}

.webdesign-tech-item h4 {
    font-size: 1.1rem;
    color: white;
}

/* قسم اتصل بنا */
.webdesign-contact-form {
    background: rgba(15, 23, 42, 0.7);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.webdesign-contact-form .form-label {
    color: white;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.webdesign-contact-form .form-control,
.webdesign-contact-form .form-select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.webdesign-contact-form .form-control:focus,
.webdesign-contact-form .form-select:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--webdesign-primary);
    box-shadow: 0 0 0 0.25rem rgba(74, 108, 250, 0.25);
    color: white;
}

.webdesign-contact-form .form-control::placeholder {
    color: #a1a1b5;
}

.webdesign-contact-info {
    background: rgba(15, 23, 42, 0.7);
    padding: 2.5rem;
    border-radius: 20px;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.webdesign-contact-info h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.webdesign-contact-info p {
    color: #a1a1b5;
    margin-bottom: 2rem;
}

.webdesign-contact-details {
    margin-bottom: 2rem;
}

.webdesign-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #d1d5db;
}

.webdesign-contact-item i {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(74, 108, 250, 0.1);
    color: var(--webdesign-primary);
    border-radius: 50%;
    margin-left: 1rem;
}

.webdesign-social-links {
    display: flex;
    gap: 1rem;
}

.webdesign-social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    color: #a1a1b5;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.webdesign-social-link:hover {
    background: var(--webdesign-gradient);
    color: white;
    transform: translateY(-3px);
}

/* الفوتر */
.webdesign-footer {
    background: rgba(15, 23, 42, 0.9);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.webdesign-footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.webdesign-footer-links h5 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
}

.webdesign-footer-links h5:after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 40px;
    height: 3px;
    background: var(--webdesign-gradient);
    border-radius: 2px;
}

.webdesign-footer-links p {
    color: #a1a1b5;
    margin-bottom: 1rem;
}

.webdesign-footer-links ul li {
    margin-bottom: 0.8rem;
}

.webdesign-footer-links ul li a {
    color: #d1d5db;
    transition: all 0.3s ease;
    text-decoration: none;
}

.webdesign-footer-links ul li a:hover {
    color: var(--webdesign-primary);
    padding-right: 5px;
}

.webdesign-footer hr {
    border-color: rgba(255, 255, 255, 0.05);
}

/* تأثيرات الحركة */
.webdesign-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.webdesign-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* أنماط متجاوبة */
@media (max-width: 992px) {
    .webdesign-hero-title {
        font-size: 3rem;
    }
    
    .webdesign-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .webdesign-process-timeline:before {
        left: 30px;
    }
    
    .webdesign-process-item {
        flex-direction: row !important;
    }
    
    .webdesign-process-item .webdesign-process-content {
        text-align: right !important;
        margin: 0 0 0 3rem !important;
    }
}

@media (max-width: 768px) {
    .webdesign-hero-title {
        font-size: 2.5rem;
    }
    
    .webdesign-section {
        padding: 4rem 0;
    }
    
    .webdesign-section-title {
        font-size: 2.2rem;
    }
    
    .webdesign-services-grid,
    .webdesign-features-grid,
    .webdesign-projects-grid {
        grid-template-columns: 1fr;
    }
    
    .webdesign-contact-form,
    .webdesign-contact-info {
        padding: 1.5rem;
    }
    
    .webdesign-footer-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .webdesign-hero-title {
        font-size: 2rem;
    }
    
    .webdesign-hero-subtitle {
        font-size: 1rem;
    }
    
    .webdesign-process-timeline:before {
        display: none;
    }
    
    .webdesign-process-item {
        flex-direction: column !important;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .webdesign-process-icon {
        margin: 0 auto 1rem;
    }
    
    .webdesign-process-item .webdesign-process-content {
        margin: 0 !important;
        text-align: center !important;
    }
    
    .webdesign-tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* تصميم المواقع الإلكترونية - متغيرات الألوان */


/* أنماط عامة لصفحة تصميم المواقع */
.webdesign-body {
    background-color: var(--webdesign-darker);
    color: var(--webdesign-light);
    overflow-x: hidden;
    line-height: 1.6;
}

/* شريط التنقل */
.webdesign-navbar {
    padding: 1.2rem 5%;
    background: rgba(13, 27, 42, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.webdesign-navbar.scrolled {
    padding: 0.8rem 5%;
    background: rgba(13, 27, 42, 0.95);
}

.webdesign-navbar-brand {
    font-weight: 800;
    font-size: 1.8rem;
    background: var(--webdesign-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.webdesign-navbar-nav .nav-link {
    color: var(--webdesign-light) !important;
    font-weight: 500;
    margin: 0 0.7rem;
    position: relative;
    transition: all 0.3s ease;
}

.webdesign-navbar-nav .nav-link:before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    right: 0;
    background: var(--webdesign-gradient);
    transition: width 0.3s ease;
}

.webdesign-navbar-nav .nav-link:hover:before {
    width: 100%;
}

.webdesign-navbar-nav .nav-link.active {
    color: var(--webdesign-primary) !important;
}

/* القسم الرئيسي */
.webdesign-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0 5%;
}

.webdesign-hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.4;
}

.webdesign-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.webdesign-hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.webdesign-hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: #a1a1b5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.webdesign-gradient-text {
    background: var(--webdesign-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.webdesign-btn {
    background: var(--webdesign-gradient);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(67, 97, 238, 0.3);
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}

.webdesign-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(67, 97, 238, 0.4);
    color: white;
}

.webdesign-btn-glow:after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(30deg);
    transition: all 0.5s ease;
}

.webdesign-btn-glow:hover:after {
    transform: rotate(30deg) translate(10%, 10%);
}

.webdesign-btn-outline {
    background: transparent;
    border: 2px solid var(--webdesign-primary);
    color: var(--webdesign-primary);
}

.webdesign-btn-outline:hover {
    background: var(--webdesign-primary);
    color: white;
}

/* عناصر متحركة في الخلفية */
.webdesign-animated-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.webdesign-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    background: var(--webdesign-gradient);
}

.webdesign-shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
    animation: float 8s ease-in-out infinite;
}

.webdesign-shape-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 15%;
    animation: float 6s ease-in-out infinite reverse;
}

.webdesign-shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 20%;
    animation: float 10s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* الأقسام */
.webdesign-section {
    padding: 100px 5%;
    position: relative;
}

.webdesign-section-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 3rem;
    text-align: center;
}

/* قسم أنواع المواقع */
.webdesign-types-section {
    background: rgba(255, 255, 255, 0.02);
}

.webdesign-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.webdesign-type-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.webdesign-type-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--webdesign-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.webdesign-type-card:hover:before {
    transform: scaleX(1);
}

.webdesign-type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.webdesign-type-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    background: var(--webdesign-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.webdesign-type-features {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    text-align: right;
}

.webdesign-type-features li {
    padding: 5px 0;
    position: relative;
    padding-right: 20px;
}

.webdesign-type-features li:before {
    content: '•';
    position: absolute;
    right: 0;
    color: var(--webdesign-accent);
}

/* قسم المزايا */
.webdesign-benefits-section {
    background: rgba(255, 255, 255, 0.01);
}

.webdesign-benefits-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.webdesign-benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
}

.webdesign-benefit-number {
    font-size: 2rem;
    font-weight: 800;
    background: var(--webdesign-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-left: 20px;
    min-width: 60px;
}

.webdesign-benefit-text h4 {
    margin-bottom: 10px;
    color: var(--webdesign-light);
}

.webdesign-benefit-text p {
    color: #a1a1b5;
}

.webdesign-benefits-visual {
    text-align: center;
}

.webdesign-visual-element {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* قسم معرض الأعمال */
.webdesign-showcase-section {
    background: rgba(255, 255, 255, 0.02);
}

.webdesign-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.webdesign-showcase-item {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.webdesign-showcase-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

.webdesign-showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 27, 42, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.webdesign-showcase-item:hover .webdesign-showcase-overlay {
    opacity: 1;
}

.webdesign-showcase-item:hover .webdesign-showcase-image img {
    transform: scale(1.1);
}

.webdesign-showcase-overlay h4 {
    margin-bottom: 15px;
    color: white;
}

.webdesign-showcase-overlay p {
    color: #a1a1b5;
    margin-bottom: 20px;
}

.webdesign-showcase-link {
    color: var(--webdesign-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.webdesign-showcase-link:hover {
    color: var(--webdesign-accent);
}

/* قسم الباقات */
.webdesign-pricing-section {
    background: rgba(255, 255, 255, 0.01);
}

.webdesign-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.webdesign-pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.webdesign-pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.webdesign-pricing-featured {
    border: 2px solid var(--webdesign-primary);
    transform: scale(1.05);
}

.webdesign-pricing-featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.webdesign-pricing-badge {
    position: absolute;
    top: -15px;
    right: 50%;
    transform: translateX(50%);
    background: var(--webdesign-gradient);
    color: white;
    padding: 5px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
}

.webdesign-pricing-header {
    margin-bottom: 30px;
}

.webdesign-pricing-price {
    margin: 20px 0;
}

.webdesign-price {
    font-size: 3rem;
    font-weight: 800;
    background: var(--webdesign-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.webdesign-currency {
    font-size: 1.2rem;
    color: #a1a1b5;
}

.webdesign-pricing-features {
    margin-bottom: 30px;
}

.webdesign-pricing-features ul {
    list-style: none;
    padding: 0;
    text-align: right;
}

.webdesign-pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.webdesign-pricing-features li:last-child {
    border-bottom: none;
}

/* قسم الأسئلة الشائعة */
.webdesign-faq-section {
    background: rgba(255, 255, 255, 0.02);
}

.webdesign-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.webdesign-faq-item {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.webdesign-faq-question {
    width: 100%;
    padding: 20px;
    text-align: right;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.webdesign-faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.webdesign-faq-question i {
    transition: transform 0.3s ease;
}

.webdesign-faq-question.active i {
    transform: rotate(180deg);
}

.webdesign-faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.webdesign-faq-answer.active {
    padding: 20px;
    max-height: 200px;
}

.webdesign-faq-answer p {
    color: #a1a1b5;
    margin: 0;
}

/* قسم التواصل */
.webdesign-cta-section {
    background: var(--webdesign-gradient);
    text-align: center;
}

.webdesign-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.webdesign-cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
}

.webdesign-cta-text {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

/* زر الواتساب */
.webdesign-whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    left: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.webdesign-whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

/* الفوتر */
.webdesign-footer {
    background: var(--webdesign-darker);
    padding: 80px 5% 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.webdesign-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.webdesign-footer-brand p {
    color: #a1a1b5;
    margin-top: 20px;
}

.webdesign-footer-links h5,
.webdesign-footer-contact h5 {
    color: white;
    margin-bottom: 20px;
    font-weight: 600;
}

.webdesign-footer-links ul {
    list-style: none;
    padding: 0;
}

.webdesign-footer-links li {
    margin-bottom: 10px;
}

.webdesign-footer-links a {
    color: #a1a1b5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.webdesign-footer-links a:hover {
    color: var(--webdesign-primary);
}

.webdesign-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #a1a1b5;
}

.webdesign-contact-item i {
    margin-left: 10px;
    color: var(--webdesign-primary);
}

.webdesign-footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #a1a1b5;
}

/* تأثيرات الظهور */
.webdesign-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.webdesign-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* التجاوب مع الشاشات المختلفة */
@media (max-width: 992px) {
    .webdesign-hero-title {
        font-size: 3rem;
    }
    
    .webdesign-benefits-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .webdesign-benefit-item {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .webdesign-hero-title {
        font-size: 2.5rem;
    }
    
    .webdesign-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .webdesign-section-title {
        font-size: 2.2rem;
    }
    
    .webdesign-pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .webdesign-pricing-featured {
        transform: scale(1);
    }
    
    .webdesign-pricing-featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 576px) {
    .webdesign-hero-title {
        font-size: 2rem;
    }
    
    .webdesign-section {
        padding: 70px 5%;
    }
    
    .webdesign-showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .webdesign-whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        left: 20px;
    }
}


        
        
        .mega-menu-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(13, 13, 21, 0.98);
            backdrop-filter: blur(10px);
            z-index: 666666666666666666666666666666666666666;
            overflow-y: auto;
            padding: 2rem;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-20px);
            transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        }
        
        .mega-menu-container.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .mega-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
     
        
        .mega-menu-title {
            font-size: 1.8rem;
            font-weight: 800;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .close-menu {
            background: none;
            border: none;
            color: var(--light);
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .close-menu:hover {
            color: var(--primary);
            background: rgba(255, 255, 255, 0.1);
            transform: rotate(90deg);
        }
        
        .mega-menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .menu-section {
            margin-bottom: 2rem;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease;
        }
        
        .mega-menu-container.active .menu-section {
            opacity: 1;
            transform: translateY(0);
        }
        
        .mega-menu-container.active .menu-section:nth-child(1) { transition-delay: 0.1s; }
        .mega-menu-container.active .menu-section:nth-child(2) { transition-delay: 0.15s; }
        .mega-menu-container.active .menu-section:nth-child(3) { transition-delay: 0.2s; }
        .mega-menu-container.active .menu-section:nth-child(4) { transition-delay: 0.25s; }
        .mega-menu-container.active .menu-section:nth-child(5) { transition-delay: 0.3s; }
        .mega-menu-container.active .menu-section:nth-child(6) { transition-delay: 0.35s; }
        .mega-menu-container.active .menu-section:nth-child(7) { transition-delay: 0.4s; }
        
        .menu-section-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--primary);
            color: var(--light);
        }
        
        .menu-links {
            list-style: none;
        }
        
        .menu-links li {
            margin-bottom: 0.8rem;
        }
        
        .menu-links a {
            color: #a1a1b5;
            text-decoration: none;
            transition: color 0.3s ease;
            display: block;
            padding: 0.5rem 0;
            position: relative;
            padding-right: 1.5rem;
        }
        
        .menu-links a:hover {
            color: var(--light);
        }
        
        .menu-links a:before {
            content: '→';
            position: absolute;
            right: 0;
            opacity: 0;
            transition: opacity 0.3s ease, transform 0.3s ease;
        }
        
        .menu-links a:hover:before {
            opacity: 1;
            transform: translateX(-5px);
        }
        
        .menu-btn {
            display: inline-block;
            background: var(--gradient);
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            margin-top: 1rem;
            box-shadow: 0 5px 15px rgba(110, 68, 255, 0.3);
        }
        
        .menu-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(110, 68, 255, 0.4);
        }
        
        .menu-contact-info {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            color: #a1a1b5;
        }
        
        .contact-item i {
            margin-left: 1rem;
            color: var(--primary);
        }
        
        @media (max-width: 768px) {
            .mega-menu-grid {
                grid-template-columns: 1fr;
            }
        }
        
        .open-menu-btn {
          
            background: var(--gradient);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease; 
            margin-left: 30px;
        }
        
        .open-menu-btn:hover {
            transform: scale(1.1);
        }
        
        /* أنيميشن زر القائمة */
        .open-menu-btn.animate {
            animation: pulse 0.5s ease;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.2); }
            100% { transform: scale(1); }
        }
        .logo img {
            width: 200px;
            height: auto;
        }
        .nav-header-mega-menu-roeia {
            border: none;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            background: #0c0c0c;
            border-bottom: 2px solid #393939;
        }

      .ScrollSmoother-wrapper
      {
        position: relative !important;
      }
      
      .elementor-2 .elementor-element.elementor-element-0bce385
      {
          margin-top:0 !important;
      
      }

/* أنماط خاصة بصفحة التسويق الإلكتروني */
:root {
    --marketing-primary: #ff6b35;
    --marketing-secondary: #2ec4b6;
    --marketing-accent: #f7931e;
    --marketing-dark: #0d1b2a;
    --marketing-darker: #070d15;
    --marketing-light: #f8f9fa;
    --marketing-gradient: linear-gradient(135deg, var(--marketing-primary), var(--marketing-accent));
    --marketing-gradient-reverse: linear-gradient(135deg, var(--marketing-accent), var(--marketing-primary));
}

.marketing-body {
    font-family: 'Tajawal', sans-serif;
    background-color: var(--marketing-darker);
    color: var(--marketing-light);
    overflow-x: hidden;
    line-height: 1.6;
}

/* شريط التنقل */
.marketing-navbar {
    padding: 1.2rem 5%;
    background: rgba(13, 27, 42, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.marketing-navbar.scrolled {
    padding: 0.8rem 5%;
    background: rgba(13, 27, 42, 0.95);
}

.marketing-navbar-brand {
    font-weight: 800;
    font-size: 1.8rem;
    background: var(--marketing-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.marketing-navbar-nav .nav-link {
    color: var(--marketing-light) !important;
    font-weight: 500;
    margin: 0 0.7rem;
    position: relative;
    transition: all 0.3s ease;
}

.marketing-navbar-nav .nav-link:before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    right: 0;
    background: var(--marketing-gradient);
    transition: width 0.3s ease;
}

.marketing-navbar-nav .nav-link:hover:before {
    width: 100%;
}

.marketing-navbar-nav .nav-link.active {
    color: var(--marketing-primary) !important;
}

/* القسم الرئيسي */
.marketing-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0 5%;
}

.marketing-hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.4;
}

.marketing-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.marketing-hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.marketing-hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: #a1a1b5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.marketing-gradient-text {
    background: var(--marketing-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.marketing-btn-glow {
    background: var(--marketing-gradient);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.marketing-btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.marketing-btn-glow:after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(30deg);
    transition: all 0.5s ease;
}

.marketing-btn-glow:hover:after {
    transform: rotate(30deg) translate(10%, 10%);
}

/* جسيمات الخلفية */
.marketing-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.marketing-particle {
    position: absolute;
    will-change: transform, opacity;
    pointer-events: none;
    user-select: none;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.3);
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
    transition: transform 0.3s ease;
}

.marketing-particle:hover {
    transform: scale(1.2) !important;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.8);
    z-index: 10 !important;
}

/* تحسين أداء الحركة */
.marketing-particles {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* الأقسام العامة */
.marketing-section {
    padding: 6rem 0;
    position: relative;
}

.marketing-section-title {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.marketing-section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--marketing-gradient);
    border-radius: 2px;
}

/* قسم استراتيجيات التسويق */
.marketing-strategies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.marketing-strategy-card {
    background: rgba(15, 23, 42, 0.7);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.marketing-strategy-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--marketing-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.marketing-strategy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.marketing-strategy-card:hover:before {
    opacity: 0.05;
}

.marketing-strategy-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    font-size: 2rem;
    color: var(--marketing-primary);
    transition: all 0.3s ease;
}

.marketing-strategy-card:hover .marketing-strategy-icon {
    background: var(--marketing-gradient);
    color: white;
    transform: scale(1.1);
}

.marketing-strategy-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.marketing-strategy-card p {
    color: #a1a1b5;
    margin-bottom: 1.5rem;
}

.marketing-strategy-list {
    list-style: none;
    padding: 0;
    text-align: right;
}

.marketing-strategy-list li {
    padding: 0.5rem 0;
    color: #d1d5db;
    position: relative;
    padding-right: 1.5rem;
}

.marketing-strategy-list li:before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--marketing-secondary);
    font-weight: bold;
}

/* قسم إحصائيات النجاح */
.marketing-stats-section {
    background: rgba(255, 255, 255, 0.02);
}

.marketing-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.marketing-stat-box {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.marketing-stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 107, 53, 0.2);
}

.marketing-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: var(--marketing-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.marketing-stat-label {
    color: #a1a1b5;
    font-size: 1.1rem;
}

/* قسم دراسات الحالة */
.marketing-cases-section {
    background: rgba(255, 255, 255, 0.01);
}

.marketing-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.marketing-case-card {
    background: rgba(15, 23, 42, 0.7);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.marketing-case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.marketing-case-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

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

.marketing-case-card:hover .marketing-case-image img {
    transform: scale(1.05);
}

.marketing-case-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.marketing-case-card:hover .marketing-case-overlay {
    opacity: 1;
}

.marketing-case-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--marketing-gradient);
    color: white;
    border-radius: 50%;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
}

.marketing-case-link:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.marketing-case-content {
    padding: 1.5rem;
}

.marketing-case-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: white;
}

.marketing-case-content p {
    color: #a1a1b5;
    margin-bottom: 1rem;
}

.marketing-case-results {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.marketing-case-results span {
    background: rgba(255, 107, 53, 0.1);
    color: var(--marketing-primary);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* قسم خطوات العمل */
.marketing-process-section {
    background: rgba(255, 255, 255, 0.02);
}

.marketing-process-steps {
    max-width: 800px;
    margin: 4rem auto 0;
}

.marketing-process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
}

.marketing-process-step:not(:last-child):after {
    content: '';
    position: absolute;
    top: 60px;
    left: 30px;
    width: 2px;
    height: calc(100% - 40px);
    background: var(--marketing-gradient);
    opacity: 0.3;
}

.marketing-step-number {
    background: var(--marketing-gradient);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-left: 20px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.marketing-step-content {
    background: rgba(15, 23, 42, 0.7);
    padding: 2rem;
    border-radius: 15px;
    flex: 1;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.marketing-step-content h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: white;
}

.marketing-step-content p {
    color: #a1a1b5;
}

/* قسم الأدوات والتقنيات */
.marketing-tools-section {
    background: rgba(255, 255, 255, 0.01);
}

.marketing-tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.marketing-tool-item {
    background: rgba(15, 23, 42, 0.7);
    border-radius: 15px;
    padding: 2rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.marketing-tool-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 107, 53, 0.2);
}

.marketing-tool-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.marketing-tool-item:hover img {
    transform: scale(1.1);
}

.marketing-tool-item h4 {
    font-size: 1.1rem;
    color: white;
}

/* قسم الأسئلة الشائعة */
.marketing-faq-section {
    background: rgba(255, 255, 255, 0.02);
}

.marketing-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.marketing-faq-item {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.marketing-faq-question {
    width: 100%;
    padding: 20px;
    text-align: right;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.marketing-faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.marketing-faq-question i {
    transition: transform 0.3s ease;
}

.marketing-faq-question.active i {
    transform: rotate(180deg);
}

.marketing-faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.marketing-faq-answer.active {
    padding: 20px;
    max-height: 200px;
}

.marketing-faq-answer p {
    color: #a1a1b5;
    margin: 0;
}

/* زر الواتساب العائم */
.marketing-whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    left: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.marketing-whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

/* الفوتر */
.marketing-footer {
    background: var(--marketing-dark);
    padding: 80px 5% 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.marketing-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.marketing-footer-brand p {
    color: #a1a1b5;
    margin-top: 20px;
}

.marketing-footer-links h5,
.marketing-footer-contact h5 {
    color: white;
    margin-bottom: 20px;
    font-weight: 600;
}

.marketing-footer-links ul {
    list-style: none;
    padding: 0;
}

.marketing-footer-links li {
    margin-bottom: 10px;
}

.marketing-footer-links a {
    color: #a1a1b5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.marketing-footer-links a:hover {
    color: var(--marketing-primary);
}

.marketing-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #a1a1b5;
}

.marketing-contact-item i {
    margin-left: 10px;
    color: var(--marketing-primary);
}

.marketing-footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #a1a1b5;
}

/* تأثيرات الظهور */
.marketing-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.marketing-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* التجاوب مع الشاشات المختلفة */
@media (max-width: 992px) {
    .marketing-hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .marketing-hero-title {
        font-size: 2.5rem;
    }
    
    .marketing-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .marketing-section-title {
        font-size: 2.2rem;
    }
    
    .marketing-process-step {
        flex-direction: column;
    }
    
    .marketing-step-number {
        margin-left: 0;
        margin-bottom: 20px;
    }
    
    .marketing-process-step:not(:last-child):after {
        left: 30px;
        top: 60px;
        height: calc(100% - 40px);
    }
}

@media (max-width: 576px) {
    .marketing-hero-title {
        font-size: 2rem;
    }
    
    .marketing-section {
        padding: 70px 5%;
    }
    
    .marketing-strategies-grid,
    .marketing-cases-grid {
        grid-template-columns: 1fr;
    }
    
    .marketing-whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        left: 20px;
    }
}