/* Form Element Fixes */
.team-details-input select {
    display: block !important;
    width: 100% !important;
    height: 60px !important;
    background: #F7F7F7 !important;
    border: 2px solid #EEEEEE !important;
    font-size: 15px !important;
    color: #333 !important;
    padding: 0 20px !important;
    font-weight: 400 !important;
    border-radius: 5px !important;
    font-family: "Urbanist", sans-serif !important;
    appearance: menulist !important;
    -webkit-appearance: menulist !important;
    -moz-appearance: menulist !important;
    cursor: pointer !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1) !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative !important;
    z-index: 99 !important;
}

.team-details-input select:focus {
    border-color: #2694e3 !important;
    outline: none !important;
    box-shadow: 0 0 0 2px rgba(38, 148, 227, 0.2) !important;
}

/* Always show the experience dropdown */
#experience {
    display: block !important;
    z-index: 100 !important;
    position: relative !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Hide the experience radio group since we're using the dropdown */
.experience-radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 15px;
    background: #F7F7F7;
    border: 1px solid #EEEEEE;
    border-radius: 5px;
}

.radio-item {
    display: flex;
    align-items: center;
}

.radio-item input[type="radio"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.radio-item label {
    margin-bottom: 0;
    cursor: pointer;
    font-size: 15px;
    color: #333;
}

.radio-item:hover label {
    color: #2694e3;
}

/* Style the radio buttons */
.radio-item input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #cccccc;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    position: relative;
    margin-right: 10px;
}

.radio-item input[type="radio"]:checked {
    border-color: #2694e3;
}

.radio-item input[type="radio"]:checked::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: #2694e3;
    border-radius: 50%;
}


/* Add error styling */
.team-details-input .is-invalid {
    border-color: #dc3545 !important;
    background-color: #fff8f8;
}

/* Radio button styling */
.experience-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 0;
}

.experience-option {
    display: flex;
    align-items: center;
    margin-right: 15px;
    margin-bottom: 10px;
}

.experience-option input[type="radio"] {
    margin-right: 5px;
}

/* Full width container for testimonials */
.full-width-container {
    width: 100vw;
    max-width: none;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 0;
    overflow: hidden;
    position: relative;
    background-color: #4d359c; /* Match the purple background */
}

.full-width-container .container-fluid {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
}

.full-width-container .swiper-container {
    width: 100%;
    overflow: visible;
    padding: 0 15px;
}

/* Adjust the slider wrapper */
.full-width-container .tp-testimonial-4-slider-wrap {
    padding: 0 15px;
    margin: 0 auto;
    max-width: 100%;
}

/* Ensure the dots are centered properly */
.tp-testimonial-4-dot-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

/* Make the slider items proper width */
.tp-testimonial-4-active .swiper-slide {
    height: auto;
}

/* Testimonial item styling */
.tp-testimonial-4-item {
    height: 100%;
    margin-bottom: 20px;
}

/* Fix purple background for both sections */
.tp-testimonial-4-area {
    margin-bottom: 0;
    padding-bottom: 60px;
}

/* Remove the duplicate container padding */
.full-width-container .row {
    margin-left: 0;
    margin-right: 0;
}

/* Center pagination bullets */
.tp-testimonial-4-dot-box {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .full-width-container .tp-testimonial-4-slider-wrap {
        padding: 0 10px;
    }
}

@media (min-width: 1400px) {
    .full-width-container .container-fluid {
        padding: 0 30px;
    }
}
