.elementor-kit-268{--e-global-color-primary:#FFFFFF;--e-global-color-secondary:#000000;--e-global-color-text:#758398;--e-global-color-accent:#13289F;--e-global-color-f0faff4:#084088;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-268 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* Container for all icons */
.icon-row {
  display: inline-flex;
  align-items: center;
  gap: 18px; 
  
  /* আইকনের মাঝে ফাঁক */
  
  will-change: transform;
  animation: scrollX 18s linear infinite;
  overflow: hidden;
}

/* Each icon */
.moving-icon {
  height: 30px;   
  
  /* আপনার প্রয়োজনমতো সাইজ */

  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,.08));
  opacity: .9;
  transition: transform .2s ease, opacity .2s ease;
}

/* Hover effect */
.moving-icon:hover {
  transform: translateY(-3px) scale(1.05);
  opacity: 1;
}

/* Pause animation on hover */
.icon-row:hover {
  animation-play-state: paused;
}

/* Keyframes for continuous scrolling */
@keyframes scrollX {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}/* End custom CSS */