.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--primary-color);
}

.card {
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.card-title {
    color: var(--secondary-color);
    font-weight: 600;
}

.card-text {
    color: #666;
}

.html-css-section {
    background-color: white;
    padding: 20px 0;
}

.javascript-section {
    background-color: var(--light-bg);
    padding: 20px 0;
}
.jump-text{
    text-decoration: none;
}
