@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;800&display=swap');

:root {
    --primary-color: #8b3dff;
    /* Bright purple */
    --primary-dark: #61308c;
    --bg-dark: #000;
    /* Very dark blue/grey */
    --bg-card: #181b28;
    --text-main: #ffffff;
    --text-muted: #a0a5b5;
    --border-color: rgba(255, 255, 255, 0.08);
    --font-ar: 'Tajawal', sans-serif;
    --glow-color: rgba(139, 61, 255, 0.4);
    --transition: all 0.3s ease;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-ar);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary-color);
}

.mb-1 {
    margin-bottom: 10px;
}

.mb-2 {
    margin-bottom: 20px;
}

.mb-3 {
    margin-bottom: 30px;
}

.mb-4 {
    margin-bottom: 40px;
}

.mb-5 {
    margin-bottom: 50px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    font-family: inherit;
    font-size: 0.8rem;
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 15px var(--glow-color);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 61, 255, 0.6);
    background: #9b51ff;
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
    border-radius: 20px;
    display: inline-block;
    align-self: flex-start;
}

.btn-tag {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.85rem;
    border: 1px solid var(--border-color);
    align-self: flex-start;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 99%;
    max-width: 1200px;
    background: rgba(24, 27, 40, 0.8);
    backdrop-filter: blur(10px);
    padding: 12px 25px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    font-weight: 800;
    font-size: 1.1rem;
    line-height: 1.1;
    color: #fff;
    text-align: right;
}

.logo-icon {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.mobile-only-action {
    display: none;
}

.nav-links li a {
    font-weight: 500;
    color: #e0e0e0;
    position: relative;
    padding-bottom: 5px;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: #fff;
}

.nav-links li a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}
.nav-actions{display: flex;gap:10px;justify-content:center;align-items:center;}
/* ============================================
   HERO SLIDER - Professional Design
   ============================================ */

.hero-slider-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    background: var(--bg-dark);
}

/* Animated Particles Background */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 8s infinite;
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.2;
    }

    100% {
        opacity: 0;
        transform: translateY(-20px) scale(1.2);
    }
}

/* Slick Slider Overrides */
.hero-slider {
    width: 100%;
    height: 100vh;
    min-height: 700px;
}

.hero-slider .slick-list,
.hero-slider .slick-track {
    height: 100%;
}

.hero-slider .slick-dots {
    bottom: 100px;
    z-index: 10;
}

.hero-slider .slick-dots li button:before {
    color: rgba(255, 255, 255, 0.5);
    font-size: 10px;
}

.hero-slider .slick-dots li.slick-active button:before {
    color: var(--primary-color);
}

/* Individual Slide */
.hero-slide {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    display: flex !important;
    align-items: center;
    overflow: hidden;
    outline: none;
}

/* Slide Background Image with Ken Burns */
.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
}

.slick-active .slide-bg {
    transform: scale(1.08);
}

/* Gradient Overlay */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(80% 50%, rgb(0 0 0) 0%, transparent 50%), linear-gradient(to left, rgb(15 17 26 / 71%) 0%, rgb(15 17 26) 30%, rgb(15 17 26 / 83%) 60%, rgba(15, 17, 26, 0.3) 100%);
    z-index: 1;
}

/* Slide Content */
.slide-content {
    position: relative;
    z-index: 5;
    padding-top: 100px;
    max-width: 95%;
    padding-right: 30px;
}

