/*
  COLOR DECISION:
  Domain   : توصيل / Delivery (Saset — ride-hailing & delivery platform)
  Primary  : #f97316 — orange, energy and speed of delivery
  Accent   : #0ea5e9 — sky blue, trust and technology
  Dark BG  : #0f172a — deep navy, premium dark background
*/

/* ============================================================
   BASE RESET & GLOBAL
   ============================================================ */
*, *::before, *::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    max-width: 100vw;
    scroll-behavior: smooth;
}

body {
    background-color: var(--dark-bg);
    color: var(--text);
    font-family: var(--font-family, 'Cairo', 'Inter', sans-serif);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    padding: 0;
}

a { text-decoration: none; transition: all .3s ease; color: inherit; }
a:focus, a:hover { text-decoration: none; color: inherit; }
a, button, input[type="button"] { cursor: pointer; transition: all .25s ease; }
button { background: transparent; border: none; }
button:focus, :focus { outline: none; box-shadow: none !important; border-color: inherit; }
ul { padding-left: 0; padding-right: 0; margin: 0; list-style: none; }
p { margin: 0; }
img { max-width: 100%; }
.row { margin-left: 0; margin-right: 0; }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center  { text-align: center; }
.text-right   { text-align: right; }
.text-left    { text-align: left; }
.d-none       { display: none; }
.d-block      { display: block; }
.f-b          { font-weight: 600; }
.flex-grow-1  { flex-grow: 1; }
.padd-0       { padding-left: 0; padding-right: 0; }
.p-0          { padding: 0 !important; }
.r-0          { border-radius: 0 !important; }
.mx-1         { margin-left: .25rem !important; margin-right: .25rem !important; }
.mb-20        { margin-bottom: 20px; }
.mt-20        { margin-top: 20px; }
.ml-10        { margin-left: 10px; }
.mr-10        { margin-right: 10px; }
.ml-20        { margin-left: 20px; }
.mr-20        { margin-right: 20px; }
.pt-10        { padding-top: 10px; }
.pb-10        { padding-bottom: 10px; }
.pt-20        { padding-top: 20px; }
.pb-20        { padding-bottom: 20px; }
.pl-10        { padding-left: 10px; }
.pr-10        { padding-right: 10px; }
.pl-20        { padding-left: 20px; }
.pr-20        { padding-right: 20px; }
.p-15         { padding: 15px; }
.m-20         { margin: 20px; }
.padd-5       { padding-left: 5px; padding-right: 5px; }
.font-11      { font-size: 11px; }
.font-18      { font-size: 18px; }
.main-color   { color: var(--primary) !important; }
.grey-color   { color: var(--text-muted); }

/* ============================================================
   SECTION PADDING
   ============================================================ */
.sec-padd { padding-top: 80px; padding-bottom: 80px; }
.bacg_section  { background: var(--dark-bg); }
.bacg_section2 { background: var(--surface); }

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.reveal-left  { transform: translateX(-50px); }
.reveal.reveal-right { transform: translateX(50px); }
.reveal.reveal-scale { transform: scale(0.88); }

.reveal.visible {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Staggered delays */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ============================================================
   SECTION TITLE
   ============================================================ */
.the_title {
    text-align: center;
    margin-bottom: 56px;
}

.the_title h3 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 14px;
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
}

.the_title h3::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 99px;
    margin: 12px auto 0;
    transition: width 0.4s ease;
}

.the_title:hover h3::after { width: 90px; }

.the_title p {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 580px;
    margin: 16px auto 0;
    line-height: 1.9;
}

/* ============================================================
   LOADER
   ============================================================ */
.loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--dark-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

/* Loader animated ring */
.loader::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 1px solid rgba(var(--primary-rgb), 0.15);
    animation: loader-ring 2s linear infinite;
}

.loader::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 1px solid rgba(var(--primary-rgb), 0.08);
    animation: loader-ring 3s linear infinite reverse;
}

body.loaded .loader {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-logo {
    width: 110px;
    position: relative;
    z-index: 1;
    animation: loader-pulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(var(--primary-rgb), 0.4));
}

.loader-ball {
    font-size: 38px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 6px 16px rgba(var(--primary-rgb), 0.6));
    animation: loader-bounce 0.9s ease-in-out infinite alternate;
}

.loader-bar-wrap {
    width: 180px;
    height: 3px;
    background: rgba(255,255,255,0.08);
    border-radius: 99px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.loader-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
    background-size: 200% 100%;
    border-radius: 99px;
    animation: loader-fill 2s ease forwards, loader-shimmer 1.5s linear infinite;
}

