* {
            margin: 0;
            padding: 0;
            box-sizing: border-box
        }

        body {
            font-family: 'Cairo', sans-serif;
            overflow-x: hidden;
            background: #fff
        }

        ::-webkit-scrollbar {
            width: 6px
        }

        ::-webkit-scrollbar-track {
            background: #0a0a0a
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, #ea580c, #f97316);
            border-radius: 3px
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0)
            }

            50% {
                transform: translateY(-20px)
            }
        }

        @keyframes float2 {

            0%,
            100% {
                transform: translateY(0)
            }

            50% {
                transform: translateY(15px)
            }
        }

        @keyframes pulse-ring {
            0% {
                transform: scale(1);
                opacity: .6
            }

            100% {
                transform: scale(2.5);
                opacity: 0
            }
        }

        @keyframes slide-up {
            from {
                opacity: 0;
                transform: translateY(60px)
            }

            to {
                opacity: 1;
                transform: translateY(0)
            }
        }

        @keyframes slide-right {
            from {
                opacity: 0;
                transform: translateX(-80px)
            }

            to {
                opacity: 1;
                transform: translateX(0)
            }
        }

        @keyframes hero-reveal {
            0% {
                clip-path: inset(0 100% 0 0);
                opacity: 0
            }

            100% {
                clip-path: inset(0 0 0 0);
                opacity: 1
            }
        }

        @keyframes spin-slow {
            to {
                transform: rotate(360deg)
            }
        }

        @keyframes shimmer {
            0% {
                background-position: -200% 0
            }

            100% {
                background-position: 200% 0
            }
        }

        @keyframes marquee {
            0% {
                transform: translateX(0)
            }

            100% {
                transform: translateX(-50%)
            }
        }

        @keyframes counter-glow {

            0%,
            100% {
                text-shadow: 0 0 20px rgba(234, 88, 12, .3)
            }

            50% {
                text-shadow: 0 0 40px rgba(234, 88, 12, .6)
            }
        }

        @keyframes gradient-shift {
            0% {
                background-position: 0% 50%
            }

            50% {
                background-position: 100% 50%
            }

            100% {
                background-position: 0% 50%
            }
        }

        .anim-float {
            animation: float 6s ease-in-out infinite
        }

        .anim-float2 {
            animation: float2 5s ease-in-out infinite
        }

        .anim-gradient {
            background-size: 300% 300%;
            animation: gradient-shift 8s ease infinite
        }

        .anim-marquee {
            animation: marquee 50s linear infinite
        }

        .anim-marquee:hover {
            animation-play-state: paused
        }

        .anim-counter-glow {
            animation: counter-glow 2s ease-in-out infinite
        }

        .glass {
            background: rgba(255, 255, 255, .05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, .08)
        }

        .gradient-text {
            background: linear-gradient(135deg, #ea580c, #f97316, #fb923c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text
        }

        .btn-fire {
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #ea580c, #f97316);
            color: #fff;
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: all .4s cubic-bezier(.23, 1, .32, 1)
        }

        .btn-fire::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
            transition: left .5s
        }

        .btn-fire:hover::before {
            left: 100%
        }

        .btn-fire:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 40px -10px rgba(234, 88, 12, .5)
        }

        .btn-wa {
            background: linear-gradient(135deg, #25D366, #128C7E);
            color: #fff;
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: all .4s cubic-bezier(.23, 1, .32, 1)
        }

        .btn-wa:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 40px -10px rgba(37, 211, 102, .5)
        }

        .btn-glass {
            background: rgba(255, 255, 255, .1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, .2);
            color: #fff;
            font-weight: 700;
            cursor: pointer;
            transition: all .4s
        }

        .btn-glass:hover {
            background: rgba(255, 255, 255, .2);
            transform: translateY(-3px)
        }

        .nav-blur {
            transition: all .5s
        }

        .nav-solid {
            background: rgba(255, 255, 255, .98);
            box-shadow: 0 4px 30px rgba(0, 0, 0, .1)
        }

        .nav-link {
            position: relative;
            transition: color .3s
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            right: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #ea580c, #f97316);
            border-radius: 2px;
            transition: width .4s cubic-bezier(.23, 1, .32, 1)
        }

        .nav-link:hover::after {
            width: 100%
        }

        .nav-link:hover {
            color: #ea580c
        }

        .dropdown-content {
            opacity: 0;
            visibility: hidden;
            transform: translateY(15px) scale(.95);
            transition: all .3s cubic-bezier(.23, 1, .32, 1);
            transform-origin: top right
        }

        .dropdown:hover .dropdown-content {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1)
        }

        .hero-slide {
            transition: opacity 1.5s ease, transform 8s linear
        }

        .hero-slide.active {
            opacity: 1;
            transform: scale(1.05)
        }

        .hero-slide.inactive {
            opacity: 0;
            transform: scale(1)
        }

        .reveal {
            opacity: 0;
            transform: translateY(60px);
            transition: all 1s cubic-bezier(.23, 1, .32, 1)
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0)
        }

        .stat-card {
            position: relative;
            overflow: hidden
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg, transparent, rgba(234, 88, 12, .1), transparent 30%);
            animation: spin-slow 10s linear infinite
        }

        .service-card {
            position: relative;
            overflow: hidden
        }

        .service-card::before {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, #ea580c, #f97316);
            transition: width .5s cubic-bezier(.23, 1, .32, 1)
        }

        .service-card:hover::before {
            width: 100%
        }

        .service-card .icon-wrap {
            transition: all .5s cubic-bezier(.23, 1, .32, 1)
        }

        .service-card:hover .icon-wrap {
            background: linear-gradient(135deg, #ea580c, #f97316) !important;
            color: #fff !important;
            transform: scale(1.1) rotateY(180deg);
            box-shadow: 0 10px 30px rgba(234, 88, 12, .3)
        }

        .value-card {
            position: relative;
            overflow: hidden
        }

        .value-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 0;
            background: linear-gradient(180deg, #ea580c, #f97316);
            transition: height .5s cubic-bezier(.23, 1, .32, 1);
            border-radius: 0 0 4px 0
        }

        .value-card:hover::before {
            height: 100%
        }

        .value-card:hover {
            border-color: rgba(234, 88, 12, .3);
            box-shadow: 0 25px 50px -12px rgba(234, 88, 12, .1)
        }

        .value-card .val-icon {
            transition: all .5s cubic-bezier(.23, 1, .32, 1)
        }

        .value-card:hover .val-icon {
            background: linear-gradient(135deg, #ea580c, #f97316) !important;
            color: #fff !important;
            transform: scale(1.1) rotate(10deg)
        }

/* Floating / enhanced form fields for Contact section */
#contact .float-input,
#contact .select-enhanced,
#contact .textarea-enhanced {
    width: 100%;
    padding: 1rem 1rem;
    border-radius: 0.9rem;
    border: 2px solid #e6e6e9;
    background: linear-gradient(180deg,#ffffff,#fbfbfc);
    font-size: 1rem;
    color: #0f172a;
    transition: box-shadow .18s ease, border-color .18s ease, transform .18s ease;
}

#contact .float-input::placeholder { color: transparent }

#contact .float-label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    display: inline-flex;
    gap: .6rem;
    align-items: center;
    font-size: 0.95rem;
    color: #6b7280;
    background: white;
    padding: 0 .35rem;
    transform-origin: left top;
    transition: transform .18s cubic-bezier(.2,.9,.2,1), color .18s;
    pointer-events: none;
}

/* When input focused or has content, float label up */
#contact .float-input:focus + .float-label,
#contact .float-input:not(:placeholder-shown) + .float-label,
#contact .textarea-enhanced:focus + .float-label,
#contact .textarea-enhanced:not(:placeholder-shown) + .float-label,
#contact .select-enhanced:focus + .float-label,
#contact .select-enhanced:not([value=""]) + .float-label {
    transform: translateY(-1.6rem) scale(.88);
    color: #ea580c;
}

