:root {
    --green: #084d38;
    --green-dark: #086146;
    --darker-green: #054834;
    --green-soft: #eef8f4;
    --bg: #f7fbf9;
    --border: #d7e8df;
    --text: #13231c;
    --muted: #607067;
    --nav-hover:#cbf0de82;
    --white: #fff;
    --shadow: 0 10px 28px rgba(11, 110, 79, .08);
    --shadow-md: 0 16px 40px rgba(11, 110, 79, .11);
    --shadow-lg: 0 24px 60px rgba(11, 110, 79, .14);
    --radius: 20px;
    --max: 1280px;
}

:root {
    --card-width: 250px;
    --card-height: 150px;
}

:root {
    --img-la_parfum: 70px;
    /* LA Parfum Galleria */
    --img-beauty_richal: 70px;
    /* Beauty Richal */
    --img-emper: 70px;
    /* Emper */
    --img-dubai_aroma: 70px;
    /* Dubai Aroma */
    --img-mypb: 70px;
    /* My PB */
    --img-axaia: 70px;
    /* Axaia Perfume */
    --img-selhaya: 70px;
    /* Selhaya */
    --img-gulforchid: 70px;
    /* gulforchid */
    --img-markobaleno: 80px;
    /* Markobaleno */
    --img-huda_girls: 80px;
    /* Huda Girls */
    --img-oleyviya: 70px;
    /* O'Leyviya */
    --img-medfly: 70px;
    /* Medfly */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Inter', Arial, sans-serif;
    background: var(--green-dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}


.section {
    position: relative;
    z-index: 1;
}

.section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.4));
    opacity: 0;
    transition: opacity 0.6s ease;
}

h1,
h2,
h3,
h4 {
    font-family: 'Sora', sans-serif;
    line-height: 1.08;
    letter-spacing: -.03em
}

a {
    text-decoration: none;
    color: inherit
}

img {
    max-width: 100%;
    display: block
}

.container {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.06)
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-9px)
    }
}

@keyframes marqueeLeft {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

.fade-up {
    animation: fadeUp .65s ease both
}

.d1 {
    animation-delay: .08s
}

.d2 {
    animation-delay: .18s
}

.d3 {
    animation-delay: .28s
}

/* ── NAV ── */
.nav-wrap {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    backdrop-filter: blur(0px);
    border-bottom: none;
    transition: all 0.3s ease;
}

.nav-wrap.scrolled {
    padding: 6px 0;
    background: #eef6f2cb;
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 0;
    transition: all 0.3s ease;
    min-height: 74px
}

.nav-links a {
    transition: all 0.3s ease;
}

.nav-wrap.scrolled .nav-links a {
    padding: 8px 12px;
}

.nav {
    transition: all 0.3s ease;
}

.nav-wrap.scrolled .nav {
    min-height: 40px;
    background: transparent;
    padding: 8px 0;
}

.brand img {
    transition: all 0.3s ease;
    height: 45px;
}

.nav-wrap.scrolled .brand img {
    height: 32px;
}

.nav .nav-links a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 14px;
    border-radius: 999px;
    background: transparent;
    color: var(--darker-green);
    text-decoration: none;
    font-family: 'Sora', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1;
    transition: 0.3s;
}

.brand {
    display: flex;
    align-items: center;
    gap: 11px;
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 21px;
    color: var(--green-dark);
    letter-spacing: -.03em
}

.brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 15px;
    box-shadow: 0 4px 14px rgba(11, 110, 79, .26)
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    font-weight: 600;
    font-size: 14px;
    color: var(--muted)
}

.nav-links a:hover {
    background-color: var(--nav-hover);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 12px;
    border-radius: 999px;
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 14px;
    transition: all .2s ease;
    cursor: pointer;
    border: none
}

.btn-primary {
    background: var(--green);
    color: #fff;
    box-shadow: 0 5px 16px rgba(11, 110, 79, .28)
}

.btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(11, 110, 79, .34)
}

.btn-outline {
    background: var(--white);
    color: var(--green);
    border: 1.5px solid var(--border)
}

.btn-outline:hover {
    border-color: var(--green);
    background: var(--green-soft)
}

.btn-lg {
    padding: 12px 22px;
    font-size: 15px
}

.btn-white {
    background: #fff;
    color: var(--green-dark);
    box-shadow: var(--shadow)
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg)
}