/* Badge */
.slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 22px;
    background: rgba(139, 61, 255, 0.15);
    border: 1px solid rgba(139, 61, 255, 0.3);
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slick-active .slide-badge {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.slide-badge i {
    font-size: 1rem;
}

/* Slide Title */
.slide-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.5;
    margin-bottom: 22px;
    color: #fff;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.slick-active .slide-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

.text-gradient {
    background: linear-gradient(135deg, #8b3dff 0%, #c471f5 40%, #ff6ec7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Slide Description */
.slide-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 550px;
    margin-bottom: 35px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.slick-active .slide-description {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.7s;
}

/* Slide Actions */
.slide-actions {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.slick-active .slide-actions {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.9s;
}

/* Glow Button */
.btn-glow {
    position: relative;
    overflow: hidden;
    gap: 10px;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #8b3dff, #c471f5, #ff6ec7, #8b3dff);
    background-size: 300% 300%;
    border-radius: 30px;
    z-index: -1;
    animation: glowShift 4s ease infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-glow:hover::before {
    opacity: 1;
}

@keyframes glowShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Outline Button */
.btn-outline-light {
    display: inline-flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    padding: 12px 28px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Stats Row */
.slide-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.slick-active .slide-stats {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1.1s;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.stat-plus {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 5px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(139, 61, 255, 0.5), transparent);
}

/* Custom Navigation */
.slider-nav-custom {
    position: absolute;
    top: 50%;
    bottom: auto;
    left: 45px;
    right: auto;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 10;
}

.slider-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 0 25px var(--glow-color);
}

.slider-counter {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}

.current-slide {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.slide-separator {
    color: rgba(255, 255, 255, 0.3);
}

.total-slides {
    color: var(--text-muted);
}

/* Progress Bar */
.slider-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    z-index: 10;
}

.slider-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-color), #c471f5, #ff6ec7);
    border-radius: 0 4px 4px 0;
    transition: width 0.1s linear;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 50px;
    right: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 10;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.scroll-indicator:hover {
    color: #fff;
}

.scroll-text {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 3px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(14px);
    }
}

/* Slick Dots Custom */
.hero-slider .slick-dots {
    display: none !important;
}

/* Services Layout */
.services {
    padding: 80px 0;
    position: relative;
    background: url(../images/hero_team.png) no-repeat center center/cover;
}

.services::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: transparent;
    background-image: linear-gradient(180deg, #000000 0%, #851874C9 100%);
    opacity: 1;
    z-index: 1;
}

.services .container {
    z-index: 2;
    position: relative;
}

/* Modern Stacked Services Section */
.services-list-vertical {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;
}

.service-card-vertical {
    position: relative;
    background: transparent;
    overflow: hidden;
}

.service-card-content-vertical {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    padding: 50px;
}

.service-card-vertical:nth-child(even) .service-card-content-vertical {
    flex-direction: row-reverse;
}

.service-text-side {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-title-row {
    display: flex;
    align-items: center;
    gap: 18px;
}

.service-badge-num {
    background: #ff9f1c;
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 159, 28, 0.4);
    flex-shrink: 0;
}

.service-title-vertical {
    font-size: 1.7rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.service-desc-vertical {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 10px;
}

.service-features-vertical {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-features-vertical li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.92);
}

.bullet-dot {
    width: 8px;
    height: 8px;
    background: #ff9f1c;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(255, 159, 28, 0.8);
}

.service-img-side {
    flex: 0.8;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-img-side img {
    width: 100%;
    max-width: 380px;
    border-radius: 30px;
    border: 3px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease, border-color 0.3s ease;
}

.service-card-vertical:hover .service-img-side img {
    transform: scale(1.04) rotate(-1deg);
    border-color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 991px) {

    .service-card-content-vertical,
    .service-card-vertical:nth-child(even) .service-card-content-vertical {
        flex-direction: column !important;
        padding: 35px 25px;
        gap: 30px;
    }

    .service-img-side {
        width: 100%;
    }

    .service-img-side img {
        max-width: 100%;
        height: auto;
    }
}

/* Why Us Section */
.why-us {
    padding: 80px 0;
}

.why-us-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.why-us-text {
    flex: 1;
}

.why-us-list {
    margin-top: 30px;
}

.why-us-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.why-us-list li i {
    color: var(--primary-color);
    background: rgba(139, 61, 255, 0.1);
    padding: 10px;
    border-radius: 50%;
}

.why-us {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.why-us-content {
    display: flex;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.why-us-bg-bulb {
    position: absolute;
    top: -35px;
    left: 8%;
    /* Left side of the section, behind the image */
    width: 320px;
    height: 250px;
    z-index: 9;
    pointer-events: none;
    opacity: 0.75;
    transition: filter 0.5s ease;
}

.why-us-image {
    flex: 1;
    position: relative;
    z-index: 2;
}

.why-us-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

/* Light SVG elements in section */
#why-us-filament-on,
#why-us-glass-glow,
#why-us-ambient-glow,
#why-us-volumetric,
#why-us-text-over-bulb {
    opacity: 0;
    transition: opacity 0.5s ease-out;
}

#why-us-text-over-bulb {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 8px;
    fill: #a87cff;
}

/* Lit state when parent has .lit class with custom flicker animations */
.why-us.lit #why-us-filament-on {
    animation: bulbFlickerFilament 1.2s ease-out forwards;
}

.why-us.lit #why-us-glass-glow {
    animation: bulbFlickerGlass 1.2s ease-out forwards;
}

.why-us.lit #why-us-ambient-glow {
    animation: bulbFlickerAmbient 1.2s ease-out forwards;
}

.why-us.lit #why-us-volumetric {
    animation: bulbFlickerVolumetric 1.5s ease-out forwards;
}

