        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #0d6efd;
            --primary-light: #eaf4ff;
            --success: #25D366;
            --dark: #222;
            --text: #555;
            --border: #e8e8e8;
            --white: #fff;
        }

        body {
            font-family: tahoma;
            background: #f8fafc;
            background-image: url(../img/parent/parent.png);
        }

        a {
            text-decoration: none;
        }

        ul {
            list-style: none;
        }

        /* ====================
   HEADER
==================== */

        .header {
            position: sticky;
            top: 0;
            z-index: 9999;
            background: #fff;
            box-shadow: 0 3px 20px rgba(0, 0, 0, .08);
        }

        .container {
            width: min(1400px, 95%);
            margin: auto;
        }

        .navbar {
            height: 85px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            display: flex;
            flex-direction: column;
        }

        .logo h2 {
            color: var(--primary);
            font-size: 30px;
            font-weight: 800;
        }

        .logo span {
            font-size: 12px;
            color: #777;
        }

        /* ====================
   MENU
==================== */

        .nav-menu {
            display: flex;
            gap: 35px;
        }

        .nav-item {
            position: relative;
        }

        .nav-item>a {
            display: flex;
            align-items: center;
            gap: 6px;
            color: #222;
            font-size: 15px;
            font-weight: 700;
            padding: 30px 0;
            transition: .3s;
        }

        .nav-item:hover>a {
            color: var(--primary);
        }

        /* ====================
   DROPDOWN
==================== */

        .dropdown {
            position: absolute;
            right: 0;
            top: 100%;

            width: 260px;

            background: #fff;

            border-radius: 16px;

            box-shadow: 0 15px 40px rgba(0, 0, 0, .12);

            opacity: 0;
            visibility: hidden;

            transform: translateY(15px);

            transition: .3s;
        }

        .nav-item:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown a {
            display: block;
            padding: 14px 18px;
            color: #444;
            border-bottom: 1px solid #f1f1f1;
            transition: .3s;
        }

        .dropdown a:hover {
            background: var(--primary-light);
            color: var(--primary);
        }

        .dropdown li:last-child a {
            border-bottom: none;
        }

        /* ====================
   ACTIONS
==================== */

        .header-actions {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .call-btn {
            background: var(--primary);
            color: #fff;
            padding: 12px 20px;
            border-radius: 10px;
            font-weight: 700;
        }

        .whatsapp-btn {
            background: var(--success);
            color: #fff;
            padding: 12px 20px;
            border-radius: 10px;
            font-weight: 700;
        }

        /* ====================
   MOBILE BUTTON
==================== */

        .mobile-btn {
            display: none;
            width: 45px;
            height: 45px;
            border: none;
            background: #f4f6f8;
            border-radius: 10px;
            cursor: pointer;
        }

        .mobile-btn span {
            display: block;
            width: 22px;
            height: 2px;
            background: #333;
            margin: 5px auto;
        }

        /* ====================
   MOBILE MENU
==================== */

        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 330px;
            max-width: 90%;
            height: 100vh;

            background: #fff;

            z-index: 99999;

            overflow-y: auto;

            transition: .35s ease;

            box-shadow: -10px 0 40px rgba(0, 0, 0, .15);
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-header {
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #eee;
        }

        .close-menu {
            background: none;
            border: none;
            font-size: 28px;
            cursor: pointer;
        }

        .mobile-nav {
            padding: 15px;
        }

        .mobile-item {
            border-bottom: 1px solid #eee;
        }

        .mobile-link {
            width: 100%;
            padding: 16px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: none;
            border: none;
            cursor: pointer;
            font-size: 15px;
            font-weight: 700;
        }

        .mobile-dropdown {
            max-height: 0;
            overflow: hidden;
            transition: .3s;
        }

        .mobile-dropdown.active {
            max-height: 500px;
        }

        .mobile-dropdown a {
            display: block;
            padding: 12px 15px;
            color: #666;
        }

        .mobile-dropdown a:hover {
            color: var(--primary);
        }

        .mobile-actions {
            padding: 20px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .mobile-actions a {
            text-align: center;
        }

        /* ====================
   OVERLAY
==================== */

        .overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, .5);
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: .3s;
        }

        .overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* ====================
   RESPONSIVE
