62 lines
1.2 KiB
CSS
62 lines
1.2 KiB
CSS
.platform-usp {
|
|
padding: 100px 0;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.usp-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
gap: 30px;
|
|
margin-top: 60px;
|
|
}
|
|
|
|
.usp-card {
|
|
padding: 40px;
|
|
border-radius: 24px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
|
|
background-size: cover;
|
|
background-position: center;
|
|
min-height: 380px;
|
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
justify-content: flex-end; /* Align content to bottom for a modern look */
|
|
}
|
|
|
|
.usp-card:hover {
|
|
transform: translateY(-8px);
|
|
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
|
|
border-color: var(--accent-color);
|
|
}
|
|
|
|
.usp-card h3 {
|
|
font-size: 1.6rem;
|
|
margin-bottom: 20px;
|
|
color: #fff;
|
|
text-shadow: 0 2px 4px rgba(0,0,0,0.5);
|
|
}
|
|
|
|
.usp-card ul {
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.usp-card li {
|
|
color: #efefef; /* Slightly brighter for readability against dark overlay */
|
|
line-height: 1.6;
|
|
margin-bottom: 12px;
|
|
padding-left: 24px;
|
|
position: relative;
|
|
font-size: 0.95rem;
|
|
text-shadow: 0 1px 2px rgba(0,0,0,0.5);
|
|
}
|
|
|
|
.usp-card li::before {
|
|
content: '→';
|
|
position: absolute;
|
|
left: 0;
|
|
color: var(--accent-color);
|
|
}
|