.why-us.lit #why-us-text-over-bulb {
    animation: bulbFlickerText 1.6s ease-out forwards;
}

@keyframes bulbFlickerFilament {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 0.8;
    }

    15% {
        opacity: 0.2;
    }

    25% {
        opacity: 0.9;
    }

    30% {
        opacity: 0.3;
    }

    40% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

@keyframes bulbFlickerGlass {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    15% {
        opacity: 0.1;
    }

    25% {
        opacity: 0.7;
    }

    30% {
        opacity: 0.25;
    }

    40% {
        opacity: 0.8;
    }

    100% {
        opacity: 0.8;
    }
}

@keyframes bulbFlickerAmbient {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 0.7;
    }

    15% {
        opacity: 0.1;
    }

    25% {
        opacity: 0.8;
    }

    30% {
        opacity: 0.2;
    }

    40% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

@keyframes bulbFlickerVolumetric {
    0% {
        opacity: 0;
    }

    30% {
        opacity: 0;
    }

    40% {
        opacity: 0.5;
    }

    45% {
        opacity: 0.1;
    }

    55% {
        opacity: 0.6;
    }

    60% {
        opacity: 0.2;
    }

    70% {
        opacity: 0.7;
    }

    100% {
        opacity: 0.7;
    }
}

@keyframes bulbFlickerText {
    0% {
        opacity: 0;
    }

    30% {
        opacity: 0;
    }

    40% {
        opacity: 0.25;
    }

    45% {
        opacity: 0.05;
    }

    55% {
        opacity: 0.35;
    }

    60% {
        opacity: 0.15;
    }

    70% {
        opacity: 0.45;
    }

    100% {
        opacity: 0.45;
    }
}

/* Small Bulb CSS */
.why-us-bulb_small {
    position: absolute;
    top: -30px;
    right: 8%;
    /* Right side of the section, behind the text */
    width: 260px;
    height: 390px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.75;
    transition: filter 0.5s ease;
}

#why-us-source-glow-small,
#why-us-ambient-glow-small,
#why-us-volumetric-small {
    opacity: 0;
    transition: opacity 0.5s ease-out;
}

/* Lit state when parent has .lit class with custom flicker animations */
.why-us.lit #why-us-source-glow-small {
    animation: bulbFlickerFilament 1.2s ease-out forwards;
}

.why-us.lit #why-us-ambient-glow-small {
    animation: bulbFlickerAmbient 1.2s ease-out forwards;
}

.why-us.lit #why-us-volumetric-small {
    animation: bulbFlickerVolumetric 1.5s ease-out forwards;
}

/* Swing animation for the section bulb */
#why-us-swing-g {
    transform-origin: 200px 0;
    animation: whyUsSwing 6s infinite ease-in-out;
}

@keyframes whyUsSwing {

    0%,
    100% {
        transform: rotate(-2.5deg);
    }

    50% {
        transform: rotate(2.5deg);
    }
}

/* Responsive bulb styles */
@media (max-width: 1024px) {
    .why-us-bg-bulb {
        left: 2%;
        width: 240px;
        opacity: 0.5;
    }

    .why-us-bulb_small {
        right: 2%;
        top: -80px;
        width: 200px;
        opacity: 0.5;
    }
}


