/* Enhanced styling for technology cards on hire developer page */
.team-page .services-section__card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    margin-bottom: 30px;
    padding: 35px 25px 25px 25px;
}

.team-page .services-section__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.15);
}

.team-page .services-section__card-content {
    padding: 25px 0 0 0;
}

.team-page .services-section__card-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: #ffffff;
    line-height: 1.4;
}

.team-page .services-section__card-text {
    color: #b0b0b0;
    line-height: 1.6;
    font-size: 14px;
    margin-bottom: 0;
}

.team-page .services-section__icon {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: rgba(0, 82, 204, 1);
    border-radius: 15px;
    padding: 10px;
}

.team-page .services-section__icon span {
    width: 40px;
    height: 40px;
    font-size: 40px;
    color: #0052cc;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* SVG icon styling */
.team-page .services-section__icon svg {
    width: 40px;
    height: 40px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Category styling */
.technology-category-section {
    margin-bottom: 60px;
}

.technology-category-section .category-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 35px;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 80px;
}

.technology-category-section .category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #0066ff, #00ccff);
    border-radius: 2px;
}

/* Technology checkboxes styling */
.technology-checkboxes .technology-category-heading {
    font-size: 20px;
    color: #ffffff;
    margin: 25px 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.technology-checkboxes .form-check {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.technology-checkboxes .form-check-input {
    position: absolute;
    left: 0;
    top: 4px;
    width: 20px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
}

.technology-checkboxes .form-check-input:checked {
    background-color: #0066ff;
    border-color: #0066ff;
}

.technology-checkboxes .form-check-input:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.technology-checkboxes .form-check-label {
    color: #e0e0e0;
    cursor: pointer;
    display: block;
    padding-left: 10px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .technology-category-section .category-title {
        font-size: 24px;
    }
    
    .team-page .services-section__card-title {
        font-size: 18px;
    }
    
    .team-page .services-section__icon {
        height: 50px;
        background: rgba(0, 82, 204, 0.15);
    }
    
    .team-page .services-section__icon span {
        width: 30px;
        height: 30px;
        font-size: 30px;
        color: #0052cc;
    }
    
    .team-page .services-section__icon svg {
        width: 30px;
        height: 30px;
        color: #bbcc00;
    }
    
    .technology-category-section {
        margin-bottom: 40px;
    }
    
    .technology-checkboxes .technology-category-heading {
        margin: 20px 0 15px 0;
    }
}

/* Form enhancements */
.contact-one__input-box select.form-control,
.contact-one__input-box input.form-control,
.contact-one__input-box textarea.form-control {
    height: 50px;
    padding: 10px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
    box-shadow: none;
}

.contact-one__input-box select.form-control:focus,
.contact-one__input-box input.form-control:focus,
.contact-one__input-box textarea.form-control:focus {
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: none;
    outline: none;
}

.contact-one__input-box select.form-control option {
    background: #0c182c;
    color: #ffffff;
}

.contact-one__input-box select.form-control optgroup {
    font-weight: bold;
    color: #0066ff;
}

.contact-one__input-box textarea.form-control {
    height: auto;
}

/* Technology select with scroll */
select[name="technologies"] {
    max-height: 200px;
    overflow-y: auto;
}

/* Custom select dropdown scroll */
.contact-one__input-box .list {
    max-height: 200px;
    overflow-y: auto;
}

/* Dark theme scrollbar */
.contact-one__input-box .list::-webkit-scrollbar,
select[name="technologies"]::-webkit-scrollbar {
    width: 8px;
}

.contact-one__input-box .list::-webkit-scrollbar-track,
select[name="technologies"]::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.contact-one__input-box .list::-webkit-scrollbar-thumb,
select[name="technologies"]::-webkit-scrollbar-thumb {
    background: rgba(92, 176, 233, 0.5);
    border-radius: 4px;
}

.contact-one__input-box .list::-webkit-scrollbar-thumb:hover,
select[name="technologies"]::-webkit-scrollbar-thumb:hover {
    background: rgba(92, 176, 233, 0.8);
}

/* Remove default focus styles */
*:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* Loading Spinner Styles */
.btn-loading {
    position: relative;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-loading .btn-text {
    visibility: hidden;
}

.btn-loading .btn-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: inline-block;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .btn-loading {
        min-height: 50px;
    }
}
