.backdrop-shape {
    position: absolute;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(255,218,121,0.45), rgba(255,218,121,0));
    filter: blur(70px);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite alternate;
    z-index: 0;
}

.shape-1 { top: 0; left: 0; animation-delay: 0s; }
.shape-2 { bottom: 10%; right: 5%; animation-delay: 2s; }
.shape-3 { top: 40%; left: 50%; animation-delay: 1s; }

@keyframes float {
    0% { transform: translateY(0px) scale(1); }
    100% { transform: translateY(-20px) scale(1.1); }
}

.awards-wrapper {
    padding: 30px 0;
    background: #f9f9f9;
    position: relative;
    overflow: hidden;
}

/* -------------------------------------------------
   CARD STYLE
---------------------------------------------------*/
.award-card {
    background: rgba(255,255,255,0.75);
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.6);
    backdrop-filter: blur(10px);
    transition: 0.3s ease;
    height: 100%;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.award-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: #e3c372;
}

/* -------------------------------------------------
   IMAGE BOX
---------------------------------------------------*/
.award-img-box {
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.award-img {
    max-height: 160px;
    width: auto;
    transition: 0.3s ease;
}

.award-card:hover .award-img {
    transform: scale(1.08);
}

/* -------------------------------------------------
   TITLE
---------------------------------------------------*/
.award-title {
    margin-top: 12px;
    font-weight: 600;
    font-size: 1rem;
    color: #333;
}