==================== */

        @media(max-width:1100px) {

            .nav-menu {
                display: none;
            }

            .mobile-btn {
                display: block;
            }

        }

        @media(max-width:768px) {

            .navbar {
                height: 75px;
            }

            .logo h2 {
                font-size: 24px;
            }

            .logo span {
                display: none;
            }

            .whatsapp-btn {
                display: none;
            }

            .call-btn {
                padding: 10px 14px;
                font-size: 13px;
            }

        }

        @media(max-width:500px) {

            .call-btn {
                display: none;
            }

        }














        /* ٪٪٪٪٪٪٪٪٪٪٪٪٪٪٪٪٪٪٪٪٪٪٪٪٪٪٪٪٪٪٪٪٪٪٪٪٪ */

        .hero{
    padding:60px 0;
    overflow:hidden;
    background:
    linear-gradient(
    180deg,
    #f8fbff 0%,
    #ffffff 100%);
}

.container{
    width:min(1400px,92%);
    margin:auto;
}

/* ---------- trust ---------- */

.trust-bar{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;

    margin-bottom:60px;
}

.trust-card{

    height:70px;

    background:#fff;

    border:1px solid #edf2f7;

    border-radius:18px;

    display:flex;
    justify-content:center;
    align-items:center;

    font-weight:700;

    box-shadow:
    0 10px 30px rgba(0,0,0,.04);
}

/* ---------- hero ---------- */

.hero-content{

    display:grid;

    grid-template-columns:
    1fr
    1fr;

    align-items:center;

    gap:80px;
}

.hero-image img{

    width:100%;

    border-radius:32px;

    display:block;

    box-shadow:
    0 40px 80px rgba(0,0,0,.15);
}

.hero-badge{

    display:inline-flex;

    padding:12px 20px;

    background:#e9f3ff;

    border-radius:999px;

    color:#0d6efd;

    font-weight:700;

    margin-bottom:20px;
}

.hero-text h1{

    font-size:clamp(36px,4vw,64px);

    line-height:1.25;

    margin-bottom:20px;

    color:#111827;
}

.hero-text p{

    max-width:650px;

    line-height:2;

    color:#667085;

    font-size:18px;
}

.hero-buttons{

    display:flex;

    gap:15px;

    margin-top:35px;
}

.btn-primary{

    height:58px;

    padding:0 32px;

    border-radius:14px;

    background:#0d6efd;

    color:white;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;

    font-weight:700;
}

.btn-secondary{

    height:58px;

    padding:0 32px;

    border-radius:14px;

    border:1px solid #d0d5dd;

    color:#111827;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;
}

/* ---------- mobile ---------- */

@media(max-width:991px){

    .hero-content{

        grid-template-columns:1fr;
    }

    .hero-image{

        order:-1;
    }

    .trust-bar{

        grid-template-columns:
        repeat(2,1fr);
    }
}

@media(max-width:600px){

    .trust-bar{

        grid-template-columns:1fr;
    }

    .hero{

        padding:40px 0;
    }

    .hero-buttons{

        flex-direction:column;
    }

    .hero-text p{

        font-size:16px;
    }
}


.services-section{

    padding:100px 0;

    background:#f8fbff;
}

.services-section .container{

    width:min(1400px,92%);
    margin:auto;
}

/* ==========================
   HEADER
========================== */

.section-heading{

    text-align:center;

    max-width:750px;

    margin:0 auto 60px;
}

.section-badge{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:10px 18px;

    background:#eaf3ff;

    color:#0d6efd;

    border-radius:999px;

    font-size:14px;

    font-weight:700;

    margin-bottom:20px;
}

.section-heading h2{

    font-size:clamp(30px,3vw,52px);

    font-weight:900;

    color:#111827;

    margin-bottom:18px;
}

.section-heading p{

    font-size:17px;

    line-height:2;

    color:#667085;
}

/* ==========================
   GRID
========================== */

.services-grid{

    display:grid;

    grid-template-columns:
    repeat(4,minmax(0,1fr));

    gap:24px;
}

/* ==========================
   CARD
========================== */

.service-card{

    background:#fff;

    border-radius:28px;

    padding:32px 26px;

    text-decoration:none;

    border:1px solid #edf2f7;

    transition:.35s;

    display:flex;

    flex-direction:column;

    min-height:260px;

    position:relative;

    overflow:hidden;
}

.service-card::before{

    content:"";

    position:absolute;

    top:0;
    right:0;

    width:100%;
    height:4px;

    background:#0d6efd;

    transform:scaleX(0);

    transform-origin:right;

    transition:.35s;
}

.service-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 20px 50px rgba(0,0,0,.08);
}

