/* Fix for offer images to ensure they display with masks */
/* Left image - show only bottom part (below the arc) */
.pxn-h1_offer_box .offer_img .mask_img img {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
  clip-path: ellipse(80% 80% at 50% 120%);
}

.pxn-h1_offer_box .offer_img .mask_img::before {
  display: block !important;
  opacity: 1 !important;
}

.pxn-h1_offer_box .offer_img .mask_img {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Middle image - show only top part (above the arc) */
.pxn-h1_offer_box.middle .offer_img .mask_img img {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
  clip-path: ellipse(80% 120% at 50% -20%);
}

/* Right image - show only bottom part (below the arc) */
.pxn-h1_offer_box.right .offer_img .mask_img img {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
  clip-path: ellipse(80% 80% at 50% 120%);
}

/*mohit code*/

.pxn_main_navigation ul>li .sub-menu {
  width: 300px !important;
}

.pxn-h3_feature_wrap {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pxn-h3_process {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media only screen and (max-width: 1199px) {

  .pxn-h3_feature_wrap,
  .pxn-h3_process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media only screen and (max-width: 767px) {

  .pxn-h3_feature_wrap,
  .pxn-h3_process {
    grid-template-columns: 1fr;
  }
}

.pxn-download-now-section {
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.pxn-download-now-wrapper {
  position: relative;
  padding: 60px 40px;
  background: linear-gradient(145deg, rgba(6, 61, 47, 0.02) 0%, rgba(233, 82, 41, 0.02) 100%);
  border-radius: 20px;
  border: 1px solid rgba(6, 61, 47, 0.1);
  backdrop-filter: blur(10px);
}

.download-shapes-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: 20px;
}

.download-shapes-bg .shape-left {
  position: absolute;
  top: -50px;
  left: -50px;
  opacity: 0.5;
  color: var(--pxn-color-theme-primary);
}

.download-shapes-bg .shape-right {
  position: absolute;
  bottom: -30px;
  right: -30px;
  opacity: 0.5;
  color: var(--pxn-color-theme-secondary);
}

.download-content {
  position: relative;
  z-index: 2;
}

.download-sub-title {
  display: inline-block;
  padding: 8px 16px;
  background-color: rgba(233, 82, 41, 0.1);
  color: var(--pxn-color-theme-primary);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.download-main-title {
  background: linear-gradient(135deg, var(--pxn-color-heading-primary) 0%, var(--pxn-color-theme-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1.5px;
}

.download-description {
  line-height: 1.8;
}

.download-features {
  flex-wrap: wrap;
}

.feature-item {
  background: rgba(255, 255, 255, 0.5);
  padding: 12px 20px;
  border-radius: 50px;
  border: 1px solid rgba(6, 61, 47, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(233, 82, 41, 0.1);
  border-color: var(--pxn-color-theme-primary);
  transform: translateY(-3px);
}

.pxn-download-btn {
  display: inline-flex !important;
  margin-top: 10px;
}

.download-file-info {
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive Design */
@media only screen and (max-width: 991px) {
  .pxn-download-now-wrapper {
    padding: 40px 30px;
  }

  .download-main-title {
    font-size: 36px;
  }

  .download-description {
    font-size: 15px;
  }
}

@media only screen and (max-width: 575px) {
  .pxn-download-now-wrapper {
    padding: 30px 20px;
  }

  .download-main-title {
    font-size: 28px;
  }

  .download-description {
    font-size: 14px;
  }

  .download-features {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .feature-item {
    width: 100%;
    justify-content: center;
  }
}

.pxn-h2_hero_wrapper .hero_content .hero_desc {
  font-weight: var(--pxn-fw-medium);
  font-size: 20px;
  color: var(--pxn-color-common-white);
  margin-top: 20px;
}