/** Shopify CDN: Minification failed

Line 86:14 Expected identifier but found whitespace
Line 86:16 Unexpected "{"
Line 86:25 Expected ":"
Line 86:51 Expected ":"
Line 87:17 Expected identifier but found whitespace
Line 87:19 Unexpected "{"
Line 87:28 Expected ":"
Line 87:57 Expected ":"

**/


/* CSS from section stylesheet tags */
.custom-hero-slider-wrapper {
  padding-left: 30px;
  padding-right: 30px;
  overflow: hidden;
  position: relative;
}

.custom-hero-slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.custom-hero-slide {
  flex: 0 0 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-sizing: border-box;
  padding: 0px 35px;
}

.custom-hero-text h2,
.custom-hero-text p {
  transition: font-size 0.3s ease;
}

.floatImage {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateX(0px); }
  50% { transform: translateX(20px); }
  100% { transform: translateX(0px); }
}

@media (max-width: 768px) {
  .custom-hero-slide {
    flex-direction: column;
    text-align: center;
  }
  .custom-hero-image,
  .custom-hero-text {
    max-width: 100%;
  }
}

.slider-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255,255,255,0.8);
  border: none;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  padding: 5px 10px;
  border-radius: 4px;
}

.slider-prev {
  left: 10px;
}

.slider-next {
  right: 10px;
}
.custom-image-row {
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;
  margin-top: 40px;
  margin-bottom: 30px;
}
/* .custom-image-row__inner {
  display: grid;
  grid-template-columns: repeat({{ section.settings.columns }}, 1fr);
  gap: 20px;
} */
.custom-image-row__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.custom-image-row__inner .image-col img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .custom-image-row__inner {
    grid-template-columns: 1fr; /* Mobile me hamesha ek column */
  }
}