Spaces:
Running
Running
File size: 21,985 Bytes
d413a18 c3682bf 82eacd9 c3682bf d413a18 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 | <!DOCTYPE html>
<html lang="fa" dir="rtl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>خدمات - MedStore فارسی</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: '#1e40af',
secondary: '#0ea5e9'
}
}
}
}
</script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;500;700&display=swap');
body {
font-family: 'Vazirmatn', sans-serif;
background-color: #f0f9ff;
}
.service-card {
transition: all 0.3s ease;
}
.service-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}
.feature-item {
transition: all 0.3s ease;
}
.feature-item:hover {
background-color: #dbeafe;
}
</style>
</head>
<body class="bg-blue-50">
<!-- Header -->
<header class="bg-white shadow-md sticky top-0 z-50">
<div class="container mx-auto px-4 py-3">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="flex items-center mb-4 md:mb-0">
<i class="fas fa-heartbeat text-primary text-3xl ml-3"></i>
<h1 class="text-2xl font-bold text-gray-800">MedStore فارسی</h1>
</div>
<nav class="flex flex-wrap justify-center gap-4 mb-4 md:mb-0">
<a href="index.html" class="text-gray-600 hover:text-primary font-medium">خانه</a>
<a href="products.html" class="text-gray-600 hover:text-primary font-medium">محصولات</a>
<a href="services.html" class="text-primary hover:text-secondary font-medium">خدمات</a>
<a href="about.html" class="text-gray-600 hover:text-primary font-medium">درباره ما</a>
<a href="contact.html" class="text-gray-600 hover:text-primary font-medium">تماس با ما</a>
</nav>
<div class="flex items-center space-x-4">
<button class="text-gray-600 hover:text-primary">
<i class="fas fa-search text-xl"></i>
</button>
<button class="text-gray-600 hover:text-primary relative">
<i class="fas fa-shopping-cart text-xl"></i>
<span class="absolute -top-2 -left-2 bg-red-500 text-white rounded-full w-5 h-5 flex items-center justify-center text-xs">3</span>
</button>
<button class="bg-primary text-white px-4 py-2 rounded-lg hover:bg-blue-800 transition">
ورود / ثبت نام
</button>
</div>
</div>
</div>
</header>
<!-- Breadcrumb -->
<section class="py-4 bg-white">
<div class="container mx-auto px-4">
<nav class="text-gray-600">
<a href="index.html" class="hover:text-primary">خانه</a>
<span class="mx-2">/</span>
<span class="text-primary">خدمات</span>
</nav>
</div>
</section>
<!-- Hero Section -->
<section class="py-16 bg-gradient-to-r from-primary to-secondary">
<div class="container mx-auto px-4 text-center">
<h1 class="text-3xl md:text-4xl font-bold text-white mb-6">خدمات تخصصی MedStore فارسی</h1>
<p class="text-xl text-blue-100 max-w-3xl mx-auto">ما در MedStore فارسی علاوه بر فروش تجهیزات پزشکی، خدمات تخصصی و جامعی را برای مشتریان خود ارائه میدهیم</p>
</div>
</section>
<!-- Main Services -->
<section class="py-16">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center text-gray-800 mb-12">خدمات ما</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Service 1 -->
<div class="bg-white rounded-xl shadow-md p-8 service-card">
<div class="w-16 h-16 bg-primary rounded-full flex items-center justify-center mb-6">
<i class="fas fa-truck text-white text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-4">ارسال و تحویل سریع</h3>
<p class="text-gray-600 mb-4">تحویل سریع کالا در سراسر کشور با بستهبندی تخصصی و ایمن</p>
<ul class="text-gray-600 space-y-2 mb-6">
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 ml-2"></i>
<span>ارسال رایگان برای خریدهای بالای 5 میلیون ریال</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 ml-2"></i>
<span>تحویل در 24 تا 48 ساعت در تهران</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 ml-2"></i>
<span>بستهبندی ضد ضربه و ضد رطوبت</span>
</li>
</ul>
<a href="#" class="text-primary font-medium hover:text-secondary">اطلاعات بیشتر →</a>
</div>
<!-- Service 2 -->
<div class="bg-white rounded-xl shadow-md p-8 service-card">
<div class="w-16 h-16 bg-secondary rounded-full flex items-center justify-center mb-6">
<i class="fas fa-tools text-white text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-4">نصب و راهاندازی تجهیزات</h3>
<p class="text-gray-600 mb-4">نصب و راهاندازی تخصصی تجهیزات پزشکی توسط مهندسین مجرب</p>
<ul class="text-gray-600 space-y-2 mb-6">
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 ml-2"></i>
<span>نصب در محل توسط تکنسینهای مجرب</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 ml-2"></i>
<span>آموزش نحوه استفاده به کارکنان</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 ml-2"></i>
<span>تست عملکرد و کالیبراسیون</span>
</li>
</ul>
<a href="#" class="text-primary font-medium hover:text-secondary">اطلاعات بیشتر →</a>
</div>
<!-- Service 3 -->
<div class="bg-white rounded-xl shadow-md p-8 service-card">
<div class="w-16 h-16 bg-primary rounded-full flex items-center justify-center mb-6">
<i class="fas fa-cogs text-white text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-4">خدمات پس از فروش</h3>
<p class="text-gray-600 mb-4">پشتیبانی فنی و خدمات گارانتی برای تمامی تجهیزات خریداری شده</p>
<ul class="text-gray-600 space-y-2 mb-6">
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 ml-2"></i>
<span>تعمیر و نگهداری دورهای</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 ml-2"></i>
<span>قطعات یدکی اصلی و با کیفیت</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 ml-2"></i>
<span>مشاوره فنی 24 ساعته</span>
</li>
</ul>
<a href="#" class="text-primary font-medium hover:text-secondary">اطلاعات بیشتر →</a>
</div>
<!-- Service 4 -->
<div class="bg-white rounded-xl shadow-md p-8 service-card">
<div class="w-16 h-16 bg-secondary rounded-full flex items-center justify-center mb-6">
<i class="fas fa-file-contract text-white text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-4">مشاوره تخصصی</h3>
<p class="text-gray-600 mb-4">مشاوره تخصصی در انتخاب تجهیزات مناسب برای مراکز درمانی</p>
<ul class="text-gray-600 space-y-2 mb-6">
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 ml-2"></i>
<span>مشاوره با متخصصان حوزه پزشکی</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 ml-2"></i>
<span>طراحی پلن تجهیزات بر اساس نیاز</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 ml-2"></i>
<span>بررسی امکانسنجی پروژههای بزرگ</span>
</li>
</ul>
<a href="#" class="text-primary font-medium hover:text-secondary">اطلاعات بیشتر →</a>
</div>
<!-- Service 5 -->
<div class="bg-white rounded-xl shadow-md p-8 service-card">
<div class="w-16 h-16 bg-primary rounded-full flex items-center justify-center mb-6">
<i class="fas fa-graduation-cap text-white text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-4">آموزش کاربران</h3>
<p class="text-gray-600 mb-4">برگزاری دورههای آموزشی برای کارکنان مراکز درمانی</p>
<ul class="text-gray-600 space-y-2 mb-6">
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 ml-2"></i>
<span>دورههای حضوری و آنلاین</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 ml-2"></i>
<span>آموزش عملی و تئوری</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 ml-2"></i>
<span>مدرک بینالمللی پس از اتمام دوره</span>
</li>
</ul>
<a href="#" class="text-primary font-medium hover:text-secondary">اطلاعات بیشتر →</a>
</div>
<!-- Service 6 -->
<div class="bg-white rounded-xl shadow-md p-8 service-card">
<div class="w-16 h-16 bg-secondary rounded-full flex items-center justify-center mb-6">
<i class="fas fa-sync-alt text-white text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-4">تعویض و بازگشت کالا</h3>
<p class="text-gray-600 mb-4">سیستم بازگشت وجه و تعویض کالا بدون دردسر و با حداقل زمان</p>
<ul class="text-gray-600 space-y-2 mb-6">
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 ml-2"></i>
<span>ضمانت بازگشت وجه تا 30 روز</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 ml-2"></i>
<span>تعویض کالای معیوب بدون هزینه</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 ml-2"></i>
<span>بررسی و تست کالا قبل از تحویل</span>
</li>
</ul>
<a href="#" class="text-primary font-medium hover:text-secondary">اطلاعات بیشتر →</a>
</div>
</div>
</div>
</section>
<!-- Features Section -->
<section class="py-16 bg-white">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center text-gray-800 mb-12">مزایای خدمات ما</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6">
<div class="bg-blue-50 rounded-xl p-6 text-center feature-item">
<div class="w-14 h-14 bg-primary rounded-full flex items-center justify-center mx-auto mb-4">
<i class="fas fa-user-md text-white"></i>
</div>
<h3 class="font-bold text-gray-800 mb-2">تیم متخصص</h3>
<p class="text-gray-600 text-sm">کادری مجرب و متخصص در حوزه پزشکی و خدمات</p>
</div>
<div class="bg-blue-50 rounded-xl p-6 text-center feature-item">
<div class="w-14 h-14 bg-secondary rounded-full flex items-center justify-center mx-auto mb-4">
<i class="fas fa-clock text-white"></i>
</div>
<h3 class="font-bold text-gray-800 mb-2">خدمات 24 ساعته</h3>
<p class="text-gray-600 text-sm">پشتیبانی فنی و مشاوره در تمامی ساعات شبانهروز</p>
</div>
<div class="bg-blue-50 rounded-xl p-6 text-center feature-item">
<div class="w-14 h-14 bg-primary rounded-full flex items-center justify-center mx-auto mb-4">
<i class="fas fa-medal text-white"></i>
</div>
<h3 class="font-bold text-gray-800 mb-2">کیفیت تضمینی</h3>
<p class="text-gray-600 text-sm">تضمین کیفیت تمامی خدمات و محصولات ارائه شده</p>
</div>
<div class="bg-blue-50 rounded-xl p-6 text-center feature-item">
<div class="w-14 h-14 bg-secondary rounded-full flex items-center justify-center mx-auto mb-4">
<i class="fas fa-hand-holding-heart text-white"></i>
</div>
<h3 class="font-bold text-gray-800 mb-2">رضایت مشتری</h3>
<p class="text-gray-600 text-sm">تضمین رضایت مشتریان از کیفیت خدمات</p>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-16 bg-gradient-to-r from-primary to-secondary">
<div class="container mx-auto px-4 text-center">
<h2 class="text-3xl md:text-4xl font-bold text-white mb-6">آماده دریافت خدمات تخصصی ما هستید؟</h2>
<p class="text-xl text-blue-100 mb-8 max-w-2xl mx-auto">با ما تماس بگیرید یا فرم درخواست خدمات را پر کنید تا متخصصان ما با شما تماس بگیرند</p>
<div class="flex flex-col sm:flex-row justify-center gap-4">
<button class="bg-white text-primary font-bold py-3 px-8 rounded-lg hover:bg-gray-100 transition">
درخواست خدمات
</button>
<button class="border-2 border-white text-white font-bold py-3 px-8 rounded-lg hover:bg-white hover:text-primary transition">
تماس با ما: 021-12345678
</button>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-800 text-white pt-16 pb-8 mt-12">
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8 mb-12">
<div>
<div class="flex items-center mb-6">
<i class="fas fa-heartbeat text-secondary text-2xl ml-3"></i>
<h3 class="text-2xl font-bold">MedStore فارسی</h3>
</div>
<p class="text-gray-400 mb-6">فروشگاه تخصصی تجهیزات و لوازم پزشکی با کیفیت بالا و خدمات پس از فروش معتبر</p>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-instagram"></i></a>
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-telegram"></i></a>
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-whatsapp"></i></a>
</div>
</div>
<div>
<h4 class="text-lg font-bold mb-6">دسته بندی محصولات</h4>
<ul class="space-y-3">
<li><a href="#" class="text-gray-400 hover:text-white">تجهیزات تشخیصی</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">تجهیزات بستری</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">لوازم مصرفی</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">تجهیزات آزمایشگاهی</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">تجهیزات جراحی</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-bold mb-6">خدمات مشتریان</h4>
<ul class="space-y-3">
<li><a href="#" class="text-gray-400 hover:text-white">پرسش های متداول</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">شرایط بازگشت کالا</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">حریم خصوصی</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">شرایط و قوانین</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">پشتیبانی آنلاین</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-bold mb-6">اطلاعات تماس</h4>
<ul class="space-y-3 text-gray-400">
<li class="flex items-start">
<i class="fas fa-map-marker-alt mt-1 ml-3"></i>
<span>تهران، خیابان ولیعصر، پلاک 123</span>
</li>
<li class="flex items-center">
<i class="fas fa-phone ml-3"></i>
<span>021-12345678</span>
</li>
<li class="flex items-center">
<i class="fas fa-envelope ml-3"></i>
<span>info@medstore.ir</span>
</li>
<li class="flex items-center">
<i class="fas fa-clock ml-3"></i>
<span>شنبه تا چهارشنبه: 8 الی 17</span>
</li>
</ul>
</div>
</div>
<div class="border-t border-gray-700 pt-8 text-center text-gray-400">
<p>© 2023 MedStore فارسی. تمامی حقوق محفوظ است.</p>
</div>
</div>
</footer>
</body>
</html> |