:root {
    --ink: #121722;
    --muted: #667085;
    --paper: #f7f8f8;
    --white: #fff;
    --cyan: #2fc2ca;
    --blue: #328cae;
    --navy: #303c88;
    --line: #e4e8eb;
    --grad: linear-gradient(135deg, #2fc2ca, #328eae 48%, #303c88);
    --font: 'Poppins', sans-serif
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--font);
    overflow-x: hidden
}

html[dir=rtl] body {
    font-family: 'Tajawal', sans-serif
}

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

img {
    max-width: 100%
}

.nav-wrap {
    height: 88px;
    padding: 0 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    inset-inline: 0;
    top: 0;
    z-index: 20
}

.brand img {
    height: 80px;
    width: auto;
    display: block
}

.nav-wrap nav {
    display: flex;
    gap: 28px;
    align-items: center;
    font-size: 14px;
    font-weight: 600
}

.nav-wrap nav a {
    position: relative
}

.nav-wrap nav a:not(.lang):after {
    content: '';
    position: absolute;
    bottom: -7px;
    inset-inline-start: 0;
    width: 0;
    height: 2px;
    background: var(--cyan);
    transition: .3s
}

.nav-wrap nav a:hover:after {
    width: 100%
}

.lang {
    border: 1px solid #cbd4d8;
    padding: 9px 13px;
    border-radius: 50px
}

.menu-toggle {
    display: none;
    background: none;
    border: 0;
    font-size: 25px
}

.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 4vw;
    padding: 140px 7vw 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(115deg, #fbfcfc 0%, #f1f8f8 55%, #e7f3f4)
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(#1b59610a 1px, transparent 1px), linear-gradient(90deg, #1b59610a 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: linear-gradient(to bottom, black, transparent 75%)
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    opacity: .18
}

.hero-orb.one {
    width: 480px;
    height: 480px;
    background: var(--cyan);
    right: 10%;
    top: 10%
}

.hero-orb.two {
    width: 380px;
    height: 380px;
    background: var(--navy);
    right: -5%;
    bottom: -8%
}

.hero-copy,
.hero-visual {
    position: relative;
    z-index: 2
}

.eyebrow,
.section-label {
    font-size: 12px;
    letter-spacing: 2.4px;
    font-weight: 800;
    color: #278e9e
}

.hero h1 {
    font-size: clamp(52px, 7.4vw, 112px);
    line-height: .94;
    letter-spacing: -4px;
    margin: 25px 0 30px;
    max-width: 820px
}

.hero h1:after {
    content: '';
    display: block;
    width: 130px;
    height: 9px;
    background: var(--grad);
    border-radius: 20px;
    margin-top: 25px
}

.hero-copy>p {
    font-size: 18px;
    line-height: 1.9;
    color: var(--muted);
    max-width: 650px
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 38px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 16px 24px;
    border-radius: 4px;
    font-weight: 700;
    border: 1px solid transparent;
    cursor: pointer;
    font-family: inherit
}

.btn.primary {
    background: var(--grad);
    color: white;
    box-shadow: 0 15px 35px #318fae33
}

.btn.ghost {
    border-color: #cdd7db;
    background: #ffffff75
}

.hero-visual {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px
}

.glass-card {
    width: min(360px, 80%);
    height: 140px;
    border: 1px solid #fff9;
    background: #ffffff8a;
    backdrop-filter: blur(14px);
    box-shadow: 0 25px 65px #2549681c;
    padding: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between
}

.glass-card.middle {
    margin-inline-end: 80px;
    background: var(--grad);
    color: white
}

.glass-card span {
    font-size: 13px;
    opacity: .65
}

.glass-card strong {
    font-size: 23px;
    letter-spacing: 2px
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    inset-inline-start: 7vw;
    font-size: 10px;
    letter-spacing: 2px;
    z-index: 2
}

.section {
    padding: 120px 7vw
}

.about-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 10vw;
    margin-top: 45px
}

.section h2 {
    font-size: clamp(38px, 5vw, 74px);
    line-height: 1.12;
    letter-spacing: -2px;
    margin: 18px 0
}

.lead {
    font-size: 22px;
    line-height: 1.9;
    margin: 0;
    color: #3b4650
}

.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-top: 50px
}

.vision-grid article {
    border-top: 2px solid var(--ink);
    padding-top: 22px
}

.vision-grid i {
    color: var(--cyan);
    font-size: 23px
}

.vision-grid p,
.value-grid p,
.project-grid p {
    color: var(--muted);
    line-height: 1.8
}