#contact .float-input:focus, #contact .textarea-enhanced:focus, #contact .select-enhanced:focus {
    box-shadow: 0 10px 30px rgba(234,88,12,0.06);
    border-color: rgba(234,88,12,0.9);
}

/* enhanced select caret */
#contact .select-enhanced { appearance: none; padding-right: 2.75rem }
#contact .select-enhanced + .float-label::after { content: '▼'; position: absolute; right: 1rem; top: 1rem; font-size: .8rem; color: #9ca3af }

/* textarea tweaks */
#contact .textarea-enhanced { min-height: 110px; padding-top: 1.1rem; padding-bottom: 1.1rem }

@media (max-width: 768px) {
    #contact .float-label { left: .9rem; top: .9rem }
}

        .testi-card {
            min-width: 340px;
            max-width: 340px;
            transition: all .4s
        }

        .testi-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px -10px rgba(0, 0, 0, .15)
        }

        .video-card {
            position: relative;
            overflow: hidden
        }

        .video-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, .8) 0%, rgba(0, 0, 0, .2) 40%, transparent 60%);
            z-index: 1;
            border-radius: inherit
        }

        .video-card .play-btn {
            transition: all .5s cubic-bezier(.23, 1, .32, 1)
        }

        .video-card:hover .play-btn {
            transform: scale(1.2);
            box-shadow: 0 0 40px rgba(234, 88, 12, .6)
        }

        .video-card:hover img {
            transform: scale(1.08)
        }

        .mesh-bg {
            background: radial-gradient(at 20% 80%, rgba(234, 88, 12, .08) 0%, transparent 50%), radial-gradient(at 80% 20%, rgba(249, 115, 22, .05) 0%, transparent 50%)
        }

        .page-enter {
            animation: slide-right .6s cubic-bezier(.23, 1, .32, 1) forwards
        }

        .toast-box {
            position: fixed;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%) translateY(100px);
            opacity: 0;
            transition: all .4s cubic-bezier(.23, 1, .32, 1);
            z-index: 9999;
            padding: 1rem 2rem;
            border-radius: 1rem;
            font-weight: 700;
            color: #fff
        }

        .toast-box.show {
            transform: translateX(-50%) translateY(0);
            opacity: 1
        }

        .card-3d {
            transition: all .5s cubic-bezier(.23, 1, .32, 1);
            transform-style: preserve-3d
        }

        .card-3d:hover {
            transform: translateY(-12px) rotateX(2deg) rotateY(-2deg);
            box-shadow: 0 40px 80px -20px rgba(234, 88, 12, .2)
        }

        .loader-ring {
            width: 60px;
            height: 60px;
            border: 3px solid transparent;
            border-top-color: #ea580c;
            border-radius: 50%;
            animation: spin-slow 1s linear infinite;
            position: relative
        }

        .loader-ring::before {
            content: '';
            position: absolute;
            inset: 4px;
            border: 3px solid transparent;
            border-top-color: #f97316;
            border-radius: 50%;
            animation: spin-slow 1.5s linear infinite reverse
        }

        input:focus,
        textarea:focus,
        select:focus {
            outline: none;
            border-color: #ea580c !important;
            box-shadow: 0 0 0 4px rgba(234, 88, 12, .1)
        }

        @media(max-width:768px) {
            .testi-card {
                min-width: 280px;
                flex: 0 0 auto
            }
        }

        /* Ensure vertical spacing between testimonial cards on small screens */
        @media (max-width: 768px) {
            .testimonials-grid {
                display: grid;
                grid-template-columns: 1fr;
                row-gap: 1.5rem; /* increased vertical spacing for clarity */
                gap: 1.5rem 0.75rem;
            }

            /* Extra safety: if direct children use .flex wrapper, ensure margin */
            .testimonials-grid > .flex {
                margin-bottom: 1rem;
            }

            .testimonials-grid > .flex:last-child {
                margin-bottom: 0;
            }
        }

        /* ========== تصميم بطاقة الخدمة مع كيرف دائري ========== */
        @keyframes curve-glow {
            0%, 100% { box-shadow: 0 0 20px rgba(234, 88, 12, 0.3), inset 0 0 20px rgba(234, 88, 12, 0.1) }
            50% { box-shadow: 0 0 40px rgba(234, 88, 12, 0.5), inset 0 0 30px rgba(234, 88, 12, 0.2) }
        }

        @keyframes icon-bounce {
            0%, 100% { transform: translateY(0) scale(1) }
            50% { transform: translateY(-8px) scale(1.05) }
        }

        @keyframes ripple {
            0% { transform: scale(1); opacity: 0.6 }
            100% { transform: scale(1.5); opacity: 0 }
        }

        @keyframes slide-in-curve {
            0% { transform: translateX(-100%) rotate(-45deg); opacity: 0 }
            100% { transform: translateX(0) rotate(0deg); opacity: 1 }
        }

        .service-curved-card {
            position: relative;
            background: linear-gradient(135deg, #ffffff 0%, #fff7ed 100%);
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            border: 2px solid rgba(234, 88, 12, 0.1);
            min-height: 280px;
        }

/* Lightweight loader logo/slogan animations */
@keyframes loader-pop {
    0% { transform: scale(.85) translateY(6px); opacity: 0 }
    60% { transform: scale(1.05) translateY(-3px); opacity: 1 }
    100% { transform: scale(1) translateY(0); opacity: 1 }
}

@keyframes loader-fade-up {
    0% { transform: translateY(8px); opacity: 0 }
    100% { transform: translateY(0); opacity: 1 }
}

.loader-logo {
    animation: loader-pop 700ms cubic-bezier(.22,1,.36,1) both;
    will-change: transform, opacity;
}

.loader-slogan {
    animation: loader-fade-up 700ms ease both;
    animation-delay: 140ms;
    color: #fff;
    opacity: 0;
}

/* subtle continuous glow to make loader feel alive but cheap to render */
.loader-glow {
    box-shadow: 0 8px 30px rgba(234,88,12,0.08);
}

        .service-curved-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100px;
            height: 100%;
            background: linear-gradient(180deg, rgba(234, 88, 12, 0.05), transparent);
            clip-path: circle(100% at 0% 50%);
            transition: all 0.5s;
        }

        .service-curved-card:hover::before {
            background: linear-gradient(180deg, rgba(234, 88, 12, 0.15), rgba(249, 115, 22, 0.05));
        }

        .service-curved-card:hover {
            transform: translateY(-10px);
            border-color: rgba(234, 88, 12, 0.3);
            box-shadow: 0 25px 50px -12px rgba(234, 88, 12, 0.25);
        }

        .service-curved-card .curve-section {
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 80px;
            height: 160px;
            background: linear-gradient(135deg, #ea580c, #f97316);
            border-radius: 0 40px 40px 0;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            z-index: 2;
            overflow: hidden;
        }

        .service-curved-card .curve-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s;
        }

        .service-curved-card:hover .curve-section::before {
            animation: slide-in-curve 0.8s ease-out;
        }

        .service-curved-card:hover .curve-section {
            width: 100px;
            height: 180px;
            border-radius: 0 50px 50px 0;
            animation: curve-glow 2s ease-in-out infinite;
        }

        .service-curved-card .curve-section svg {
            color: white;
            font-size: 36px;
            transition: all 0.5s;
            z-index: 3;
            position: relative;
        }

        .service-curved-card:hover .curve-section svg {
            transform: scale(1.2);
            animation: icon-bounce 1s ease-in-out infinite;
        }

        .service-curved-card .ripple-effect {
            position: absolute;
            width: 60px;
            height: 60px;
            border: 2px solid rgba(234, 88, 12, 0.3);
            border-radius: 50%;
            opacity: 0;
            pointer-events: none;
        }

        .service-curved-card:hover .ripple-effect {
            animation: ripple 1.5s ease-out infinite;
        }

        .service-curved-card .ripple-effect:nth-child(1) { animation-delay: 0s }
        .service-curved-card .ripple-effect:nth-child(2) { animation-delay: 0.5s }
        .service-curved-card .ripple-effect:nth-child(3) { animation-delay: 1s }

        .service-curved-card .content-section {
            padding: 24px 24px 24px 100px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            height: 100%;
            transition: all 0.5s;
        }

        .service-curved-card:hover .content-section {
            padding-left: 120px;
        }

        .service-curved-card .title-curved {
            font-size: 1.25rem;
            font-weight: 800;
            color: #1f2937;
            margin-bottom: 0.75rem;
            transition: all 0.4s;
            position: relative;
        }

        .service-curved-card:hover .title-curved {
            color: #ea580c;
            transform: translateX(5px);
        }

        .service-curved-card .desc-curved {
            color: #6b7280;
            font-size: 0.875rem;
            line-height: 1.7;
            transition: all 0.4s;
        }

        .service-curved-card:hover .desc-curved {
            color: #4b5563;
        }

        .service-curved-card .badge-curved {
            position: absolute;
            top: 15px;
            right: 15px;
            background: linear-gradient(135deg, #ea580c, #f97316);
            color: white;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 0.4rem 0.8rem;
            border-radius: 15px;
            opacity: 0;
            transform: translateY(-10px);
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .service-curved-card:hover .badge-curved {
            opacity: 1;
            transform: translateY(0);
        }

        .service-curved-card .arrow-curved {
            position: absolute;
            bottom: 15px;
            right: 15px;
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, #ea580c, #f97316);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transform: scale(0) rotate(-180deg);
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .service-curved-card:hover .arrow-curved {
            opacity: 1;
            transform: scale(1) rotate(0deg);
        }

        .service-curved-card .arrow-curved svg {
            color: white;
        }

        .service-curved-card .decorative-dots {
            position: absolute;
            bottom: 20px;
            left: 100px;
            display: flex;
            gap: 4px;
            opacity: 0;
            transition: all 0.4s;
        }

        .service-curved-card:hover .decorative-dots {
            opacity: 1;
            left: 120px;
        }

        .service-curved-card .decorative-dots span {
            width: 6px;
            height: 6px;
            background: linear-gradient(135deg, #ea580c, #f97316);
            border-radius: 50%;
            animation: icon-bounce 1s ease-in-out infinite;
        }

        .service-curved-card .decorative-dots span:nth-child(1) { animation-delay: 0s }
        .service-curved-card .decorative-dots span:nth-child(2) { animation-delay: 0.2s }
        .service-curved-card .decorative-dots span:nth-child(3) { animation-delay: 0.4s }

/* ========== ADVANCED CTA OVERLAY ========== */
@keyframes overlay-pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.5; }
}

@keyframes mesh-shift {
    0% { background-position: 0 0; }
    100% { background-position: 50px 50px; }
}

section[style*="backgroundImage"] > div:first-child > div:nth-child(4) {
    animation: overlay-pulse 8s ease-in-out infinite;
}

section[style*="backgroundImage"] > div:first-child > div:nth-child(5) {
    animation: mesh-shift 20s linear infinite;
}

@media (max-width: 768px) {
    section[style*="backgroundImage"] {
        min-height: 400px !important;
    }
}
    