/* Projects Slider */
.projects-slider-section {
    padding: 80px 0 45px;
    overflow: hidden;
}


.projects-swiper-container {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(139, 61, 255, 0.1);
}

.projects-slide {
    position: relative;
    overflow: hidden;
}

.projects-slide img {
    width: 100%;
    height: 460px;
    display: block;
    object-fit: contain;
    transition: transform 0.6s ease;
}

.projects-slide:hover img {
    transform: scale(1.02);
}

/* Slider Arrows */
.proj-slider-prev,
.proj-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    background: rgba(15, 17, 26, 0.6) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #ffffff !important;
    font-size: 1rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin-top: 0 !important;
}

.proj-slider-prev::after,
.proj-slider-next::after {
    display: none !important;
    /* Hide Swiper default icon font */
}

.proj-slider-prev:hover,
.proj-slider-next:hover {
    background: rgba(139, 61, 255, 0.6) !important;
    border-color: rgba(139, 61, 255, 0.5) !important;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(139, 61, 255, 0.3);
}

.proj-slider-prev {
    right: 20px !important;
    left: auto !important;
}

.proj-slider-next {
    left: 20px !important;
    right: auto !important;
}
html[lang='en'] .proj-slider-prev {
    right: auto !important;
    left: 20px !important;
}

html[lang='en'] .proj-slider-next {
    left: auto !important;
    right:20px  !important;
}

/* Slider Dots / Pagination */
/* .proj-slider-pagination {
    position: absolute !important;
    bottom: 20px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: auto !important;
    display: flex;
    gap: 10px;
    z-index: 10;
    padding: 8px 16px;
    background: rgba(15, 17, 26, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.proj-slider-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    margin: 0 !important;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.proj-slider-pagination .swiper-pagination-bullet:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.proj-slider-pagination .swiper-pagination-bullet-active {
    background: var(--primary-color, #8b3dff) !important;
    width: 28px !important;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(139, 61, 255, 0.5);
} */

/* Responsive */
@media (max-width: 768px) {
    .projects-swiper-container {
        border-radius: 12px;
        margin: 0 15px;
    }

    .projects-slide img {
        height: 300px;
    }

    .proj-slider-prev,
    .proj-slider-next {
        width: 40px !important;
        height: 40px !important;
        font-size: 0.85rem;
    }

    .proj-slider-prev {
        right: 10px !important;
    }

    .proj-slider-next {
        left: 10px !important;
    }

    .proj-slider-pagination {
        bottom: 12px !important;
        padding: 6px 12px;
        gap: 8px;
    }

    .proj-slider-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }

    .proj-slider-pagination .swiper-pagination-bullet-active {
        width: 22px !important;
    }
}



/* Clients */
.clients {
    padding: 80px 0;
    text-align: center;
}

.clients .overlay-content {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: rgb(32 32 32 / 50%);
    z-index: 9;
}

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

.client-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.client-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
    border: 2px solid var(--primary-color);
}

.client-card h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.client-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    background: #12141f;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-links h4 {
    margin-bottom: 20px;
    color: #fff;
}

.footer-links ul li {
    margin-bottom: 10px;
    color: var(--text-muted);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
}

