.awards-section{
            padding:80px 0;
        }

        .section-title{
            text-align:center;
            font-weight:700;
            font-size:36px;
            margin-bottom:50px;
            color:#333;
        }

        .award-card{
            background:#ffffff;
            border-radius:12px;
            box-shadow:0 8px 25px rgba(0,0,0,0.08);
            overflow:hidden;
            transition:0.3s;
        }

        .award-card:hover{
            transform:translateY(-5px);
            box-shadow:0 12px 30px rgba(0,0,0,0.12);
        }

        .award-img{
            height:100%;
            object-fit:cover;
        }

        .award-content{
            padding:30px;
        }

        .award-title{
            font-size:22px;
            font-weight:600;
            color:#ff6f00;
            margin-bottom:15px;
        }

        .award-year{
            font-weight:600;
            color:#666;
            margin-bottom:10px;
        }

        .award-desc{
            color:#555;
            line-height:1.6;
        }