 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #f5e6ff 0%, #e6f5ff 100%);
    min-height: 100vh;
    padding: 0;  /* ✅ */
    margin: 0;
    overflow-x: hidden;  /* ✅ أضف هذا أيضاً */
}
header {
display: flex;
justify-content: space-between; 
align-items: center;
padding: 20px 50px;
background: rgba(255, 255, 255, 0.6);
backdrop-filter: blur(10px);
border-radius: 20px;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
position: fixed;  /* ← غيّر من sticky إلى fixed */
top: 6px;
left: 0;
right:0;
z-index: 1005;
margin: 0 20px;  /* لإضافة مسافة من الجوانب */
}

.logo {
    font-size: 38px;
    font-weight: 900;
    color: #8b3dff;
    letter-spacing: 1px;
    display: flex;
    flex-direction: column; 
    line-height: 0.9;
}

.logo-main {
    font-size: 56px;
    font-weight: 700;
    color: #8b3dff;
    display: inline-block; 
    line-height: 1;
}

.gradient-letters {
    background: linear-gradient(70deg, #ff4fcf, #9b4dff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.logo-sub {
    font-size: 34px;
    font-weight: 600;
    color: #8b3dff;
    display: flex;
    align-items: center;
    gap: 0;
    letter-spacing: 0.5px;
}

.logo-underline {
    width: 80px;
    height: 3px;
    background: #8b3dff;
    border-radius: 2px;
}

.cta-button {
    background: linear-gradient(135deg, #8b3dff 0%, #a855f7 100%);
    position: absolute;
    right: 120px;
    color: rgb(255, 255, 255);
    border: none;
    padding: 20px 50px;
    border-radius: 10px;
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(139, 61, 255, 0.3);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(139, 61, 255, 0.4);
}

.cta-button:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    header {
        padding: 15px 20px;
        flex-wrap: nowrap;
    }

    .logo-main {
        font-size: 32px;
    }

    .logo-sub {
        font-size: 20px;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 16px;
        border-radius: 5px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }

    header {
        padding: 12px 15px;
        gap: 10px;
    }

    .logo-main {
        font-size: 28px;
    }

    .logo-sub {
        font-size: 14px;
    }

    .logo-sub svg {
        width: 60px;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 14px;
        border-radius: 12px;
    }
}

@media (min-width: 1200px) {
    header {
        max-width: 1400px;
        margin: 0 auto;
        padding: 25px 60px;
    }

    .logo-main {
        font-size: 64px;
    }

    .logo-sub {
        font-size: 32px;
    }

    .cta-button {
        padding: 20px 60px;
        font-size: 26px;
    }
}

#checkbox {
    display: none;
}

.toggle {
    position: relative;
    left: 110px;
    width: 40px;
    cursor: pointer;
    margin: auto;
    display: block;
    height: calc(4px * 3 + 11px * 2);
}

.bar {
    position: absolute;
    left:6px;
    top: 4px;
    right: 6px;
    height: 4px;
    border-radius: calc(4px / 2);
    background: #7b52b9;
    color: inherit;
    opacity: 1;
    transition: none 0.35s cubic-bezier(.5,-0.35,.35,1.5) 0s;
}

.bar--top {
    bottom: calc(50% + 11px + 4px/ 2);
    transition-property: bottom,transform;
    transition-delay: calc(0s + 0.35s),0s;
}

.bar--middle {
    top: calc(50% - 4px/ 2);
    transition-property: opacity;
    transition-delay: calc(0s + 0.35s);
}

.bar--bottom {
    top: calc(50% + 11px + 4px/ 2);
    transition-property: top,transform;
    transition-delay: calc(0s + 0.35s),0s;
    position: absolute;
    top: 25px;
}

#checkbox:checked + .toggle .bar--top {
    bottom: calc(50% - 4px/ 2);
    transform: rotate(135deg);
    transition-delay: 0s,calc(0s + 0.35s);
}

#checkbox:checked + .toggle .bar--middle {
    opacity: 0;
    transition-duration: 0s;
    transition-delay: calc(0s + 0.35s);
}

#checkbox:checked + .toggle .bar--bottom {
    top: calc(50% - 4px/ 2);
    transform: rotate(225deg);
    transition-delay: 0s,calc(0s + 0.35s);
}

.menu-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-page.active {
    display: flex;
    opacity: 1;
}

.menu-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 30px 180px;
}

.nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
    max-width: 400px;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    font-size: 32px;
    font-weight: 400;
    transition: color 0.3s;
    text-align: center;
}

.nav-links a.active {
    color: #9b4dff;
}

.nav-links a:hover {
    color: #9b4dff;
}

.language-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 20px;
    color: #000;
    margin-top: 50px;
}

.flag {
    font-size: 24px;
}

.cta-button-menu {
    position: fixed;
    bottom: 0;
    left:30px;
    right: 30px;
    padding: 30px;
    background: linear-gradient(to top, #fff 90%, transparent);
    margin-bottom: 50px; /* يرفع الزر للأعلى */
}

.cta-button-menu button {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: block;
    background: linear-gradient(135deg, #9b4dff, #b84dff);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(155, 77, 255, 0.3);
    transition: transform 0.2s;
   
}

.cta-button-menu button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(155, 77, 255, 0.4);
}

@media (min-width: 768px) {
    .nav-links {
        gap: 50px;
    }

    .nav-links a {
        font-size: 36px;
    }

    .language-selector {
        font-size: 22px;
        margin-top: 60px;
    }

    .cta-button-menu {
        padding: 40px;
    }

    .cta-button-menu button {
        padding: 20px;
        font-size: 22px;
    }
}

@media (min-width: 1024px) {
    .menu-container {
        padding: 100px 50px 200px;
    }

    .nav-links {
        gap: 60px;
        max-width: 500px;
    }

    .nav-links a {
        font-size: 40px;
    }
}

#checkbox:checked ~ .menu-page .toggle-close .bar--top {
    transform: rotate(45deg) translate(6px, 6px);
}

#checkbox:checked ~ .menu-page .toggle-close .bar--middle {
    opacity: 0;
}

#checkbox:checked ~ .menu-page .toggle-close .bar--bottom {
    transform: rotate(-45deg) translate(7px, -7px);
}

.close-x {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 45px;
    cursor: pointer;
    color: #000;
    font-weight: 400;
    line-height: 1;
    z-index: 1003;
    transition: transform 0.2s;
}

.close-x:hover {
    transform: rotate(90deg);
}