/* ── HERO ── */
.hero {
    padding: 120px 0 56px;
    background: linear-gradient(180deg, #ffffff 0%, #f4fbf7 100%);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -80px;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(11, 110, 79, .07) 0%, transparent 70%);
    pointer-events: none
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 44px;
    align-items: center
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 7px 15px;
    font-size: 12px;
    font-weight: 700;
    color: var(--green);
    box-shadow: var(--shadow);
    margin-bottom: 22px;
    text-transform: uppercase;
    letter-spacing: .08em
}

.live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse 2s ease infinite
}

.hero h1 {
    font-size: clamp(40px, 4.5vw, 72px);
    color: var(--green-dark);
    margin-bottom: 18px;
    font-weight: 700
}

.hero h1 em {
    font-style: normal;
    background: linear-gradient(90deg, var(--green-dark), var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.hero p {
    font-size: 17px;
    color: var(--muted);
    max-width: 510px;
    margin-bottom: 30px;
    line-height: 1.7
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-bottom: 36px
}

.trust-row {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 13px;
    color: var(--muted)
}

.trust-ava {
    display: flex
}

.t-av {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2.5px solid #fff;
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 10px;
    font-weight: 700;
    margin-left: -7px
}

.t-av:first-child {
    margin-left: 0
}

/* HERO CARD */
.hero-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 22px;
    box-shadow: var(--shadow-md);
    animation: float 5s ease-in-out infinite
}

.hc-top {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
    border-radius: 16px;
    padding: 22px;
    color: #fff;
    margin-bottom: 12px
}

.hc-lbl {
    font-size: 11px;
    font-weight: 700;
    opacity: .65;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 10px
}

.hc-title {
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 16px
}

.hc-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 9px
}

.hc-stat {
    background: rgba(255, 255, 255, .11);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 12px;
    padding: 13px
}

.hc-stat strong {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    font-weight: 800;
    line-height: 1
}

.hc-stat span {
    font-size: 10px;
    opacity: .72;
    margin-top: 4px;
    display: block
}

.hc-plats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px
}

.hc-plat {
    background: var(--green-soft);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 10px;
    text-align: center;
    font-family: 'Sora', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--green-dark);
    transition: all .18s
}

.hc-plat:hover {
    background: var(--green);
    color: #fff;
    transform: translateY(-2px)
}

.hc-plat-icon {
    font-size: 18px;
    display: block;
    margin-bottom: 3px
}

/* ── MARQUEE ── */
.marquee-wrap {
    background: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
    overflow: hidden
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: marqueeLeft 24s linear infinite
}

.m-item {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 0 28px;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: var(--green)
}

.m-sep {
    color: var(--border)
}

/* ── STATS BAND ── */
.stats-band {
    padding: 52px 0
}

.stats-inner {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: repeat(4, 1fr)
}

.stat-item {
    padding: 18px 24px;
    text-align: center;
    border-right: 1px solid var(--border)
}

.stat-item:last-child {
    border-right: none
}

.stat-num {
    font-family: 'Sora', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: var(--green);
    line-height: 1;
    margin-bottom: 7px
}

.stat-lbl {
    font-size: 13px;
    color: var(--muted);
    font-weight: 600
}

/* ── SECTION SHARED ── */
.section {
    padding: 54px 0
}

.s-head {
    margin-bottom: 32px
}

.s-head.center {
    text-align: center;
    color: var(--white);
}

.s-head.center .s-sub {
    margin: 0 auto
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 12px
}

.s-title {
    font-size: clamp(28px, 3.5vw, 44px);
    margin-bottom: 10px
}

.s-sub {
    font-size: 15px;
    max-width: 640px;
    line-height: 1.7
}

/* ── SERVICES ── */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px
}

.svc-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    transition: all .22s;
    display: flex;
    flex-direction: column;
    gap: 14px
}

.svc-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: rgba(11, 110, 79, .22)
}

.svc-icon {
    width: 54px;
    height: auto;
    border-radius: 14px;
    background: transparent;
    color: var(--white);
    place-items: center;
    font-size: 24px
}

.svc-card h3 {
    font-size: 21px;
    color: var(--green-dark)
}

.svc-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    flex: 1
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px
}