.service-card:hover::before{

    transform:scaleX(1);
}

.service-icon{

    width:72px;
    height:72px;

    border-radius:20px;

    background:#eef5ff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:32px;

    margin-bottom:25px;
}

.service-card h3{

    color:#111827;

    font-size:22px;

    font-weight:800;

    margin-bottom:15px;
}

.service-card p{

    color:#667085;

    line-height:2;

    font-size:15px;

    margin-top:auto;
}

/* ==========================
   TABLET
========================== */

@media(max-width:1200px){

    .services-grid{

        grid-template-columns:
        repeat(3,1fr);
    }
}

@media(max-width:900px){

    .services-section{

        padding:80px 0;
    }

    .services-grid{

        grid-template-columns:
        repeat(2,1fr);
    }
}

/* ==========================
   MOBILE
========================== */

@media (max-width:600px){

    .services-section{
        padding:60px 0;
    }

    .section-heading{
        margin-bottom:35px;
    }

    .section-heading h2{
        font-size:28px;
    }

    .section-heading p{
        font-size:14px;
        line-height:1.9;
    }

    .services-grid{

        display:flex;
        flex-wrap:wrap;

        gap:12px;
    }

    .service-card{

        width:calc(50% - 6px);

        min-height:auto;

        padding:18px;

        border-radius:20px;
    }

    .service-icon{

        width:50px;
        height:50px;

        font-size:22px;

        margin-bottom:12px;
    }

    .service-card h3{

        font-size:15px;

        margin-bottom:8px;
    }

    .service-card p{

        display:none;
    }
}



.brands-section{

    padding:100px 0;

    background:#ffffff;

    position:relative;
}

.brands-section .container{

    width:min(1400px,92%);
    margin:auto;
}

/* ===========================
   HEADER
=========================== */

.section-heading{

    max-width:800px;

    margin:0 auto 60px;

    text-align:center;
}

.section-badge{

    display:inline-flex;

    align-items:center;
    justify-content:center;

    padding:10px 18px;

    border-radius:999px;

    background:#edf6ff;

    color:#0d6efd;

    font-size:14px;

    font-weight:700;

    margin-bottom:20px;
}

.section-heading h2{

    font-size:clamp(30px,3vw,52px);

    color:#111827;

    margin-bottom:20px;

    font-weight:900;
}

.section-heading p{

    color:#667085;

    line-height:2;

    font-size:17px;
}

/* ===========================
   GRID
=========================== */

.brands-grid{

    display:grid;

    grid-template-columns:
    repeat(4,minmax(0,1fr));

    gap:24px;
}

/* ===========================
   CARD
=========================== */

.brand-card{

    height:140px;

    background:#fff;

    border-radius:24px;

    border:1px solid #edf2f7;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.35s;

    overflow:hidden;

    position:relative;
}

.brand-card::before{

    content:"";

    position:absolute;

    left:0;
    top:0;

    width:100%;
    height:4px;

    background:#0d6efd;

    transform:scaleX(0);

    transition:.35s;
}

.brand-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 20px 50px rgba(0,0,0,.08);
}

.brand-card:hover::before{

    transform:scaleX(1);
}

.brand-card img{

    width:120px;

    max-width:70%;

    max-height:50px;

    object-fit:contain;

    filter:grayscale(100%);

    opacity:.65;

    transition:.35s;
}

.brand-card:hover img{

    filter:none;

    opacity:1;
}

/* ===========================
   TABLET
=========================== */

@media(max-width:992px){

    .brands-grid{

        grid-template-columns:
        repeat(3,1fr);
    }
}

/* ===========================
   MOBILE
=========================== */

@media(max-width:768px){

    .brands-section{

        padding:70px 0;
    }

    .brands-grid{

        display:flex;

        flex-wrap:wrap;

        gap:12px;
    }

    .brand-card{

        width:calc(50% - 6px);

        height:100px;

        border-radius:18px;
    }

    .brand-card img{

        width:90px;

        max-height:40px;
    }

    .section-heading{

        margin-bottom:35px;
    }

    .section-heading p{

        font-size:14px;
    }
}
.process-section{

    padding:100px 0;

    background:#f8fbff;

    position:relative;
}