/* أنيميشن ظهور القائمة */
.menu-page {
    transform: translateX(100%);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.menu-page.active {
    transform: translateX(0);
}

/* أنيميشن العناصر داخل القائمة */
.menu-page.active .nav-links a,
.menu-page.active .language-selector,
.menu-page.active .cta-button-menu,
.menu-page.active .close-x {
    animation: slideIn 0.5s ease forwards;
    opacity: 0;
}

.menu-page.active .nav-links a:nth-child(1) {
    animation-delay: 0.1s;
}

.menu-page.active .nav-links a:nth-child(2) {
    animation-delay: 0.2s;
}

.menu-page.active .nav-links a:nth-child(3) {
    animation-delay: 0.3s;
}

.menu-page.active .nav-links a:nth-child(4) {
    animation-delay: 0.4s;
}

.menu-page.active .language-selector {
    animation-delay: 0.5s;
}

.menu-page.active .cta-button-menu {
    animation-delay: 0.6s;
}

.menu-page.active .close-x {
    animation-delay: 0.1s;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
            min-height: 100vh;
        }

        /* Hero Section */
        .hero-section {
            padding: 60px 20px;
            max-width: 900px;
            margin: 0 auto;
        }

        /* Tags Section */
        .tags-container {
            display: flex;
            gap: 15px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

       .tag {
    padding: 3px 20px;
    font-size: 18px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

    .tag-white {
    background: white;
    color: #000;
    border: 2px solid #e0e0e0;
    
    font-size: 14px;          /* حجم الخط */
    padding: 3px 5px;         /* 3px أعلى وأسفل، 8px يمين ويسار */
    border-radius: 50px;
    display: inline-flex;      /* يبقى flex */
    align-items: center;       
    gap: 0;                    /* إزالة أي فراغ إضافي بين محتويات الزر */
}




        .tag-green {
    background: linear-gradient(135deg, #c8f5d9 0%, #a8e6cf 100%);
    color: #000;
    display: flex;
    align-items: center;
    gap: 6px;               /* مسافة أقل بين النص والأيقونة */
    
    padding: 4px 12px;      /* حشوة داخلية صغيرة */
    font-size: 12px;        /* حجم النص أصغر */
    border-radius: 6px;     /* حواف مستديرة */
    font-weight: 500;
    cursor: default;        /* يمكن تغييره إذا تريد قابل للنقر */
}

/* إذا التاج يحتوي أيقونة svg */
.tag-green svg {
    width: 14px;
    height: 14px;
}


        .star-icon {
            color: #2ecc71;
            font-size: 24px;
        }

   .main-heading {
    font-size: 50px;
    font-weight:600;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #000;
    display: inline-block;

    /* البداية من الأسفل */
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 2s ease forwards;
}

/* الأنيميشن */
@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    60% {
        opacity: 0.7;
        transform: translateY(-10px); /* حركة إضافية صغيرة لأعلى */
    }
    100% {
        opacity: 1;
        transform: translateY(0); /* يستقر في مكانه النهائي */
    }
}

/* التدرج اللوني */
.gradient-text {
    background: linear-gradient(135deg, #8b3dff 0%, #8b3dff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}







.gradient-text {
    background: linear-gradient(135deg, #8b3dff 0%, #8b3dff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.gradient-text::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 10px;

    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='300' height='12'><path d='M2 8 Q 60 2, 120 8 T 298 7' stroke='%238b3dff' stroke-width='6' fill='none' stroke-linecap='round'/></svg>");
    
    background-repeat: no-repeat;
    background-size: 100% 100%;
}



        /* Subtitle */
        .subtitle {
            font-size: 22px;
            line-height: 1.6;
            margin-bottom: 50px;
            color: #333;
        }

        .subtitle .bold-text {
            font-weight: 700;
            color: #000;
        }

        .subtitle .italic-text {
            font-style: italic;
            color: #666;
        }

        /* CTA Button */
        .cta-container {
            text-align: center;
            margin-top: 60px;
        }

        .ctaa-button {
            background: linear-gradient(135deg, #8b3dff 0%, #8b3dff 100%);
            color: white;
            border: none;
            padding: 22px 60px;
            border-radius: 50px;
            font-size: 22px;
            font-weight: 600;
            cursor: pointer;
            box-shadow: 0 8px 25px rgba(139, 61, 255, 0.4);
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 15px;
        }

        .ctaa-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(139, 61, 255, 0.5);
        }

        .arrow-icon {
            font-size: 24px;
            transition: transform 0.3s ease;
        }

        .ctaa-button:hover .arrow-icon {
            transform: translateX(5px);
        }

        .cta-note {
            margin-top: 15px;
            font-size: 16px;
            color: #666;
        }

        /* Mobile */
@media (max-width: 768px) {
    .hero-section {
        padding: 40px 20px;
    }

    .main-heading {
        font-size: 40px;
    }

    .subtitle {
        font-size: 18px;
    }

    .tag {
        font-size: 15px;
        padding: 10px 20px;
    }

    .ctaa-button {
        padding: 10px 70px;
        font-size: 18px;
    }

    .gradient-text::after {
        height: 6px;
        bottom: -6px;
    }
}

@media (min-width: 769px) {
    .hero-section {
        text-align: left !important;
        max-width: 1400px;
        padding-left: 50px;
        margin-left: 0;
        padding-top: 160px;
        overflow: visible !important; /* هذا يحل المشكلة */
    }



    .tags-container {
        justify-content: flex-start !important;
    }

    .main-heading,
    .subtitle {
        text-align: left !important;
    }

    .cta-container {
        text-align: left !important;
    }
}




      @media (max-width: 480px) {
    .main-heading {
        font-size: 40px;
        font-weight:600;
        }

    .subtitle {
        font-size: 17px;
    }

    /* الحاوية التي تحتوي كل التاجات */
    .tags-container {
        display: flex;
        flex-direction: column; /* التاجات فوق بعض */
        align-items: center;    /* محاذاة كل التاجات بالوسط */
        gap: 8px; 
        margin-top: 40px;
                      /* مسافة بين التاجات */
    }

    /* التاج الأبيض */
    .tag-white {
        width: auto;           /* عرض تلقائي حسب المحتوى */
        justify-content: center;
        padding: 12px 8px;
        font-size: 11px;       /* تصغير النص */
        border-radius: 6px;
        position: relative;
        top: 40px;
        left: 100px;
    }

    /* التاج الأخضر */
    .tag-green {
        width: auto;           /* عرض تلقائي حسب المحتوى */
        justify-content: center;
        padding: 4px 8px;
        font-size: 11px;       /* تصغير النص */
        border-radius: 6px;
        display: flex;
        align-items: center;
        gap: 4px;
        position: relative;
        top: -12px;
        right: 100px;
    }

    .gradient-text::after {
        height: 5px;
        bottom: -5px;
    }
}


.sliding-images-section {
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
    background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 1) 100%);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-slideshow {
    position: relative;
    width: 500px;
    height: 350px;
}

.image-wrapper {
    position: absolute;
    top: 0;
    left: 40px;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.image-wrapper.active {
    opacity: 1;
}

.image-slideshow img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50px;
    display: block;
    position: relative;
    z-index: 2;
}


/* ==========  HERO + SLIDESHOW – DESKTOP ONLY  ========== */
/* يُطبق فقط على الشاشات الأكبر من أو تساوي 769 بكسل */

@media (min-width: 769px) {

  /* --- الهيكل العام --- */
  body {
    position: relative !important; /* مرجع للعناصر المطلقة */
  }

  /* --- النص (اليسار) --- */
  .hero-section {
    max-width: 650px !important;
    margin: 0 0 0 80px !important;
    padding: 180px 0 80px !important;
    text-align: left !important;
  }

  .tags-container,
  .main-heading,
  .subtitle,
  .cta-container {
    text-align: left !important;
  }

  /* --- حاوية الصور (اليمين) --- */
  .sliding-images-section {
    position: absolute !important;
    top: 140px !important;
    right: 80px !important;
    max-width: 400px !important;
    max-height: 300px !important;
    width: auto !important;
    height: auto !important;
    z-index: 5 !important;
  }

  /* --- الإطار الداخلي للصور --- */
  .image-slideshow {
    width: 100% !important;
    height: 100% !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 25px 70px rgba(139, 61, 255, 0.25) !important;
    background: #fff !important;
    position: relative !important;
  }

  /* --- كل صورة --- */
  .image-wrapper {
    position: absolute !important;
    inset: 0 !important;
    opacity: 0 !important;
    transition: opacity 1s ease-in-out !important;
  }

  .image-wrapper.active {
    opacity: 1 !important;
  }

  .image-wrapper img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important; /* الأهم: تظهر كاملة دون تمديد أو قص */
    object-position: center !important;
    display: block !important;
  }
}

/* ==========  شاشات أكبر من 1400px – تكبير بسيط  ========== */
@media (min-width: 1400px) {
  .hero-section {
    max-width: 700px !important;
    margin-left: 150px !important;
  }

  .sliding-images-section {
    right: 150px !important;
    max-width: 500px !important;
    max-height: 350px !important;
  }
}

   




       

        /* Pink/Purple Marquee Section */
        .marquee-section {
            background: linear-gradient(90deg, #d946ef 0%, #a855f7 50%, #d946ef 100%);
            padding: 35px 0;
            overflow: hidden;
            width: 100%;
            margin:0;
            
            
        }

        .marquee {
            width: 100%;
            overflow: hidden;
            display: flex;
        }

        .marquee-content {
            display: flex;
            animation: marqueeScroll 10s linear infinite;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .marquee-content span {
            color: white;
            font-size: 56px;
            font-weight: 700;
            padding: 0 60px;
            flex-shrink: 0;
            text-transform: capitalize;
        }

        @keyframes marqueeScroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        /* Clients Section */
        .clients-section {
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            background: white;
        }

        .clients-section h2 {
            font-size: 42px;
            font-weight: 200;
            margin-bottom: 70px;
            color: #1a1a1a;
        }

        .clients-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px 40px;
            align-items: center;
            justify-items: center;
        }

        .client-logo {
            width: 180px;
            height: 90px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 15px;
       opacity: 0;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-out;
}

.client-logo.show {
    opacity: 1;
    transform: translateY(0);
}

        .client-logo img {
    max-width: 150px;
    height: auto;
    filter: none; /* يزيل أي فلتر رمادي */
    opacity: 1;   /* يضمن أن الصورة كاملة الوضوح */
    transition: transform 0.3s;
}

.client-logo img:hover {
    transform: scale(1.1); /* تكبير عند المرور بالفأرة */
}

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .sliding-images-section {
                padding: 30px 0;
            }

            .images-slider {
                gap: 15px;
            }

            .images-slider img {
                width: 100vw;
                height: 280px;
                border-radius: 0;
            }

            .image-wrapper::before {
                width: 160%;
                height: 160%;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                filter: blur(30px);
                border-radius: 20px;
            }

            .marquee-content span {
                font-size: 36px;
                padding: 0 40px;
            }

            .marquee-section {
                padding: 25px 0;
            }
            
            .clients-section {
                padding: 60px 20px;
            }

            .clients-section h2 {
                font-size: 32px;
                margin-bottom: 50px;
            }

            .clients-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px 30px;
            }

            .client-logo {
                width: 300px;
                height: 70px;
            }
        }

      @media (max-width: 480px) {
    .marquee-content span {
        font-size: 28px;
        padding: 0 30px;
    }

    .clients-section h2 {
        font-size: 18px;
        font-weight: 300;
        margin-bottom: 70px;
    }

    .client-logo {
        width: 120px;
        height: 60px;
    }

    .images-slider img {
        border-radius: 20px;
    }

   .images-slider {
        animation: slideImages 8s linear infinite;  /* سرعة متوسطة */
    }

    .marquee-content {
        animation: marqueeScroll 8s linear infinite;
    }
     .marquee-section {
    background: linear-gradient(90deg, #d946ef 0%, #a855f7 50%, #d946ef 100%);
    padding: 17px 0; /* أقل حشو من الأعلى */
    overflow: hidden;
    width: 100%;
    position: relative;   /* مهم لتفعيل top */
    top: -29.9px;        
}

}
    
        .aswaq-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 40px;
            background: #ffffff;
        }

        .aswaq-badge {
            display: inline-block;
            border: 2px solid #000;
            padding: 5px 10px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 500;
            margin-bottom: 5px;
        }

        .aswaq-title {
            font-size: 80px;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 50px;
            color: #000;
        }

        .aswaq-text {
            max-width: 600px;
            font-size: 15px;
            line-height: 1.5;
            color: #555;
            margin-bottom: 40px;
            
        }

        .aswaq-text .aswaq-bold {
            color: #000;
            font-weight: 500;
            font-size: 20px;
            display: block;
            margin-top: 5px;
        }

        .aswaq-numbers {
            display: flex;
            gap: 100px;
            margin-bottom: 70px;
            flex-wrap: wrap;
        }

        .aswaq-number-box {
            opacity: 0;
            transform: translateY(30px);
        }

        .aswaq-number-box.aswaq-show {
            opacity: 1;
            transform: translateY(0);
            transition: all 0.8s ease;
        }

        .aswaq-num {
            font-size: 70px;
            font-weight: 600;
            margin-bottom: 0px;
            color: #000;
        }

        .aswaq-label {
            font-size: 12px;
             font-weight: 400;
            color: #666;
        }

        .aswaq-btn {
            background: #8b3dff;
            color: #fff;
            border: none;
            padding: 20px 40px;
            border-radius: 50px;
            font-size: 20px;
            font-weight: 600;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s;
            
        }

        .aswaq-btn:hover {
            background: #7e22ce;
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(147, 51, 234, 0.5);
        }

        .aswaq-btn svg {
            width: 26px;
            height: 26px;
            transition: transform 0.3s;
        }

        .aswaq-btn:hover svg {
            transform: translate(5px, -5px);
        }

        @media (max-width: 768px) {
            .aswaq-section {
                padding: 60px 20px;
            }
            
            .aswaq-title {
                font-size: 25px;
                line-height: 1.5;
            }
            
            .aswaq-numbers {
                gap: 50px;
               
            }
            
            .aswaq-num {
                font-size: 40px;
                font-weight: 400;
            }
            
            .aswaq-btn {
                justify-content: center;
                padding: 10px 80px;
                position: relative;
                left: 35px;
                margin-top: -70px;
            }

        }


@media (min-width: 769px) {


 .aswaq-section {
                padding: 60px 20px;
            }
            
            .aswaq-title {
                font-size: 40px;
                line-height: 1.5;
                text-align: center;  /* تمركز كلا السطرين */
        white-space: normal; /* السماح بالالتفاف الطبيعي */
            }
            
            .aswaq-numbers {
                gap: 50px;
               
            }
            
            .aswaq-num {
                font-size: 40px;
                font-weight: 400;
            }
          .aswaq-btn {
    display: inline-flex;           /* يسمح بالنص + svg بجانب بعض */
    align-items: center;            /* محاذاة رأسية */
    justify-content: center;        /* تمركز النص والايقونة داخل الزر */
    gap: 0.5rem;                    /* مسافة بين النص والايقونة */
    padding: 15px 40px;             /* مسافة داخلية كافية للنص */
    border: 2px solid #ebeaea;
    border-radius: 50px;
    background: #8b3dff;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;            /* يمنع النص من الالتفاف */
    margin: 0 auto;                 /* تمركز الزر أفقياً داخل الحاوية */
    position: relative;             /* فقط إذا تحتاج لتحريك عمودياً */
    left: 550px;
    bottom: 120px;
    margin-top:0px;
}

.aswaq-btn svg {
    width: 1.2rem;
    height: 1.2rem;
}


.aswaq-text {
            max-width: 600px;
            font-size: 16px;
            line-height: 1.5;
            color: #555;  
            
        }

  .aswaq-label {
            font-size: 12px;
             font-weight: 600;
            color: #5e5d5d;
        }

.aswaq-badge {
    display: inline-block;
    padding: 12px 20px;            /* نفس الطول */
    background: white;             /* نفس الخلفية */
    border: 2px solid #e5e7eb;     /* نفس لون الحدود */
    border-radius: 50px;           /* نفس الانحناء */
    font-size: 14px;               /* نفس حجم الخط */
    font-weight: 700;              /* نفس سمك الخط */
    color: #000000;                /* نفس لون النص */
    text-transform: uppercase;     /* نفس تحويل الحروف */
    letter-spacing: 1px;           /* نفس التباعد */
    text-align: center;
    white-space: nowrap;
    margin-bottom: 5px;
}


    @keyframes fadeIn {
        to {
            opacity: 1;
        }
    }

    .aswaq-badge:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12) !important; /* نفس الظل عند hover */
    }


}



@media (min-width: 769px) {
    .desktop-break {
        display: block;   /* اجعل النص في سطر جديد */
    }

    .main-headingg {
        font-size: 2.5rem;  /* تكبير الخط على Desktop */
        line-height: 1.3;
        text-align: center;  /* تمركز كلا السطرين */
        white-space: normal;  /* السماح بالالتفاف */
    }
}


        












        


       
.divider {
    max-width: 1200px;
    margin: 10px auto;
    border: none;
    height: 2px;
    background: linear-gradient(
        to right,
        transparent 0%,
        #e0e0e0 20%,
        #e0e0e0 80%,
        transparent 100%
    );
}
        .services-btn {
            display: inline-block;
            padding: 4px 10px;
            border: 2px solid #ebeaea;
            border-radius: 50px;
            background: white;
            color: #1a1a1a;
            font-size: 0.9rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            left: 155px;
            top: 120px;
            margin-bottom:100px;
        }

        .services-btn:hover {
            border-color: #d6d6d6;
            transform: translateY(-2px);
        }

        /* Main Heading */
        .main-headingg {
            text-align: center;
            font-size:1.7rem;
            font-weight: 600;
            margin-bottom: 25px;
            line-height: 1.5;
            position: relative;
            left: 0px;
            opacity: 0;
           transition: opacity 0.4s ease-out;
           }


@media (min-width: 769px) {

    .main-headingg {
        text-align: center;
        font-size: 1.7rem;
        font-weight: 600;
        margin-bottom: 25px;
        line-height: 1.5;
        position: relative;
        left: 0px;
        opacity: 0;
        transition: opacity 0.4s ease-out;
    }
    
   .services-btn {
    display: inline-block !important;
    padding: 12px 20px !important;
    background: white !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 50px;
    font-size: 14px !important; /* حجم الخط */
    font-weight: 700 !important; /* سمك الخط */
    color: #000000 !important; /* لون النص */
    text-transform: uppercase !important; /* أحرف كبيرة */
    letter-spacing: 1px !important; /* مسافة بين الحروف */
    text-align: center !important; /* محاذاة النص */
    line-height: 1.5 !important; /* ارتفاع السطر */
    white-space: nowrap !important; /* منع النص من الانتقال لسطر جديد */
    margin: 0 0 10px 0 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards !important;
    width: fit-content;
    position: relative;
    top: 10px;
    left: -500px;
}
    @keyframes fadeIn {
        to {
            opacity: 1;
        }
    }

    .services-btn:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12) !important; /* نفس الظل عند hover */
    }
}

      .word {
    opacity: 0;
    display: inline-block;
    transform: translateY(20px);
    transition: 0.4s ease-out;
}

