/* Ensure the smoother wrapper takes full viewport height */
.scroll-smoother,
#rk-pinned-container {
  width: 100%;
  min-height: 100vh;
  position: relative;
  overflow: visible;
}

/* Scrolling Wrapper: Column stack */
#rk-scroll-wrapper {
  display: flex !important;
  flex-direction: column;
  /* align-items: center; */
  width: 100%;
}

/* SVG Icon Container styling */
#rk-icon-wrapper, #rk-icon-outer {
  display: flex !important;
  justify-content: center;
  align-items: flex-end;
  width: 100vw;       /* Or constrain based on design */
  min-height: 100vh;      /* Adjust as needed for your SVG */
  position: relative;
  flex: content; 
  z-index: 1;
  overflow: hidden;
}

#rk-icon-outer svg {
  display: block;
  width: 100%;
  height: auto;
  max-width: 800px;
  /* transform: scale(70, 70); */
  transform-origin: center center;
  opacity: 0.5;
}
#rk-icon-outer .elementor-widget-container,
#rk-icon-outer .elementor-icon-wrapper,
#rk-icon-outer .elementor-icon {
  display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 65%;
    position: relative;
}

/* Product Section animation start state */
/* #rk-product-section {
  position: relative;
  width: 100%;
  background: #fff;
  opacity: 0;
  transform: translateY(100px);
  pointer-events: auto; 
  z-index: 20; 
  will-change: transform, opacity; 
  margin-top: 30vh; 
  padding: 1rem 0;
} */

/* When animated */
/* #rk-product-section.animated {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
} */

/* Ensure content is properly contained */
/* #rk-product-section .elementor-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
} */

/* Responsive adjustments */
@media (max-width: 768px) {
  #rk-icon-outer {
    height: 180px;
    max-height: 400px;
  }
  #rk-icon-outer svg {
    max-width: 95vw;
  }
}
@media screen and (max-width: 768px) {
  .scroll-smoother,
#rk-pinned-container {
  min-height: 100vh;
}
#rk-icon-wrapper, #rk-icon-outer {
  min-height: 100vh;
}
#rk-icon-outer .elementor-icon{
  height: 50% !important;
}
#rk-icon-outer .elementor-widget-container,
#rk-icon-outer .elementor-icon-wrapper{
  height: 25% !important;
}
}
/* Optional: Smooth scroll performance and pin overlap handling */
body,
html {
  overflow-x: hidden;
}