.tag {
    font-size: 12px;
    font-weight: 700;
    color: var(--green-dark);
    background: var(--green-soft);
    border: 1px solid var(--border);
    padding: 5px 11px;
    border-radius: 999px
}

.svc-card.feat {
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    border-color: transparent;
    box-shadow: var(--shadow-md)
}

.svc-card.feat h3 {
    color: #fff
}

.svc-card.feat p {
    color: rgba(255, 255, 255, .8)
}

.svc-card.feat .svc-icon {
    border-color: rgba(255, 255, 255, .18)
}

.svc-card.feat .tag {
    background: rgba(255, 255, 255, .14);
    border-color: rgba(255, 255, 255, .18);
    color: #fff
}

/* ── WHY US ── */
.why-wrap {
    background: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border)
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: center
}

.why-content .eyebrow {
    color: var(--green-dark);
}

.why-content .s-title {
    color: var(--green-dark);
    font-size: 2.3rem;
}

.why-list {
    display: grid;
    gap: 14px
}

.why-item {
    display: flex;
    gap: 13px;
    align-items: flex-start
}

.w-dot {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: var(--green-soft);
    border: 1px solid var(--border);
    display: grid;
    place-items: center;
    font-size: 17px;
    margin-top: 2px
}

.why-item h4 {
    font-size: 15px;
    color: var(--green-dark);
    margin-bottom: 3px;
    font-family: 'Sora', sans-serif
}

.why-item p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.65
}

.why-panel {
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    border-radius: var(--radius);
    padding: 26px;
    color: #fff;
    box-shadow: var(--shadow-md)
}

.wp-title {
    font-family: 'Sora', sans-serif;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 5px;
    opacity: .85
}

.wp-sub {
    font-size: 13px;
    opacity: .58;
    margin-bottom: 18px
}

.wp-rows {
    display: grid;
    gap: 9px
}

.wpr {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 12px;
    padding: 13px 14px
}

.wpr-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px
}

.wpr-lbl {
    font-size: 13px;
    font-weight: 600
}

.wpr-val {
    font-family: 'Sora', sans-serif;
    font-size: 13px;
    font-weight: 800;
    opacity: .85
}

.wpr-bar {
    height: 3px;
    background: rgba(255, 255, 255, .14);
    border-radius: 999px;
    overflow: hidden
}

.wpr-fill {
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, .45), rgba(255, 255, 255, .9));
    border-radius: 999px
}

/* ── PLATFORMS ── */
.plats-wrap {
    background: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border)
}

.plat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 32px
}

.plat-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 16px;
    text-align: center;
    background: var(--bg);
    transition: all .2s
}

.plat-card:hover {
    background: #fff;
    box-shadow: var(--shadow);
    transform: translateY(-3px);
    border-color: rgba(11, 110, 79, .18)
}

.plat-icon {
    font-size: 32px;
    margin-bottom: 10px
}

.plat-card h4 {
    font-size: 16px;
    color: var(--green-dark);
    margin-bottom: 5px;
    font-family: 'Sora', sans-serif
}

.plat-card p {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.6
}

/* ── PROCESS ── */
.proc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 32px;
    position: relative
}

.proc-grid::before {
    content: '';
    position: absolute;
    top: 33px;
    left: 12%;
    right: 12%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent);
    z-index: 0
}

.proc-step {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px 18px;
    text-align: center;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow);
    transition: all .2s
}

.proc-step:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md)
}

.proc-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-size: 17px;
    font-weight: 800;
    display: grid;
    place-items: center;
    margin: 0 auto 14px;
    box-shadow: 0 5px 16px rgba(11, 110, 79, .26)
}

.proc-step h4 {
    font-size: 17px;
    color: var(--green-dark);
    margin-bottom: 7px;
    font-family: 'Sora', sans-serif
}

.proc-step p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6
}

/* ── CLIENTS ── */
.clients-wrap {
    background: #fff;
    border-top: 1px solid var(--border)
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 32px
}

.c-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
    transition: all .2s;
    display: flex;
    flex-direction: column;
    gap: 9px
}

.c-card:hover {
    background: #fff;
    box-shadow: var(--shadow);
    transform: translateY(-3px);
    border-color: rgba(11, 110, 79, .18)
}

.c-sector {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--green);
    background: var(--green-soft);
    padding: 4px 9px;
    border-radius: 999px;
    display: inline-flex;
    width: fit-content;
    border: 1px solid var(--border)
}