.band {
    padding: 55px 7vw;
    background: var(--grad);
    color: white;
    display: grid;
    grid-template-columns: repeat(4, 1fr)
}

.stat {
    text-align: center;
    border-inline-end: 1px solid #ffffff3b
}

.stat:last-child {
    border: 0
}

.stat strong {
    font-size: 50px
}

.stat em {
    font-size: 22px;
    font-style: normal
}

.stat span {
    display: block;
    margin-top: 8px;
    opacity: .8
}

.dark {
    background: #111824;
    color: white
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 7vw;
    margin-bottom: 55px
}

.section-head>div {
    max-width: 780px
}

.section-head>p {
    max-width: 390px;
    color: #9ba6b5;
    line-height: 1.8
}

.process {
    position: relative;
    overflow: hidden;
    background: #fff;
}

.process-pin {
    min-height: 100vh;
    padding: 90px 0 55px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.process-header {
    width: 100%;
    padding: 0 7vw;
    margin-bottom: 50px;
}

.process-header h2 {
    max-width: 900px;
    margin: 16px 0 32px;
    font-size: clamp(38px, 5vw, 72px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.process-progress {
    width: 100%;
    height: 2px;
    overflow: hidden;
    background: #dfe6e8;
}

.process-progress span {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--grad);
    transform: scaleX(0);
    transform-origin: left center;
}

html[dir="rtl"] .process-progress span {
    transform-origin: right center;
}

.process-viewport {
    width: 100%;
    overflow: hidden;
}

.process-track {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    padding-inline: 7vw;
    will-change: transform;
}

.process-step {
    width: min(430px, 75vw);
    min-width: min(430px, 75vw);
    min-height: 360px;
    padding-inline-end: 70px;
    position: relative;
}

.process-number {
    margin-bottom: 25px;
    color: #2b9ca8;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
}

.process-dot {
    width: 100%;
    height: 2px;
    position: relative;
    margin-bottom: 38px;
    background: #dce4e6;
}

.process-dot span {
    position: absolute;
    inset-inline-start: 0;
    top: 50%;
    width: 15px;
    height: 15px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 0 1px var(--cyan);
    transform: translateY(-50%);
}

.process-content {
    max-width: 310px;
}

.process-content small {
    color: #8b969e;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
}

.process-content h3 {
    margin: 14px 0 12px;
    font-size: 27px;
}

.process-content p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.9;
}

.process-finish {
    width: min(520px, 85vw);
    min-width: min(520px, 85vw);
    padding: 0;
}

.process-finish-content {
    min-height: 330px;
    padding: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    background: var(--grad);
}

.process-finish-content span {
    font-size: 30px;
}

.process-finish-content h3 {
    max-width: 380px;
    margin: 25px 0;
    font-size: 38px;
    line-height: 1.25;
}

.process-finish-content a {
    width: max-content;
    padding-bottom: 6px;
    color: #fff;
    border-bottom: 1px solid #ffffff80;
    font-weight: 700;
}

@media (max-width: 768px) {
    .process-pin {
        padding-top: 75px;
    }

    .process-header {
        margin-bottom: 35px;
    }

    .process-header h2 {
        margin-bottom: 24px;
    }

    .process-step {
        width: 82vw;
        min-width: 82vw;
        padding-inline-end: 35px;
    }

    .process-finish {
        width: 86vw;
        min-width: 86vw;
    }

    .process-finish-content {
        padding: 32px;
    }

    .process-finish-content h3 {
        font-size: 30px;
    }
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px
}

.project-image {
    aspect-ratio: 1/.72;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden
}

.project-image.placeholder {
    background: linear-gradient(145deg, #ccecee, #498cae 55%, #34418b)
}

.project-image:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 180%;
    background: #ffffff15;
    transform: rotate(25deg);
    left: -60%;
    top: -50%;
    transition: .6s
}

.project-grid article:hover .project-image:after {
    left: 120%
}

.project-image span {
    position: absolute;
    top: 18px;
    inset-inline-start: 18px;
    background: #fff;
    padding: 8px 11px;
    font-size: 10px;
    z-index: 2
}

.project-grid h3 {
    font-size: 24px;
    margin-bottom: 6px
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 18px
}

.gallery-grid figure {
    grid-column: span 4;
    margin: 0;
    position: relative;
    overflow: hidden
}

.gallery-grid figure:nth-child(5n+1) {
    grid-column: span 7
}

.gallery-grid figure:nth-child(5n+2) {
    grid-column: span 5
}

.gallery-grid img {
    width: 100%;
    aspect-ratio: 1.1;
    object-fit: cover;
    display: block;
    transition: .5s
}

.gallery-grid figure:hover img {
    transform: scale(1.04)
}

.gallery-grid figcaption {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    padding: 50px 18px 18px;
    background: linear-gradient(transparent, #000c)
}

.gallery-grid figcaption span {
    display: block;
    color: #b8c1ca;
    font-size: 12px
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    margin-top: 45px
}

.value-grid article {
    background: var(--paper);
    padding: 42px
}

.value-grid span {
    color: #2a9da8;
    font-weight: 800
}

.value-grid h3 {
    font-size: 25px
}

.accordion {
    max-width: 940px;
    margin: auto
}

.accordion details {
    border-bottom: 1px solid #ccd5d8;
    padding: 24px 0
}

.accordion summary {
    list-style: none;
    cursor: pointer;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    justify-content: space-between
}

.accordion summary::-webkit-details-marker {
    display: none
}

.accordion summary b {
    color: #2c9ba8;
    font-size: 26px
}

.accordion details[open] summary b {
    transform: rotate(45deg)
}

.accordion p {
    color: var(--muted);
    line-height: 1.8
}

.contact {
    padding: 110px 7vw;
    background: var(--grad);
    color: white;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9vw
}

.contact .section-label {
    color: #c7fbff
}

.contact h2 {
    font-size: clamp(38px, 5vw, 70px);
    line-height: 1.15;
    margin: 22px 0
}

.contact-copy>p {
    font-size: 18px;
    line-height: 1.8;
    opacity: .85
}

.contact ul {
    padding: 0;
    list-style: none;
    line-height: 2
}

.contact form {
    background: #ffffff12;
    border: 1px solid #ffffff30;
    padding: 36px;
    backdrop-filter: blur(12px)
}

.field {
    margin-bottom: 20px
}

.field label {
    display: block;
    font-size: 13px;
    margin-bottom: 8px
}

.field input,
.field textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #ffffff60;
    background: transparent;
    color: white;
    padding: 12px 3px;
    font: inherit;
    outline: 0
}

.field input:focus,
.field textarea:focus {
    border-color: white
}

.row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px
}

