@font-face {
    font-family: 'FarsiNumerals';
    src: url('fonts/FarsiNumerals.ttf') format('ttf');

    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'FarsiNumerals', sans-serif;
    background-color: #e6e6e6ae;
    direction: rtl;
    overflow-x: hidden;
    padding-top: 40px;

}

.navbar {
    margin: auto;
    width: 90%;
    max-width: 32%;
    height: 50px;
    border-radius: 26px;
    background: #e6e6e69c;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

.menu-items {
    display: flex;
    gap: 40px;
}

.menu-items a {
    text-decoration: none;
    color: #6D6D6D;
    font-size: 12px;
    font-weight: 500;
    transition: color 0.3s;
}

.menu-items a:hover {
    color: #333;
}

.logo img {
    margin-top: 10px;
    height: auto;
    width: 100px;
}

.text {
    max-width: 90%;
    margin: 50px auto;
    margin-bottom: 0;
    padding: 0 20px;
    line-height: 1.8;
    font-size: 16px;
    color: #5D5D5D;
    text-align: justify;
}

.buttonlive {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-right: auto;
    margin-left: 6%;
    padding: 5px 10px;
    border: 1px solid white;
    border-radius: 25px;
    background: #FFFFFF80;
    color: #530A0B;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}


.buttonlive:hover {
    background: white;
    color: black;
}

.process-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 60px auto;
    flex-wrap: wrap;
    align-items: stretch;
}

.process-box {
    display: block;
    position: relative;
    background: #f5f5f59b;
    border-radius: 25px;
    padding: 10px 20px;
    width: 100%;
    max-width: 30%;
    height: auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}



.icon-wrapper {
    position: absolute;
    top: -35px;
    left: 20px;
    padding: 10px;
}

.icon-wrapper img {
    width: 55px;
    height: auto;
}

.process-box h3 {
    font-size: 20px;
    color: #333;
    margin-top: 10px;
}

.process-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.process-box ul {
    list-style-type: disc;
    padding-right: 20px;
    color: #555;
    line-height: 1.8;
}

.process-box li {
    margin-bottom: 8px;
}

h2 {
    text-align: center;
    margin-top: 60px;
    color: #111;
    font-weight: 700;
}

.mobile-preview-section {
    max-width: 100%;
    margin: 80px auto;
    text-align: center;
}

.mobile-preview-section h4 {
    text-align: left;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
    margin-left: 20px;
    font-family: sans-serif;
}

.slider-container {
    width: 100%;
    margin: 0 auto;
    background: #AAAAAAB2;
    padding: 40px 0;
    overflow-x: auto;
    display: flex;
    justify-content: center;
}

.slider {
    margin-right: 10px;
    margin-left: 10px;
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.slider::-webkit-scrollbar {
    display: none;
}

.slider img {
    height: 450px;
    max-width: 100%;
    border-radius: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.slider img:hover {
    transform: scale(1.03);
}

.btnmove {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 0;
}

.btnmove button {
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.btnmove button:hover {
    transform: scale(1.1);
}

.btnmove img {
    width: 20px;
    height: auto;
    opacity: 0.8;
}


.process-container1 {
    display: flex;
    justify-content: center;
    margin: 60px auto;
    flex-wrap: wrap;
    align-items: stretch;
}

.process-box1 {
    display: block;
    position: relative;
    padding: 30px 100px;
    width: 100%;
    max-width: 40%;
    height: auto;
    text-align: right;

}

.process-box1 ul {
    list-style-type: disc;
    padding-right: 20px;
    color: #555;
    line-height: 1.8;
}

.process-box1 li {
    font-size: 13px;
    margin-bottom: 8px;
}

.icon-wrapper1 {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 20px;

}

.icon-wrapper1 img {
    width: 40px;
    height: auto;
}