    @font-face {
  font-family: 'Yekan';
  src: url('/font/Yekan.woff2') format('woff2'),
       url('/font/Yekan.woff') format('woff'),
       url('/font/Yekan.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

        body {
            font-family: 'Yekan';
            margin: 0;
            padding: 20px;
            background-color: #f5f5f5;
        }
        .step {
            display: none;
            background: white;
            padding: 20px;
            border-radius: 5px;
            margin-bottom: 20px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .step.active {
            display: block;
        }
        .dropdown-container {
            position: relative;
            margin: 15px 0;
        }
        .dropdown-btn {
            width: 100%;
            padding: 10px;
            text-align: right;
            background: white;
            border: 1px solid #ddd;
            border-radius: 4px;
            cursor: pointer;
        }
        .dropdown-list {
            display: none;
            position: absolute;
            width: 100%;
            max-height: 200px;
            overflow-y: auto;
            background: white;
            border: 1px solid #ddd;
            border-radius: 4px;
            z-index: 1000;
        }
        .dropdown-list.show {
            display: block;
        }
        .dropdown-item {
            padding: 10px;
            cursor: pointer;
        }
        .dropdown-item:hover {
            background-color: #f0f0f0;
        }
        .navigation-buttons {
            margin-top: 20px;
            display: flex;
            justify-content: space-between;
        }
        button {
            padding: 10px 20px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
        }
        .next-btn, .confirm-btn {
            background-color: #4CAF50;
            color: white;
        }
        .back-btn {
            background-color: #f44336;
            color: white;
        }
        button:disabled {
            background-color: #cccccc;
            cursor: not-allowed;
        }
        .progress-container {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
        }
        .progress-step {
            flex: 1;
            text-align: center;
            padding: 10px;
            position: relative;
        }
        .progress-step.active {
            font-weight: bold;
            color: #4CAF50;
        }
        .progress-step.completed {
            color: #4CAF50;
        }
        
        
        
        
        

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Yekan', sans-serif;
        }

        body {
            background-color: white;
            color: #333;
            padding: 16px;
        }

        .step {
            display: none;
        }

        .step.active {
            display: block;
        }

        .step h2 {
            margin-bottom: 16px;
            color: #333;
            font-size: 16px;
            font-weight: normal;
            text-align: center;
        }

        .dropdown-container {
            position: relative;
            margin-bottom: 16px;
            
           
        }

        .dropdown-btn {
            width: 100%;
            padding: 12px;
             border: 1px solid #2A6AB2;
            border-radius: 12px;
            font-size: 14px;
            text-align: right;
            transition: background-color 0.3s ease;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .dropdown-btn:after {
            content: "▼";
            font-size: 12px;
            margin-left: 8px;
        }

        .dropdown-list {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            max-height: 300px;
            overflow-y: auto;
            border: 1px solid #ddd;
            border-radius: 8px;
            background-color: white;
            z-index: 10;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }

        .dropdown-list.show {
            display: block;
        }

        .dropdown-item {
            padding: 12px;
            cursor: pointer;
            text-align: right;
            border-bottom: 1px solid #eee;
        }

        .dropdown-item:hover {
            background-color: #f5f5f5;
        }

        .dropdown-item.selected {
            background-color: #e1e8f0;
            color: #4a89dc;
        }

        .navigation-buttons {
            display: flex;
            justify-content: space-between;
            margin-top: 16px;
            gap: 8px;
        }

        button {
            padding: 12px 16px;
            border: none;
            border-radius: 8px;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.2s;
            flex: 1;
        }

        .back-btn {
            background-color: #f5f5f5;
            color: #333;
        }

        .next-btn, .confirm-btn {
            background-color: #4a89dc;
            color: white;
        }

        button:disabled {
            background-color: #eee;
            color: #999;
            cursor: not-allowed;
        }

        .search-box {
            margin-bottom: 8px;
            padding: 0 8px;
        }

        .search-box input {
            width: 100%;
            padding: 8px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 14px;
        }

        @media (max-width: 480px) {
            body {
                padding: 12px;
            }
            
            .step h2 {
                font-size: 14px;
                margin-bottom: 12px;
            }
            
            button {
                padding: 10px 12px;
                font-size: 14px;
            }
            
            .dropdown-btn {
                padding: 10px;
                font-size: 14px;
            }
            
            .dropdown-item {
                padding: 10px;
                font-size: 14px;
            }
        }
        /***progress bar*****/
.progress-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
    padding: 0 0 12px 0;
    border-bottom: 2px solid #ddd;
    position: sticky;
    top: 0;
    background: white;
    z-index: 100;
}

.progress-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding-bottom: 8px;
    font-size: 13px;
    color: #aaa;
    transition: all 0.3s ease;
}

.progress-step::before {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: block;
    margin: 0 auto 6px;
    background: #ccc;
    transition: background 0.3s ease;
}

.progress-step.active {
    color: #4a89dc;
    font-weight: bold;
}

.progress-step.active::before {
    background: #4a89dc;
}


        /***progress bar*****/
        
          .footer-icons {
    display: flex; /* فعال کردن Flexbox */
    flex-direction: row-reverse; /* تغییر جهت به راست به چپ */
    justify-content: space-between; 
    max-width: 100%; /* عرض کل صفحه */
    margin: 0 auto; /* مرکز کردن کانتینر */
    padding: 0 20px; /* فاصله از دو طرف صفحه */
}