.contact .btn {
    background: white;
    color: #267d99;
    border: 0
}

footer {
    background: #0d131c;
    color: white;
    text-align: center;
    padding: 65px 20px
}

footer img {
    width: 220px;
    filter: brightness(0) invert(1);
    opacity: .9
}

footer p {
    color: #aab4bf
}

.toast {
    position: fixed;
    z-index: 90;
    top: 105px;
    left: 50%;
    transform: translateX(-50%);
    background: #111824;
    color: #fff;
    padding: 15px 22px;
    border-inline-start: 4px solid var(--cyan)
}

.cursor-glow {
    width: 220px;
    height: 220px;
    position: fixed;
    left: -110px;
    top: -110px;
    border-radius: 50%;
    background: #34c4ca12;
    pointer-events: none;
    z-index: 100;
    filter: blur(10px)
}

@media(max-width:950px) {
    .nav-wrap nav {
        display: none;
        position: absolute;
        top: 75px;
        inset-inline: 5vw;
        background: white;
        padding: 25px;
        box-shadow: 0 20px 50px #0002;
        flex-direction: column
    }

    .nav-wrap nav.open {
        display: flex
    }

    .menu-toggle {
        display: block
    }

    .hero {
        grid-template-columns: 1fr;
        padding-top: 130px
    }

    .hero h1 {
        letter-spacing: -2px
    }

    .hero-visual {
        display: none
    }

    .about-grid,
    .contact {
        grid-template-columns: 1fr
    }

    .band {
        grid-template-columns: 1fr 1fr;
        gap: 35px
    }

    .stat:nth-child(2) {
        border: 0
    }

    .project-grid,
    .value-grid {
        grid-template-columns: 1fr 1fr
    }

}

@media(max-width:600px) {
    .section {
        padding: 85px 6vw
    }

    .brand img {
        height: 80px;
        width: auto;
    }

    .hero {
        padding-inline: 6vw
    }

    .hero h1 {
        font-size: 50px
    }

    .vision-grid,
    .project-grid,
    .value-grid,
    .row {
        grid-template-columns: 1fr
    }

    .section-head {
        display: block
    }

    .band {
        padding-inline: 3vw
    }

    .stat strong {
        font-size: 35px
    }

    .gallery-grid figure,
    .gallery-grid figure:nth-child(n) {
        grid-column: span 12
    }

    .contact form {
        padding: 25px
    }

    .cursor-glow {
        display: none
    }
}