@keyframes loader-ring    { to { transform: rotate(360deg); } }
@keyframes loader-pulse   { 0%,100%{ transform:scale(1); opacity:1; } 50%{ transform:scale(1.06); opacity:0.9; } }
@keyframes loader-bounce  { 0%{ transform:translateY(0) rotate(-5deg); } 100%{ transform:translateY(-16px) rotate(5deg); } }
@keyframes loader-fill    { 0%{ width:0%; } 100%{ width:100%; } }
@keyframes loader-shimmer { 0%{ background-position:200% 0; } 100%{ background-position:-200% 0; } }

/* ============================================================
   NAVBAR / HEADER
   ============================================================ */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(20px) saturate(1.8);
    -webkit-backdrop-filter: blur(20px) saturate(1.8);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background 0.4s, box-shadow 0.4s;
    padding: 0 16px;
}

header.scrolled {
    background: rgba(15, 23, 42, 0.97);
    box-shadow: 0 4px 40px rgba(0,0,0,0.4);
}

header .container { padding-top: 0; padding-bottom: 0; }
header .d-flex { height: 72px; }

/* Logo */
.the-logo {
    height: 44px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s, filter 0.3s;
}

.the-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(var(--primary-rgb), 0.5));
}

/* Nav links */
.nav_bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    flex-grow: 1;
}

.nav_bar li a {
    display: inline-block;
    padding: 8px 13px;
    color: var(--text-muted);
    font-size: 13.5px;
    font-weight: 600;
    border-radius: 8px;
    transition: color 0.25s, background 0.25s;
    white-space: nowrap;
    position: relative;
}

.nav_bar li a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: var(--primary);
    border-radius: 99px;
    transition: transform 0.25s ease;
}

.nav_bar li a:hover::after,
.nav_bar li a.active::after {
    transform: translateX(-50%) scaleX(1);
}

.nav_bar li a:hover,
.nav_bar li a.active {
    color: var(--primary);
    background: rgba(var(--primary-rgb), 0.08);
}

/* Language dropdown */
.dropdown { display: inline-block; }

.dropdown-toggle {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
    padding: 7px 13px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.05);
    transition: all 0.25s;
}

.dropdown-toggle:hover {
    color: var(--primary);
    border-color: rgba(var(--primary-rgb), 0.4);
    background: rgba(var(--primary-rgb), 0.06);
}

.dropdown-toggle::after { display: none; }

.dropdown-menu {
    background: rgba(27, 37, 64, 0.98);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.5);
    padding: 6px;
    min-width: 120px;
    float: none;
    text-align: start;
    animation: dropDown 0.2s ease;
}

@keyframes dropDown {
    from { opacity:0; transform:translateY(-8px); }
    to   { opacity:1; transform:translateY(0); }
}

.dropdown-item {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
    border-radius: 7px;
    padding: 9px 14px;
    transition: all 0.2s;
}

.dropdown-item:hover {
    color: var(--primary);
    background: rgba(var(--primary-rgb), 0.1);
}

/* Hamburger */
.close-open-nav {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 9px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    cursor: pointer;
    transition: all 0.2s;
    margin-inline-start: 8px;
}

.close-open-nav:hover {
    border-color: rgba(var(--primary-rgb), 0.4);
    background: rgba(var(--primary-rgb), 0.06);
}

.close-open-nav div { display: flex; flex-direction: column; gap: 5px; }

.close-open-nav span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-muted);
    border-radius: 99px;
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.close-open-nav.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); background: var(--primary); }
.close-open-nav.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.close-open-nav.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); background: var(--primary); }

.nav_bar .row { gap: 4px; flex-wrap: nowrap; }
.body-content { /* JS sets margin-top dynamically */ }

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero-slider-wrapper { width: 100%; overflow: hidden; }

.owl-carousel.owl-index {
    width: 100% !important;
    direction: ltr;
}

.owl-index .item { width: 100%; position: relative; overflow: hidden; }

.owl-index .item .info_owl {
    display: flex;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    position: relative;
    background: var(--dark-bg);
    overflow: hidden;
}

/* Background image */
.owl-index .item .owl-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
    transform: scale(1.05);
    transition: transform 6s ease;
}

.owl-index .owl-item.active .owl-bg { transform: scale(1); }

.owl-index .item .owl-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        125deg,
        rgba(15,23,42,0.96) 0%,
        rgba(15,23,42,0.80) 45%,
        rgba(15,23,42,0.50) 100%
    );
}

/* Hero grid decorations */
.owl-index .item .info_owl::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(var(--primary-rgb), 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--primary-rgb), 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
    pointer-events: none;
}

