/* فقط برای بخش راهنمای تراکت */
    #trak-guide-container * {
      box-sizing: border-box;
    }

    #trak-guide-container {
      font-family: Tahoma, sans-serif;
      background-color: #f9f9f9;
      padding: 20px;
      max-width: 1300px;
      margin: 0 auto;
      text-align: center;
      overflow-x: hidden;
    }

    #trak-guide-container .products {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-auto-rows: auto;
      gap: 20px;
      padding: 0 16px;
      justify-items: center;
    }

    @media (max-width: 1200px) {
      #trak-guide-container .products {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 900px) {
      #trak-guide-container .products {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      #trak-guide-container .products {
        grid-template-columns: 1fr;
      }
    }

    #trak-guide-container .product-card {
      background-color: #fff;
      border-radius: 15px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      padding: 16px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      height: 100%;
      max-width: 260px;
    }

    @media (min-width: 992px) {
      #trak-guide-container .product-card:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
      }
    }

    #trak-guide-container .product-card img {
      width: 100%;
      max-height: 250px; /* بزرگتر شد */
      object-fit: contain;
      border-radius: 10px;
      margin-bottom: 15px;
    }

    #trak-guide-container .product-card h3 {
      color: #008080;
      margin-bottom: 10px;
      font-size: 18px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    #trak-guide-container .features {
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    #trak-guide-container .gechin-feature {
      background-color: #008080;
      color: #fff;
      padding: 6px 8px;
      border-radius: 8px;
      font-size: 13px;
      line-height: 1.6;
      text-align: center;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    /* دکمه‌ها */
    #trak-guide-container .btn-group {
      margin-top: 30px;
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    #trak-guide-container .download-btn {
      background-color: #008080;
      color: #fff;
      padding: 12px 20px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 16px;
      display: flex;
      align-items: center;
      gap: 10px;
      transition: background-color 0.3s ease;
      min-width: 180px;
      justify-content: center;
    }

    #trak-guide-container .download-btn:hover {
      background-color: #006666;
    }

    #trak-guide-container .download-btn svg {
      width: 22px;
      height: 22px;
      stroke: #fff;
      fill: currentColor;
    }

    /* واکنش‌گرایی */
    @media (max-width: 575px) {
      #trak-guide-container .product-card img {
        max-height: 180px;
      }

      #trak-guide-container .product-card h3 {
        font-size: 16px;
        white-space: normal;
      }

      #trak-guide-container .gechin-feature {
        font-size: 12px;
        white-space: normal;
      }

      #trak-guide-container .btn-group {
        flex-direction: column;
        gap: 15px;
      }

      #trak-guide-container .download-btn {
        min-width: auto;
        font-size: 15px;
        padding: 10px 15px;
      }
    }
/* contact-style.css */
/* باکس بنر */
.contact-hero-section {
  position: relative;
  width: 100%;
}