.clients-section {
    position: relative;
    overflow: hidden;
    padding: 110px 7vw;
    text-align: center;
    background:
        radial-gradient(circle at 50% 0%, #2fc2ca12, transparent 35%),
        #fff;
}

.clients-heading {
    max-width: 720px;
    margin: 0 auto 55px;
}

.clients-heading h2 {
    margin: 15px 0;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.15;
    letter-spacing: -2px;
}

.clients-heading p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
}

.clients-swiper {
    padding: 15px 5px 65px;
}

.clients-swiper .swiper-slide {
    height: auto;
}

.client-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: inherit;
    text-decoration: none;
}

.client-logo {
    position: relative;
    isolation: isolate;
    width: 150px;
    height: 150px;
    padding: 25px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid #e0e8ea;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 18px 45px #253e5212;
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.client-logo::before {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    z-index: 0;
    border-radius: 50%;
    background: var(--grad);
    opacity: 0;
    transform: scale(0.88);
    transition: 0.35s ease;
}

.client-logo img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.75;
    transition:
        filter 0.35s ease,
        opacity 0.35s ease,
        transform 0.35s ease;
}

.client-logo span {
    position: relative;
    z-index: 1;
    font-size: 48px;
    font-weight: 800;
    color: var(--blue);
}

.client-item:hover .client-logo {
    border-color: transparent;
    box-shadow: 0 25px 55px #318fae2b;
    transform: translateY(-8px);
}

.client-item:hover .client-logo::before {
    opacity: 1;
    transform: scale(1);
}

.client-item:hover .client-logo img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.05);
}

.client-item h3 {
    margin: 18px 0 0;
    font-size: 16px;
}

.clients-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #aebbc0;
    opacity: 1;
}

.clients-pagination .swiper-pagination-bullet-active {
    width: 25px;
    border-radius: 20px;
    background: var(--grad);
}

@media (max-width: 600px) {
    .clients-section {
        padding: 80px 6vw;
    }

    .client-logo {
        width: 120px;
        height: 120px;
        padding: 20px;
    }
}