/* Glow orbs */
.owl-index .item .info_owl::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.12) 0%, transparent 70%);
    top: -100px;
    inset-inline-end: -100px;
    z-index: 1;
    pointer-events: none;
    animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%,100% { opacity: 0.6; transform: scale(1); }
    50%      { opacity: 1; transform: scale(1.1); }
}

.owl-index .item .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 60px;
    padding-top: 100px;
    padding-bottom: 100px;
}

.ads_wol {
    flex: 1;
    max-width: 580px;
}

/* Hero badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(var(--primary-rgb), 0.12);
    border: 1px solid rgba(var(--primary-rgb), 0.25);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 99px;
    margin-bottom: 22px;
    letter-spacing: 0.5px;
    animation: badge-shine 3s linear infinite;
    position: relative;
    overflow: hidden;
}

.hero-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transform: translateX(-100%);
    animation: shine-sweep 3s linear infinite;
}

@keyframes shine-sweep { to { transform: translateX(200%); } }

.ads_wol h3 {
    font-size: 68px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 22px;
    background: linear-gradient(135deg, #ffffff 30%, var(--primary) 70%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.ads_wol p {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 36px;
    line-height: 1.85;
    max-width: 480px;
}

.slider-cta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-primary-cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(var(--primary-rgb), 0.4),
                0 0 0 0 rgba(var(--primary-rgb), 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-primary-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 40px rgba(var(--primary-rgb), 0.55),
                0 0 0 6px rgba(var(--primary-rgb), 0.1);
    color: #fff;
}

.btn-primary-cta:hover::before { opacity: 1; }

.btn-outline-cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 2px solid rgba(255,255,255,0.15);
    color: var(--text);
    padding: 12px 26px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s;
    backdrop-filter: blur(8px);
    background: rgba(255,255,255,0.04);
}

.btn-outline-cta:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(var(--primary-rgb), 0.08);
    transform: translateY(-3px);
}

.slider-app-badges {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
}

.slider-app-badges a {
    transition: transform 0.3s, filter 0.3s;
    filter: brightness(0.85);
}

.slider-app-badges a:hover {
    transform: translateY(-3px);
    filter: brightness(1);
}

/* Hero image */
.img_owl_index {
    flex: 0 0 420px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Rotating ring behind image */
.img_owl_index::before {
    content: '';
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    border: 2px dashed rgba(var(--primary-rgb), 0.2);
    animation: spin-slow 20s linear infinite;
}

.img_owl_index::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.15) 0%, transparent 70%);
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes spin-slow { to { transform: rotate(360deg); } }

.img_owl_index img {
    width: 100%;
    max-width: 380px;
    border-radius: 28px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5),
                0 0 0 1px rgba(var(--primary-rgb), 0.1);
    position: relative;
    z-index: 1;
    animation: hero-float 5s ease-in-out infinite;
}

@keyframes hero-float {
    0%,100% { transform: translateY(0) rotate(0deg); }
    33%      { transform: translateY(-12px) rotate(0.5deg); }
    66%      { transform: translateY(-6px) rotate(-0.5deg); }
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.4);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    animation: fadeInUp 1s 1.5s ease both;
}

.hero-scroll-indicator .scroll-mouse {
    width: 22px;
    height: 36px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 99px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.hero-scroll-indicator .scroll-mouse::before {
    content: '';
    width: 3px;
    height: 8px;
    background: var(--primary);
    border-radius: 99px;
    animation: scroll-mouse 2s ease-in-out infinite;
}

@keyframes scroll-mouse {
    0%   { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(12px); opacity: 0; }
}

/* Owl nav/dots */
.owl-index .owl-nav {
    position: absolute;
    bottom: 80px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 0;
}

.owl-index .owl-nav button {
    width: 46px;
    height: 46px;
    border-radius: 50% !important;
    background: rgba(255,255,255,0.08) !important;
    color: rgba(255,255,255,0.7) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 14px;
    backdrop-filter: blur(8px);
}

.owl-index .owl-nav button:hover {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #fff !important;
    box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.4);
    transform: scale(1.1);
}

.owl-index .owl-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
}

.owl-index .owl-dot span {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.25) !important;
    margin: 0 !important;
    border-radius: 99px !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.owl-index .owl-dot.active span {
    background: var(--primary) !important;
    width: 28px;
    box-shadow: 0 0 12px rgba(var(--primary-rgb), 0.6);
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
#who_we {
    background: var(--surface);
    position: relative;
    overflow: hidden;
}

