/* =========================================================
             Global Resets & Core Additions
             ========================================================= */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

*,
*::before,
*::after {
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol {
    margin: 0;
    padding: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.eyebrow,
.fp-eyebrow,
.partner-eyebrow {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--dark-teal);
    display: inline-block;
    background: rgba(44, 182, 166, 0.12);
    padding: 6px 10px;
    border-radius: 999px;
    margin-bottom: 16px;
}

/* =========================================================
             Root Variables
             ========================================================= */
:root {
    --teal: #2cb6a6;
    --dark-teal: #1c8e82;
    --orange: #f0a14a;
    --ink: #0e0f12;
    --muted: #5f6b7a;
    --bg: #f8f9fb;
    --radius-lg: 24px;
    --radius-md: 16px;
    --shadow-soft: 0 8px 24px rgba(14, 15, 18, 0.08),
        0 2px 6px rgba(14, 15, 18, 0.05);
    --shadow-card: 0 16px 48px rgba(14, 15, 18, 0.12),
        0 4px 12px rgba(14, 15, 18, 0.06);
    --ring: 0 0 0 3px rgba(44, 182, 166, 0.4);
    --container: 1200px;
    --header-h: 72px;

    /* New additions */
    --transition: 0.25s ease;

    /* Spacing scale */
    --space-xs: clamp(4px, 0.5vw, 8px);
    --space-sm: clamp(8px, 1vw, 12px);
    --space-md: clamp(16px, 2vw, 24px);
    --space-lg: clamp(24px, 3vw, 36px);
    --space-xl: clamp(32px, 4vw, 48px);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto,
        Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
    color: var(--ink);
    background: var(--bg);
    line-height: 1.5;
    font-weight: 400;
    /* added */
}

/* RTL font fallback */
[dir="rtl"] body {
    font-family: "Tajawal", Inter, system-ui, -apple-system, Segoe UI,
        Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

/* =========================================================
             Layout Containers
             ========================================================= */
.container {
    width: min(100%, var(--container));
    margin-inline: auto;
    padding-inline: 20px;
}

[dir="rtl"] .container {
    padding-inline-start: 20px;
    padding-inline-end: 20px;
}

.section {
    scroll-margin-top: var(--header-h);
    padding-block: var(--space-lg);
    /* added for consistency */
}

/* =========================================================
             Transition Defaults
             ========================================================= */
a,
button,
.btn,
.fp-card,
.why-card,
.faq-card,
.cta-card {
    transition: all var(--transition);
}

/* =========================================================
             Your Existing Styles (header, hero, future, etc.)
             ========================================================= */
/* ---- Header / Nav ---- */
header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(248, 249, 251, 0.85);
    backdrop-filter: saturate(1.1) blur(8px);
    border-bottom: 1px solid rgba(14, 15, 18, 0.06);
}

.nav {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    height: var(--header-h);
}

/* ... ⬅️ keep all your existing header, hero, future, why, steps,
                 partner, faq, cta, pricing, and media query styles unchanged ... */

/* =========================================================
             Accessibility: reduced motion
             ========================================================= */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .btn,
    .site-logo,
    .hero-card,
    .fp-icon,
    .fp-icon img {
        transition: none;
        animation: none;
    }
}

/* ===========Marketing  ===============*/

.poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.poppins-thin-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.poppins-extralight-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: italic;
}

.poppins-light-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.poppins-regular-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.poppins-medium-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: italic;
}

.poppins-semibold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: italic;
}

.poppins-bold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.poppins-extrabold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: italic;
}

.poppins-black-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: italic;
}

/* -----------------------------------*/

/* From Uiverse.io by mobinkakei */
.wrapper {
    width: 200px;
    height: 60px;
    position: relative;
    z-index: 1;
}

.circle {
    width: 20px;
    height: 20px;
    position: absolute;
    border-radius: 50%;
    background-color: #1c8e82;
    left: 15%;
    transform-origin: 50%;
    animation: circle7124 .5s alternate infinite ease;
}

@keyframes circle7124 {
    0% {
        top: 60px;
        height: 5px;
        border-radius: 50px 50px 25px 25px;
        transform: scaleX(1.7);
    }

    40% {
        height: 20px;
        border-radius: 50%;
        transform: scaleX(1);
    }

    100% {
        top: 0%;
    }
}

.circle:nth-child(2) {
    left: 45%;
    animation-delay: .2s;
}

.circle:nth-child(3) {
    left: auto;
    right: 15%;
    animation-delay: .3s;
}

.shadow {
    width: 20px;
    height: 4px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.9);
    position: absolute;
    top: 62px;
    transform-origin: 50%;
    z-index: -1;
    left: 15%;
    filter: blur(1px);
    animation: shadow046 .5s alternate infinite ease;
}

@keyframes shadow046 {
    0% {
        transform: scaleX(1.5);
    }

    40% {
        transform: scaleX(1);
        opacity: .7;
    }

    100% {
        transform: scaleX(.2);
        opacity: .4;
    }
}

.shadow:nth-child(4) {
    left: 45%;
    animation-delay: .2s
}

.shadow:nth-child(5) {
    left: auto;
    right: 15%;
    animation-delay: .3s;
}