.tech-icon img {
    height: 100px;
}

.tech-item {
    transition: all 0.3s;
}

.tech-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.tech-icon {
    height: 50px;
    object-fit: contain;
}

.form-control {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s;
}

/* Form Styles */
.form-section {
    margin-bottom: 40px;
}

.form-control:focus {
    border-color: #3f51b5;
    box-shadow: 0 0 0 3px rgba(63, 81, 181, 0.1);
    outline: none;
}

/* Checkbox */
.checkbox-container,
.radio-container {
    display: block;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    user-select: none;
}

.checkbox-container input,
.radio-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark,
.radio-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
}

.checkmark {
    border-radius: 3px;
}

.radio-checkmark {
    border-radius: 50%;
}

.checkbox-container:hover input~.checkmark,
.radio-container:hover input~.radio-checkmark {
    border-color: #3f51b5;
}

.checkbox-container input:checked~.checkmark {
    background-color: #3f51b5;
    border-color: #3f51b5;
}

.radio-container input:checked~.radio-checkmark {
    border-color: #3f51b5;
}

.radio-checkmark:after {
    content: "";
    position: absolute;
    display: none;
    top: 4px;
    left: 4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #3f51b5;
}

.radio-container input:checked~.radio-checkmark:after {
    display: block;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked~.checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Checkbox/Radio Groups */
.checkbox-group,
.radio-group {
    display: flex;
    flex-wrap: wrap;
}