/* Decorative glow */
#who_we::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.06) 0%, transparent 70%);
    top: -150px;
    inset-inline-end: -150px;
    pointer-events: none;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 70px;
    position: relative;
}

.about-text { flex: 1; }

.about-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    padding: 7px 16px;
    border-radius: 99px;
    margin-bottom: 20px;
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.about-text h4 {
    font-size: 38px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

.about-text .about-description {
    color: var(--text-muted);
    font-size: 15.5px;
    line-height: 1.85;
    margin-bottom: 32px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(var(--primary-rgb), 0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 16px 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-feature-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(var(--primary-rgb), 0.06), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.about-feature-item:hover {
    border-color: rgba(var(--primary-rgb), 0.3);
    transform: translateX(6px);
}

.about-feature-item:hover::before { opacity: 1; }

.about-feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.2), rgba(var(--primary-rgb), 0.05));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 16px;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.about-feature-item:hover .about-feature-icon { transform: scale(1.15) rotate(5deg); }

.about-feature-text {
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
}

/* About images */
.about-images {
    flex: 0 0 420px;
    position: relative;
    height: 480px;
}

.img_info_JM { position: relative; width: 100%; height: 100%; }

.img_info_JM img:first-child {
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    width: 74%;
    border-radius: 22px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.45);
    object-fit: cover;
    height: 310px;
    transition: transform 0.5s ease;
}

.img_info_JM img:last-child {
    position: absolute;
    bottom: 0;
    inset-inline-end: 0;
    width: 58%;
    border-radius: 22px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.45);
    object-fit: cover;
    height: 210px;
    border: 4px solid var(--surface);
    transition: transform 0.5s ease 0.1s;
}

.about-images:hover .img_info_JM img:first-child { transform: translateY(-8px) scale(1.02); }
.about-images:hover .img_info_JM img:last-child  { transform: translateY(8px) scale(1.02); }

/* Accent corner dots */
.img_info_JM::before {
    content: '';
    position: absolute;
    bottom: -20px;
    inset-inline-start: -20px;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(circle, rgba(var(--primary-rgb), 0.5) 2px, transparent 2px);
    background-size: 12px 12px;
    border-radius: 8px;
    z-index: 0;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
#our_service {
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

#our_service::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.06) 0%, transparent 70%);
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.box-servess {
    background: var(--surface);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 36px 26px 30px;
    text-align: center;
    margin-bottom: 24px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    height: calc(100% - 24px);
    position: relative;
    overflow: hidden;
}

/* Shine sweep on hover */
.box-servess::before {
    content: '';
    position: absolute;
    top: 0;
    inset-inline-start: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(105deg, transparent, rgba(255,255,255,0.05), transparent);
    transition: inset-inline-start 0.6s ease;
}

.box-servess:hover::before { inset-inline-start: 150%; }

/* Gradient top border on hover */
.box-servess::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 20px 20px 0 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease;
}

.box-servess:hover::after { transform: scaleX(1); }

.box-servess:hover {
    transform: translateY(-10px);
    border-color: rgba(var(--primary-rgb), 0.2);
    box-shadow: 0 24px 48px rgba(0,0,0,0.35),
                0 0 0 1px rgba(var(--primary-rgb), 0.1);
}

.box-servess .service-icon-wrap {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.18), rgba(var(--primary-rgb), 0.04));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    border: 1px solid rgba(var(--primary-rgb), 0.15);
    transition: all 0.4s ease;
}

.box-servess:hover .service-icon-wrap {
    transform: rotate(-6deg) scale(1.1);
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.3), rgba(var(--primary-rgb), 0.1));
    box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.25);
}

.box-servess img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    filter: hue-rotate(0deg) saturate(3) brightness(1.6);
}

.box-servess h6 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
    transition: color 0.3s;
}

.box-servess:hover h6 { color: var(--primary); }

.box-servess p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.75;
}

/* ============================================================
   HOW IT WORKS SECTION
   ============================================================ */
#how_work {
    background: var(--surface);
    position: relative;
    overflow: hidden;
}

/* Animated background grid */
#how_work::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(var(--primary-rgb), 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--primary-rgb), 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.how_work {
    display: flex;
    align-items: flex-start;
    gap: 0;
    position: relative;
    padding: 30px 0 10px;
    list-style: none;
    margin: 0;
}

/* Animated connector line */
.how_work::after {
    content: '';
    position: absolute;
    top: 60px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--accent), var(--primary), transparent);
    background-size: 200% 100%;
    border-radius: 99px;
    animation: line-flow 3s linear infinite;
}

