/** Shopify CDN: Minification failed

Line 21:0 All "@import" rules must come first

**/
/* Main container styles */
.custom-kup-section {
  background-color: #ffffff; /* Light cream background color */
  overflow: hidden;
  width: 100%;
}

.custom-kup-container {
  max-width: 1444px;
  margin: 0 auto;
  padding: 106px 71px;
  box-sizing: border-box;
}

/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");

/* Mobile-specific layout (hidden on desktop) */
.custom-kup-mobile-layout {
  display: none;
}

/* Grid layout for desktop */
.custom-kup-grid {
  display: grid;
  grid-template-columns: 578px minmax(400px, 722px);
  grid-gap: 0 80px;
  margin: 0 auto;
  align-items: start;
  max-width: 100%;
}

/* Left column styles */
.custom-kup-left-column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 752px;
}

/* Text content area */
.custom-kup-text-content {
  margin-bottom: 30px;
}

/* Heading styles */
.custom-kup-heading {
  font-family: "Poppins", sans-serif;
  font-size: 69px;
  line-height: 1.2;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 20px;
  color: #000000;
  letter-spacing: -0.02em;
}

/* Orange Hindi character */
.custom-kup-heading .hindi-char {
  color: #FE4C00;
  font-weight: 500;
}

/* Body text styles */
.custom-kup-body-text {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  line-height: 1.6;
  color: #000000;
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* Small images layout for desktop */
.custom-kup-small-images {
  display: flex;
  gap: 82px;
  margin-top: auto;
}

.custom-kup-small-image-wrapper {
  width: 248px;
  height: 248px;
  overflow: hidden;
  border-radius: 0px;
  flex-shrink: 0;
}

.custom-kup-small-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Right column with large image */
.custom-kup-right-column {
  height: 752px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  overflow: hidden;
}

.custom-kup-large-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Fix for Safari */
@supports (-webkit-touch-callout: none) {
  .custom-kup-small-image,
  .custom-kup-large-image {
    height: 100%;
  }
}

/* Responsive styles */
@media screen and (max-width: 1450px) {
  .custom-kup-container {
    padding: 80px 50px;
  }
  
  .custom-kup-grid {
    grid-template-columns: 1fr 1.25fr;
    grid-gap: 0 60px;
  }
  
  .custom-kup-left-column {
    height: 650px;
  }
  
  .custom-kup-right-column {
    height: 650px;
  }
  
  .custom-kup-heading {
    font-size: 55px;
  }
  
  .custom-kup-body-text {
    font-size: 18px;
  }
  
  .custom-kup-small-image-wrapper {
    width: 200px;
    height: 200px;
  }
  
  .custom-kup-small-images {
    gap: 40px;
  }
}

@media screen and (max-width: 1100px) {
  .custom-kup-container {
    padding: 60px 35px;
  }
  
  .custom-kup-grid {
    grid-template-columns: 1fr 1.25fr;
    grid-gap: 0 30px;
  }
  
  .custom-kup-left-column {
    height: 550px;
  }
  
  .custom-kup-right-column {
    height: 550px;
  }
  
  .custom-kup-small-images {
    gap: 30px;
  }
  
  .custom-kup-small-image-wrapper {
    width: 180px;
    height: 180px;
  }
  
  .custom-kup-heading {
    font-size: 48px;
  }
  
  .custom-kup-body-text {
    font-size: 16px;
  }
}

/* Tablet-specific styles */
@media screen and (min-width: 750px) and (max-width: 990px) {
  .custom-kup-container {
    padding: 50px 30px;
  }
  
  .custom-kup-grid {
    grid-template-columns: 1fr;
    grid-gap: 40px 0;
  }
  
  .custom-kup-left-column {
    height: auto;
    min-height: 0;
  }
  
  .custom-kup-text-content {
    margin-bottom: 30px;
  }
  
  .custom-kup-right-column {
    height: 391px;
    justify-content: center;
  }
  
  .custom-kup-large-image {
    width: 694px;
    height: 391px;
    margin: 0 auto;
    max-width: 100%;
  }
  
  .custom-kup-small-images {
    justify-content: center;
    margin-top: 30px;
  }
}

/* Mobile styles */
@media screen and (max-width: 749px) {
  .custom-kup-container {
    padding: 40px 40px;
  }
  
  /* Hide desktop layout, show mobile layout */
  .custom-kup-desktop-layout {
    display: none;
  }
  
  .custom-kup-mobile-layout {
    display: block;
  }
  
  /* Mobile text styling */
  .custom-kup-mobile-text-content {
    margin-bottom: 30px;
  }
  
  .custom-kup-mobile-layout .custom-kup-heading {
    font-size: 36px;
    margin-bottom: 15px;
    text-align: left;
  }
  
  .custom-kup-mobile-layout .custom-kup-body-text {
    font-size: 16px;
    line-height: 1.5;
    text-align: justify;
    margin-bottom: 25px;
  }
  
  /* Mobile image layouts */
  .custom-kup-mobile-large-image {
    margin-bottom: 25px;
  }
  
  .custom-kup-large-image-mobile {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 0px;
  }
  
  .custom-kup-small-images-mobile {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 15px;
  }
  
  .custom-kup-small-images-mobile .custom-kup-small-image-wrapper {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
  }
}

/* Smaller mobile devices */
@media screen and (max-width: 480px) {
  .custom-kup-container {
    padding: 30px 25px;
  }
  
  .custom-kup-mobile-layout .custom-kup-heading {
    font-size: 32px;
  }
  
  .custom-kup-mobile-layout .custom-kup-body-text {
    font-size: 15px;
  }
}

/* Animation for smooth transitions */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.custom-kup-mobile-layout {
  animation: fadeIn 0.5s ease-in-out;
}