.elementor-kit-10{--e-global-color-primary:#FC7001;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-color-6e9136e:#E7FCFF;--e-global-color-646c704:#A5A5A5;--e-global-color-94eae61:#DDDDDD;--e-global-typography-primary-font-family:"Space Grotesk";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Figtree";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Figtree";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Space Grotesk";--e-global-typography-accent-font-weight:500;--e-global-typography-83a5acd-font-family:"Encode Sans Semi Expanded";--e-global-typography-83a5acd-font-weight:600;}.elementor-kit-10 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){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.title{display:var(--page-title-display);}@media(max-width:991px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:575px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* Solution Badge - Orange, Uppercase, Centered */
.solution-badge {
    color: #f97316;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
    display: block;
    margin-bottom: 16px;
}

/* Optional: Add subtle animation on page load */
.solution-badge {
    animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
```

---

## **📋 What This CSS Does:**

✅ **Color:** Orange (#f97316)  
✅ **Font weight:** 600 (semi-bold)  
✅ **Size:** 14px  
✅ **Transform:** Uppercase  
✅ **Letter spacing:** 1.5px (spaced out letters)  
✅ **Alignment:** Centered  
✅ **Animation:** Fades in from top when page loads/* End custom CSS */