.services-horizontal {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 15%, #2fc2ca16, transparent 28%),
        radial-gradient(circle at 85% 70%, #303c8828, transparent 35%),
        #111824;
    color: #fff;
}

.services-pin {
    min-height: 100vh;
    padding: 80px 0 55px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services-header {
    position: relative;
    width: 100%;
    padding: 0 7vw;
    margin-bottom: 45px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    align-items: end;
    gap: 60px;
}

.services-header h2 {
    max-width: 850px;
    margin: 16px 0 0;
    font-size: clamp(38px, 5vw, 72px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.services-header>p {
    margin: 0 0 7px;
    color: #a8b2c0;
    line-height: 1.9;
}

.services-progress {
    grid-column: 1 / -1;
    width: 100%;
    height: 2px;
    margin-top: 10px;
    overflow: hidden;
    background: #ffffff1c;
}

.services-progress span {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--grad);
    transform: scaleX(0);
    transform-origin: left center;
}

html[dir="rtl"] .services-progress span {
    transform-origin: right center;
}

.services-viewport {
    width: 100%;
    overflow: hidden;
}

.services-track {
    width: max-content;
    padding-inline: 7vw;
    display: flex;
    flex-wrap: nowrap;
    gap: 22px;
    will-change: transform;
}

.horizontal-service-card {
    position: relative;
    width: min(440px, 78vw);
    min-width: min(440px, 78vw);
    min-height: 390px;
    padding: 32px;
    overflow: hidden;
    border: 1px solid #ffffff1c;
    background: #ffffff08;
    backdrop-filter: blur(14px);
    transition:
        border-color 0.35s ease,
        background 0.35s ease;
}

.horizontal-service-card::before {
    content: "";
    position: absolute;
    inset-inline-start: 0;
    top: 0;
    width: 3px;
    height: 0;
    background: var(--grad);
    transition: height 0.45s ease;
}

.horizontal-service-card:hover {
    border-color: #2fc2ca66;
    background: #ffffff0d;
}

.horizontal-service-card:hover::before {
    height: 100%;
}

.service-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.service-number {
    color: #738092;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.service-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border: 1px solid #ffffff25;
    border-radius: 50%;
    color: var(--cyan);
}

.service-icon svg {
    width: 23px;
    height: 23px;
}

.service-card-content {
    position: absolute;
    inset-inline: 32px;
    bottom: 38px;
}

.service-card-content small {
    color: #748294;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.8px;
}

.service-card-content h3 {
    margin: 13px 0;
    font-size: 32px;
    line-height: 1.25;
}

.service-card-content p {
    max-width: 350px;
    margin: 0;
    color: #aeb8c5;
    line-height: 1.9;
}

.service-arrow {
    position: absolute;
    top: 115px;
    inset-inline-end: 33px;
    color: var(--cyan);
    font-size: 22px;
}

.services-finish {
    border: 0;
    background: var(--grad);
}

.services-finish::before {
    display: none;
}

.services-finish-content {
    min-height: 325px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services-finish-content>span {
    margin-bottom: 30px;
    font-size: 34px;
}

.services-finish-content small {
    color: #d9fcff;
    letter-spacing: 2px;
}

.services-finish-content h3 {
    max-width: 370px;
    margin: 16px 0 35px;
    font-size: 35px;
    line-height: 1.3;
}

.services-finish-content a {
    width: max-content;
    padding-bottom: 7px;
    color: #fff;
    border-bottom: 1px solid #ffffff80;
    font-weight: 700;
}

@media (max-width: 900px) {
    .services-pin {
        padding-top: 70px;
    }

    .services-header {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 35px;
    }

    .services-header>p {
        max-width: 600px;
    }

    .horizontal-service-card {
        width: 82vw;
        min-width: 82vw;
        min-height: 370px;
    }
}

@media (max-width: 600px) {
    .services-header h2 {
        letter-spacing: -1px;
    }

    .horizontal-service-card {
        padding: 26px;
    }

    .service-card-content {
        inset-inline: 26px;
        bottom: 30px;
    }

    .service-card-content h3 {
        font-size: 27px;
    }

    .services-finish-content h3 {
        font-size: 29px;
    }
}


/* =========================================
   Services & Process visibility override
========================================= */

/* منع GSAP من إبقاء النصوص خافتة */
.process-content,
.process-finish-content,
.service-card-content,
.services-finish-content {
    opacity: 1 !important;
    visibility: visible !important;
}

/* عناوين خطوات العمل */
.process-content h3 {
    color: #121722 !important;
    opacity: 1 !important;
}

/* وصف خطوات العمل */
.process-content p {
    color: #56616f !important;
    opacity: 1 !important;
}

/* النص الصغير فوق عنوان الخطوة */
.process-content small {
    color: #278e9e !important;
    opacity: 1 !important;
}

/* أرقام الخطوات */
.process-number {
    color: #278e9e !important;
    opacity: 1 !important;
}

/* خط ونقطة خطوات العمل */
.process-dot {
    background: #cfdadd !important;
    opacity: 1 !important;
}

.process-dot span {
    opacity: 1 !important;
    background: var(--cyan) !important;
    box-shadow:
        0 0 0 1px var(--cyan),
        0 0 20px #2fc2ca55 !important;
}

/* بطاقات الخدمات */
.horizontal-service-card {
    opacity: 1 !important;
    background: rgba(255, 255, 255, 0.075) !important;
    border-color: rgba(255, 255, 255, 0.18) !important;
}

/* عنوان الخدمة */
.service-card-content h3 {
    color: #ffffff !important;
    opacity: 1 !important;
}

/* وصف الخدمة */
.service-card-content p {
    color: #d0d7df !important;
    opacity: 1 !important;
}

/* النص الصغير داخل الخدمة */
.service-card-content small {
    color: #64d7dd !important;
    opacity: 1 !important;
}

/* رقم الخدمة */
.service-number {
    color: #a5b1c0 !important;
    opacity: 1 !important;
}

/* أيقونة الخدمة */
.service-icon {
    opacity: 1 !important;
    color: #58d4dc !important;
    border-color: rgba(88, 212, 220, 0.4) !important;
    background: rgba(47, 194, 202, 0.08) !important;
}

/* سهم الخدمة */
.service-arrow {
    color: #58d4dc !important;
    opacity: 1 !important;
}

/* البطاقة الأخيرة في القسمين */
.process-finish-content,
.services-finish-content {
    color: #ffffff !important;
}

.process-finish-content h3,
.process-finish-content a,
.services-finish-content h3,
.services-finish-content a {
    color: #ffffff !important;
    opacity: 1 !important;
}

.services-finish-content small {
    color: #d9fcff !important;
    opacity: 1 !important;
}

/* تحسين وضوح البطاقة عند مرور المؤشر */
.horizontal-service-card:hover {
    background: rgba(255, 255, 255, 0.11) !important;
    border-color: rgba(47, 194, 202, 0.65) !important;
}