.process-section .container{

    width:min(1400px,92%);
    margin:auto;
}

/* ---------------- */

.process-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:24px;

    margin-top:60px;
}

/* ---------------- */

.process-card{

    background:#fff;

    border:1px solid #edf2f7;

    border-radius:28px;

    padding:35px 25px;

    position:relative;

    transition:.35s;

    overflow:hidden;
}

.process-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 20px 50px rgba(0,0,0,.08);
}

.step-number{

    position:absolute;

    top:18px;
    left:20px;

    font-size:48px;

    font-weight:900;

    color:#f1f5f9;

    line-height:1;
}

.process-icon{

    width:75px;
    height:75px;

    border-radius:22px;

    background:#eef5ff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:32px;

    margin-bottom:25px;

    position:relative;

    z-index:2;
}

.process-card h3{

    font-size:22px;

    color:#111827;

    margin-bottom:15px;

    position:relative;

    z-index:2;
}

.process-card p{

    color:#667085;

    line-height:2;

    font-size:15px;

    position:relative;

    z-index:2;
}

/* ---------------- */

@media(max-width:1100px){

    .process-grid{

        grid-template-columns:
        repeat(2,1fr);
    }
}

@media(max-width:650px){

    .process-section{

        padding:70px 0;
    }

    .process-grid{

        display:flex;

        flex-wrap:wrap;

        gap:12px;

        margin-top:35px;
    }

    .process-card{

        width:calc(50% - 6px);

        padding:20px 15px;

        border-radius:20px;
    }

    .step-number{

        font-size:34px;

        top:10px;
        left:10px;
    }

    .process-icon{

        width:55px;
        height:55px;

        font-size:22px;

        border-radius:15px;

        margin-bottom:12px;
    }

    .process-card h3{

        font-size:15px;

        margin-bottom:8px;
    }

    .process-card p{

        display:none;
    }
}

@media(max-width:420px){

    .process-card{

        width:100%;
    }
}
.advantages-section{

    padding:100px 0;

    background:#fff;
}

.advantages-timeline{

    position:relative;

    max-width:900px;

    margin:70px auto 0;
}

.advantages-timeline::before{

    content:"";

    position:absolute;

    top:0;
    bottom:0;

    left:50%;

    width:2px;

    background:#e4e7ec;

    transform:translateX(-50%);
}

.advantage{

    position:relative;

    width:50%;

    padding:0 40px;

    margin-bottom:60px;
}

.advantage::before{

    content:"";

    width:18px;
    height:18px;

    border-radius:50%;

    background:#0d6efd;

    position:absolute;

    top:10px;
}

.left{

    text-align:left;

    margin-right:auto;
}

.left::before{

    right:-9px;
}

.right{

    margin-left:auto;

    text-align:right;
}

.right::before{

    left:-9px;
}

.advantage h3{

    font-size:22px;

    margin-bottom:10px;

    color:#111827;
}

.advantage p{

    color:#667085;

    line-height:1.9;
}

/* موبایل */

@media(max-width:768px){

    .advantages-timeline::before{

        right:18px;
        left:auto;
    }

    .advantage{

        width:100%;

        padding-right:55px;

        padding-left:0;

        text-align:right !important;

        margin-bottom:35px;
    }

    .advantage::before{

        right:10px;
        left:auto;
    }
}
.stats-section{

    padding:90px 0;

    background:#ffffff;
}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

    margin-top:50px;
}

.stat-card{

    background:#f8fbff;

    border:1px solid #edf2f7;

    border-radius:24px;

    padding:30px 20px;

    text-align:center;

    transition:.3s;
}