.c-name {
    font-family: 'Sora', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--green-dark)
}

.c-work {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6
}

.c-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 2px
}

.c-tag {
    font-size: 11px;
    color: var(--green-dark);
    background: var(--green-soft);
    border: 1px solid var(--border);
    padding: 3px 8px;
    border-radius: 999px;
    font-weight: 700
}

/* ── TOOLS ── */
.tools-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 26px;
    justify-content: center
}

.tool {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 9px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    box-shadow: var(--shadow);
    transition: all .18s;
    display: flex;
    align-items: center;
    gap: 6px
}

.tool:hover {
    background: var(--green-soft);
    border-color: rgba(11, 110, 79, .28);
    color: var(--green-dark);
    transform: translateY(-1px)
}

/* ── CTA / CONTACT ── */
.cta-box {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
    border-radius: var(--radius);
    padding: 50px 44px;
    color: #fff;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 36px;
    align-items: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
    pointer-events: none
}

.cta-box h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    margin-bottom: 12px
}

.cta-box p {
    opacity: .82;
    font-size: 15px;
    line-height: 1.7;
    max-width: 440px
}

.cta-box .btn-white {
    margin-top: 24px
}

.contact-card {
    background: rgba(255, 255, 255, .11);
    border: 1px solid rgba(255, 255, 255, .17);
    border-radius: 16px;
    padding: 22px;
    display: grid;
    gap: 10px;
    position: relative;
    z-index: 1
}

.ci {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 10px 13px;
    background: rgba(255, 255, 255, .09);
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px
}

.ci-ico {
    font-size: 18px;
    flex-shrink: 0
}

.ci a {
    color: #fff;
    opacity: .88
}

.ci a:hover {
    opacity: 1
}

/* ── FOOTER ── */
footer {
    background: var(--green-dark);
    color: rgba(255, 255, 255, .65);
    padding: 28px 0 32px;
    text-align: center;
    font-size: 13px
}

footer a {
    color: rgba(255, 255, 255, .88);
    font-weight: 600
}

footer a:hover {
    color: #fff
}

.ft-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px
}

.ft-brand {
    font-family: 'Sora', sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: #fff
}

.ft-links {
    display: flex;
    gap: 22px;
    font-weight: 600
}

/* ── RESPONSIVE ── */
@media(max-width:980px) {

    .hero-grid,
    .why-grid,
    .cta-box {
        grid-template-columns: 1fr
    }

    .hero-card {
        animation: none
    }

    .stats-inner {
        grid-template-columns: repeat(2, 1fr)
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid var(--border)
    }

    .stat-item:nth-child(odd) {
        border-right: 1px solid var(--border)
    }

    .stat-item:last-child {
        border-bottom: none
    }

    .svc-grid,
    .plat-grid,
    .clients-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .proc-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .proc-grid::before {
        display: none
    }

    .nav-links {
        display: none
    }

    .cta-box {
        padding: 36px 24px
    }
}

@media(max-width:600px) {

    .stats-inner,
    .svc-grid,
    .plat-grid,
    .clients-grid,
    .proc-grid {
        grid-template-columns: 1fr
    }

    .stat-item {
        border-right: none
    }

    .hero h1 {
        font-size: 36px
    }

    .hero-btns {
        flex-direction: column
    }

    .btn-lg {
        width: 100%;
        justify-content: center
    }
}

.logo .logo-huda_girls {
    width: 150px;
    height: auto;
}

#services .svc-card,
#services .svc-card.feat {
    background: var(--darker-green);
    border: none;
    box-sizing: border-box;
    height: 100%;
}

#services .svc-card h3,
#services .svc-card.feat h3,
#services .svc-card p,
#services .svc-card.feat p {
    color: #ffffff !important;
}

#services .svc-card .tag,
#services .svc-card.feat .tag {
    background: rgba(255, 255, 255, 0.12) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
}

#services .svc-grid {
    align-items: stretch;
}

#services {
    margin-bottom: 40px;
}

