/** Shopify CDN: Minification failed

Line 21:10 Unexpected "{"
Line 21:19 Expected ":"
Line 22:14 Expected identifier but found whitespace
Line 22:16 Unexpected "{"
Line 22:25 Expected ":"
Line 22:51 Expected ":"
Line 23:17 Expected identifier but found whitespace
Line 23:19 Unexpected "{"
Line 23:28 Expected ":"
Line 23:57 Expected ":"

**/
/* strt section code here */
/* Jk Image Box Css Start */
.performance-features-section {
  margin-top: 0;
  margin-bottom: 0;
}
.section-{{ section.id }}-padding {
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;
}

.performance-features-section .page-width {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
.performance-features-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 3rem;
}
.performance-features-section .section-header__text {
  flex: 1;
}
.performance-features-section .section-header__button {
  flex-shrink: 0;
  padding-top: 0.5rem;
}
.performance-features-section .section-heading {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 0.5rem 0;
  letter-spacing: -0.02em;
  color: #000;
}
.performance-features-section .section-subheading {
  font-size: 16px;
  color: #000;
  margin: 0;
  max-width: 600px;
  line-height: 1.5;
}
.performance-features-section .button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 50px;
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid #000;
  background: transparent;
  color: #000;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s ease;
}

.performance-features-section .button::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: #000;
  transition: height 0.4s ease;
  z-index: -1;
}

.performance-features-section .button:hover::before {
  height: 100%;
}

.performance-features-section .button:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.performance-features-section .button__text {
  position: relative;
  z-index: 2;
  font-size: 14px;
}

.performance-features-section .button__arrow {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.performance-features-section .button:hover .button__arrow {
  transform: translateX(4px);
}

.performance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

@media screen and (min-width: 990px) {
  .performance-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.performance-card {
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.performance-card:hover {
  transform: translateY(-5px);
}

.performance-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

.performance-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.performance-card:hover .performance-card__image img {
  transform: scale(1.05);
}

.performance-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.performance-card:hover .performance-card__overlay {
  opacity: 1;
}

.performance-card__icon {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}
.performance-card__content {
  padding: 1.5rem 0 0 0;
}
.performance-card__title {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 0.75rem 0;
  line-height: 1.3;
  color: #000;
}
.performance-card__value {
  font-weight: 400;
}
.performance-card__description {
  font-size: 16px;
  line-height: 1.7;
  color: #000;
  margin: 0;
}
/* Mobile Responsive Styles */
@media screen and (max-width: 989px) {
  .performance-features-section .page-width {
    padding: 0 1.5rem;
  }
  .performance-features-section .section-header {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }
  .performance-features-section .section-header__button {
    padding-top: 0;
    width: 100%;
  }
  .performance-features-section .button {
    width: 100%;
    justify-content: center;
  }
  .performance-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .performance-features-section .section-heading {
    font-size: 2rem;
  }
  .performance-features-section .section-subheading {
    font-size: 0.95rem;
  }
}
@media screen and (max-width: 749px) {
  .performance-features-section .page-width {
    padding: 0 1rem;
  }
  .performance-features-section .section-heading {
    font-size: 1.75rem;
  }
  .performance-card__title {
    font-size: 1.1rem;
  }
  .performance-card__description {
    font-size: 14px;
  }
  .performance-features-section .button {
    padding: 0.65rem 1.5rem;
    font-size: 0.9rem;
  }
}
/* Tablet Specific */
@media screen and (min-width: 750px) and (max-width: 989px) {
  .performance-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .performance-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }
}
/* Jk Image Box Css End */

/* Jk Portfolio Sections Start */
.compatibility-section {
  padding: 3rem 0;
}
@media (min-width: 768px) {
  .compatibility-section {
    padding: 5rem 0;
  }
}

.compatibility-section .page-width {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Section Heading */
.compatibility-heading {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 2.5rem;
  line-height: 1.3;
  color: #1a1a1a;
}
/* Cards Grid */
.compatibility-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .compatibility-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .compatibility-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

/* Individual Card */
.compatibility-card {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  aspect-ratio: 1;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.compatibility-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Card Image Container */
.compatibility-card__image-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem 0;
  min-height: 0;
}

.compatibility-card__image {
  max-width: 85%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Card Footer */
.compatibility-card__footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.compatibility-card__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  color: #fff;
  letter-spacing: -0.01em;
}

@media (min-width: 1024px) {
  .compatibility-card__title {
    font-size: 2.5rem;
  }
}

/* Plus Button */
.compatibility-card__button {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.95);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.2s ease;
  flex-shrink: 0;
}

.compatibility-card__button:hover {
  background-color: #fff;
  transform: scale(1.1) rotate(90deg);
}

.compatibility-card__button svg {
  width: 1rem;
  height: 1rem;
  stroke-width: 2.5;
  transition: transform 0.3s ease;
}
.compatibility-card--dark {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.compatibility-card--blue {
  background: linear-gradient(135deg, #4169E1 0%, #5B7FFF 100%);
}
.compatibility-card--gradient {
  background: linear-gradient(135deg, #56CCF2 0%, #F093FB 50%, #FF6B6B 100%);
}
.compatibility-card[style*="background"] .compatibility-card__image-wrapper {
  position: relative;
  z-index: 1;
}
