.elementor-203 .elementor-element.elementor-element-6ee3151{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-203 .elementor-element.elementor-element-697ee6d{--spacer-size:50px;}.elementor-203 .elementor-element.elementor-element-b6a731e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-203 .elementor-element.elementor-element-8a1f9c3{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-203 .elementor-element.elementor-element-3093956{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-10ec4f2 */@import url('https://hamtakavan.ir/fonts/Vazirmatn-font-face.css');

/* سکشن ارتقا یافته اینترنت اشیا */
.iot-hero-section-upgraded {
  position: relative;
  width: 100%;
  padding: 120px 16px 140px;
  background-image: url('https://hamtakavan.ir/wp-content/uploads/2025/11/internet.png'); /* استفاده از تصویر جدید */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #ffffff;
  direction: rtl;
  font-family: 'Vazirmatn', sans-serif;
  overflow: hidden;
}

.iot-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 25, 56, 0.75);  /* تِم سرمه‌ای با شفافیت */
  z-index: 1;
}

.iot-hero-container {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.iot-hero-content {
  animation: contentFadeIn 1s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
}

.iot-hero-title {
  font-size: 38px;
  font-weight: 800;
  margin: 0 0 16px;
  color: #ffffff;
  line-height: 1.2;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

.iot-hero-subtitle {
  font-size: 18px;
  color: #dceeff;
  margin: 0 auto;
  max-width: 800px;
  line-height: 1.8;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* انیمیشن */
@keyframes contentFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ریسپانسیو */
@media (max-width: 960px) {
  .iot-hero-title {
    font-size: 32px;
  }
  .iot-hero-subtitle {
    font-size: 16px;
  }
  .iot-hero-section-upgraded {
    padding: 80px 16px 100px;
  }
}

@media (max-width: 600px) {
  .iot-hero-title {
    font-size: 28px;
  }
  .iot-hero-subtitle {
    font-size: 14px;
  }
  .iot-hero-section-upgraded {
    padding: 60px 12px 80px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-4281989 */@import url('https://hamtakavan.ir/fonts/Vazirmatn-font-face.css');

/* سکشن خدمات هوشمند اینترنت اشیا */
.services-section {
  position: relative;
  width: 100%;
  padding: 120px 16px 140px;
  background-color: #051938;  /* سرمه‌ای */
  color: #ffffff;
  direction: rtl;
  font-family: 'Vazirmatn', sans-serif;
  overflow: hidden;
}

.services-container {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.services-content {
  animation: contentFadeIn 1s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
}

.services-title {
  font-size: 38px;
  font-weight: 800;
  margin: 0 0 16px;
  color: #ffffff;
  line-height: 1.2;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

.services-subtitle {
  font-size: 18px;
  color: #dceeff;
  margin: 0 auto;
  max-width: 800px;
  line-height: 1.8;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* گرید کارت‌ها */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.service-card {
  background: #060f2c;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: cardSlideUp 0.6s ease forwards;
  opacity: 0;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
}

.service-card-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 14px;
  color: #ffffff;
}

.service-card-text {
  font-size: 16px;
  color: #e5e7eb;
  line-height: 1.8;
}

/* انیمیشن ورود کارت‌ها */
@keyframes contentFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* انیمیشن ورود کارت‌ها */
@keyframes cardSlideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ریسپانسیو */
@media (max-width: 960px) {
  .services-title {
    font-size: 32px;
  }
  .services-subtitle {
    font-size: 16px;
  }
  .services-section {
    padding: 80px 16px 100px;
  }
  .services-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 600px) {
  .services-title {
    font-size: 28px;
  }
  .services-subtitle {
    font-size: 14px;
  }
  .services-section {
    padding: 60px 12px 80px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-230934b */@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;500;700;800&display=swap');

.iot-benefits-section {
  background: linear-gradient(135deg, #071131, #00d4ff);  /* پس‌زمینه جذاب برای سایت */
  padding: 80px 20px;
  color: white;
  font-family: 'Vazirmatn', sans-serif;
  text-align: center;
}

.iot-benefits-container {
  max-width: 1200px;
  margin: 0 auto;
}

.iot-benefits-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #ffffff;
}

.iot-benefits-description {
  font-size: 18px;
  color: #e5e7eb;
  margin-bottom: 40px;
  line-height: 1.8;
}

.iot-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  justify-items: center;
}

.iot-benefit-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}

.iot-benefit-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.iot-benefit-title {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px;
}

.iot-benefit-text {
  font-size: 16px;
  color: #d7e2ff;
  line-height: 1.8;
}

/* انیمیشن برای ورود هر آیتم */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.iot-benefit-item:nth-child(1) {
  animation-delay: 0.2s;
}

.iot-benefit-item:nth-child(2) {
  animation-delay: 0.4s;
}

.iot-benefit-item:nth-child(3) {
  animation-delay: 0.6s;
}

.iot-benefit-item:nth-child(4) {
  animation-delay: 0.8s;
}

/* ریسپانسیو برای موبایل */
@media (max-width: 768px) {
  .iot-benefits-grid {
    grid-template-columns: 1fr;
  }

  .iot-benefits-title {
    font-size: 30px;
  }

  .iot-benefit-item {
    padding: 25px;
  }

  .iot-benefit-title {
    font-size: 20px;
  }

  .iot-benefit-text {
    font-size: 14px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-ebcb4f6 */@import url('https://hamtakavan.ir/fonts/Vazirmatn-font-face.css');

.i ot-capabilities-section {
  background: radial-gradient(circle at top, #0b224a 0%, #051938 55%, #030919 100%);
  padding: 90px 16px 110px;
  direction: rtl;
  font-family: 'Vazirmatn', sans-serif;
  color: #ffffff;
}

.iot-capabilities-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.iot-cap-title {
  font-size: 34px;
  font-weight: 800;
  margin: 0 0 12px;
}

.iot-cap-subtitle {
  font-size: 16px;
  color: #c7d5ff;
  max-width: 780px;
  margin: 0 auto 48px;
  line-height: 2;
}

/* گرید کارت‌ها */
.iot-cap-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

/* کارت‌ها */
.iot-cap-card {
  background: rgba(5, 17, 40, 0.95);
  border-radius: 20px;
  padding: 26px 24px 24px;
  text-align: right;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.65);
  opacity: 0;
  transform: translateY(22px) scale(0.98);
  animation: iotCardFade 0.7s ease forwards;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

/* تأخیر انیمیشن برای کارت‌ها */
.iot-cap-card:nth-child(1) { animation-delay: 0.05s; }
.iot-cap-card:nth-child(2) { animation-delay: 0.12s; }
.iot-cap-card:nth-child(3) { animation-delay: 0.19s; }
.iot-cap-card:nth-child(4) { animation-delay: 0.26s; }
.iot-cap-card:nth-child(5) { animation-delay: 0.33s; }
.iot-cap-card:nth-child(6) { animation-delay: 0.40s; }

.iot-cap-card::before {
  content: "";
  position: absolute;
  inset-inline-start: -40px;
  inset-block-start: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(110, 193, 228, 0.23), transparent 70%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.iot-cap-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.9),
    0 0 28px rgba(110, 193, 228, 0.3);
  border-color: rgba(110, 193, 228, 0.8);
  background: rgba(8, 24, 60, 0.98);
}

.iot-cap-card:hover::before {
  opacity: 1;
}

/* آیکن‌های گرد */
.iot-cap-icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #ffffff;
  margin-bottom: 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
  background: #1f2937;
}

/* رنگ‌های مختلف برای هر آیکن */
.iot-cap-icon-blue   { background: radial-gradient(circle at 30% 0, #60a5fa 0%, #2563eb 45%, #1e3a8a 100%); }
.iot-cap-icon-orange { background: radial-gradient(circle at 30% 0, #fdba74 0%, #fb923c 40%, #c2410c 100%); }
.iot-cap-icon-teal   { background: radial-gradient(circle at 30% 0, #5eead4 0%, #14b8a6 40%, #0f766e 100%); }
.iot-cap-icon-purple { background: radial-gradient(circle at 30% 0, #c4b5fd 0%, #8b5cf6 40%, #5b21b6 100%); }
.iot-cap-icon-red    { background: radial-gradient(circle at 30% 0, #fecaca 0%, #f97373 40%, #b91c1c 100%); }
.iot-cap-icon-green  { background: radial-gradient(circle at 30% 0, #bbf7d0 0%, #22c55e 40%, #15803d 100%); }

.iot-cap-card-title {
  margin: 0 0 10px;
  font-size: 19px;
  font-weight: 700;
  color: #ffffff;
}

.iot-cap-card-text {
  margin: 0;
  font-size: 14px;
  color: #e5e7eb;
  line-height: 2;
}

/* انیمیشن ورود کارت‌ها */
@keyframes iotCardFade {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ریسپانسیو */
@media (max-width: 1024px) {
  .iot-cap-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .iot-cap-grid {
    grid-template-columns: 1fr;
  }
  .iot-cap-title {
    font-size: 28px;
  }
  .iot-cap-subtitle {
    font-size: 14px;
  }
  .iot-cap-card {
    padding: 22px 20px 22px;
  }
}/* End custom CSS */