@keyframes line-flow {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.how_work li {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}

.how-step-number {
    width: 62px;
    height: 62px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.4),
                0 0 0 8px rgba(var(--primary-rgb), 0.08);
    border: 3px solid var(--surface);
    flex-shrink: 0;
    transition: all 0.4s ease;
    position: relative;
}

/* Ping animation */
.how-step-number::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(var(--primary-rgb), 0.3);
    animation: step-ping 2s ease-out infinite;
}

@keyframes step-ping {
    0%   { transform: scale(0.85); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}

.how_work li:hover .how-step-number {
    transform: scale(1.15);
    box-shadow: 0 16px 40px rgba(var(--primary-rgb), 0.5),
                0 0 0 12px rgba(var(--primary-rgb), 0.1);
}

.how_work li img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    margin-bottom: 16px;
    filter: drop-shadow(0 4px 16px rgba(var(--primary-rgb), 0.35));
    transition: transform 0.4s ease;
}

.how_work li:hover img { transform: scale(1.1) rotate(5deg); }

.how_work li div,
.how_work li .step-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.5;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
#FAQ {
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

#FAQ::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.05) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.faq-tabs-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 36px;
}

#pills-tab {
    background: var(--surface);
    border-radius: 14px;
    padding: 6px;
    border: 1px solid rgba(255,255,255,0.06);
    gap: 4px;
    flex-wrap: wrap;
    display: flex;
}

#pills-tab .nav-link {
    color: var(--text-muted);
    font-size: 13.5px;
    font-weight: 700;
    border-radius: 9px;
    padding: 9px 20px;
    border: none;
    background: transparent;
    transition: all 0.25s;
}

#pills-tab .nav-link.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    box-shadow: 0 4px 16px rgba(var(--primary-rgb), 0.4);
}

#pills-tab .nav-link:hover:not(.active) {
    color: var(--primary);
    background: rgba(var(--primary-rgb), 0.08);
}

.faq-wrapper {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.accordion .card {
    background: var(--surface);
    border: 1px solid rgba(255,255,255,0.06) !important;
    border-radius: 14px !important;
    margin-bottom: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion .card:hover {
    border-color: rgba(var(--primary-rgb), 0.2) !important;
    box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}

.accordion .card-header {
    background: transparent;
    border-bottom: 0;
    padding: 0;
}

.accordion .card-header button {
    width: 100%;
    text-align: inherit;
    padding: 20px 22px;
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    transition: color 0.25s;
    line-height: 1.5;
    font-family: var(--font-family);
}

.accordion .card-header button::after {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 11px;
    color: var(--text-muted);
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), color 0.25s, background 0.25s;
}

.accordion .card-header button[aria-expanded="true"]::after,
.accordion .card-header button:not(.collapsed)::after {
    transform: rotate(180deg);
    color: #fff;
    background: var(--primary);
}

.accordion .card-header button:not(.collapsed) { color: var(--primary); }

.accordion .card-header + .collapse.show,
.accordion .card-header + .collapsing {
    border-top: 1px solid rgba(255,255,255,0.05);
}

.accordion .card-body {
    padding: 18px 22px 22px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.85;
}

/* ============================================================
   PARTNERS / TICKER SECTION
   ============================================================ */
.partners-section {
    background: var(--surface);
    overflow: hidden;
    position: relative;
}

/* Gradient edge fade */
.partners-section::before,
.partners-section::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.partners-section::before {
    left: 0;
    background: linear-gradient(90deg, var(--surface), transparent);
}

.partners-section::after {
    right: 0;
    background: linear-gradient(-90deg, var(--surface), transparent);
}

.ticker-wrapper,
.owl-brands-wrapper {
    width: 100%;
    overflow: hidden;
}

.owl-carousel.owl-brands { width: 100% !important; direction: ltr; }

.owl-brands .item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
}

.owl-brands .item img {
    max-height: 52px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.4;
    transition: opacity 0.3s, filter 0.3s;
}

.owl-brands .item img:hover {
    opacity: 0.9;
    filter: brightness(0) invert(1);
}

/* CSS ticker */
.ticker-track {
    display: flex;
    width: max-content;
    animation: ticker-scroll 28s linear infinite;
    align-items: center;
}

.ticker-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 36px;
}

.ticker-item img {
    max-height: 52px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.35;
    transition: opacity 0.4s, transform 0.4s;
}

.ticker-item img:hover {
    opacity: 0.9;
    transform: scale(1.1);
}

@keyframes ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================================
   CONTACT US SECTION
   ============================================================ */
.contact-section {
    background: var(--surface);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(var(--primary-rgb), 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--primary-rgb), 0.03) 1px, transparent 1px);
    background-size: 52px 52px;
    pointer-events: none;
}

