
.hero[data-page="index"] {
background:
linear-gradient(
var(--primary-color-1-alpha1),
var(--primary-color-1-alpha2)
),
url("../../assets/img/students.webp");
background-size: cover;
background-position: center;
position: relative;
}

.service-subtitle {
font-size: 0.95rem;
color: #6c757d;
margin-top: -5px;
margin-bottom: 20px;
}

.solutions {
background-color: var(--light-color);
}

.solution-card {
background-color: white;
border-radius: 16px;
padding: 2rem;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
transition: all 0.3s ease;
height: 100%;
display: flex;
flex-direction: column;
}

.solution-card:hover {
transform: translateY(-8px);
box-shadow: 0 8px 25px rgba(7, 38, 203, 0.15);
}

.solution-card:hover .solution-image img {
transform: scale(1.03);
}

.solution-title {
font-size: 1.5rem;
font-weight: 700;
color: var(--primary-color-1);
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 0.5rem;
}

.solution-icon {
font-size: 1.75rem;
}

.solution-image {
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
margin: 1.5rem 0;
}

.solution-image img {
width: 100%;
height: auto;
object-fit: cover;
aspect-ratio: 16/9;
transition: transform 0.5s ease;
}

.solution-quote {
color: var(--primary-color-1);
font-size: 1.1rem;
text-align: center;
}

.features-title {
font-size: 1.1rem;
font-weight: 600;
color: var(--dark-color);
}

.features-list {
list-style: none;
padding-left: 0;
margin-bottom: 0;
}

.features-list li {
position: relative;
padding-left: 1.5rem;
margin-bottom: 0.75rem;
font-size: 1rem;
}

.features-list li:before {
content: "•";
color: var(--primary-color-1);
font-weight: bold;
position: absolute;
left: 0;
}

.features-list li:last-child {
margin-bottom: 0;
}

@media (max-width: 768px) {
.solution-card {
padding: 1.5rem;
}

.solution-title {
font-size: 1.3rem;
}

.service-subtitle {
font-size: 0.9rem;
}

.solution-quote {
font-size: 1rem;
}
}

.option-btn {
border-radius: 30px !important;
font-weight: 500;
transition: all 0.3s ease;
border-color: var(--primary-color-1);
color: var(--primary-color-1);
}

.option-btn:hover {
background-color: var(--primary-color-1);
color: white;
transform: translateY(-2px);
box-shadow: 0 6px 15px rgba(7, 38, 203, 0.2);
}

.progress-bar {
background-color: var(--primary-color-1);
border-radius: 30px;
transition: width 0.4s ease;
}

.score-circle {
background: var(--primary-color-1);
color: white;
font-size: 1.5rem;
font-weight: bold;
padding: 2rem;
border-radius: 50%;
width: 180px;
height: 180px;
margin: 0 auto 2rem;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
box-shadow: 0 6px 15px rgba(7, 38, 203, 0.2);
}

.score-label {
font-size: 1rem;
font-weight: 400;
margin-top: 0.5rem;
}