/* Floating Animation */
.floating-element {
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .why-us-content {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        display: none;
    }

    .navbar {
        padding: 10px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .why-us-list li {
        justify-content: center;
    }

    .services-layout {
        grid-template-columns: 1fr;
    }

    .card-horizontal {
        height: auto;
    }

    /* Hero Slider Responsive */
    .slide-title {
        font-size: 2.8rem;
    }

    .slide-content {
        padding-top: 120px;
    }

    .slide-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .slider-nav-custom {
        bottom: 30px;
    }

    .scroll-indicator {
        display: none;
    }

    .slide-overlay {
        background:
            radial-gradient(circle at center, rgba(139, 61, 255, 0.2) 0%, transparent 60%),
            linear-gradient(to bottom,
                rgba(15, 17, 26, 0.98) 0%,
                rgba(15, 17, 26, 0.9) 50%,
                rgba(15, 17, 26, 0.8) 100%);
    }
}

@media (max-width: 576px) {
    .slide-title {
        font-size: 2rem;
    }

    .slide-description {
        font-size: 1rem;
    }

    .slide-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .slide-stats {
        flex-wrap: wrap;
        gap: 15px;
    }

    .stat-divider {
        display: none;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 0.85rem;
    }

    .hero-slider-section,
    .hero-slide,
    .hero-slider {
        min-height: 100vh;
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Why Work With Us (7-item grid) Section */
.why-us-grid-section {
    padding: 100px 0;
    background-color: #000;
    position: relative;
    z-index: 10;
}

.why-us-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px 40px;
    max-width: 1100px;
    margin: 50px auto 0;
}

.why-us-item {
    flex: 0 1 calc(25% - 40px);
    /* 4 columns on large screens */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
    min-width: 180px;
}

.why-us-card {
    width: 120px;
    height: 120px;
    background-color: #ffffff;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.03);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.why-us-card i {
    font-size: 2.8rem;
    color: #e63946;
    /* Red line icon look */
    transition: transform 0.4s ease, color 0.3s ease;
}

.why-us-item:hover .why-us-card {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(230, 57, 70, 0.25);
    border-color: rgba(230, 57, 70, 0.3);
}

.why-us-item:hover .why-us-card i {
    transform: rotate(5deg) scale(1.05);
    color: #ff4757;
}

.why-us-label {
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.5;
    max-width: 170px;
    transition: color 0.3s ease;
}

.why-us-item:hover .why-us-label {
    color: #ff4757;
}

/* Tablet Layout (3 items per row) */
@media (max-width: 991px) {
    .why-us-item {
        flex: 0 1 calc(33.333% - 40px);
        min-width: 140px;
        /* Decrease min-width so 3 elements fit */
    }
}

/* Mobile Layout (2 items per row) */
@media (max-width: 576px) {
    .why-us-item {
        flex: 0 1 calc(50% - 40px);
        min-width: 130px;
        /* Decrease min-width so 2 elements fit */
        gap: 12px;
    }

    .why-us-card {
        width: 100px;
        height: 100px;
        border-radius: 18px;
    }

    .why-us-card i {
        font-size: 2.2rem;
    }

    .why-us-label {
        font-size: 0.95rem;
    }
}

/* Consultation Section (Split Layout) */
.consultation-section {
    padding: 100px 0;
    background-color: #000000;
    color: #ffffff;
    position: relative;
    z-index: 10;
}

.consultation-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.consultation-form-side {
    flex: 1;
    max-width: 480px;
    width: 100%;
}

.consultation-card {
    background-color: #61308c;
    /* Magenta theme from screenshot */
    border-radius: 35px;
    padding: 50px 40px;
    box-shadow: 0 20px 45px rgba(176, 26, 104, 0.25);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.consultation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 55px rgba(176, 26, 104, 0.35);
}

.consultation-card h3 {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group-vertical input {
    width: 100%;
    padding: 16px 22px;
    background-color: rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50px;
    color: #ffffff;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease, background-color 0.3s ease;
    text-align: right;
    font-family: inherit;
}

.form-group-vertical input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group-vertical input:focus {
    border-color: #ffffff;
    background-color: rgba(0, 0, 0, 0.25);
}

.btn-submit-consultation {
    background-color: #ffffff;
    color: #b01a68;
    border: none;
    border-radius: 50px;
    padding: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease, background-color 0.3s ease;
    font-family: inherit;
}

.btn-submit-consultation:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
    background-color: #f8f9fa;
}

.btn-submit-consultation i {
    font-size: 1rem;
    transform: scaleX(-1);
}

.consultation-text-side {
    flex: 1.7;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.consultation-main-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.4;
    color: #ffffff;
}

.consultation-sub-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-top: 10px;
}

.consultation-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.consultation-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.bullet-white-dot {
    width: 8px;
    height: 8px;
    background-color: #ffffff;
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.6);
}

