/* Mobile-only fix for circular shape animation */

/* Mobile-only: HIDE circular shape animation completely */

@media (max-width: 600px) {
  /* Hide the entire circular shape section on mobile */
  .circular-shape-section {
    display: none !important;
  }
  
  /* Hide the circular shape wrapper on mobile */
  .circular-shape-wrapper {
    display: none !important;
  }
  
  /* Hide any circular shape related elements */
  .circular-shape-wrapper .shape-thumb,
  .circular-shape-wrapper .shape-thumb img {
    display: none !important;
  }
}