.contact-hero-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.contact-logo-container {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-logo-box {
  background-color: white;
  border-radius: 9999px;
  padding: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.contact-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

/* باکس محتوایی */
.contact-content-box {
  max-width: 1200px;
  margin: -60px auto 40px auto;
  padding: 30px;
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  position: relative;
  z-index: 10;
}

.contact-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-heading {
  font-size: 24px;
  font-weight: bold;
  color: #0e7490;
}

.contact-description {
  color: #555;
  font-size: 15px;
}

.contact-details {
  margin-top: 20px;
}

.contact-item {
  display: flex;
  align-items: start;
  gap: 10px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.contact-item:hover {
  transform: scale(1.03);
}

.contact-icon {
  color: #06b6d4;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: #f9fafb;
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  margin-top: 20px;
}

.contact-qr {
  width: 100px;
  height: 100px;
}

.contact-qr-title {
  font-weight: 600;
}

.contact-qr-sub {
  color: #666;
  font-size: 13px;
}

/* شبکه‌های اجتماعی */
.contact-social {
  margin-top: 25px;
}

.contact-social-title {
  font-weight: 600;
  margin-bottom: 10px;
  color: #444;
}

.contact-social-links {
  display: flex;
  gap: 15px;
  font-size: 22px;
}

.contact-social-icon {
  transition: color 0.3s ease;
}

.telegram { color: #0088cc; }
.telegram:hover { color: #006699; }

.whatsapp { color: #25D366; }
.whatsapp:hover { color: #1fa856; }

.eita1 { color: #ef7f1a; }
.eita1:hover { color: #c75e00; }

.instagram { color: #d6249f; }
.instagram:hover { color: #a91c78; }

.aparat { color: #ff0000; }
.aparat:hover { color: #cc0000; }

.android { color: #3ddc84; }
.android:hover { color: #2bb36a; }

/* نقشه و دکمه مسیریابی */
.contact-map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-map-button {
  text-align: center;
  margin-top: 10px;
}

.contact-map-link {
  display: inline-block;
  background-color: #0891b2;
  color: white;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.contact-map-link:hover {
  background-color: #0e7490;
}

/* فایل delivery.css */
@import url('https://fonts.googleapis.com/css2?family=Vazirmatn&display=swap');

.delivery-page {
  font-family: 'Vazirmatn', sans-serif;
  background: linear-gradient(135deg, #f0f9ff, #ffffff);
  color: #374151;
}
.delivery-page .scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}
.delivery-page .scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.delivery-page .contact-box {
  margin-left: auto !important;
  margin-right: auto !important;
  float: none !important;
  display: block;
}
.delivery-page .logo-image {
  border-radius: 9999px;
  background-color: #fff;
  padding: 0.5rem;
}

/* شبیه‌سازی کلاس‌های Tailwind مورد استفاده */
.w-full { width: 100%; }
.h-72 { height: 18rem; }
.h-96 { height: 24rem; }
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }
.absolute { position: absolute; }
.relative { position: relative; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; position: absolute; }
.flex { display: flex; }
.justify-center { justify-content: center; }
.items-center { align-items: center; }
.rounded-full { border-radius: 9999px; }
.rounded-2xl { border-radius: 1rem; }
.rounded-xl { border-radius: 0.75rem; }
.bg-white { background-color: #ffffff; }
.bg-cyan-50 { background-color: #ecfeff; }
.bg-orange-50 { background-color: #fff7ed; }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
.shadow-sm { box-shadow: 0 1px 2px rgba(0,0,0,0.05); }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.mt-[-60px] { margin-top: -60px; }
.max-w-4xl { max-width: 56rem; margin-left: auto; margin-right: auto; }
.text-cyan-800 { color: #155e75; }
.text-cyan-700 { color: #0e7490; }
.text-orange-700 { color: #c2410c; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.leading-loose { line-height: 2; }
.leading-relaxed { line-height: 1.625; }
.pr-5 { padding-right: 1.25rem; }
.list-disc { list-style-type: disc; }
.list-decimal { list-style-type: decimal; }
.gap-2 { gap: 0.5rem; }
.w-32 { width: 8rem; }
.h-32 { height: 8rem; }
.w-40 { width: 10rem; }
.h-40 { height: 10rem; }
.border-2 { border-width: 2px; }
.border-cyan-400 { border-color: #22d3ee; }

/* استایل‌های جدید فقط برای ویدیوهای کارت ویزیت */
.video-section-tg {
  padding: 40px 20px;
  text-align: center;
}

.video-section-tg h2 {
  font-size: 24px;
  margin-bottom: 30px;
  color: #333;
}

.video-section-tg .video-div-tg {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-height: 330px; /* فقط یک ردیف (4 ویدیو) + افکت زیر */
  overflow: hidden;
  transition: max-height 0.5s ease;
  position: relative;
}

.video-section-tg .video-div-tg.expanded {
  max-height: 3000px;
}

.video-section-tg .video-div-tg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, #f9f9f9, transparent);
  pointer-events: none;
  transition: opacity 0.3s;
}

.video-section-tg .video-div-tg.expanded::after {
  opacity: 0;
}

.video-section-tg .video-card-tg {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 10px;
  transition: transform 0.2s;
}

.video-section-tg .video-card-tg:hover {
  transform: translateY(-5px);
}

.video-section-tg .video-box-tg iframe {
  width: 100%;
  height: 180px;
  border: none;
  border-radius: 8px;
}

.video-section-tg .video-card-tg h3 {
  font-size: 15px;
  margin-top: 10px;
  color: #444;
}

.video-section-tg .video-more-tg {
  margin-top: 25px;
}

.video-section-tg .video-more-button-tg {
  display: inline-block;
  background-color: #00bcd4; /* فیروزه‌ای */
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
  font-size: 16px;
}

.video-section-tg .video-more-button-tg:hover {
  background-color: #0097a7;
}

@media (min-width: 1024px) {
  .video-section-tg .video-div-tg {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* گالری */
.swiper {
  padding-bottom: 60px;
  position: relative;
  max-width: 100%;
}
.swiper-slide img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.swiper-slide img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.swiper-button-next,
.swiper-button-prev {
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  position: absolute;
}
.swiper-button-next {
  right: -50px;
}
.swiper-button-prev {
  left: -50px;
}
.swiper-pagination.custom-pagination {
  position: absolute;
  bottom: 10px;
  text-align: center;
  width: 100%;
}

/* ✅ واکنش‌گرا برای تبلت و موبایل */
@media (max-width: 1200px) {
  .swiper-button-next {
    right: -30px;
  }
  .swiper-button-prev {
    left: -30px;
  }
}
@media (max-width: 992px) {
  .swiper-button-next,
  .swiper-button-prev {
    display: none; /* فلش‌ها مخفی برای موبایل */
  }
}


\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\

.custom-box-link-2 {
    display: block;
    border: 1px solid #ccc;
	background-color: #f5f5f5;
    margin: 2px;
    box-shadow: 0 0px 6px 1px #ccc;
    border-radius: 4px;
  padding: 5px;
    overflow: hidden;
}
span.box-text-2 {
	  padding: 5px;
    display: block;
    transition: all 0.35s ease;
   /* text-align: center; */
    color: #00AFD3 ;
}
.box-2 {
    position: relative;
    min-height: 70px;
    width: 100%;
    height: 100%;
	    color: #000 ;

}

.custom-box-link {
    display: block;
    border: 1px solid #ccc;
    margin: 2px;
    box-shadow: 0 0px 6px 1px #ccc;
    border-radius: 4px;
    /* padding: 5px; */
    overflow: hidden;
}


.custom-box-wrapper {
    display: table;
    table-layout: fixed;
    width: 100%;
}

.box-item {
    display: table-cell;
    width: 100%;
}

span.box-text {
    display: block;
    transition: all 0.35s ease;
    text-align: center;
    color: #000;
}

.box-overlay {position: absolute;top: 90px;visibility: hidden;left: 0;display: block;transition: all 0.35s ease;height: 100%;width: 100%;vertical-align: middle;text-align: center;right: 0;bottom: 0;}

.box {
    position: relative;
    min-height: 70px;
    width: 100%;
    height: 100%;
}

span.overlay-text {
    display: table;
    width: 100%;
    position: absolute;
    margin: auto;
    font-size: 15px;
    top: 0;
    /* height: 100%; */
    text-shadow: 0 0 6px #fff;
    /* margin: 0; */
    color: #ffffff;
    text-align: center;
    vertical-align: middle;
    bottom: 0;
}

img.box-icon {
    width: 24px;
    height: 24px;
    position: relative;
    opacity: 1;
    display: block;
    left: 0;
    right: 0;
    transition: all 0.35s ease;
    margin: auto;
    margin-bottom: 7px;
    margin-top: 7px;
}

a.custom-box-link.red:hover {
}

.custom-box-link:hover .red .box-overlay {
    background: #339900	;
}

.custom-box-link.box-color1:hover {
    background: #339900	;
}

.custom-box-link:hover .box-overlay {
    top: -3px;
    visibility: visible;
}

.custom-box-link:hover img.box-icon, .custom-box-link:hover span.box-text {
    opacity: 0;
}

.custom-box-link.box-color2 {}

.custom-box-link.box-color2:hover {
    background: #4BB0B9;
}
.custom-box-link.box-color5 {
    border: 1px solid #ec008c;
}

.custom-box-link.box-color5:hover {
    background: #ec008c;
}



.custom-box-link.box-color6 {
    border: 1px solid #2e3192;
}

.custom-box-link.box-color6:hover {
    background: #2e3192;
}


.custom-box-link.box-color3:hover {
    background: #FF0066;
}

.custom-box-link1 {
    display: block;
    border: 1px solid #27BDBC;
    margin: 2px;
    box-shadow: 0 0px 6px 1px #27BDBC;
    border-radius: 5px;
    /* padding: 5px; */
    overflow: hidden;
}

.custom-box-wrapper1 {
    display: table;
    table-layout: fixed;
    width: 100%;
}

.box-item1 {
    width: 100%;
}

span.box-text1 {
    display: block;
    transition: all 0.35s ease;
    text-align: center;
    color: #27BDBC;
}

.box-overlay1 {position: absolute;top: 90px;visibility: hidden;left: 0;display: block;transition: all 0.35s ease;height: 100%;width: 100%;vertical-align: middle;text-align: center;right: 0;bottom: 0;}

.box1 {
    position: relative;
    min-height: 70px;
    width: 100%;
    height: 100%;
}

span.overlay-text1 {
    display: table;
    width: 100%;
    position: absolute;
    margin: auto;
    font-size: 15px;
    top: 0;
    /* height: 100%; */
    text-shadow: 0 0 6px #27BDBC;
    /* margin: 0; */
    color: #ffffff;
    text-align: center;
    vertical-align: middle;
    bottom: 0;
}

img.box-icon1 {
    width: 30px;
    height: 30px;
    position: relative;
    opacity: 1;
    display: block;
    left: 0;
    right: 0;
    transition: all 0.35s ease;
    margin: auto;
    margin-bottom: 7px;
    margin-top: 7px;
}

a.custom-box-link1.red:hover {
}

.custom-box-link1:hover .red .box-overlay1 {
    background: #27BDBC	;
}

.custom-box-link1.box-color1:hover {
    background: #27BDBC	;
}

.custom-box-link1:hover .box-overlay1 {
    top: -3px;
    visibility: visible;
}

.custom-box-link1:hover img.box-icon1, .custom-box-link1:hover span.box-text1 {
    opacity: 0;
}


* etelaat tamas ba ma *

.custom-box-link-form {
    display: block;
    border: 1px solid #26BDBD ;
    margin: 2px;
    box-shadow: 0 0px 6px 1px #26BDBD ;
    border-radius: 4px;
    /* padding: 5px; */
    overflow: hidden;
    background: #26BDBD 	;

}

.custom-box-link-form1 {
    display: block;
    border: 1px solid #00afd3;
    margin: 2px;
    box-shadow: 0 0px 6px 1px #00afd3;
    border-radius: 4px;
    /* padding: 5px; */
    overflow: hidden;
    background: #00afd3	;

}

.custom-box-wrapper1 {
    /*display: table;*/
    table-layout: fixed;
    width: 100%;
	display: flex;
flex-wrap: wrap;
margin-right: -1rem;
margin-left: -1rem;
}

.box-item1 {
    /*display: table-cell;*/
    width: 100%;
margin:20px;
}

.box1 {
    position: relative;
    min-height: 70px;
    width: 100%;
    height: 100%;

}

.h3-head
{
margin:10px;
color:black;
}
.h32-head
{
color:#00afd3;
}
.h2-head
{
margin:10px;
color:white;
}

.margin-form
{
	margin:20px;
	color:white;
}
.form-control1
{
display: block;
width: 100%;
height: 34px;
padding: 6px 12px;
font-size: 14px;
line-height: 1.42857143;
color: #555;
background-color: #00afd3;
background-image: none;
border: 1px solid #00afd3;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
-webkit-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
.form-control1::placeholder {
    color: white;
    opacity: 1;
}
.btn.shadow-md {
    box-shadow: 0 3px 5px rgba(0, 9, 128, 0.05), 0 4px 10px rgba(0, 9, 128, 0.035), inset 0 1px 1px rgba(255, 255, 255, 0.1), inset 0 -1px 1px rgba(0, 0, 0, 0.075);
}
.btn.ui-gradient-green {
    color: #FFF;
}
.btn {
    padding: .6rem 1.5rem;
}

.ui-gradient-green {
    background: -moz-linear-gradient(45deg, #19d9b4 0%, #92d275 100%);
    background: linear-gradient(45deg, #19d9b4 0%, #92d275 100%);
}

.btn-block {
    display: block;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}