.word.show {
    opacity: 1;
    transform: translateY(0);
}
      .service-card {
    position: relative;
    background: linear-gradient(
        180deg,
        #f3e9ff 0%,     /* بنفسجي فاتح جداً */
        #f7f1ff 50%,    /* بنفسجي أخف */
        #ffffff 100%    /* الأبيض أسفل البطاقة */
    );
    border-radius: 32px;
    padding: 3rem 0.4rem;
    box-shadow: 
        0 20px 60px rgba(168, 85, 247, 0.06),
        0 8px 24px rgba(0, 0, 0, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    transition: 
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.3s ease;
}


.service-card:active {
    transform: scale(0.97) translateY(4px);
    background: linear-gradient(145deg, #f5e8ff 0%, #e9d9ff 60%, #e3cfff 100%);
    box-shadow:
        0 12px 30px rgba(168, 85, 247, 0.15),
        0 4px 12px rgba(0, 0, 0, 0.08),
        inset 0 2px 4px rgba(255, 255, 255, 0.8);
}


        /* Dotted Grid Background */
        .dotted-grid {
            position: absolute;
            inset: 0;
            opacity: 0.15;
            pointer-events: none;
            background-image: 
                radial-gradient(circle, #c4b5fd 1px, transparent 1px);
            background-size: 24px 24px;
            background-position: 0 0, 12px 12px;
        }

        /* Decorative Blur Circles */
        .blur-circle {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            pointer-events: none;
            opacity: 0.3;
        }

        .blur-circle-1 {
            width: 300px;
            height: 300px;
            background: linear-gradient(135deg, #fbbf24 0%, #fb923c 100%);
            top: -150px;
            right: -100px;
        }

        .blur-circle-2 {
            width: 250px;
            height: 250px;
            background: linear-gradient(135deg, #c084fc 0%, #e879f9 100%);
            bottom: -100px;
            left: -80px;
        }

        /* Card Content */
        .card-content {
            position: relative;
            z-index: 1;
        }

        .services-label {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 700;
            color: #a855f7;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 0.75rem;
            padding: 0.4rem 1rem;
            background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(168, 85, 247, 0.05) 100%);
            border-radius: 20px;
            border: 1px solid rgba(168, 85, 247, 0.2);
        }

        .card-title {
            font-size: 2.75rem;
            font-weight: 800;
            background: linear-gradient(135deg, #1e1b4b 0%, #4c1d95 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
            line-height: 1.1;
            letter-spacing: -0.02em;
        }

        .card-description {
            font-size: 1.05rem;
            color: #64748b;
            line-height: 1.7;
            margin-bottom: 2rem;
            font-weight: 400;
        }

        /* Badges */
        .badges-container {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin-bottom: 3rem;
        }

        .badge {
            padding: 0.65rem 1.25rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.3px;
            border: 1px solid;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: default;
            position: relative;
            overflow: hidden;
        }

        .badge::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .badge:hover::before {
            opacity: 1;
        }

        .badge:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        }

        .badge-blue {
            background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
            color: #1e40af;
            border-color: #93c5fd;
        }

        .badge-orange {
            background: linear-gradient(135deg, #fed7aa 0%, #fdba74 100%);
            color: #c2410c;
            border-color: #fb923c;
        }

        .badge-pink {
            background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
            color: #be185d;
            border-color: #f9a8d4;
        }

        .badge-green {
            background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
            color: #065f46;
            border-color: #6ee7b7;
        }

        .badge-purple {
            background: linear-gradient(135deg, #e9d5ff 0%, #d8b4fe 100%);
            color: #6b21a8;
            border-color: #c084fc;
        }

        /* Center Icon */
        .icon-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 2rem 0;
            position: relative;
        }

        .icon-glow-outer {
            position: absolute;
            width: 220px;
            height: 220px;
            background: radial-gradient(circle, rgba(251, 191, 36, 0.2) 0%, transparent 70%);
            border-radius: 50%;
            animation: pulse-glow 4s ease-in-out infinite;
        }

        .icon-glow-inner {
            position: absolute;
            width: 180px;
            height: 180px;
            background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            animation: pulse-glow 4s ease-in-out infinite 0.5s;
        }

        @keyframes pulse-glow {
            0%, 100% { 
                transform: scale(1); 
                opacity: 0.4; 
            }
            50% { 
                transform: scale(1.15); 
                opacity: 0.6; 
            }
        }

        .icon-container {
            position: relative;
            width: 150px;
            height: 150px;
            background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 
                0 16px 48px rgba(168, 85, 247, 0.15),
                0 8px 24px rgba(251, 146, 60, 0.1),
                inset 0 2px 4px rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(255, 255, 255, 0.8);
        }

        .icon-abstract {
            width: 80px;
            height: 80px;
            position: relative;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-8px) rotate(5deg); }
        }

        /* Hexagon Shape */
        .hexagon {
            position: absolute;
            width: 60px;
            height: 60px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .hex-part {
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #a855f7 0%, #c084fc 50%, #fb923c 100%);
            clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
            animation: rotate-hex 8s linear infinite;
        }

        @keyframes rotate-hex {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Inner decorative elements */
        .inner-circle {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 35px;
            height: 35px;
            background: linear-gradient(135deg, #ffffff 0%, #fef3c7 100%);
            border-radius: 50%;
            box-shadow: 0 4px 12px rgba(251, 146, 60, 0.3);
            z-index: 1;
        }

        /* Orbiting dots */
        .orbit-dot {
            position: absolute;
            width: 8px;
            height: 8px;
            background: linear-gradient(135deg, #fb923c 0%, #fbbf24 100%);
            border-radius: 50%;
            box-shadow: 0 2px 6px rgba(251, 146, 60, 0.4);
        }

        .orbit-dot:nth-child(1) {
            top: -4px;
            left: 50%;
            transform: translateX(-50%);
            animation: orbit1 4s ease-in-out infinite;
        }

        .orbit-dot:nth-child(2) {
            top: 50%;
            right: -4px;
            transform: translateY(-50%);
            animation: orbit2 4s ease-in-out infinite;
        }

        .orbit-dot:nth-child(3) {
            bottom: -4px;
            left: 50%;
            transform: translateX(-50%);
            animation: orbit3 4s ease-in-out infinite;
        }

        .orbit-dot:nth-child(4) {
            top: 50%;
            left: -4px;
            transform: translateY(-50%);
            animation: orbit4 4s ease-in-out infinite;
        }

        @keyframes orbit1 {
            0%, 100% { transform: translateX(-50%) scale(1); opacity: 1; }
            50% { transform: translateX(-50%) scale(1.3); opacity: 0.6; }
        }

        @keyframes orbit2 {
            0%, 100% { transform: translateY(-50%) scale(1); opacity: 1; }
            50% { transform: translateY(-50%) scale(1.3); opacity: 0.6; }
        }

        @keyframes orbit3 {
            0%, 100% { transform: translateX(-50%) scale(1); opacity: 1; }
            50% { transform: translateX(-50%) scale(1.3); opacity: 0.6; }
        }

        @keyframes orbit4 {
            0%, 100% { transform: translateY(-50%) scale(1); opacity: 1; }
            50% { transform: translateY(-50%) scale(1.3); opacity: 0.6; }
        }

        /* Decorative Elements */
        .deco-element {
            position: absolute;
            opacity: 0.08;
            pointer-events: none;
        }

        .deco-bars {
            display: flex;
            gap: 4px;
            align-items: flex-end;
        }

        .deco-bar {
            width: 4px;
            background: linear-gradient(180deg, #a855f7 0%, #c084fc 100%);
            border-radius: 2px;
        }

        .deco-top {
            top: 1.5rem;
            left: 50%;
            transform: translateX(-50%);
        }

        .deco-top .deco-bar:nth-child(1) { height: 12px; }
        .deco-top .deco-bar:nth-child(2) { height: 20px; }
        .deco-top .deco-bar:nth-child(3) { height: 28px; }
        .deco-top .deco-bar:nth-child(4) { height: 20px; }
        .deco-top .deco-bar:nth-child(5) { height: 12px; }

        .deco-circles {
            display: flex;
            gap: 6px;
        }

        .deco-circle {
            width: 8px;
            height: 8px;
            background: linear-gradient(135deg, #fb923c 0%, #fbbf24 100%);
            border-radius: 50%;
        }

        .deco-bottom {
            bottom: 1.5rem;
            left: 50%;
            transform: translateX(-50%);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .service-card {
                padding: 2rem;
                border-radius: 24px;
            }

            .card-title {
                font-size: 2rem;
            }

            .card-description {
                font-size: 0.95rem;
            }

            .badge {
                padding: 0.55rem 1rem;
                font-size: 0.8rem;
            }

            .icon-container {
                width: 120px;
                height: 120px;
            }

            .icon-abstract {
                width: 65px;
                height: 65px;
            }

            .hexagon {
                width: 50px;
                height: 50px;
            }

            .inner-circle {
                width: 28px;
                height: 28px;
            }

            .orbit-dot {
                width: 6px;
                height: 6px;
            }

            .blur-circle-1,
            .blur-circle-2 {
                display: none;
            }
        }

        @media (max-width: 480px) {
            body {
                padding: 1rem;
            }

            .service-card {
                padding: 1.5rem;
            }

            .card-title {
                font-size: 1.75rem;
            }

            .badges-container {
                gap: 0.5rem;
            }

            .badge {
                padding: 0.5rem 0.9rem;
                font-size: 0.75rem;
            }
        }
        .container {
    display: flex;          /* لترتيب البطاقات بجانب بعض أو عمودي حسب اتجاهك */
    flex-wrap: wrap;        /* يسمح للبطاقات بالانتقال للسطر التالي إذا كانت كبيرة */
    gap: 2rem;              /* المسافة بين البطاقات */
}

/* أو إذا أردت فقط فراغ رأسي بين البطاقات العمودية */
.service-card {
    margin-bottom: 2rem;
    padding:1rem 1.5rem;
   
}

@media (min-width: 769px) {


 /* البطاقة نفسها */
.service-card {
    width: 95%;          /* تقريباً تأخذ معظم الحاوية */
    max-width: 1000px;   /* أقصى عرض على الشاشات الكبيرة */
    padding: 3rem 4rem;  /* مساحة داخلية أكبر */
    margin-bottom: 2rem;
    border-radius: 32px;
}
            .container {
    display: flex;
    flex-direction: column;  /* اجعل البطاقات عمودية */
    align-items: center;     /* تمركز البطاقات أفقياً في الوسط */
    gap: 2rem;               /* المسافة بين كل بطاقة وأخرى */
    padding: 2rem 1rem;      /* مسافة من الأعلى والأسفل */
}

            .card-title {
                font-size: 2rem;
            }

            .card-description {
                font-size: 0.95rem;
            }

            .badge {
                padding: 0.55rem 1rem;
                font-size: 0.8rem;
            }

            .icon-container {
                width: 120px;
                height: 120px;
            }

            .icon-abstract {
                width: 65px;
                height: 65px;
            }

            .hexagon {
                width: 50px;
                height: 50px;
            }

            .inner-circle {
                width: 28px;
                height: 28px;
            }

            .orbit-dot {
                width: 6px;
                height: 6px;
            }

            .blur-circle-1,
            .blur-circle-2 {
                display: none;
            }
        }













 

       
     
         /* Featured Projects Section */
        .featured-section {
            background: radial-gradient(circle at top right, #ff3cac 0%, #7843e6 50%, #6a33d4 100%);
            border-radius: 40px;
            padding: 20px 300px;
            margin: 80px auto;
            max-width: 1400px;
            position: relative;
            overflow: hidden;
        }

        /* Badge Button */
        .featured-badge {
            display: inline-block;
            background: white;
            color: #000000;
            padding: 12px 35px;
            border-radius: 50px;
            font-size: 20px;
            font-weight: 500;
            margin-bottom: 40px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .featured-badge.show {
            opacity: 1;
            transform: translateY(0);
        }

        /* Main Title */
        .featured-title {
            font-size: 50px;
            font-weight: 900;
            color: white;
            line-height: 1.1;
            margin: 0;
            position: relative;
            left: 20px;
        }

        .featured-title .line {
            display: block;
            opacity: 0;
            transform: translateX(-100px);
        }

        .featured-title .line.show {
            opacity: 1;
            transform: translateX(0);
            transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }
        
        .featured-title .line:nth-child(1) {
            transition-delay: 0.2s;
        }

        .featured-title .line:nth-child(2) {
            transition-delay: 0.4s;
        }

      /* Desktop Only - للشاشات الكبيرة فقط */
        @media (min-width: 1025px) {
            .featured-section {
                padding: 60px 70px; /* قلل الـ padding */
                border-top-left-radius: 40px;
        border-bottom-left-radius: 40px;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
                position: relative;
                left:290px ;
            }

            .featured-title {
                font-size: 50px;
                position: relative;
                right: 250px !important; /* تحريك لليمين */
                text-align: left;
            }

            .featured-badge {
                font-size: 20px;
                padding: 12px 35px;
                position: relative;
                right: 250px !important; /* تحريك لليمين */
            }
        }
        /* Tablet */
        @media (max-width: 1024px) {
            .featured-section {
                padding: 50px 40px;
                border-radius: 40px;
            }

            .featured-title {
                font-size: 90px;
                left: 0;
            }

            .featured-badge {
                font-size: 18px;
                padding: 10px 30px;
            }
        }

        @media (max-width: 768px) {
            .featured-section {
                padding: 60px 30px;
                margin: 40px 20px;
                border-radius: 30px;
            }

            .featured-title {
                font-size: 60px;
                left: 0;
            }

            .featured-badge {
                font-size: 16px;
                padding: 8px 25px;
                margin-bottom: 30px;
            }
        }

        @media (max-width: 480px) {
            .featured-section {
                padding: 30px 200px;
                margin: 10px 15px;
                border-radius: 25px;
            }

            .featured-title {
                font-size: 40px;
                position: relative;
                right: 170px;
                left: auto;
                top: 0px;
            }

            .featured-badge {
                font-size: 14px;
                padding: 6px 10px;
                margin-bottom: 25px;
                white-space: nowrap;
                position: relative;
                right: 175px;
            }
        }


   
.sliding-images-section,
.image-slideshow,
.image-wrapper {
    width: 100vw;      /* يملا الشاشة كاملة */
    max-width: 100%;   /* يمنع التمدد */
    overflow: hidden;  /* يمنع الخروج */
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;      /* يقطع المساحة الفارغة */
    object-fit: cover;   /* يخلي الصورة تغطي كامل العرض */
    object-position: center; /* أو left حسب ما تحب */
}

@media (max-width: 768px) {
    header {
        padding: 15px 10px;
    }
}
html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}





        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .psycoach-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px 20px;
        }

        .psycoach-container {
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
        }

        .psycoach-card {
            background: rgb(228, 227, 227);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            max-width: 1600px;  /* زيادة العرض الأقصى */
            width: 100%;        /* يبقى متجاوب */
            margin: 0 auto;
        }

        .psycoach-image-section {
            position: relative;
            height: 500px; /* بدل 400px، هذا يكبر الكادر من الأسفل */
            background: linear-gradient(135deg, #e0f2fe 0%, #f0f4f8 100%);
            overflow: hidden;
        }

        .psycoach-placeholder-image {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"%3E%3Crect fill="%23bfdbfe" width="800" height="600"/%3E%3Ctext x="400" y="300" font-family="Arial" font-size="28" fill="%230284c7" text-anchor="middle"%3EOnline Mental Health Coaching%3C/text%3E%3C/svg%3E');
            background-size: cover;
            background-position: center;
        }

        .psycoach-plant-left, .psycoach-plant-right {
            position: absolute;
            top: 0;
            width: 80px;
            height: 120px;
            opacity: 0.3;
        }

        .psycoach-plant-left {
            left: 0;
        }

        .psycoach-plant-right {
            right: 0;
        }

        .psycoach-content-section {
            padding: 50px;
        }

        .psycoach-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 10px;
        }

        .psycoach-bullet {
            width: 12px;
            height: 12px;
            background: black;
            border-radius: 50%;
            flex-shrink: 0;
        }

        .psycoach-header h3 {
            font-size: 28px;
            font-weight: 500;
            color: #1f2937;
        }

        .psycoach-main-title {
            font-size: 45px;
            font-weight: 400;
            color: #111827;
            line-height: 1.2;
            margin-bottom: 40px;
        }

           .psycoach-features {
             display: grid;
              grid-template-columns: 1fr 1fr;
               /* عمودين */ gap: 12px 20px; 
               flex-wrap: nowrap;
             }
        .psycoach-feature-tag {
            padding: 18px 35px;
            background: white;
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            font-size: 20px;
            font-weight: 400;
            color: #1f2937;
            transition: all 0.3s ease;
            flex-wrap: nowrap;
        }

        .psycoach-feature-tag:hover {
            border-color: #3b82f6;
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
        }
       

        @media (max-width: 768px) {
            .psycoach-wrapper {
                padding: 30px 15px;
            }

            .psycoach-image-section {
                height: 300px;
            }

            .psycoach-content-section {
                padding: 30px 25px;
            }

            .psycoach-header h3 {
                font-size: 22px;
            }

            .psycoach-bullet {
                width: 10px;
                height: 10px;
            }

            .psycoach-main-title {
                font-size: 32px;
                margin-bottom: 30px;
            }

            .psycoach-features {
                gap: 15px;
            }

            .psycoach-feature-tag {
                padding: 14px 24px;
                font-size: 18px;
                width: 100%;
                text-align: center;
            }

            .psycoach-plant-left, .psycoach-plant-right {
                width: 60px;
                height: 90px;
            }
        }

        @media (max-width: 480px) {
            .psycoach-wrapper {
                padding: 20px 10px;
            }

            .psycoach-image-section {
                height: 300px;
            }

            .psycoach-content-section {
                padding: 25px 20px;
            }

            .psycoach-header h3 {
                font-size: 20px;
            }

            .psycoach-main-title {
                font-size: 21px;
            
            }

            .psycoach-feature-tag {
                padding: 5px 5px;
                font-size: 15px;
                
            }
        }
  






/* Desktop Only - 2 في الأعلى، 3 في الأسفل */
@media (min-width: 1024px) {
    /* محاذاة في الوسط */
    .psycoach-wrapper {
        display: inline-block;
        vertical-align: top;
        text-align: center;
    }

    /* أول كارتين - 45% من العرض */
    .psycoach-wrapper:nth-of-type(1),
    .psycoach-wrapper:nth-of-type(2) {
        width: 45%;
        margin: 20px 2%;
    }

    /* ثلاثة كروت - 30% من العرض */
    .psycoach-wrapper:nth-of-type(3),
    .psycoach-wrapper:nth-of-type(4),
    .psycoach-wrapper:nth-of-type(5) {
        width: 30%;
        margin: 20px 1.5%;
    }

    .psycoach-container {
        max-width: 100%;
    }

    .psycoach-card {
        max-width: 100%;
    }

    /* ارتفاع الصور للكارتين الأولى - زيادة */
    .psycoach-image-section {
        height: 400px; /* زيادة من 350px */
    }

    .psycoach-content-section {
        padding: 30px;
    }

    .psycoach-header h3 {
        font-size: 18px;
    }

    .psycoach-main-title {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .psycoach-feature-tag {
        padding: 12px 20px;
        font-size: 14px;
    }

    /* الثلاثة كروت السفلية أصغر */
    .psycoach-wrapper:nth-of-type(n+3) .psycoach-image-section {
        height: 350px; /* زيادة من 300px */
    }

    .psycoach-wrapper:nth-of-type(n+3) .psycoach-content-section {
        padding: 25px;
    }

    .psycoach-wrapper:nth-of-type(n+3) .psycoach-main-title {
        font-size: 22px;
    }

    /* إصلاح عرض الصور - مهم جداً */
    .psycoach-image-section img,
    .psycoach-placeholder-image {
        width: 100%;
        height: 100%;
        object-fit: cover !important;
        object-position: center !important;
        display: block !important;
    }
}








        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Arial', sans-serif;
            background-color: #f9fafb;
            padding: 20px;
            line-height: 1.6;
        }

        .industries-container {
            max-width: 1200px;
            margin: 0 auto;
        }

       .industries-badge {
    display: inline-block;
    padding: 12px 20px;               /* نفس الطول */
    background: white;                /* نفس الخلفية */
    border: 2px solid #e5e7eb;        /* نفس لون الحدود */
    border-radius: 50px;              /* نفس الانحناء */
    font-size: 14px;                  /* نفس حجم الخط */
    font-weight: 700;                 /* سمك قوي مثل service btn */
    color: #000000;                   /* نفس لون النص */
    text-transform: uppercase;        /* كتابة كبيرة */
    letter-spacing: 1px;              /* تباعد مثل service btn */
    text-align: center;
    white-space: nowrap;
    margin-bottom: 10px;              /* مطابق */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* نفس الشادو */
}

 @keyframes fadeIn {
        to {
            opacity: 1;
        }
    }

    .industries-badge:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12) !important; /* نفس الظل عند hover */
    }






     .industries-main-title {
    text-align: center;
    font-size: 1.7rem;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s forwards; /* يظهر تدريجيًا */
    animation-delay: 0.3s;       /* يمكنك تغيير التأخير */
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
        .industries-card {
            background-color: white;
            border-radius: 24px;
            overflow: hidden;
            border: 2px solid #7c3aed !important; /* إطار بنفسجي أنيق ورقيق */
            box-shadow: 0 10px 30px rgba(124, 58, 237, 0.1) !important; /* ظل بنفسجي خفيف */
        }

        .industries-card-content {
            padding: 50px;
        }

        .industries-card-title {
            font-size: 48px;
            font-weight: 700;
            color: #111827;
            margin-bottom: 30px;
        }

        .industries-divider {
            width: 60px;
            height: 4px;
            background-color: #d1d5db;
            margin-bottom: 30px;
        }

        .industries-card-description {
            font-size: 20px;
            color: #6b7280;
            line-height: 1.8;
        }

        .industries-card-image {
            position: relative;
            height: 320px;
            background: linear-gradient(135deg, #dfd9e4 0%, #ffffff 50%, #ffffff 100%);
            overflow: hidden;
        }

       .industries-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateY(-60px); /* ارفع الصورة 40px */
      }
   

 
        .industries-image-placeholder {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .industries-placeholder-icon {
            width: 80px;
            height: 80px;
            margin-bottom: 20px;
            opacity: 0.6;
        }

        .industries-placeholder-text {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .industries-placeholder-subtext {
            font-size: 14px;
            opacity: 0.8;
        }

        .industries-image-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(226, 223, 230, 0.15) 0%, transparent 100%);
            mix-blend-mode: overlay;
            pointer-events: none;
        }

        .industries-decorative-box-1 {
            position: absolute;
            top: 40px;
            left: 40px;
            width: 120px;
            height: 120px;
            border: 4px solid rgba(255, 255, 255, 0.3);
            border-radius: 10px;
            transform: rotate(-12deg);
            pointer-events: none;
        }

        .industries-decorative-box-2 {
            position: absolute;
            bottom: 40px;
            right: 40px;
            width: 90px;
            height: 90px;
            border: 4px solid rgba(255, 255, 255, 0.3);
            border-radius: 10px;
            transform: rotate(12deg);
            pointer-events: none;
        }

        .industries-shopping-cart-icon {
            position: absolute;
            bottom: 50%;
            left: 50%;
            transform: translate(-50%, 50%);
            width: 60px;
            height: 60px;
            opacity: 0.4;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            body {
                padding: 15px;
            }

            .industries-main-title {
                font-size: 32px;
                margin-bottom: 35px;
            }

            .industries-card-content {
                padding: 30px;
            }

            .industries-card-title {
                font-size: 36px;
            }

            .industries-card-description {
                font-size: 18px;
            }

            .industries-card-image {
                height: 250px;
            }

            .industries-decorative-box-1 {
                width: 80px;
                height: 80px;
                top: 20px;
                left: 20px;
            }

            .industries-decorative-box-2 {
                width: 60px;
                height: 60px;
                bottom: 20px;
                right: 20px;
            }
        }

        @media (max-width: 480px) {
            .industries-badge {
                font-size: 16px;
                padding: 8px 20px;
            }

            .industries-main-title {
                font-size: 28px;
            }

            .industries-card-content {
                padding: 25px;
            }

            .industries-card-title {
                font-size: 28px;
            }

            .industries-card-description {
                font-size: 16px;
            }
        }
 

.industries-card:last-of-type .industries-card-image img {
    transform: translateY(-20px);
}

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
             font-family: 'Arial', sans-serif;
            background: #ffffff; /* خلفية بيضاء */
            overflow-x: hidden;
        }

        .what-we-do-section {
            min-height: auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            padding: 70px 20px 50px 20px;
            background: #ffffff;
            position: relative;
        }

        /* الزر في الأعلى */
        .what-badge {
            display: inline-block;
            padding: 12px 32px;
            background: white;
            border: 2px solid #e5e7eb;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            color: #1f2937;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            opacity: 0;
            animation: fadeIn 0.5s ease forwards;
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }

        .what-badge:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
        }

        /* النص الرئيسي */
        .main-text-container {
            max-width: 1000px;
            text-align: center;
            margin-bottom: 30px;
        }

        .main-text {
            font-size: 72px;
            font-weight: 600;
            line-height: 1.2;
            margin: 0;
            color: #000000;
        }

        /* الكلمات تبدأ مخفية */
        #whatWeDoSection .word {
            display: inline-block;
            opacity: 0;
            transform: translateY(20px);
        }

        /* تأثير الظهور */
        #whatWeDoSection .word.show {
            animation: wordAppear 0.4s ease forwards;
        }

        @keyframes wordAppear {
            0% {
                opacity: 0;
                transform: translateY(20px) scale(0.9);
            }
            60% {
                transform: translateY(-5px) scale(1.05);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        /* الكلمات الرمادية */
        #whatWeDoSection .word.gray-word {
            color: #8b3dff;
        }

        /* Cursor Effect */
        .cursor {
            display: inline-block;
            width: 3px;
            height: 1em;
            background: #8b3dff;
            margin-left: 4px;
            animation: blink 1s infinite;
            vertical-align: middle;
        }

        @keyframes blink {
            0%, 49% {
                opacity: 1;
            }
            50%, 100% {
                opacity: 0;
            }
        }

        /* أيقونة سهم للأسفل */
        .scroll-indicator {
            margin-bottom:10px;
            opacity: 0;
            animation: fadeInDelayed 0.5s ease 3s forwards;
        }

        @keyframes fadeInDelayed {
            to {
                opacity: 1;
            }
        }

        .scroll-indicator svg {
            width: 40px;
            height: 40px;
            opacity: 0.4;
            animation: bounce 2s infinite 3s;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-10px);
            }
            60% {
                transform: translateY(-5px);
            }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .main-text {
                font-size: 56px;
            }
        }

        @media (max-width: 768px) {
            .what-we-do-section {
                padding: 40px 20px;
            }

            .what-badge {
                font-size: 14px;
                padding: 10px 24px;
                margin-bottom: 20px;
            }

            .main-text {
                font-size: 40px;
            }
        }

        @media (max-width: 480px) {
            .what-badge {
                margin-bottom: 20px;
                margin-top: 50px;
                font-size: 12px;
                padding: 8px 20px;
            }

            .main-text {
                font-size: 32px;
            }
        }

        /* قسم تجريبي للسكرول - مخفي الآن */
        .spacer {
            display: none;
        }
    
.team-profiles-section {
    width: 100%;
    padding: 80px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
    background: inherit; /* يرث الخلفية من الصفحة */
}

.team-profile-card {
    text-align: center;
    max-width: 500px;
}

.team-image-box {
    position: relative;
    width: 500px;
    height: 380px;
    margin: 0 auto 25px;
    border-radius: 25px;   /* حواف دائرية */
    overflow: hidden;      /* قص كل ما يخرج */

}

.team-purple-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #6C5CE7;
    border-radius: inherit; /* نفس الحواف */
}

.team-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transform: scale(1.20); /* تكبير واضح */
    z-index: 2; /* الصورة فوق الخلفية */
}


.team-info {
    padding: 0 20px;
     margin-top: 20px;
}

.team-name {
    font-size: 30px;
    font-weight: 500;
    color: #1f2937;
    margin-bottom: 3px;
    letter-spacing: 1px;
}

.team-role {
    font-size: 18px;
    color: #5e5e63;
    font-weight: 400;
}

/* Responsive للشاشات الصغيرة */
@media (max-width: 768px) {
    .team-profiles-section {
        padding: 60px 20px;
        gap: 50px;
    }

    .team-image-box {
        width: 100%;
        max-width: 400px;
        height: 320px;
    }

    .team-name {
        font-size: 26px;
    }

    .team-role {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .team-image-box {
        max-width: 100%;
        height: 280px;
    }

    .team-name {
        font-size: 22px;
    }

    .team-role {
        font-size: 15px;
    }
}



.team-photo {
    transition: transform 0.5s ease;
}

.team-profile-card:hover .team-photo {
    transform: scale(1.3); /* التكبير عند hover */
}


    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Spacer to push footer down */
.content-spacer {
    flex: 1;
    padding: 40px 20px;
    text-align: center;
}

.content-spacer h1 {
    color: #333;
    margin-bottom: 20px;
}

/* Footer */
.footer {
    background:  #8b3dff;
    color: white;
    padding: 60px 0 0 0;  /* ✅ صفر على الجوانب */
    width: 100%;
}

.footer-container {
    width: 100%;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

/* Logo Section */
.footer-logo-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-logo-img {
    width: 140px;
    height: auto;
}

.footer-logo-text {
    font-size: 38px;
    font-weight: 700;
    color: white;
    letter-spacing: -0.5px;
}

.footer-logo-text-small {
    font-size: 14px;
    font-weight: 500;
    font-style: italic;
    opacity: 0.95;
    margin-top: -12px;
}

.footer-tagline {
    font-size: 20px;
    font-weight: 500;
    opacity: 0.95;
    line-height: 1.4;
}

.social-icons {
    display: flex;
    gap: 18px;
    align-items: center;
}

.social-icon {
    width: auto;
    height: auto;
    background: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size:24px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: none;
    transform: translateY(-3px);
}
/* ✅ تكبير الأيقونات هنا */
.social-icon i {
    font-size: 26px;   /* غيّر الرقم كما تريد */
    color: white;
}

.social-icon:hover {
    transform: translateY(-3px);
}

/* Menu Sections */
.footer-section h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
    opacity: 1;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    opacity: 0.85;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    opacity: 1;
    padding-left: 5px;
}

/* Contact Section */
.contact-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-links a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-links a:hover {
    opacity: 1;
}

/* Copyright */
.footer-copyright {
    text-align: center;
    padding: 30px 30px;  /* ✅ أضيف padding جانبي للـ copyright */
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 14px;
    font-weight: 400;
    opacity: 0.8;
    letter-spacing: 0.3px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-logo-section {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 50px 0 0 0;  /* ✅ صفر على الجوانب */
    }

    .footer-container {
        padding: 0 25px;  /* ✅ padding للـ container */
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }

    .footer-logo-section {
        grid-column: auto;
    }

    .footer-logo-text {
        font-size: 32px;
    }

    .footer-tagline {
        font-size: 18px;
    }

    .footer-section h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .footer-copyright {
        font-size: 13px;
        padding: 25px 25px;  /* ✅ padding للـ copyright */
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0 0 0;  /* ✅ صفر على الجوانب */
    }

    .footer-container {
        padding: 0 20px;  /* ✅ padding للـ container */
        gap: 35px;
    }

    .footer-logo-text {
        font-size: 28px;
    }

    .footer-tagline {
        font-size: 17px;
    }

    .social-icon {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }

    .footer-section h3 {
        font-size: 25px;
    }

    .footer-links a,
    .contact-links a {
        font-size: 15px;
    }

    .footer-copyright {
        padding: 20px 20px;  /* ✅ padding للـ copyright */
    }
}



/* ✅ إصلاح الفراغات البيضاء على جوانب الـ footer فقط */
.footer {
    margin-left: calc(-1 * (100vw - 100%) / 2) !important;
    margin-right: calc(-1 * (100vw - 100%) / 2) !important;
    width: 100vw !important;
    max-width: 100vw !important;
}

.footer-container {
    max-width: 100% !important;
}

/* typing cursor */
#typingText { white-space: pre-wrap; } /* يحافظ على الأسطر */
#typingText .typing-cursor {
  display: inline-block;
  width: 2px;
  height: 1.1em;
  vertical-align: -0.15em;
  background: currentColor;
  margin-left: 6px;
  animation: blink 1s steps(2, start) infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

/* اختياري — نمط الكلمات قبل وبعد التايبينج */
#typingText { font-weight: 700; letter-spacing: -0.02em; }







       

       .testimonials-section {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background: #0d0d1a;
}



        .testimonials-header {
            text-align: center;
            margin-bottom: 80px;
        }

       .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;                 /* تقليل الفراغ */

    /* ---- خصائص الكتابة لكن بحجم أصغر للهاتف ---- */
    font-size: 14px;           /* حجم خط أصغر */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;     /* تباعد أقل */
    color: #7c3aed;

    border: none;
    border-radius: 0;
    padding: 0;
    margin-bottom: 20px;       /* تقليل المسافة */
         
}

.section-badge::before {
    content: '';
    width: 25px;               /* أصغر للهاتف */
    height: 2px;
    background: #7c3aed;
}


        .section-title {
            font-size: 18px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 20px;
            color: rgb(255, 255, 255);
        }

        .main-title {
            font-size: 72px;
            font-weight: 300;
            line-height: 1.1;
            margin-bottom: 10px;
            letter-spacing: -2px;
             color: rgb(255, 255, 255);
        }

        .slider-wrapper {
            position: relative;
            max-width: 100%;
            margin: 0 auto;
        }

        .testimonials-container {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            gap: 30px;
            padding: 20px 50px;
            scrollbar-width: none;
        }

        .testimonials-container::-webkit-scrollbar {
            display: none;
        }

        .testimonial-card {
            min-width: calc(100vw - 160px);
            max-width: 400px;
            flex-shrink: 0;
            scroll-snap-align: center;
            background: rgba(30, 30, 50, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            padding: 40px 40px;
            position: relative;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
        }

        .testimonial-card:hover {
            border-color: rgba(243, 6, 243, 0.486);
            transform: translateY(-5px);
        }

        .card-top {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .author-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: linear-gradient(135deg, #1e5245 0%, #2d7a63 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-bottom: 0px;
        }

        .author-avatar svg {
            width: 32px;
            height: 32px;
            fill: white;
        }

        .author-name {
            font-size: 26px;
            font-weight: 600;
            margin-bottom: 6px;
            letter-spacing: 0.5px;
            color: rgb(255, 255, 255);
        }

        .author-title {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.6);
            font-weight: 400;
            margin-bottom: 25px;
        }

        .rating-container {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            padding: 8px 18px;
            margin-bottom: 10px;
            width: fit-content;
        }

        .rating-number {
            color: #fbbf24;
            font-size: 18px;
            font-weight: 700;
        }

        .rating-star {
            width: 18px;
            height: 18px;
            fill: #fbbf24;
        }

        .testimonial-text {
            font-size: 20px;
            line-height: 1.6;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.9);
            margin-top: auto;
        }

        .slider-nav {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 60px;
        }

        .nav-btn {
            width: 50px;
            height: 50px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            background: transparent;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .nav-btn:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.4);
        }

        .nav-btn svg {
            width: 20px;
            height: 20px;
            fill: white;
        }

        .progress-bar {
            max-width: 600px;
            margin: 40px auto 0;
            height: 2px;
            background: rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            background: white;
            width: 0%;
            transition: width 0.3s ease;
        }

       /* Desktop Only Styles */
