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

:root {
    --pink: #116291;
    --pink-light: #F9F9F9;
    --pink-mid: #2e88bd;
    --pink-dark: #116291;
    --black: #0a0a0a;
    --black2: #1a1a1a;
    --gray: #6b6b6b;
    --border: #f0f0f0;
    --white: #ffffff;
    --surface: #fafafa;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Outfit", sans-serif;
    background: var(--white);
    color: var(--black);
    overflow-x: hidden;
}

body.ar {
    font-family: "Cairo", sans-serif;
    direction: rtl;
    text-align: right;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.4rem 4rem;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.nav-logo {
    font-family: "Playfair Display", serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--black);
}

body.ar .nav-logo {
    font-family: "Cairo", sans-serif;
}

.nav-logo span {
    color: var(--pink);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray);
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: color 0.2s;
    position: relative;
}

body.ar .nav-links a {
    letter-spacing: 0;
    font-size: 0.9rem;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--pink);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s;
}

.nav-links a:hover {
    color: var(--black);
}

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    border: 1.5px solid var(--border);
    background: transparent;
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--black);
    transition: all 0.2s;
}

.lang-btn:hover {
    border-color: var(--pink);
    color: var(--pink);
}

body.ar .lang-btn {
    font-family: "Cairo", sans-serif;
}

.nav-contact {
    background: var(--black);
    color: var(--white);
    padding: 0.65rem 1.6rem;
    border-radius: 2rem;
    font-size: 0.82rem;
    font-weight: 500;
    text-decoration: none;
    transition:
        background 0.2s,
        transform 0.2s;
    border: 1.5px solid var(--black);
}

.nav-contact:hover {
    background: var(--pink);
    border-color: var(--pink);
    transform: translateY(-1px);
}

.hero {
    min-height: 100vh;
    padding: 9rem 4rem 5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    right: -200px;
    top: -200px;
    width: 600px;
    height: 600px;
    background: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-20px, 20px);
    }
}

.hero-left {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    /* Using your blue color 2e88bd for a subtle border */
    border: 1px solid rgba(46, 136, 189, 0.3);
    /* Light gray background to make it look clean */
    background: #f4f4f5;
    padding: 0.45rem 1.1rem;
    border-radius: 2rem;
    font-size: 0.78rem;
    font-weight: 500;
    /* Using your strong blue for the text */
    color: #116291;
    margin-bottom: 2rem;
    /* Subtle shadow to match the cards */
    box-shadow: 0 2px 8px rgba(46, 136, 189, 0.1);
}

