.form-control-service {
    border-radius: 50rem !important;
    padding: 15px 36px;
    font-size: 17px;
    border-color: #15b9d9 !important;
    display: block;
    width: 100%;
    font-weight: 400;
    line-height: 1.5;
    color: #8d8d8d;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    appearance: none;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    padding-right: 60px;
}

.form-control-service:focus {
    color: #8d8d8d;
    background-color: #fff;
    border-color: #8adcec;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(21, 185, 217, .25);
}

.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
    font-weight: 600;
    transition: 0.5s;
    border-radius: 50rem !important;
    color: #fff !important;
    padding: 10px; 
    background-color: #15b9d9;
    border-color: #15b9d9;
}

@media (max-width: 480px) {
    .form-control-service {
        padding: 12px 12px 12px 17px;
        font-size: 13px;
        padding-right: 50px;
    }
}

.search-box {
    position: relative;
}

.search-box .search-icon {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    color: #15b9d9;
    font-size: 18px;
    pointer-events: none;
}

.search-box .clear-btn {
    position: absolute;
    top: 50%;
    right: 50px;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #999;
    font-size: 18px;
    cursor: pointer;
    display: none;
    padding: 5px;
}

.search-box .clear-btn:hover {
    color: #333;
}

.search-box .clear-btn.visible {
    display: block;
}

@media (max-width: 480px) {
    .search-box .clear-btn {
        right: 40px;
        font-size: 14px;
    }
    .search-box .search-icon {
        right: 15px;
        font-size: 14px;
    }

    .btn-primary {
        font-size: 12px;
        padding: 10px 14px;
    }
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    justify-content: center;
}

.service-item-wrapper {
    width: 100%;
    display: flex;
}

.service-item-wrapper .team-item {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.service-item-wrapper .team-item .team-img {
    width: 100%;
    flex-shrink: 0;
    overflow: hidden;
    border-top: 1px solid #15b9d9;
    border-right: 1px solid #15b9d9;
    border-left: 1px solid #15b9d9;
    position: relative;
}

.service-item-wrapper .team-item .team-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center top;
}

.service-item-wrapper .team-item .team-img .team-icon {
    position: absolute;
    bottom: -125px;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.5s;
}

.service-item-wrapper .team-item .team-img:hover .team-icon {
    margin-bottom: 145px;
}

.service-item-wrapper .team-item .team-img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    transition: 0.5s;
}

.service-item-wrapper .team-item:hover .team-img::before {
    background: rgba(21, 185, 217, .3);
}

.service-item-wrapper .team-item .team-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--bs-primary);
    transition: 0.5s;
}

.service-item-wrapper .team-item .team-content h5 {
    color: var(--bs-secondary);
    transition: 0.5s;
}

.service-item-wrapper .team-item:hover .team-content h5 {
    color: var(--bs-dark);
}

.service-item-wrapper .team-item:hover .team-content {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.service-item-wrapper .team-item .team-content .btn {
    width: 100%;
}

.service-item-wrapper .team-item:hover .team-content .btn-outline-primary {
    color: var(--bs-primary);
    background: var(--bs-white);
}

.action-buttons {
    display: flex;
    gap: 6px;
}

.btn-outline {
    width: 100%;
}

@media (max-width: 576px) {
    .service-item-wrapper .team-item .team-content .btn-outline-primary {
        padding: 10px;
    }
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
} 