@media (max-width: 991px) {
    .consultation-layout {
        flex-direction: column-reverse;
        gap: 50px;
    }

    .consultation-form-side {
        max-width: 100%;
    }

    .consultation-main-title {
        font-size: 1.8rem;
    }
}

.clients {
    width: 100%;
    height: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
}

.clients-content .list {
    max-width: 50%;
    height: 100%;
    height: 500px;
    max-height: 650px;
    position: relative;
    overflow: hidden;
    z-index: 99;
    text-align: start;
}

.clients-content .list h2 {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 20px;
    color: #ffffff;
}

.clients-content .list p {
    font-size: 1rem;
    font-weight: 400;
    color: #ffffff;
    margin-top: 10px;
    margin-bottom: 25px;
}

.clients-content .list a {
    display: inline-block;
    font-size: 1rem;
    font-weight: 400;
    color: #ffffff;
    margin-top: 10px;
    background: #851874;
    border-radius: 5px;
    padding: 12px;
    width: fit-content;
    margin: 10px auto;
}

/* حاوية الخريطة */

/* ── SECTION ── */
.clients-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* ── MAP ── */
#map {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* dark overlay gradient */
.map-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(to bottom,
            rgba(6, 11, 24, 0.75) 0%,
            rgba(6, 11, 24, 0.25) 30%,
            rgba(6, 11, 24, 0.25) 65%,
            rgba(6, 11, 24, 0.90) 100%),
        linear-gradient(to right,
            rgba(6, 11, 24, 0.70) 0%,
            transparent 30%,
            transparent 70%,
            rgba(6, 11, 24, 0.70) 100%);
}

/* ── CONTENT LAYER ── */
.content-layer {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 40px 48px;
    gap: 28px;
}

/* ── HEADER ── */
.section-header {
    text-align: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #00d4ff;
    margin-bottom: 12px;
    opacity: 0;
}

.eyebrow::before,
.eyebrow::after {
    content: '';
    width: 32px;
    height: 1px;
    background: #00d4ff;
    opacity: 0.5;
}

.section-title {
    font-size: clamp(28px, 4.5vw, 52px);
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    letter-spacing: -0.02em;
}

.section-title span {
    background: linear-gradient(90deg, #00d4ff, #ff66cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── STAT CARDS ── */
.stats-row {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 20px 32px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.3s, background 0.3s;
    min-width: 140px;
    opacity: 0;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.stat-card:hover {
    border-color: rgba(0, 212, 255, 0.35);
    background: rgba(0, 212, 255, 0.06);
}

.stat-card.ae:hover {
    border-color: rgba(255, 102, 204, 0.35);
    background: rgba(255, 102, 204, 0.06);
}

.stat-num {
    font-size: 36px;
    font-weight: 900;
    line-height: 1;
    color: #fff;
}

.stat-num.blue {
    color: #00d4ff;
}

.stat-num.pink {
    color: #ff66cc;
}

.stat-sup {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.4);
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 6px;
    letter-spacing: 0.04em;
}

/* ── CITY CHIPS ── */
.chips-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    opacity: 0;
}

.chip {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border-radius: 99px;
    padding: 7px 16px;
    font-size: 13px;
    font-family: 'Cairo', sans-serif;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.2s;
}

.chip:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.chip-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    animation: chipPulse 2s ease-in-out infinite;
}

/* ── MARKER STYLES ── */
/* wrapper: MapLibre owns transform on this */
.marker-wrapper {
    width: 20px;
    height: 20px;
    position: relative;
    cursor: pointer;
}

/* inner: we animate this, never the wrapper */
.marker-inner {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2.5px solid rgba(255, 255, 255, 0.9);
    position: absolute;
    inset: 0;
    transition: transform 0.2s ease;
    transform-origin: center center;
}

.marker-ring {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid currentColor;
    top: 0;
    left: 0;
    animation: pulseRing 1.8s ease-out infinite;
    pointer-events: none;
}

.marker-ring-2 {
    animation-delay: 0.6s;
}

.ground-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid currentColor;
    animation: groundPulse 2.2s ease-out infinite;
    position: absolute;
    top: -12px;
    left: -12px;
    pointer-events: none;
}

