:root {
    --bg-dark: #0b0820;
    --bg-mid: #14102e;
    --bg-light: #1e1640;
    --purple: #6d4dff;
    --purple-light: #9b7eff;
    --yellow: #f5c518;
    --yellow-glow: #ffd633;
    --white: #ffffff;
    --black: #222222;
    --text-dark: #1a1a2e;
    --text-muted: #6b7280;
    --events-bg: #f8f9fc;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}




body {
    font-family: 'Vazirmatn', sans-serif;
    background: var(--bg-dark);
    color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

.topbar {
    direction: ltr;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hamburger-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hamburger-img {
    width: 28px;
    height: 28px;
    display: block;
    transition: .3s;
}

.hamburger-btn:hover .hamburger-img {
    opacity: .7;
}

.tick-img {
    width: 78px;
    height: 58px;
    display: block;
    filter: drop-shadow(0 2px 10px rgba(255,255,255,.12));
    transform:scale(1.2);
    margin-left:10%;
}

.social-img {
    width: 26px;
    height: 26px;
    display: block;
    opacity: .85;
    transition: .3s;
}

a:hover .social-img {
    opacity: 1;
    transform: scale(1.15);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 240px;
    height: 100vh;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 5rem 2rem 2rem;
    transition: left .4s ease;
    z-index: 1001;
    box-shadow: 4px 0 30px rgba(0,0,0,.3);
}

    .mobile-menu.open {
        left: 0;
    }

    .mobile-menu a {
        color: var(--black);
        font-size: 80% ;
        font-weight: 600;
        transition: .3s;
        padding: .5rem 0;
        border-bottom: 1px solid rgba(0,0,0,.06);
        
    }

        .mobile-menu a:hover {
            color: var(--purple);
            padding-right: .8rem;
        }

.overlay {
    position: fixed;
    inset: 0;
    /*background: rgba(0,0,0,.5);*/
    background-image: url('/Asli2/1920x1080-introduction-banner2.png');
    opacity: 0;
    pointer-events: none;
    transition: .4s;
    z-index: 1000;
}

    .overlay.active {
        opacity: 1;
        pointer-events: auto;
    }

.hero {
    min-height: 100vh;
    background: url("/Asli2/1920x1080-introduction-banner2.png") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    direction:ltr;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
}

.bokeh {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.b1 {
    width: 400px;
    height: 400px;
    top: 20%;
    right: 10%;
    background: radial-gradient(circle, rgba(109,77,255,.22), transparent 70%);
}

.b2 {
    width: 350px;
    height: 350px;
    bottom: 15%;
    left: 5%;
    background: radial-gradient(circle, rgba(80,40,160,.18), transparent 70%);
}

.b3 {
    width: 250px;
    height: 250px;
    top: 50%;
    left: 45%;
    background: radial-gradient(circle, rgba(123,92,255,.14), transparent 70%);
}

.vignette {
    position: absolute;
    inset: 0;
    pointer-events: none;
    box-shadow: inset 0 0 250px 100px rgba(0,0,0,.65);
}

.hero-content {
    display: grid;
    grid-template-columns: minmax(0,1fr) 2px 240px;
    align-items: center;
    gap: 0;
}

.hero-divider {
    width: 5px;
    /*height: 70vh;*/
    align-self:stretch;
    background: #fff;
    justify-self: center;
    position: relative;
    height:150% !important;
    margin-top:138px;
}

    .hero-divider::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background: #fff;
    }

.hero-text {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* ===== اصلاح شده: width:100% نسبت به فضای واقعی خودش (نه vw)، با سقف امن max-width ===== */
.title-img {
    width: min(68vw,950px);
    max-width: 100%;
    height: auto;
    display: block;
    margin-right: -20px; /* به خط سفید نزدیک شود */
    transform:scale(1.7);
    margin-right:-13%;
    margin-top:10%;
}

/* ===== اصلاح شده: افزایش ارتفاع خط سفید تا پایین‌تر برود و کمی بزرگ‌تر باشد ===== */
.vline-img {
    height: 520px;
}

/* ===== اصلاح شده: حذف transform:scale(1.5)، اندازه لوگو/دکمه مستقیم بزرگ شد ===== */
.hero-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
    transform: translateX(6vw);
}

.logo-img {
    width: 220px;
}

.cta-link {
    display: inline-block;
    transition: .3s;
}

.cta-img {
    width: 180px;
}

.cta-link:hover {
    transform: translateY(-3px) scale(1.03);
}

.dots {
    position: absolute;
    left: -4%;
    bottom: clamp(163px,6%,70px);
    display: grid;
    grid-template-columns: repeat(5,8px);
    gap: 40px;
    top:63%;
}

    .dots span {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #fff;
    }
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.world-talentick {
    background: var(--bg-dark);
    padding: 6rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.world-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto auto;
    gap: 2rem 3rem;
    align-items: center;
    max-width: 1200px;
    width: 100%;
}

.block-tl {
    grid-column: 1;
    grid-row: 1;
    text-align: left;
}

.block-tr {
    grid-column: 3;
    grid-row: 1;
    text-align: right;
}

.center-square {
    grid-column: 2;
    grid-row: 1 / span 2;
}

.block-bl {
    grid-column: 1;
    grid-row: 2;
    text-align: left;
}

.block-br {
    grid-column: 3;
    grid-row: 2;
    text-align: right;
}

.world-block {
    position: relative;
    padding: 2rem 1rem;
    max-width: 320px;
}

.block-number {
    position: absolute;
    top: -0.5rem;
    font-family: 'Arial', sans-serif;
    font-size: 6rem;
    font-weight: 900;
    color: rgba(155,126,255,.07);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.block-tl .block-number {
    left: 0;
}

.block-tr .block-number {
    right: 0;
}

.block-bl .block-number {
    left: 0;
}

.block-br .block-number {
    right: 0;
}

.block-title {
    position: relative;
    z-index: 2;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.purple-line {
    display: block;
    width: 160px;
    height: 4px;
    border-radius: 2px;
    position: relative;
    z-index: 2;
}

.block-tl .purple-line {
    margin-left: 0;
}

.block-tr .purple-line {
    margin-right: 0;
    margin-left: auto;
}

.block-bl .purple-line {
    margin-left: 0;
}

.block-br .purple-line {
    margin-right: 0;
    margin-left: auto;
}

.center-square {
    width: 360px;
    height: 360px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.5), 0 0 0 2px rgba(245,197,24,.15);
}

.center-square-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.center-square-overlay {
    position: absolute;
    inset: 0;
}

.center-logo {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.center-text {
    font-family: 'Lalezar', 'Vazirmatn', cursive;
    font-size: 2.5rem;
    color: var(--bg-dark);
    text-align: center;
    text-shadow: 0 4px 15px rgba(0,0,0,.15);
    line-height: 1.4;
}

.app-section {
    position: relative;
    min-height: 80vh;
    background: linear-gradient(135deg, #1a0b3e 0%, #2d1b69 25%, #3d2680 50%, #2d1b69 75%, #1a0b3e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0rem 0rem;
    overflow: hidden;
}

.app-bg-glow {
    position: absolute;
    top: 50%;
    left: 25%;
    transform: translate(-50%,-50%);
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(109,77,255,.18), transparent 60%);
    filter: blur(70px);
    pointer-events: none;
}

.app-container {
    direction: ltr;
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    gap: 3rem;
    flex-wrap: wrap;
}

.app-phone-side {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.phone-img {
    width: 260px;
    height: auto;
    max-height: 480px;
    object-fit: cover;
    border-radius: 28px;
    display: block;
    transform: rotate(-8deg);
    filter: drop-shadow(0 25px 50px rgba(0,0,0,.5));
    position: relative;
    z-index: 3;
}

.floating-screen {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.screen-1 {
    top: 10%;
    right: -20px;
    transform: rotate(6deg);
    filter: drop-shadow(0 15px 30px rgba(0,0,0,.4));
}

.screen-img {
    width: clamp(20px, 48vw, 820px);
    height: auto;
    display: block;
    object-fit: contain;
    transform: translateX(-80%);
}

    .screen-1 .screen-img {
        width: min(82vw,987px);
        max-width: 100%;
        height: auto;
        display: block;
    }

.screen-2 {
    bottom: 12%;
    left: -15px;
    transform: rotate(-5deg);
    filter: drop-shadow(0 15px 30px rgba(0,0,0,.4));
}

    .screen-2 .screen-img {
        width: clamp(420px, 33vw, 820px);
        height: auto;
        display: block;
        object-fit: contain;
        transform: translateX(-40%) scale(1.4);

    }

.app-text-side {
    flex: 1 1 320px;
    min-width: 0;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.app-title-img {
    height: 60px;
    width: auto;
    max-width: 100%;
    display: block;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 20px rgba(245,197,24,.15));
    margin-bottom: 1.5rem;
}

.app-description {
    font-size: 1.05rem;
    line-height: 2;
    color: rgba(255,255,255,.82);
    text-align: justify;
    margin-bottom: 3rem;
}

.app-guide-img {
    width: clamp(650px, 100vw, 1820px);
    height: 106px;
    object-fit: cover;
    object-position: left center;
    display: block;
    transform: translateX(-50%);
}

.events-section {
    background: var(--events-bg);
    padding: 5rem 2rem 6rem;
    position: relative;
}

.events-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.events-categories {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cat-btn {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Vazirmatn', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 0.3rem 0;
    transition: color .3s;
}

    .cat-btn:hover {
        color: var(--purple);
    }

    .cat-btn.active {
        color: var(--purple);
    }

.cat-underline {
    display: block;
    width: 0;
    height: 3px;
    background: var(--purple);
    border-radius: 2px;
    margin-top: 6px;
    transition: width .3s ease;
}

.cat-btn.active .cat-underline {
    width: 100%;
}

.events-carousel-wrapper {
    direction: ltr;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 1300px;
    margin: 0 auto;
}

.events-carousel {
    direction: rtl;
    overflow: hidden;
    width: 100%;
    padding: 1rem 0.5rem 1.5rem;
    cursor: grab;
}

    .events-carousel:active {
        cursor: grabbing;
    }

.events-track {
    direction: rtl;
    flex-direction: row;
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease;
    will-change: transform;
}

.event-card {
    flex: 0 0 270px;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,.06);
    transition: transform .3s, box-shadow .3s;
    text-align: center;
    padding-bottom: 1.2rem;
    user-select: none;
}

    .event-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 30px rgba(109,77,255,.15);
    }

    .event-card.hidden {
        display: none;
    }

.event-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.event-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 1rem;
    padding: 0 0.5rem;
    direction: rtl;
}

.event-card-desc {
    font-size: .9rem;
    color: var(--text-muted);
    margin-top: 0.3rem;
    padding: 0 0.5rem;
    direction: rtl;
}

.nav-arrow {
    flex-shrink: 0;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: transform .3s;
}

    .nav-arrow:hover {
        transform: scale(1.1);
    }

    .nav-arrow:active {
        transform: scale(0.95);
    }

.arrow-img {
    width: 52px;
    height: 52px;
    display: block;
}

.footer {
    padding: 2.5rem 0;
    background: #08061a;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,.06);
}

    .footer p {
        opacity: .5;
        font-size: .9rem;
    }

/* ===== بخش مشتریان ما ===== */
.customers-section {
    position: relative;
    padding: 1rem 2rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.customers-bg {

    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.customers-overlay {
    position: absolute;
    inset: 0;
    background-image: url('/Asli2/1920x1260-photo.png')
}

.customers-content {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    direction: rtl;
}

/* ===== تماس با ما ===== */
.contact-area {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.contact-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.contact-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255,255,255,0.92);
    font-size: 1rem;
    font-weight: 500;
}

.contact-icon {
    width: 32px;
    height: 32px;
    display: block;
    flex-shrink: 0;
}

/* ===== آیکون‌های شبکه اجتماعی ===== */
.social-icons {
    display: flex;
    gap: 1.2rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: block;
    transition: transform 0.3s, opacity 0.3s;
    opacity: 0.9;
    cursor: pointer;
}

    .social-icon:hover {
        transform: scale(1.18);
        opacity: 1;
    }

/* ===== خط زرد + نقطه + عنوان در سمت راست ===== */
.customers-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 1100px;
    justify-content: flex-end;
    direction: rtl;
}

.yellow-line {
    height: 3px;
    background: #f5c518;
    border-radius: 2px;
    flex: 1;
    max-width: 500px;
    box-shadow: 0 0 8px rgba(245,197,24,0.4);
}

.yellow-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #f5c518;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(245,197,24,0.6);
}

/*.customers-title-img {
    height: clamp(420px, 48vw, 820px);
    width: clamp(420px, 48vw, 820px);
    display: block;
    flex-shrink: 0;
    filter: drop-shadow(0 3px 12px rgba(245,197,24,0.25));
    margin-top: clamp(-400px, -55vw, -55px);
}*/

.customers-visual {
    position: relative;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    aspect-ratio: 1920 / 1000; /* نسبت واقعی عکس لوگوها رو اینجا بذار، مثلاً عرض/ارتفاع فایل اصلی */
}

.customers-title-img {
    position: absolute;
    top: -85%; /* بالاتر رفتنش نسبت به قبل */
    right:20%; /* به‌جای right، حالا از سمت چپ */
    width: 132%;
    min-width: 220px;
    max-width: 111420px;
    height: auto;
    filter: drop-shadow(0 3px 12px rgba(245,197,24,0.25));
}

.logos-vertical {
    display: flex;
    justify-content: center;
    align-items: center;
    /* کل بخش را بالاتر می‌آورد */
}

/* ===== عکس واحد لوگوها — عمودی (ستونی) ===== */
/*.logos-vertical-img {
    display: block;
    width: clamp(164px, 750vw, 1900px);
    height: auto;
    margin-top: clamp(-1326px, -60vw, 1326px);
}*/

.logos-vertical-img {
    /*display: block;
    width: 150%;
    min-width: 20px;
    max-width: 11111111420px;
    height: auto;
    margin-top: -52%;*/ /* هرچه عدد منفی‌تر، لوگوها بیشتر بالا میرن؛ عدد رو تست کن */
    /*margin-right:-25%;*/

    position: absolute;
    top: -100%; /* هرچه کمتر، بیشتر میره بالا */
    left: -24%;
    width: 150%;
    
    height: auto;
    display: block;
}

/* ===================================================== */
/* ریسپانسیو - همه breakpoint ها اینجا جمع شده‌اند       */
/* ===================================================== */
@media (max-width: 1563px) {


   

    .logos-vertical-img {
        /*display: block;
    width: 150%;
    min-width: 20px;
    max-width: 11111111420px;
    height: auto;
    margin-top: -52%;*/ /* هرچه عدد منفی‌تر، لوگوها بیشتر بالا میرن؛ عدد رو تست کن */
        /*margin-right:-25%;*/

        position: absolute;
        top: -70%; /* هرچه کمتر، بیشتر میره بالا */
        left: -10%;
        width: 120%;
        height: auto;
        display: block;
    }
}




    @media (max-width: 992px) {

        .app-guide-img {
        margin-left:150%;
        width:210%;
        }


        .screen-2 .screen-img {
            width: 130%;
            margin-right:10%;
        }

        .world-container {
            grid-template-columns: 1fr;
            grid-template-rows: auto auto auto auto auto;
            gap: 1.5rem;
        }

        .block-tl {
            grid-column: 1;
            grid-row: 1;
            text-align: center;
        }

        .block-tr {
            grid-column: 1;
            grid-row: 2;
            text-align: center;
        }

        .center-square {
            grid-column: 1;
            grid-row: 3;
            margin: 0 auto;
        }

        .block-bl {
            grid-column: 1;
            grid-row: 4;
            text-align: center;
        }

        .block-br {
            grid-column: 1;
            grid-row: 5;
            text-align: center;
        }

        .world-block {
            max-width: 100%;
            margin: 0 auto;
            transform:translateY(0px) !important;
        }

        .block-number {
            left: 50% !important;
            right: auto !important;
            transform: translateX(-50%);
        }

        .purple-line {
            margin: 0 auto !important;
        }

        .app-container {
            flex-direction: column;
            gap: 2.5rem;
        }

        .app-text-side {
            max-width: 600px;
            text-align: center;
            align-items: center;
        }

        .app-description {
            text-align: center;
        }

        .app-title-img {
            margin: 0 auto 1.5rem;
        }

     

        .event-card {
            flex: 0 0 240px;
        }

        .title-img {
            max-width: 760px;
            transform: scale(1.8);
        }

        .logo-img {
            width: 220px;
        }

        .cta-img {
            width: 220px;
        }

        .customers-header {
            max-width: 900px;
        }

        .yellow-line {
            max-width: 350px;
        }


        .dots {
            display: grid;
            left: -500%;
            grid-template-columns: repeat(5,8px);
            gap: 40px;
            top: 66%;
            gap: 17px;
        }
    }

    @media (max-width: 768px) {
        .topbar {
            padding: 1rem 1.2rem;
        }

        .hero-content {
            grid-template-columns: 1fr;
            justify-items: center;
            text-align: center;
            gap: 30px;
        }

        .hero-divider {
            display: none;
        }

        .vline-img {
            display: none;
        }

      /*  .dots {
            display: grid;
            left: -8%;
            grid-template-columns: repeat(5,8px);
            gap: 40px;
            top: 51%;
            gap:10px;
        }*/

        .tick-img {
            width: 38px;
            height: 38px;
        }

        .title-img {
            width: 90%;
            margin: 0;
            transform: scale(2.5);
        }

        .logo-img {
            width: 170px;
        }

        .cta-img {
            width: 190px;
        }

        .center-square {
            width: 358px;
            height: 280px;
        }

        .center-text {
            font-size: 1.8rem;
        }

        .block-title {
            font-size: .95rem;
        }

        .world-talentick {
            padding: 4rem 1rem;
        }

        .app-section {
            padding: 4rem 1rem;
        }

        .app-description {
            font-size: .95rem;
            margin-bottom: 2rem;
        }

        .phone-img {
            width: 220px;
            max-height: 400px;
        }

        .app-phone-side {
            width: 280px;
            height: 440px;
        }

        .screen-1 .screen-img {
            width: clamp(130px, 33vw, 820px);
        }

        .screen-2 .screen-img {
            width: 400%;
            margin-left: 225%;
        }

        .app-title-img {
            height: 44px;
        }

        .app-guide-img {
            height: 106px;
        }

        .events-section {
            padding: 4rem 1rem 5rem;
        }

        .events-title {
            font-size: 1.6rem;
        }

        .events-categories {
            gap: 1.5rem;
        }

        .cat-btn {
            font-size: .9rem;
        }

        .event-card {
            flex: 0 0 200px;
        }

        .event-card-img {
            height: 140px;
        }

        .event-card-title {
            font-size: 1rem;
        }

        .event-card-desc {
            font-size: .8rem;
        }

        .arrow-img {
            width: 42px;
            height: 42px;
        }

        .events-track {
            gap: 1rem;
        }

        .customers-section {
            padding: 4rem 1.5rem;
        }

        .contact-title {
            font-size: 1.5rem;
        }

        .contact-items {
            flex-direction: column;
            gap: 1.2rem;
        }

        .contact-item {
            font-size: 0.95rem;
        }

        .contact-icon {
            width: 28px;
            height: 28px;
        }

        .social-icon {
            width: 34px;
            height: 34px;
        }

        /*.customers-title-img {*/
        /*        height: 36px;
*/ /*height: clamp(36px, 48vw, 36px);
        width: clamp(420px, 48vw, 820px);
        display: block;
        flex-shrink: 0;
        filter: drop-shadow(0 3px 12px rgba(245,197,24,0.25));
        margin-top: clamp(3600px, 3600vw, 3600px);*/


        /*height: clamp(420px, 48vw, 820px);
        width: clamp(420px, 48vw, 820px);
        display: block;
        flex-shrink: 0;
        filter: drop-shadow(0 3px 12px rgba(245,197,24,0.25));
        margin-top: clamp(-400px, -55vw, -55px);
    }*/

        .yellow-line {
            max-width: 150px;
        }

        .yellow-dot {
            width: 11px;
            height: 11px;
        }

        .customers-content {
            gap: 2rem;
        }

        .logos-vertical-img {
            top: -40%; /* کمتر منفی، چون فضای کمتری داری */
            left: -5%;
            width: 110%; /* کوچیک‌تر از حالت دسکتاپ */
        }

        @media (max-width: 480px) {
            .topbar-left {
                gap: 1rem;
                margin-left:15%;
            }

            .tick-img {
                width: 34px;
                height: 34px;
            }

            .social-img {
                width: 22px;
                height: 22px;
            }

            .hamburger-img {
                width: 24px;
                height: 24px;
            }

            .center-square {
                width: 400px;
                height: 380px;
            }

            .center-text {
                font-size: 1.5rem;
            }

            .block-number {
                font-size: 4.5rem;
            }

            .phone-img {
                width: 180px;
                max-height: 320px;
            }

            .app-phone-side {
                width: 240px;
                height: 380px;
            }

            .screen-1 .screen-img {
                width: clamp(110px, 33vw, 820px);
            }

            .screen-2 .screen-img {
                width: 290%;
                margin-right:100%;
                margin-top:70%
            }

            .app-title-img {
                height: 36px;
            }

            .app-guide-img {
                height: 106px;
            }

            .app-description {
                margin-bottom: 1.5rem;
            }

            .events-title {
                font-size: 1.4rem;
            }

            .events-categories {
                gap: 1rem;
            }

            .cat-btn {
                font-size: .85rem;
            }

            .event-card {
                flex: 0 0 160px;
            }

            .event-card-img {
                height: 110px;
            }

            .event-card-title {
                font-size: .9rem;
            }

            .event-card-desc {
                font-size: .75rem;
            }

            .arrow-img {
                width: 36px;
                height: 36px;
            }

            .events-carousel-wrapper {
                gap: 0.5rem;
            }

            .events-track {
                gap: 0.75rem;
            }

            .title-img {
                max-width: 2200px;
                transform:scale(2.5);
            }

            .logo-img {
                width: 140px;
            }

            .cta-img {
                width: 160px;
            }

            .customers-section {
                padding: 3rem 1rem;
            }

            .contact-title {
                font-size: 1.3rem;
            }

            .contact-item {
                font-size: 0.85rem;
            }

            .contact-icon {
                width: 24px;
                height: 24px;
            }

            .social-icon {
                width: 30px;
                height: 30px;
            }

            /*.customers-title-img {*/
            /*        height: 30px;
*/ /*height: clamp(30px, 48vw, 30px);
        width: clamp(420px, 48vw, 820px);
        display: block;
        flex-shrink: 0;
        filter: drop-shadow(0 3px 12px rgba(245,197,24,0.25));
        margin-top: clamp(-190px, 3000vw, -190px);*/


            /*height: clamp(420px, 48vw, 820px);
        width: clamp(420px, 48vw, 820px);
        display: block;
        flex-shrink: 0;
        filter: drop-shadow(0 3px 12px rgba(245,197,24,0.25));
        margin-top: clamp(-200px, -55vw, -55px);
    }*/

            .yellow-line {
                max-width: 80px;
            }

            .yellow-dot {
                width: 9px;
                height: 9px;
            }

            .customers-header {
                gap: 0.5rem;
            }

            .customers-content {
                gap: 1.8rem;
            }

            /*.logos-vertical-img {*/
            /*        width: 80px;
*/ /*width: clamp(0px, 0vw, 0px);
    }*/
        }
