@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;800 &display=swap');

* {
    font-family: 'Cairo', 'URW DIN Arabic', sans-serif;
}

/* Floating Background Elements */
.floating-wrapper {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.float {
    position: absolute;
    border-radius: 9999px;
    opacity: 0.12;
    background: linear-gradient(135deg, #6C4AB6, #4A90E2, #F5A623);
    animation: floatMotion linear infinite;
}

@keyframes floatMotion {
    0,
    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(20px, -30px) rotate(90deg) scale(1.2);
    }
    50% {
        transform: translate(-15px, 25px) rotate(180deg) scale(1);
    }
    75% {
        transform: translate(10px, -20px) rotate(270deg) scale(1.1);
    }
}

/* Orb Animations */
.orb {
    border-radius: 9999px;
    filter: blur(36px);
}

@keyframes orbSpinA {
    0% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.2) rotate(180deg);
    }
    100% {
        transform: scale(1) rotate(360deg);
    }
}

@keyframes orbSpinB {
    0% {
        transform: scale(1.2) rotate(360deg);
    }
    50% {
        transform: scale(1) rotate(180deg);
    }
    100% {
        transform: scale(1.2) rotate(0deg);
    }
}

@keyframes floatY {
    0,
    100% {
        transform: translate(0, -10px) rotate(0);
    }
    50% {
        transform: translate(0, 10px) rotate(5deg);
    }
}

@keyframes floatXY {
    0% {
        transform: translate(0, 0) rotate(0);
    }
    25% {
        transform: translate(20px, -20px) rotate(90deg);
    }
    50% {
        transform: translate(-15px, 20px) rotate(180deg);
    }
    75% {
        transform: translate(10px, -15px) rotate(270deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

.pix {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    filter: blur(1px);
    animation: floatXY 6s ease-in-out infinite;
    opacity: 0.25;
}

@keyframes pulseSoft {
    0,
    100% {
        opacity: 0.9;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(-6px);
    }
}

.float-card {
    animation: floatY 4s ease-in-out infinite;
}

/* Scrollbar Hide */
.scrollbar-hide {
    scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

/* Partners Section Animations */
@keyframes orbPulseA {
    0,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }
}

@keyframes orbPulseB {
    0,
    100% {
        transform: scale(1.2);
        opacity: 0.3;
    }
    50% {
        transform: scale(1);
        opacity: 0.5;
    }
}

.tilt-hover {
    transition: transform 0.5s ease;
}

.tilt-hover:hover {
    transform: translateY(-8px) scale(1.05);
}

.icon-wiggle {
    transition: transform 0.5s ease;
}

.tilt-hover:hover .icon-wiggle {
    transform: rotate(10deg);
}

.grow-line {
    width: 0;
    height: 4px;
    border-radius: 9999px;
    transition: width 0.6s ease;
}

.grow-line.in {
    width: 60%;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Menu Styles */
#mobileMenu {
    transition: all 0.3s ease;
}

/* Line Clamp Utility */
.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* إخفاء سكرول بار للـ strip */
.clients-scroll-hide::-webkit-scrollbar {
    display: none;
}
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in {
    opacity: 1;
    transform: none;
}
/* نقطة نشطة */
.dot {
    width: 8px;
    height: 8px;
    border-radius: 9999px;
    background: #c7d2fe;
    cursor: pointer;
    transition: background 0.2s;
}
.dot.is-active {
    background: #00bfde;
}