.why-wrap {
    clear: both;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

@keyframes autoScrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes autoScrollRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.plats-wrap .s-head.center {
    text-align: center;
    color: var(--green-dark);
}

.s-head .eyebrow {
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.s-head .s-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
}

.plats-wrap .s-head .s-sub {
    font-size: 15px;
    opacity: 0.9;
    margin-top: 10px;
    color: var(--muted);
}

.logo-la_parfum {
    width: var(--img-la_parfum);
    height: var(--img-la_parfum);
}

.logo-beauty_richal {
    width: var(--img-beauty_richal);
    height: var(--img-beauty_richal);
}

.logo-emper {
    width: var(--img-emper);
    height: var(--img-emper);
}

.logo-dubai_aroma {
    width: var(--img-dubai_aroma);
    height: var(--img-dubai_aroma);
}

.logo-mypb {
    width: var(--img-mypb);
    height: var(--img-mypb);
    border-radius: 12px;
}

.logo-axaia {
    width: var(--img-axaia);
    height: var(--img-axaia);
    border-radius: 12px;
}

.logo-selhaya {
    width: var(--img-selhaya);
    height: var(--img-selhaya);
    border-radius: 12px;
}

.logo-gulforchid {
    width: var(--img-gulforchid);
    height: var(--img-gulforchid);
    border-radius: 12px;
}

.logo-markobaleno {
    width: var(--img-markobaleno);
    height: var(--img-markobaleno);
}

.logo-huda_girls {
    width: var(--img-huda_girls);
    height: var(--img-huda_girls);
}

.logo-oleyviya {
    width: var(--img-oleyviya);
    height: var(--img-oleyviya);
}

.logo-medfly {
    width: var(--img-medfly);
    height: var(--img-medfly);
    border-radius: 12px;
}

.wrapper {
    width: 100%;
    padding: 12px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.wrapper::before,
.wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 60px;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.wrapper::before {
    left: 0;
    background: linear-gradient(to right, #60706788, transparent);
}

.wrapper::after {
    right: 0;
    background: linear-gradient(to left, #60706788, transparent);
}

.row-wrapper {
    overflow: hidden;
    width: 100%;
    cursor: grab;
    user-select: none;
}

.row-wrapper:active {
    cursor: grabbing;
}

.row {
    display: flex;
    gap: 16px;
    width: max-content;
    will-change: transform;
    padding: 6px 0;
}

.c-card {
    width: var(--card-width);
    height: var(--card-height);
    flex: 0 0 var(--card-width);
    background: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    color: #111;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.25s ease;
}

.c-card:hover {
    background: #fff;
    border-color: #bbb;
    transform: scale(1.04);
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.logo {
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.logo-la_parfum {
    width: var(--img-la_parfum);
    height: var(--img-la_parfum);
}

.logo-beauty_richal {
    width: var(--img-beauty_richal);
    height: var(--img-beauty_richal);
}

.logo-emper {
    width: var(--img-emper);
    height: var(--img-emper);
}

.logo-dubai_aroma {
    width: var(--img-dubai_aroma);
    height: var(--img-dubai_aroma);
}

.logo-mypb {
    width: var(--img-mypb);
    height: var(--img-mypb);
    border-radius: 12px;
}

.logo-axaia {
    width: var(--img-axaia);
    height: var(--img-axaia);
    border-radius: 12px;
}

.logo-selhaya {
    width: var(--img-selhaya);
    height: var(--img-selhaya);
    border-radius: 12px;
}

.logo-gulforchid {
    width: var(--img-gulforchid);
    height: var(--img-gulforchid);
    border-radius: 12px;
}

.logo-markobaleno {
    width: var(--img-markobaleno);
    height: var(--img-markobaleno);
}

.logo-huda_girls {
    width: var(--img-huda_girls);
    height: var(--img-huda_girls);
}

.logo-oleyviya {
    width: var(--img-oleyviya);
    height: var(--img-oleyviya);
}

.logo-medfly {
    width: var(--img-medfly);
    height: var(--img-medfly);
    border-radius: 12px;
}

.wrapper {
    width: 100%;
    padding: 12px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.row-wrapper {
    overflow: hidden;
    width: 100%;
    cursor: grab;
    user-select: none;
}

.row-wrapper:active {
    cursor: grabbing;
}

.row {
    display: flex;
    gap: 16px;
    width: max-content;
    will-change: transform;
    padding: 6px 0;
}

.c-card {
    width: var(--card-width);
    height: var(--card-height);
    flex: 0 0 var(--card-width);
    background: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    color: #111;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.c-card:hover {
    background: #fff;
    border-color: #bbb;
    transform: scale(1.04);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.logo {
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}