.box-part {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    padding: 20px 15px;
    margin: 20px 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

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

.box-part img {
    border-radius: 12px;
    margin-bottom: 15px;
    object-fit: cover;
    width: 100%;
    height: 180px;
}

.box-part a {
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
    font-weight: bold;
    color: #d81b60;
    transition: color 0.3s ease;
    font-size: 15px;
}

.box-part a:hover {
    color: #a00044;
}

.box-part .title h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 15px 0 10px;
    color: #333;
}

.box-part .text span {
    color: #666;
    font-size: 14px;
    display: block;
    line-height: 1.5;
}

.box-part i.fa {
    font-size: 28px;
    margin-bottom: 15px;
    color: #007bff;
}

.search-container {
    position: relative;
}

.search-input {
    height: 50px;
    border-radius: 30px;
    padding-left: 35px;
    border: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.search-icon {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #888;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}
