.elementor-widget-slides .elementor-slide-heading{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-slides .elementor-slide-description{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-slides .elementor-slide-button{font-family:var( --e-global-typography-accent-font-family ), Sans-serif;font-weight:var( --e-global-typography-accent-font-weight );}.elementor-25 .elementor-element.elementor-element-e8c26e8 .elementor-repeater-item-93e4627 .swiper-slide-bg{background-color:#833ca3;background-image:url(https://paradoxagency.net/wp-content/uploads/2026/07/Hero-Image-1.png);background-size:cover;}.elementor-25 .elementor-element.elementor-element-e8c26e8 .swiper-slide{transition-duration:calc(5000ms*1.2);height:740px;}.elementor-25 .elementor-element.elementor-element-e8c26e8 .swiper-slide-contents{max-width:66%;}.elementor-25 .elementor-element.elementor-element-e8c26e8 .swiper-slide-inner{text-align:center;}:root{--page-title-display:none;}@media(max-width:1024px){.elementor-25 .elementor-element.elementor-element-e8c26e8 .swiper-slide{height:441px;}}@media(max-width:767px){.elementor-25 .elementor-element.elementor-element-e8c26e8 .swiper-slide{height:193px;}}/* Start custom CSS for html, class: .elementor-element-c663bdc */@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;500;600;700;800;900&display=swap');

.paradox-services {
  background: linear-gradient(180deg, #020a15 0%, #061225 50%, #020a15 100%);
  padding: 5px 40px; /* اصلاح شده از 2px به 100px */
  font-family: 'Vazirmatn', sans-serif;
  direction: rtl;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: block;
  font-size: 13px;
  color: #00b4ff;
  letter-spacing: 4px;
  margin-bottom: 12px;
  font-weight: 600;
}

.section-title {
  font-size: 38px;
  font-weight: 900;
  color: #ffffff;
  margin: 0;
  text-shadow: 0 0 30px rgba(0, 180, 255, 0.3);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.service-card {
  background: linear-gradient(145deg, rgba(10, 30, 60, 0.8), rgba(5, 15, 35, 0.9));
  border: 1px solid rgba(0, 180, 255, 0.15);
  border-radius: 20px;
  padding: 40px 25px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00d4ff, transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 180, 255, 0.4);
  box-shadow: 0 15px 40px rgba(0, 180, 255, 0.15);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 75px;
  height: 75px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 180, 255, 0.08);
  border-radius: 50%;
  border: 1.5px solid rgba(0, 180, 255, 0.25);
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  background: rgba(0, 180, 255, 0.15);
  border-color: #00d4ff;
  box-shadow: 0 0 25px rgba(0, 180, 255, 0.3);
}

.service-icon svg {
  width: 38px;
  height: 38px;
  transition: transform 0.4s ease;
}

.service-card:hover .service-icon svg {
  transform: scale(1.1);
}

.service-name {
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 25px 0;
  line-height: 1.6;
  flex-grow: 1; /* باعث می‌شود لینک‌ها در یک راستا قرار گیرند */
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #00d4ff;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 8px;
}

.service-link svg {
  transition: transform 0.3s ease;
}

.service-link:hover {
  color: #ffffff;
  background: rgba(0, 180, 255, 0.1);
}

.service-link:hover svg {
  transform: translateX(-5px); /* حرکت فلش به سمت چپ در حالت RTL */
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .paradox-services {
    padding: 70px 20px;
  }
  
  .section-title {
    font-size: 30px;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .service-card {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .service-card {
    flex-direction: row;
    text-align: right;
    gap: 20px;
    padding: 25px;
  }
  
  .service-icon {
    margin: 0;
    width: 60px;
    height: 60px;
    min-width: 60px;
  }
  
  .service-icon svg {
    width: 30px;
    height: 30px;
  }
  
  .service-name {
    margin: 0 0 15px 0;
    font-size: 15px;
  }
  
  .service-link {
    width: 100%;
    justify-content: center;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-3746c13 */@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;500;600;700;800;900&display=swap');

.paradox-why {
  background: linear-gradient(1800deg, #020a15 0%, #051020 50%, #020a15 100%);
  padding: 5px 40px; /* اصلاح شده برای هماهنگی با سایر بخش‌ها */
  font-family: 'Vazirmatn', sans-serif;
  direction: rtl;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 42px;
  font-weight: 900;
  color: #ffffff;
  margin: 0;
  text-shadow: 0 0 30px rgba(0, 180, 255, 0.3);
}

.why-container {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 25px;
  max-width: 1400px;
  margin: 0 auto;
}

/* ===== باکس ویژگی‌ها ===== */
.why-features-box {
  background: linear-gradient(145deg, rgba(8, 22, 45, 0.9), rgba(5, 15, 35, 0.95));
  border: 1px solid rgba(0, 180, 255, 0.18);
  border-radius: 20px;
  padding: 45px 35px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.why-features-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.4), transparent);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 10px;
  border-left: 1px solid rgba(0, 180, 255, 0.1);
  border-radius: 12px;
  transition: all 0.4s ease;
}

.feature-item:last-child {
  border-left: none;
}

.feature-item:hover {
  transform: translateY(-5px);
  background: rgba(0, 180, 255, 0.05);
  border-color: rgba(0, 180, 255, 0.3);
}

.feature-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: all 0.4s ease;
}

.feature-item:hover .feature-icon {
  transform: scale(1.1);
  filter: drop-shadow(0 0 12px rgba(0, 212, 255, 0.6));
}

.feature-icon svg {
  width: 55px;
  height: 55px;
  filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.3));
}

.feature-text h4 {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px 0;
  line-height: 1.5;
}

.feature-text p {
  font-size: 12px;
  color: #7788aa;
  margin: 0;
  line-height: 1.7;
}

/* ===== باکس آمار ===== */
.why-stats-box {
  background: linear-gradient(145deg, rgba(8, 22, 45, 0.9), rgba(5, 15, 35, 0.95));
  border: 1px solid rgba(0, 180, 255, 0.18);
  border-radius: 20px;
  padding: 45px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.why-stats-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.4), transparent);
}

.why-box-title {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 40px 0;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.stat-item {
  text-align: center;
  padding: 15px 10px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: rgba(0, 180, 255, 0.05);
}

.stat-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon svg {
  width: 42px;
  height: 42px;
  filter: drop-shadow(0 0 6px rgba(0, 212, 255, 0.3));
}

.stat-value {
  font-size: 32px;
  font-weight: 900;
  color: #00d4ff;
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
  line-height: 1;
  direction: ltr; /* برای نمایش صحیح علامت + و اعداد */
}

.stat-label {
  font-size: 12px;
  color: #8899bb;
  font-weight: 500;
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
  .why-container {
    grid-template-columns: 1fr;
  }
  
  .why-features-box {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
  .why-features-box {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .feature-item {
    border-left: none;
    border-bottom: 1px solid rgba(0, 180, 255, 0.1);
    padding-bottom: 25px;
  }
  
  .feature-item:nth-last-child(-n+2) {
    border-bottom: none;
  }
}

@media (max-width: 600px) {
  .paradox-why {
    padding: 60px 20px;
  }
  
  .section-title {
    font-size: 30px;
  }
  
  .why-features-box {
    grid-template-columns: 1fr;
    padding: 30px 20px;
  }
  
  .feature-item {
    flex-direction: row;
    text-align: right;
    border-left: none;
    border-bottom: 1px solid rgba(0, 180, 255, 0.1);
    gap: 15/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-ada808b */.paradox-projects {
  background: linear-gradient(180deg, #061225 0%, #020a15 50%, #061225 100%);
  padding: 20px 40px;
  font-family: 'Vazirmatn', sans-serif;
  direction: rtl;
}

.projects-carousel {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto 40px;
}

.carousel-btn {
  width: 45px;
  height: 45px;
  min-width: 45px;
  background: rgba(0, 180, 255, 0.1);
  border: 1px solid rgba(0, 180, 255, 0.3);
  border-radius: 50%;
  color: #00b4ff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  background: rgba(0, 180, 255, 0.2);
  border-color: #00b4ff;
}

.projects-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  flex: 1;
  overflow: hidden;
}

.project-card {
  background: linear-gradient(145deg, rgba(10, 30, 60, 0.6), rgba(5, 15, 35, 0.8));
  border: 1px solid rgba(0, 180, 255, 0.12);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 180, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 180, 255, 0.1);
}

.project-image {
  height: 180px;
  overflow: hidden;
}

.project-thumb {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.project-thumb-content {
  width: 80%;
  height: 70%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thumb-billboard {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 180, 255, 0.15), rgba(0, 100, 200, 0.1));
  border: 1px solid rgba(0, 180, 255, 0.2);
  border-radius: 4px;
}

.thumb-metro {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 180, 255, 0.1), rgba(0, 80, 160, 0.15));
  border: 1px solid rgba(0, 180, 255, 0.15);
  border-radius: 4px;
}

.thumb-snapp, .thumb-digi {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
}

.project-info {
  padding: 20px;
}

.project-name {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px 0;
}

.project-desc {
  font-size: 13px;
  color: #7788aa;
  margin: 0;
}

.projects-cta {
  text-align: center;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  background: transparent;
  color: #ffffff;
  text-decoration: none;
  border: 1px solid rgba(0, 180, 255, 0.4);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: rgba(0, 180, 255, 0.1);
  border-color: #00b4ff;
}

@media (max-width: 1200px) {
  .projects-track {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .projects-track {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-da3fb8a */.paradox-coverage {
  background: linear-gradient(180deg, #061225 0%, #020a15 100%);
  padding: 30px 40px;
  font-family: 'Vazirmatn', sans-serif;
  direction: rtl;
}

.coverage-container {
  max-width: 1400px;
  margin: 0 auto;
  background: linear-gradient(145deg, rgba(8, 22, 45, 0.8), rgba(5, 15, 35, 0.9));
  border: 1px solid rgba(0, 180, 255, 0.15);
  border-radius: 20px;
  padding: 50px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.coverage-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.4), transparent);
}

.coverage-content {
  direction: rtl;
}

.coverage-title {
  font-size: 38px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.4;
  margin: 0 0 30px 0;
}

.coverage-highlight {
  color: #00d4ff;
  text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
  display: inline-block;
}

.btn-coverage {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 30px;
  background: rgba(0, 180, 255, 0.1);
  border: 1.5px solid rgba(0, 180, 255, 0.4);
  border-radius: 12px;
  color: #00d4ff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-coverage:hover {
  background: rgba(0, 180, 255, 0.2);
  border-color: #00d4ff;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 180, 255, 0.3);
}

.coverage-map {
  position: relative;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-image {
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 30px rgba(0, 180, 255, 0.3));
}

.map-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0, 180, 255, 0.15), transparent 70%);
  z-index: 1;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}

/* Responsive */
@media (max-width: 992px) {
  .coverage-container {
    grid-template-columns: 1fr;
    padding: 40px 30px;
    gap: 35px;
  }
  
  .coverage-title {
    font-size: 30px;
    text-align: center;
  }
  
  .coverage-map {
    height: 300px;
  }
}

@media (max-width: 600px) {
  .paradox-coverage {
    padding: 40px 20px;
  }
  
  .coverage-container {
    padding: 30px 20px;
  }
  
  .coverage-title {
    font-size: 24px;
  }
  
  .coverage-map {
    height: 250px;
  }
  
  .btn-coverage {
    width: 100%;
    justify-content: center;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-6117671 */.paradox-cta {
  background: linear-gradient(180deg, #061225 0%, #020a15 100%);
  padding: 80px 40px;
  font-family: 'Vazirmatn', sans-serif;
  direction: rtl;
}

.cta-container {
  max-width: 1400px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(0, 180, 255, 0.08), rgba(0, 100, 200, 0.05));
  border: 1px solid rgba(0, 180, 255, 0.2);
  border-radius: 24px;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.cta-container::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 180, 255, 0.1), transparent 70%);
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 2;
  flex: 1;
}

.cta-title {
  font-size: 42px;
  font-weight: 900;
  color: #ffffff;
  margin: 0 0 15px 0;
  line-height: 1.3;
}

.cta-highlight {
  color: #00d4ff;
  text-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
}

.cta-desc {
  font-size: 16px;
  color: #8899bb;
  margin: 0;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
  z-index: 2;
}

.btn-cta-primary,
.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-cta-primary {
  background: linear-gradient(135deg, #00b4ff, #0088cc);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 20px rgba(0, 180, 255, 0.3);
}

.btn-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 180, 255, 0.5);
}

.btn-cta-secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(0, 180, 255, 0.4);
}

.btn-cta-secondary:hover {
  background: rgba(0, 180, 255, 0.1);
  border-color: #00b4ff;
}

@media (max-width: 992px) {
  .cta-container {
    flex-direction: column;
    text-align: center;
    padding: 40px 30px;
  }
  .cta-title {
    font-size: 30px;
  }
  .cta-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}/* End custom CSS */