.stat-card:hover{

    transform:translateY(-6px);

    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.stat-card strong{

    font-size:34px;

    color:#0d6efd;

    display:block;

    margin-bottom:10px;
}

.stat-card span{

    color:#667085;

    font-size:14px;
}

/* tablet */
@media(max-width:900px){

    .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

/* mobile */
@media(max-width:600px){

    .stats-grid{
        grid-template-columns:1fr;
    }

    .stat-card{
        padding:22px;
    }

    .stat-card strong{
        font-size:28px;
    }
}


.site-footer{

    background:#0b1220;

    color:#cbd5e1;

    padding:80px 0 20px;
}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1.2fr;

    gap:40px;

    margin-bottom:40px;
}

.footer-col h3,
.footer-col h4{

    color:#ffffff;

    margin-bottom:20px;
}

.footer-col p{

    line-height:1.9;

    font-size:14px;
}

.footer-col a{

    display:block;

    color:#cbd5e1;

    text-decoration:none;

    margin-bottom:10px;

    font-size:14px;

    transition:.3s;
}

.footer-col a:hover{

    color:#3b82f6;
}

/* CTA button */

.footer-btn{

    margin-top:15px;

    display:inline-block;

    padding:10px 18px;

    background:#3b82f6;

    color:#fff !important;

    border-radius:10px;

    font-weight:700;

    text-align:center;
}

/* bottom */

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.1);

    padding-top:20px;

    text-align:center;

    font-size:13px;
}

/* mobile */

@media(max-width:900px){

    .footer-grid{
        grid-template-columns:1fr 1fr;
        gap:30px;
    }
}

@media(max-width:600px){

    .footer-grid{
        grid-template-columns:1fr;
        gap:25px;
    }

    .site-footer{
        padding:60px 0 20px;
    }
}
@media (max-width: 768px){

    .footer-grid{

        display:grid;

        grid-template-columns:repeat(2,1fr);
        gap:12px;

    }

    .footer-col{

        background:#111a2e;

        border:1px solid rgba(255,255,255,0.08);

        border-radius:16px;

        padding:14px;

        min-height:auto;

    }

    .footer-col h3,
    .footer-col h4{

        font-size:14px;

        margin-bottom:10px;

    }

    .footer-col p,
    .footer-col a{

        font-size:13px;

        line-height:1.7;

        margin-bottom:6px;

    }

    /* CTA box جدا و برجسته */

    .footer-col:last-child{

        grid-column:1 / -1;

        background:#0d6efd;

        border:none;

        text-align:center;

    }

    .footer-btn{

        width:100%;

        display:block;

        margin-top:10px;

        background:#ffffff;

        color:#0d6efd !important;

    }

    .footer-bottom{

        margin-top:15px;

        font-size:12px;

    }
}
.faq-section{

    padding:100px 0;

    background:#f8fbff;
}

.faq-list{

    max-width:850px;

    margin:60px auto 0;

    display:flex;

    flex-direction:column;

    gap:12px;
}

/* item */

.faq-item{

    background:#fff;

    border:1px solid #edf2f7;

    border-radius:18px;

    padding:18px 20px;

    transition:.3s;
}

/* summary */

.faq-item summary{

    cursor:pointer;

    font-weight:700;

    color:#111827;

    font-size:16px;

    list-style:none;

    display:flex;

    justify-content:space-between;

    align-items:center;
}

/* حذف فلش پیش‌فرض */

.faq-item summary::-webkit-details-marker{

    display:none;
}

/* باز شدن */

.faq-item p{

    margin-top:12px;

    color:#667085;

    line-height:1.9;

    font-size:14px;
}

/* hover */

.faq-item:hover{

    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

/* موبایل */

@media(max-width:600px){

    .faq-section{
        padding:70px 0;
    }

    .faq-item{
        padding:14px 16px;
        border-radius:14px;
    }

    .faq-item summary{
        font-size:14px;
    }

    .faq-item p{
        font-size:13px;
    }
}
.slider-section{
    padding-bottom: 20px;
    padding-top: 20px;
    background-color: rgb(255, 255, 255);
}

.slider-wrapper{
    width: 100%;
    display:flex;
    align-items:center;
    background-color: white;

    width:min(1000px,92%);
    margin:auto;
}

.slider-viewport{
    overflow:hidden;
    width:100%;
}

.slider-track{
    display:flex;
    gap:20px;
    transition:transform 0.5s ease;
    will-change:transform;
}

.slide{
    min-width:180px;
    height:80px;

    background:#f8fbff;
    border:1px solid #e5e7eb;
    border-radius:14px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-weight:800;
}

button.prev,
button.next{
    width:40px;
    height:40px;
    border:none;
    border-radius:10px;
    cursor:pointer;
    background:#111827;
    color:#fff;
}



.swiper{
    width:100%;
    padding:40px 0;
}

.swiper-slide{

    height:80px;

    background:#f8fbff;
    border:1px solid #e5e7eb;

    border-radius:14px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-weight:800;
}