/* ── 2-column layout ── */
.contact-two-col {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 56px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* ──────────────────────────────────
   Info column
────────────────────────────────── */
.contact-info-col {}

/* Badge */
.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(var(--primary-rgb), 0.1);
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 99px;
    margin-bottom: 18px;
    letter-spacing: 0.3px;
}

/* Heading */
.contact-heading {
    font-size: 34px;
    font-weight: 800;
    color: var(--text);
    margin: 0 0 14px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.contact-heading-line {
    width: 48px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 99px;
    margin-bottom: 18px;
}

/* Description */
.contact-desc {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 32px;
}

/* Info items */
.contact-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--surface-2);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 16px 18px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: rgba(var(--primary-rgb), 0.25);
    transform: translateX(5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

[dir="ltr"] .contact-item:hover { transform: translateX(-5px); }

.contact-item-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(var(--primary-rgb), 0.3);
    transition: transform 0.3s;
}

.contact-item:hover .contact-item-icon { transform: rotate(-8deg) scale(1.1); }

.contact-item-body {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.contact-item-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.contact-item-value {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--text);
    word-break: break-word;
    line-height: 1.4;
}

.contact-item-link {
    transition: color 0.2s;
}

.contact-item-link:hover { color: var(--primary); }

/* ──────────────────────────────────
   Form column
────────────────────────────────── */
.contact-form-col {}

.contact-form-card {
    background: var(--dark-bg);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 22px;
    padding: 34px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: -60px; inset-inline-end: -60px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* Form inputs — clean style */
.cf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.cf-group { margin-bottom: 14px; }

.cf-input {
    display: block;
    width: 100%;
    background: rgba(255,255,255,0.04) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 12px !important;
    color: var(--text) !important;
    font-size: 14px;
    padding: 13px 16px !important;
    transition: border-color 0.3s, box-shadow 0.3s, background 0.3s !important;
    font-family: var(--font-family);
    line-height: 1.5;
}

.cf-input::placeholder { color: var(--text-muted); opacity: 0.7; }

.cf-input:focus {
    border-color: rgba(var(--primary-rgb), 0.55) !important;
    box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.1) !important;
    background: rgba(var(--primary-rgb), 0.04) !important;
    color: var(--text) !important;
    outline: none;
}

.cf-textarea {
    min-height: 130px;
    resize: none;
}

/* Submit */
.cf-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 15px 24px;
    font-size: 15px;
    font-weight: 700;
    font-family: var(--font-family);
    cursor: pointer;
    box-shadow: 0 8px 28px rgba(var(--primary-rgb), 0.35);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    margin-top: 4px;
}

.cf-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0);
    transition: background 0.3s;
}

.cf-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(var(--primary-rgb), 0.5);
    color: #fff;
}

.cf-btn:hover::before { background: rgba(255,255,255,0.07); }
.cf-btn:active { transform: translateY(0); }

.cf-btn i { transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1); }
.cf-btn:hover i { transform: rotate(-20deg) scale(1.2); }

/* btn-main (keep for other uses) */
.btn-main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    padding: 14px 34px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 28px rgba(var(--primary-rgb), 0.35);
    min-height: 52px;
    transition: transform 0.3s, box-shadow 0.3s;
    font-family: var(--font-family);
    position: relative;
    overflow: hidden;
}

.btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(var(--primary-rgb), 0.5);
    color: #fff;
}

.btn-main:active { transform: translateY(0); }

/* form-content (legacy) */
.form-content {
    background: var(--surface);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 22px;
    padding: 38px;
}

.form-content .form-group { margin-bottom: 16px; }

.form-content .form-control {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    color: var(--text);
    font-size: 14px;
    padding: 14px 18px;
    width: 100%;
    font-family: var(--font-family);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-content .form-control::placeholder { color: var(--text-muted); }

.form-content .form-control:focus {
    border-color: rgba(var(--primary-rgb), 0.6);
    box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.1) !important;
    background: rgba(var(--primary-rgb), 0.04);
    color: var(--text);
    outline: none;
}

.form-content textarea.form-control { min-height: 130px; resize: none; margin-bottom: 20px; }

/* ============================================================
   FOOTER
   ============================================================ */
/* ============================================================
   FOOTER
   ============================================================ */
footer {
    background: #060d1a;
    position: relative;
    overflow: hidden;
}

/* Animated gradient top line */
footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--primary) 30%,
        var(--accent) 60%,
        transparent 100%);
    background-size: 200% 100%;
    animation: footer-line 4s linear infinite;
}

