index.html [517:572]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
.solution-providers {
padding: 2rem 0;
}
.solution-providers h3 {
color: var(--text-color);
margin-bottom: 1.5rem;
}
.solution-providers p {
color: var(--text-color);
font-size: 1.1rem;
line-height: 1.6;
margin-bottom: 2rem;
opacity: 0.95;
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-top: 2rem;
}
.feature-card {
background-color: var(--card-bg);
border: 1px solid var(--border-color);
border-radius: 8px;
padding: 1.5rem;
text-align: center;
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover {
transform: translateY(-2px);
box-shadow: 0 4px 12px var(--card-shadow);
}
.feature-card i {
color: var(--link-color);
font-size: 2.5rem;
margin-bottom: 1rem;
}
.feature-card h4 {
color: var(--text-color);
margin: 1rem 0;
font-size: 1.4rem;
}
.feature-card p {
color: var(--text-color);
margin: 0;
font-size: 1rem;
line-height: 1.5;
opacity: 0.9;
}
[data-theme="dark"] .feature-card {
background: linear-gradient(
145deg,
rgba(255, 255, 255, 0.05) 0%,
rgba(255, 255, 255, 0.02) 100%
);
}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
index.html [1579:1643]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
.solution-providers {
padding: 2rem 0;
}
.solution-providers h3 {
color: var(--text-color);
margin-bottom: 1.5rem;
}
.solution-providers p {
color: var(--text-color);
font-size: 1.1rem;
line-height: 1.6;
margin-bottom: 2rem;
opacity: 0.95;
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-top: 2rem;
}
.feature-card {
background-color: var(--card-bg);
border: 1px solid var(--border-color);
border-radius: 8px;
padding: 1.5rem;
text-align: center;
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover {
transform: translateY(-2px);
box-shadow: 0 4px 12px var(--card-shadow);
}
.feature-card i {
color: var(--link-color);
font-size: 2.5rem;
margin-bottom: 1rem;
}
.feature-card h4 {
color: var(--text-color);
margin: 1rem 0;
font-size: 1.4rem;
}
.feature-card p {
color: var(--text-color);
margin: 0;
font-size: 1rem;
line-height: 1.5;
opacity: 0.9;
}
[data-theme="dark"] .feature-card {
background: linear-gradient(
145deg,
rgba(255, 255, 255, 0.05) 0%,
rgba(255, 255, 255, 0.02) 100%
);
}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -