⚡
Scalable
...
- Author: OwaisImran2005
- Repository: OwaisImran2005/todo_CLI_App_
- Version: 20260207040852
- Stars: 0
- Forks: 0
- Last Updated: 2026-02-07
- Source: https://github.com/OwaisImran2005/todo_CLI_App_
- Web: https://mule.run/skillshub/@@OwaisImran2005/todo_CLI_App_~modern-section:20260207040852
---
## MODERN UI SECTION DESIGNS
---
name: modern-sections
description: Create engaging content sections with various layouts and animations. Use when user wants feature sections, testimonials, or content blocks.
---
### Instructions
Create content sections with these features:
#### **Section Types**
- Feature sections (grid/list)
- Testimonial carousels
- Pricing tables
- Team member grids
- FAQ accordions
- Stats/metrics sections
- CTA (Call-to-Action) sections
- Image galleries
#### **Layout Patterns**
- Alternating left/right content
- Grid layouts (2, 3, 4 columns)
- Full-width backgrounds
- Split-screen designs
- Overlapping elements
- Sticky sections
#### **Visual Effects**
- Scroll-triggered animations
- Parallax backgrounds
- Gradient overlays
- Shape dividers
- Animated counters
- Progress indicators
### Example Code
```html
🚀
Lightning Fast
Optimized for performance and speed
🔒
Secure
Enterprise-grade security measures
📱
Responsive
Works perfectly on all devices
⚡
Scalable
Grows with your business needs
What Our Clients Say
⭐⭐⭐⭐⭐
"This product has transformed our workflow completely. Highly recommended!"
John Doe
CEO, Company Inc
Ready to Get Started?
Join thousands of satisfied customers today
```
```css
/* Feature Section */
.feature-section {
padding: 6rem 2rem;
background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}
.section-container {
max-width: 1200px;
margin: 0 auto;
}
.section-header {
text-align: center;
margin-bottom: 4rem;
}
.section-badge {
display: inline-block;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 0.5rem 1.5rem;
border-radius: 30px;
font-weight: 600;
font-size: 0.9rem;
margin-bottom: 1rem;
}
.section-title {
font-size: clamp(2rem, 5vw, 3rem);
font-weight: 900;
color: #1e1e2e;
margin-bottom: 1rem;
}
.section-subtitle {
font-size: 1.2rem;
color: #666;
max-width: 600px;
margin: 0 auto;
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
}
.feature-card {
background: white;
padding: 2rem;
border-radius: 20px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
border: 1px solid rgba(0, 0, 0, 0.05);
}
.feature-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
border-color: rgba(102, 126, 234, 0.3);
}
.feature-icon {
font-size: 3rem;
margin-bottom: 1rem;
display: inline-block;
animation: float 3s ease-in-out infinite;
}
@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-10px); }
}
.feature-card h3 {
font-size: 1.5rem;
font-weight: 700;
margin-bottom: 0.75rem;
color: #1e1e2e;
}
.feature-card p {
color: #666;
line-height: 1.6;
}
/* Testimonial Section */
.testimonial-section {
padding: 6rem 2rem;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
}
.testimonial-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin-top: 3rem;
}
.testimonial-card {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(20px);
border: 1px solid rgba(255, 255, 255, 0.2);
padding: 2rem;
border-radius: 20px;
transition: all 0.3s ease;
}
.testimonial-card:hover {
background: rgba(255, 255, 255, 0.15);
transform: scale(1.02);
}
.stars {
font-size: 1.2rem;
margin-bottom: 1rem;
}
.testimonial-text {
font-size: 1.1rem;
line-height: 1.8;
margin-bottom: 1.5rem;
font-style: italic;
}
.testimonial-author {
display: flex;
align-items: center;
gap: 1rem;
}
.testimonial-author img {
width: 50px;
height: 50px;
border-radius: 50%;
border: 2px solid white;
}```