@keyframes footer-line {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ── Main footer area ── */
.footer-main {
    padding: 64px 0 48px;
    position: relative;
    z-index: 1;
}

/* 3-column grid */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

/* ── Brand column ── */
.footer-brand {}

.logo_footer {
    height: 48px;
    width: auto;
    object-fit: contain;
    margin-bottom: 16px;
    display: block;
    transition: filter 0.35s;
}

.logo_footer:hover {
    filter: drop-shadow(0 0 14px rgba(var(--primary-rgb), 0.5));
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.85;
    margin-bottom: 22px;
    max-width: 260px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Social icons — circular border style matching reference */
.social-m {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.social-m li a {
    width: 38px;
    height: 38px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    transition: all 0.3s ease;
}

.social-m li a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.4);
}

/* App store badges */
.footer-app-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.footer-badge-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 9px 14px;
    color: var(--text);
    transition: all 0.3s;
    max-width: 170px;
}

.footer-badge-btn i { font-size: 20px; color: var(--text-muted); transition: color 0.3s; }

.footer-badge-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.footer-badge-text span { font-size: 9px; color: var(--text-muted); font-weight: 500; }
.footer-badge-text strong { font-size: 12px; font-weight: 700; color: var(--text); }

.footer-badge-btn:hover {
    background: rgba(var(--primary-rgb), 0.1);
    border-color: rgba(var(--primary-rgb), 0.3);
    transform: translateY(-3px);
    color: var(--text);
}

.footer-badge-btn:hover i { color: var(--primary); }

/* ── Footer columns ── */
.footer-col {}

/* Column heading — primary color matching reference image */
.Tfooter {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 18px;
    padding-bottom: 0;
    border-bottom: none;
    letter-spacing: 0;
}

/* Link list */
.link-footer { display: flex; flex-direction: column; gap: 2px; }

.link-footer li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: padding-inline-start 0.25s;
}

.link-footer li:last-child { border-bottom: none; }
.link-footer li:hover { padding-inline-start: 4px; }

/* Chevron icon in list */
.flink-icon {
    color: var(--primary);
    font-size: 10px;
    flex-shrink: 0;
    transition: transform 0.25s;
}

[dir="ltr"] .flink-icon { transform: rotate(180deg); }

.link-footer li a,
.link-footer li span {
    color: rgba(255,255,255,0.5);
    font-size: 13.5px;
    font-weight: 400;
    transition: color 0.25s;
    line-height: 1.5;
    word-break: break-word;
}

.link-footer li a:hover { color: rgba(255,255,255,0.85); }

/* ── Bottom bar ── */
.under_footer {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 18px 0;
    position: relative;
    z-index: 1;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-copy {
    color: rgba(255,255,255,0.28);
    font-size: 12.5px;
}

.footer-copy a {
    color: var(--primary);
    font-weight: 700;
    transition: color 0.2s;
}

.footer-copy a:hover { color: var(--primary-light); }

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.3);
    font-size: 12.5px;
    font-weight: 600;
    transition: color 0.2s;
    position: relative;
}

.footer-bottom-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0; right: 0;
    height: 1px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.25s;
}

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

.footer-bottom-links a:hover::after { transform: scaleX(1); }

/* ============================================================
   FORM VALIDATION & MISC
   ============================================================ */
.error_meassages { display: block; margin-top: 4px; font-size: 12px; }