.badge-dot {
    width: 7px;
    height: 7px;
    background: var(--pink);
    border-radius: 50%;
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

@keyframes pulse {

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

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

h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(3rem, 5.5vw, 5rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 1.8rem;
}

body.ar h1 {
    font-family: "Cairo", sans-serif;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.2;
}

h1 em {
    font-style: italic;
    color: var(--pink);
}

body.ar h1 em {
    font-style: normal;
}

.hero-desc {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.9;
    max-width: 500px;
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero-desc strong {
    color: var(--black);
    font-weight: 600;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-primary {
    background: var(--pink);
    color: var(--white);
    padding: 1rem 2.2rem;
    border-radius: 2rem;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.btn-primary:hover {
    background: var(--pink-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.btn-ghost {
    font-size: 0.9rem;
    color: var(--black);
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;

    padding: 1rem 2.2rem;
    border-radius: 2rem;
    font-size: 0.92rem;
    text-decoration: none;
    /* Smooth transitions for all properties */
    transition: all 0.2s ease-in-out;
}

.btn-ghost:hover {
    gap: 0.8rem;
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
    background: #e4e4e7;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
}

.stat-num {
    font-family: "Playfair Display", serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1;
}

body.ar .stat-num {
    font-family: "Cairo", sans-serif;
}

.stat-num span {
    color: var(--pink);
}

.stat-label {
    font-size: 0.78rem;
    color: var(--gray);
    margin-top: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

body.ar .stat-label {
    letter-spacing: 0;
    text-transform: none;
    font-size: 0.82rem;
}

.hero-right {
    position: relative;
    z-index: 1;
}

.hero-visual {
    position: relative;
    background: var(--surface);
    border-radius: 2rem;
    overflow: hidden;
    aspect-ratio: 4/5;
    border: 1px solid var(--border);
}

.hv-screen {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    background: var(--white);
}

.hv-topbar {
    height: 48px;
    background: var(--black);
    display: flex;
    align-items: center;
    padding: 0 1.2rem;
    gap: 0.5rem;
}

.hv-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.hv-content {
    flex: 1;
    padding: 1.2rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.hv-hero-strip {
    height: 100px;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    border-radius: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    flex-shrink: 0;
}

.hv-hero-text {
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 3px;
    width: 40%;
}

.hv-hero-btn {
    height: 24px;
    background: var(--pink);
    border-radius: 12px;
    width: 24%;
}

.hv-row {
    display: flex;
    gap: 0.6rem;
}

.hv-card {
    flex: 1;
    background: var(--surface);
    border-radius: 0.6rem;
    border: 1px solid var(--border);
    padding: 0.7rem;
}

.hv-card-img {
    height: 48px;
    background: var(--pink-light);
    border-radius: 0.4rem;
    margin-bottom: 0.5rem;
}

.hv-card-line {
    height: 7px;
    background: var(--border);
    border-radius: 2px;
    margin-bottom: 0.3rem;
    width: 80%;
}

.hv-card-line.short {
    width: 50%;
    background: var(--pink);
    opacity: 0.4;
}

.hv-nav-bottom {
    height: 48px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 1rem;
    flex-shrink: 0;
}

.hv-nav-icon {
    width: 20px;
    height: 20px;
    background: var(--border);
    border-radius: 4px;
}

.hv-nav-icon.active {
    background: var(--pink);
    opacity: 0.7;
}

.floating-tag {
    position: absolute;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 0.7rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.78rem;
    font-weight: 500;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.ft1 {
    top: 10%;
    left: -18%;
    animation: float2 5s ease-in-out infinite;
}

.ft2 {
    bottom: 15%;
    right: -7%;
    animation: float2 6s 1s ease-in-out infinite;
}

.ft3 {
    bottom: 40%;
    left: -15%;
    animation: float2 7s 0.5s ease-in-out infinite;
}

body.ar .ft1 {
    left: auto;
    right: -18%;
}

body.ar .ft2 {
    right: auto;
    left: -12%;
}

body.ar .ft3 {
    left: auto;
    right: -15%;
}

@keyframes float2 {

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

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

.ft-sub {
    font-size: 0.7rem;
    color: var(--gray);
    font-weight: 300;
}

/* WHY WEBSITE */
.why-website {
    background: var(--black);
    padding: 7rem 4rem;
    position: relative;
    overflow: hidden;
}

.why-website::before {
    content: "";
    position: absolute;
    left: -200px;
    bottom: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle,
            rgba(69, 100, 240, 0.12) 0%,
            transparent 70%);
    border-radius: 50%;
}

.wy-inner {
    position: relative;
    z-index: 1;
}

.wy-top {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.why-website .label {
    justify-content: center;
    color: var(--pink-mid);
}

.why-website .label::before {
    background: var(--pink-mid);
}

.why-website h2 {
    color: var(--white);
    text-align: center;
}

.why-website h2 em {
    color: var(--pink-mid);
}

.wy-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.85;
    margin-top: 1.2rem;
    font-weight: 300;
}

.wy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.wy-card {
    border-radius: 1.4rem;
    padding: 2.5rem;
    border: 1px solid rgba(46, 136, 189, 0.35);
    background: rgba(255, 255, 255, 0.05);
    transition:
        border-color 0.3s,
        background 0.3s,
        transform 0.3s,
        box-shadow 0.3s;
}

.wy-card:hover {
    border-color: rgba(46, 136, 189, 0.6);
    background: rgba(46, 136, 189, 0.12);
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(46, 136, 189, 0.3);
}

.wy-vs {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.wy-col {
    flex: 1;
}

.wy-col-title {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    padding: 0.4rem 0.8rem;
    border-radius: 2rem;
    display: inline-block;
}

body.ar .wy-col-title {
    letter-spacing: 0;
    text-transform: none;
    font-size: 0.8rem;
}

.wy-col-title.bad {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.4);
}

.wy-col-title.good {
    background: rgba(27, 27, 27, 0.6);
    border: 1px solid rgba(46, 136, 189, 0.3);
    color: var(--pink-mid);
}

.wy-point {
    font-size: 0.88rem;
    line-height: 1.7;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.wy-point:last-child {
    border-bottom: none;
}

.wy-point.neg {
    color: rgba(255, 255, 255, 0.35);
}

.wy-point.pos {
    color: rgba(255, 255, 255, 0.75);
}

.wy-point-icon {
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 0.8rem;
}

.wy-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
    margin-top: 2.5rem;
}

.wy-big-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.wy-big-card {
    border-radius: 1.4rem;
    padding: 2rem;
    border: 1px solid rgba(46, 136, 189, 0.3);
    background: rgba(255, 255, 255, 0.05);

    transition: all 0.3s;
}

.wy-big-card:hover {
    border-color: rgba(46, 136, 189, 0.6);
    background: rgba(46, 136, 189, 0.1);
    transform: translateY(-4px);

    /* Clean professional glow */
    box-shadow: 0 12px 24px rgba(46, 136, 189, 0.25);
}

.wy-big-num {
    font-family: "Playfair Display", serif;
    font-size: 2.5rem;
    font-weight: 700;
    /* Updated from pink to your light blue */
    color: #2e88bd;
    line-height: 1;
    margin-bottom: 0.8rem;
    /* Optional: Adds a very subtle glow to the number to match the cards */
    text-shadow: 0 2px 10px rgba(46, 136, 189, 0.2);
}

body.ar .wy-big-num {
    font-family: "Cairo", sans-serif;
}

.wy-big-title {
    font-size: 1rem;
    font-weight: 600;
    /* Keeping this white for high contrast against the blue accents */
    color: #ffffff;
    margin-bottom: 0.6rem;
}

.wy-big-desc {
    font-size: 0.85rem;
    /* Changed from pure white alpha to a very subtle blue-gray tint */
    /* This makes the "online store" vibe feel more premium */
    color: white;
    line-height: 1.75;
    font-weight: 300;
}

.wy-side-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* MARQUEE */
.marquee-wrap {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    padding: 1rem 0;
    background: var(--white);
}

.marquee-track {
    display: flex;
    gap: 0;
    white-space: nowrap;
    animation: scroll 28s linear infinite;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    padding: 0 2.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-right: 1px solid var(--border);
    gap: 0.8rem;
}

.marquee-pink {
    color: var(--pink);
    font-size: 0.7rem;
}

.section {
    padding: 7rem 4rem;
}

.section-alt {
    background: var(--surface);
}

.label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--pink);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

body.ar .label {
    letter-spacing: 0;
    font-size: 0.82rem;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

body.ar .label::before {
    display: none;
}

body.ar .label::after {
    content: "";
    width: 28px;
    height: 2px;
    background: currentColor;
    flex-shrink: 0;
}

h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.12;
    margin-bottom: 1.5rem;
}

body.ar h2 {
    font-family: "Cairo", sans-serif;
    letter-spacing: 0;
    line-height: 1.25;
}

h2 em {
    font-style: italic;
    color: var(--pink);
}

body.ar h2 em {
    font-style: normal;
}

.services-intro {
    max-width: 560px;
    margin-bottom: 4rem;
}

.services-intro p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.85;
    font-weight: 300;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-item {
    border: 1px solid var(--border);
    border-radius: 1.4rem;
    padding: 2.5rem 2rem;
    background: var(--white);
    transition:
        border-color 0.25s,
        transform 0.25s,
        box-shadow 0.25s;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--pink);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

body.ar .service-item::before {
    transform-origin: right;
}

.service-item:hover::before {
    transform: scaleX(1);
}

.service-item:hover {
    border-color: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.si-num {
    font-family: "Playfair Display", serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--border);
    line-height: 1;
    margin-bottom: 1.2rem;
    transition: color 0.25s;
}

body.ar .si-num {
    font-family: "Cairo", sans-serif;
}

.service-item:hover .si-num {
    color: var(--pink-light);
}

.si-icon {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.si-title {
    font-family: "Playfair Display", serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    line-height: 1.3;
}

body.ar .si-title {
    font-family: "Cairo", sans-serif;
    font-size: 1.1rem;
}

.si-desc {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.75;
    font-weight: 300;
}

.si-tags {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    margin-top: 1.2rem;
}

.si-tag {
    font-size: 0.7rem;
    font-weight: 500;
    background: var(--pink-light);
    color: var(--pink-dark);
    padding: 0.25rem 0.7rem;
    border-radius: 1rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    margin-top: 4rem;
}

.process-steps::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: var(--border);
    z-index: 0;
}

.ps-item {
    text-align: center;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

.ps-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-family: "Playfair Display", serif;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.25s;
}

body.ar .ps-circle {
    font-family: "Cairo", sans-serif;
}

.ps-item.active .ps-circle {
    background: var(--pink);
    color: var(--white);
    border-color: var(--pink);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.ps-title {
    font-family: "Playfair Display", serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

body.ar .ps-title {
    font-family: "Cairo", sans-serif;
}

.ps-desc {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.65;
    font-weight: 300;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.why-left p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.why-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.wp-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    background: var(--white);
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
}

.wp-item:hover {
    border-color: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.wp-icon {
    width: 40px;
    height: 40px;
    border-radius: 0.6rem;
    background: var(--pink-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.wp-text strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.wp-text p {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.65;
    font-weight: 300;
}

.big-quote {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.3rem, 2.2vw, 1.8rem);
    font-weight: 700;
    line-height: 1.45;
    border-left: 3px solid var(--pink);
    padding: 2rem;
    background: var(--pink-light);
    border-radius: 0 1.2rem 1.2rem 0;
    margin-bottom: 2rem;
    font-style: italic;
    color: var(--black2);
}

body.ar .big-quote {
    font-family: "Cairo", sans-serif;
    font-style: normal;
    border-left: none;
    border-right: 3px solid var(--pink);
    border-radius: 1.2rem 0 0 1.2rem;
}

.tech-stack {
    margin-top: 2.5rem;
}

.tech-title {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gray);
    margin-bottom: 1rem;
}

body.ar .tech-title {
    letter-spacing: 0;
    text-transform: none;
    font-size: 0.85rem;
}

.tech-pills {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.tech-pill {
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    border: 1px solid var(--border);
    font-size: 0.8rem;
    font-weight: 500;
    background: var(--white);
    color: var(--black);
    transition: all 0.2s;
}

.tech-pill:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.tech-pill.main {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.contact-section {
    background: var(--black);
    padding: 7rem 4rem;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: "";
    position: absolute;
    right: -200px;
    top: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle,
            rgba(69, 100, 240, 0.12) 0%,
            transparent 70%);
    border-radius: 50%;
}

.contact-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    position: relative;
    z-index: 1;
}

.contact-section .label {
    color: var(--pink-mid);
}

.contact-section .label::before {
    background: var(--pink-mid);
}

.contact-section h2 {
    color: var(--white);
}

.contact-section h2 em {
    color: var(--pink-mid);
}

.contact-intro {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.85;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.c-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 0.88rem;
    color: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

body.ar .c-info-item {
    flex-direction: row-reverse;
}

.c-info-icon {
    width: 38px;
    height: 38px;
    border-radius: 0.6rem;
    background: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.c-info-label {
    font-size: 0.7rem;
    color: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.15rem;
}

body.ar .c-info-label {
    letter-spacing: 0;
    text-transform: none;
    font-size: 0.78rem;
    text-align: right;
}

.c-info-val {
    color: rgba(255, 255, 255, 0.75);
}

body.ar .c-info-val {
    text-align: right;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

label {
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

body.ar label {
    letter-spacing: 0;
    text-transform: none;
    font-size: 0.85rem;
}

input,
textarea,
select {
    padding: 0.9rem 1.1rem;
    border-radius: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--white);
    outline: none;
    transition:
        border-color 0.2s,
        background 0.2s;
}

body.ar input,
body.ar textarea,
body.ar select {
    text-align: right;
}

input::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--pink);
    background: rgba(232, 25, 122, 0.05);
}

select option {
    background: #1a1a1a;
    color: var(--white);
}

textarea {
    resize: vertical;
    min-height: 110px;
}

.form-note {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.25);
    line-height: 1.6;
}

.form-btn {
    background: var(--pink);
    color: var(--white);
    border: none;
    padding: 1rem 2.2rem;
    border-radius: 2rem;
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 600;
    transition: all 0.25s;
    align-self: flex-start;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.form-btn:hover {
    background: var(--pink-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.form-success {
    display: none;
    padding: 1.5rem;
    border-radius: 0.8rem;
    background: rgba(232, 25, 122, 0.1);
    border: 1px solid rgba(232, 25, 122, 0.3);
    color: var(--pink-mid);
    font-size: 0.9rem;
    text-align: center;
}

footer {
    background: var(--black2);
    padding: 2.5rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo {
    font-family: "Playfair Display", serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
}

body.ar .footer-logo {
    font-family: "Cairo", sans-serif;
}

.footer-logo span {
    color: var(--pink);
}

.footer-copy {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: color 0.2s;
}

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

.wa-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 200;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    transition: transform 0.2s;
}

body.ar .wa-float {
    right: auto;
    left: 2rem;
}

.wa-float:hover {
    transform: scale(1.1);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

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

.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-left>* {
    animation: fadeUp 0.6s ease both;
}

.hero-badge {
    animation-delay: 0.05s;
}

h1 {
    animation-delay: 0.15s;
}

.hero-desc {
    animation-delay: 0.25s;
}

.hero-cta {
    animation-delay: 0.35s;
}

.hero-stats {
    animation-delay: 0.45s;
}

.hero-right {
    animation: fadeUp 0.8s 0.3s ease both;
}

@media (max-width: 1100px) {
    .wy-big-cards {
        grid-template-columns: 1fr 1fr;
    }

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

@media (max-width: 900px) {
    nav {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 7rem 1.5rem 4rem;
    }

    .hero-right {
        display: none;
    }

    .section,
    .why-website,
    .contact-section {
        padding: 5rem 1.5rem;
    }

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

    .wy-grid {
        grid-template-columns: 1fr;
    }

    .wy-big-cards {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .process-steps::before {
        display: none;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    footer {
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    body {
        cursor: auto;
    }

    .cursor,
    .cursor-follow {
        display: none;
    }

    .form-btn,
    .lang-btn,
    .nav-contact,
    .wa-float {
        cursor: pointer;
    }
}

/* Mobile Optimization */
@media screen and (max-width: 768px) {
    nav {
        /* Reduce the large 4rem padding so elements can move to the edges */
        padding: 1rem 1.2rem;
    }

    .nav-logo {
        font-size: 1.3rem;
        /* Slightly smaller logo to save space */
    }

    /* Hide the middle links on mobile to prevent overlapping */
    .nav-links {
        display: none;
    }

    .nav-right {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        /* Small, consistent gap between AR and Contact */
    }

    /* Target both the language button and contact link */
    .lang-btn,
    .nav-contact {
        padding: 0.5rem 0.8rem !important;
        /* Smaller clickable area */
        font-size: 0.75rem !important;
        /* Smaller text */
        white-space: nowrap;
        /* Keep text on one line */
        height: 34px;
        /* Force identical height */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Adjust the Arabic arrow spacing for the smaller size */
    body.ar .nav-contact {
        gap: 4px;
    }
}