@media (min-width: 1024px) {
    .testimonials-header {
        text-align: left;
        max-width: 1400px;
        margin: 0 auto 80px;
        padding: 0 50px;
    }

    .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 20px;

    /* ---- خصائص الكتابة مثل service-btn ---- */
    font-size: 16px;            /* حجم الخط */
    font-weight: 700;           /* سمك قوي */
    text-transform: uppercase;  /* أحرف كبيرة */
    letter-spacing: 0.5px;        /* تباعد بين الحروف */
   color: #7c3aed;             /* نفس اللون */

    /* ---- بقية خصائصك الأصلية ---- */
    border: none;
    border-radius: 0;
    padding: 0;
    margin-top: 50px;
}


    .section-badge::before {
        content: '';
        width: 40px;
        height: 2px;
        background: #7c3aed;
    }

    .section-title {
        display: none;
    }

   .main-title {
    color: #ffffff;            /* اللون الأصلي */
    
    /* ---- خصائص الخط مثل services-btn ---- */
    font-size: 40px;           /* حجم الخط */
    font-weight:700;          /* سمك قوي */
    text-transform: uppercase; /* أحرف كبيرة */
    letter-spacing: 1px;       /* تباعد الحروف */
    line-height: 1.6;

}

}

.slider-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.testimonials-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 30px;
    padding: 20px 50px;
    scrollbar-width: none;
}











        

        @media (max-width: 768px) {
            .testimonials-section {
                padding: 80px 20px;
            }

            .testimonials-header {
                margin-bottom: 60px;
            }

            .main-title {
                font-size: 42px;
            }

            .section-title {
                font-size: 14px;
            }

            .testimonials-container {
                padding: 20px 40px;
                gap: 25px;
            }

            .testimonial-card {
                min-width: calc(100vw - 130px);
                max-width: 360px;
                padding: 35px 30px;
                border-radius: 20px;
            }

            .author-avatar {
                width: 65px;
                height: 65px;
            }

            .author-avatar svg {
                width: 30px;
                height: 30px;
            }

            .author-name {
                font-size: 22px;
            }

            .author-title {
                font-size: 14px;
            }

            .testimonial-text {
                font-size: 18px;
            }

            .nav-btn {
                width: 45px;
                height: 45px;
            }
        }

        @media (max-width: 480px) {
            .main-title {
                font-size: 36px;
            }

            .testimonials-container {
                padding: 20px 35px;
                gap: 25px;
            }

            .testimonial-card {
                min-width: calc(100vw - 120px);
                max-width: 320px;
                padding: 32px 28px;
            }

            .author-avatar {
                width: 58px;
                height: 58px;
            }

            .author-avatar svg {
                width: 26px;
                height: 26px;
            }

            .author-name {
                font-size: 20px;
            }

            .author-title {
                font-size: 13px;
            }

            .testimonial-text {
                font-size: 17px;
            }
        }





        /* ===== SPLASH SCREEN ===== */
#splash-overlay {
  position: fixed;
  inset: 0;
   background: #ffffff;  /* ← أبيض */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s ease;
}

#splash-overlay.hide {
  opacity: 0;
  pointer-events: none;
}

#splash-lottie {
  width: 100vw;
  height: 100vh;
  transform: scale(1.5); /* ← كبّره هنا، غير الرقم كما تشاء */
}