input[type=checkbox], input[type=radio] { position: relative; width: 20px; height: 20px; vertical-align: middle; }
input[type=checkbox]:before { top:0;left:0;width:20px;height:20px;border:1px solid var(--primary);content:"";position:absolute;background:var(--primary);border-radius:3px; }
input[type=checkbox]:checked::after { background:transparent;border:2px solid #fff;top:0;left:7px;width:7px;height:15px;content:"";position:absolute;border-top-color:transparent;border-left-color:transparent;transform:rotate(45deg); }
input[type=radio]:before { top:0;left:0;width:20px;height:20px;border:1px solid var(--primary);content:"";position:absolute;background:#fff;border-radius:50%; }
input[type=radio]:checked::after { top:50%;left:50%;width:12px;height:12px;content:"";position:absolute;transform:translate(-50%,-50%);background:var(--primary);border-radius:50%; }

#toast-container > .toast { border-radius: 12px; }
.owl-carousel { direction: ltr; }

/* ============================================================
   GLOBAL KEYFRAMES
   ============================================================ */
@keyframes fadeInUp    { from{opacity:0;transform:translateY(24px);}to{opacity:1;transform:translateY(0);} }
@keyframes fadeInLeft  { from{opacity:0;transform:translateX(30px);}to{opacity:1;transform:translateX(0);} }
@keyframes fadeInRight { from{opacity:0;transform:translateX(-30px);}to{opacity:1;transform:translateX(0);} }
@keyframes scaleIn     { from{opacity:0;transform:scale(0.85);}to{opacity:1;transform:scale(1);} }

.fade-in-up    { animation: fadeInUp 0.7s ease both; }
.fade-in-left  { animation: fadeInLeft 0.7s ease both; }
.fade-in-right { animation: fadeInRight 0.7s ease both; }

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark-bg); }
::-webkit-scrollbar-thumb { background: var(--surface-2); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ============================================================
   RESPONSIVE — Tablet < 1024px
   ============================================================ */
@media (max-width: 1023px) {
    .sec-padd { padding-top: 60px; padding-bottom: 60px; }

    /* Navbar mobile */
    .close-open-nav { display: flex; }

    .nav_bar {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        background: rgba(8, 15, 30, 0.98);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255,255,255,0.06);
        padding: 12px 16px 20px;
        transform: translateY(-110%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                    opacity 0.3s ease;
        z-index: 8999;
    }

    .nav_bar.active { transform: translateY(0); opacity: 1; pointer-events: all; }
    .nav_bar li { width: 100%; }
    .nav_bar li a { display: block; width: 100%; padding: 12px 16px; font-size: 15px; }
    .nav_bar li a::after { display: none; }

    /* Hero */
    .ads_wol h3 { font-size: 48px; }
    .img_owl_index { flex: 0 0 280px; }
    .img_owl_index::before { width: 260px; height: 260px; }

    /* About */
    .about-content { flex-direction: column; gap: 40px; }
    .about-images { flex: none; width: 100%; height: 360px; }
    #who_we::before { display: none; }

    /* Contact */
    .contact-two-col { grid-template-columns: 1fr; gap: 36px; }
    .cf-row { grid-template-columns: 1fr; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }

    /* How works */
    .how_work::after { display: none; }
    .how_work { flex-direction: column; align-items: center; gap: 30px; }
    .how_work li { flex: none; width: 100%; max-width: 340px; }
}

/* ============================================================
   RESPONSIVE — Mobile < 768px
   ============================================================ */
@media (max-width: 767px) {
    .sec-padd { padding-top: 50px; padding-bottom: 50px; }
    header .d-flex { height: 62px; }

    /* Hero */
    .owl-index .item .container {
        flex-direction: column;
        padding-top: 50px;
        padding-bottom: 70px;
        text-align: center;
    }

    .ads_wol h3 { font-size: 34px; }
    .ads_wol p  { font-size: 15px; }
    .slider-cta { justify-content: center; }
    .slider-app-badges { justify-content: center; }
    .img_owl_index { flex: none; width: 100%; max-width: 280px; }
    .img_owl_index::before, .img_owl_index::after { display: none; }
    .hero-scroll-indicator { display: none; }

    /* Section title */
    .the_title h3 { font-size: 26px; }
    .the_title p  { font-size: 14px; }

    /* About */
    .about-text h4  { font-size: 26px; }
    .about-images   { height: 290px; }
    .img_info_JM::before { display: none; }

    /* Services */
    .box-servess { margin-bottom: 16px; }

    /* Contact */
    .contact-two-col { grid-template-columns: 1fr; gap: 28px; }
    .cf-row { grid-template-columns: 1fr; }
    .contact-form-card { padding: 24px 18px; }
    .contact-heading { font-size: 26px; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-brand { text-align: center; }
    .logo_footer { margin: 0 auto 16px; }
    .footer-tagline { max-width: 100%; margin: 0 auto 18px; }
    .social-m { justify-content: center; }
    .footer-app-badges { align-items: center; }
    .link-footer li:hover { padding-inline-start: 0; }
    .footer-bottom-inner { flex-direction: column; align-items: center; text-align: center; gap: 10px; }

    /* Loader */
    .loader-logo { width: 90px; }
    .loader-ball { font-size: 30px; }
    .loader-bar-wrap { width: 120px; }

    /* FAQ */
    #pills-tab { flex-wrap: wrap; justify-content: center; }
    .about-feature-item:hover { transform: none; }
    .contact-info-card:hover { transform: none; }
}

/* ============================================================
   RESPONSIVE — Small phones < 375px
   ============================================================ */
@media (max-width: 374px) {
    .ads_wol h3 { font-size: 28px; }
    .btn-primary-cta, .btn-outline-cta { padding: 12px 18px; font-size: 14px; }
}
