.award-box-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px 7px;
    transition: transform 0.3s ease;
}

.award-box-item:hover {
    transform: translateY(-5px);
}

.award-img-desc {
    color: #fff !important;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5em;
    text-align: center;
    max-width: 80%;
    margin: 0 auto;
}

.award-details-text {
    max-width: 800px;
    margin: 0 auto;
}

.award-mini-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 15px;
    transition: transform 0.3s ease;
}

.award-mini-item:hover {
    transform: scale(1.05);
}

.award-closing {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.award-closing-img {
    width: 260px;
    height: 346px;
    border-radius: 10px;
}

.italic {
    font-style: italic;
}

/* Up arrow animation */
@keyframes floatUp {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.up-arrow {
    animation: floatUp 1.2s ease-in-out infinite;
    display: inline-block;
}

.bg-opacity-50 {
    background-color: rgba(27, 27, 27, 0.5);
}

.award .clients-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    line-height: 0;
    padding: 15px;
    margin: 15px;
    position: relative;
    transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
    overflow: hidden;
    border-radius: 5px;
    background: #303030;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .award-box-item {
        padding: 15px 10px;
    }

    .award-img-desc {
        font-size: 14px;
        max-width: 95%;
    }

    .award-mini-item {
        margin: 10px 5px;
    }
}

/* Award Images Sizes - Ensure proper scaling */
.award-img-1, .award-img-2, .award-img-3, .award-img-4, .award-img-5, .award-img-6, .award-img-7, .award-img-8, .award-img-11, .award-img-12, .award-img-13, .award-img-14 {
    object-fit: contain;
}