@keyframes pulseRing {
    0% {
        transform: scale(0.9);
        opacity: 0.8;
    }

    100% {
        transform: scale(2.8);
        opacity: 0;
    }
}

@keyframes groundPulse {
    0% {
        transform: scale(0.6);
        opacity: 0.6;
    }

    100% {
        transform: scale(2.0);
        opacity: 0;
    }
}

@keyframes chipPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.7);
    }
}

/* ── POPUP ── */
.maplibregl-popup-content {
    background: rgba(6, 11, 24, 0.95) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 14px !important;
    padding: 12px 18px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4) !important;
    font-family: 'Cairo', sans-serif !important;
    color: #fff !important;
}

.maplibregl-popup-tip {
    display: none !important;
}

.maplibregl-popup-close-button {
    display: none !important;
}

.popup-city {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 5px;
}

.popup-info {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 6px;
}

.popup-count {
    font-weight: 700;
    color: #fff;
}

/* قائمة المدن */
.cities-sidebar {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    backdrop-filter: blur(16px);
    border-radius: 28px;
    padding: 20px;
    min-width: 250px;
    pointer-events: auto;
    max-height: 85%;
    overflow-y: auto;
}

.cities-sidebar h3 {
    color: #00d4ff;
    font-size: 20px;
    margin-bottom: 18px;
    text-align: center;
    border-bottom: 2px solid rgba(0, 212, 255, 0.5);
    padding-bottom: 10px;
}

.city-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    margin: 8px 0;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 40px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.city-item:hover {
    background: rgba(0, 212, 255, 0.25);
    transform: translateX(6px);
}

.city-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}

.city-dot.saudi {
    background: #00d4ff;
    box-shadow: 0 0 10px #00d4ff;
}

.city-dot.uae {
    background: #ff66cc;
    box-shadow: 0 0 10px #ff66cc;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.city-name {
    flex: 1;
    color: white;
    font-size: 15px;
    font-weight: 500;
}

.city-count {
    color: #00d4ff;
    font-weight: bold;
    font-size: 14px;
}

/* hide maplibre default controls branding */
.maplibregl-ctrl-logo {
    display: none !important;
}

.maplibregl-ctrl-attrib {
    opacity: 0.3 !important;
    font-size: 9px !important;
}

/* ── BOTTOM FOOTER ── */
.map-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.2);
    opacity: 0;
}

.map-footer span {
    color: rgba(255, 255, 255, 0.12);
}

.menus_icons {
    display: none;
}

.menus_icons i {
    font-size: 22px;
}

@media screen and (max-width: 768px) {
    .clients-content .list {
        max-width: 100%
    }

    .cities-sidebar {
        display: none;
    }
}

/*=============== ============*/
.projects_hero {
    position: relative;
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url(../images/ourprojects.webp);
    background-size: cover;
    background-position: center;
}

.projects_hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.projects_hero .container {
    position: relative;
    z-index: 2;
}

/* ==========================================
   Bilingual & LTR Support Overrides
   ========================================== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --font-en: 'Outfit', sans-serif;
}

html[dir="ltr"] body {
    font-family: var(--font-en);
}

html[dir="ltr"] .story-text,
html[dir="ltr"] .project-content-card,
html[dir="ltr"] .testimonial-quote,
html[dir="ltr"] .client-meta,
html[dir="ltr"] .card-inner-content,
html[dir="ltr"] .list.w-md {
    text-align: left !important;
}

html[dir="ltr"] .project-short-desc {
    border-right: none !important;
    border-left: 3px solid var(--primary-color) !important;
    padding-right: 0 !important;
    padding-left: 15px !important;
}

html[dir="ltr"] .testimonial-quote::before {
    right: auto !important;
    left: -10px !important;
}

html[dir="ltr"] .cities-sidebar {
    left: auto !important;
    right: 20px !important;
}

html[dir="ltr"] .slider-nav-custom {
    left: auto !important;
    right: 45px !important;
}

@media screen and (max-width: 768px) {
    .slider-nav-custom {
        left: 15px !important;
    }

    html[dir="ltr"] .slider-nav-custom {
        left: auto !important;
        right: 15px !important;
    }
}