 .table {
        background-color: #fff;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        margin-top: 20px;
    }

    .table th {
        background-color: #0d6efd; /* Bootstrap Primary */
        color: white;
        vertical-align: middle;
        font-size: 16px;
        padding: 12px;
    }

    .table td {
        vertical-align: middle;
        font-size: 15px;
        font-weight: bold;
        padding: 10px;
    }

    .table tbody tr:nth-child(odd) {
        background-color: #f8f9fa;
    }

    .table tbody tr:hover {
        background-color: #e9ecef;
        transition: background-color 0.3s ease;
    }
    .award-image img{
        object-fit: cover;
        height: auto;
    }
    .award-image {
        background: #fff;
        padding: 10px;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        margin-bottom: 20px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: center;
    }

    .award-image:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    }

    .award-image img {
        border-radius: 10px;
        transition: transform 0.3s ease;
    }

    .award-image:hover img {
        transform: scale(1.05);
    }
    .award-sponser{
        height: auto;
        padding: 10px;
        background-color: #FFD63A;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        border-radius: 5px;
    }
    .img-area{
        display: block;
        float: right;
    }
     .confetti-rain {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        overflow: hidden;
        z-index: 9999;
    }

    .confetti {
        position: absolute;
        top: -10px;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        opacity: 0.9;
        animation: fallDown linear forwards;
    }
    .award-section {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 40px 80px;
      margin-top: 70px;
      color: #0048ff;
      font-weight: bold;
      font-size: 2rem;
      background: linear-gradient(to right, #f8f9fa, #e3f2fd);
      overflow: hidden;
      border-bottom: 3px solid #0048ff;
    }
    .award-section h2 {
      margin: 0;
      color: #1741fe;
      font-size: 45px;
      font-family: "Josefin Sans", sans-serif;
      font-weight: bold;
    }
    /* Water curve right side */
    .wave {
      position: absolute;
      right: -50px;
      bottom: 0;
      width: 500px;
      height: 300px;
      background: radial-gradient(circle at 50% 100%, #007bff 20%, transparent 70%);
      border-radius: 50%;
      animation: waveMove 3s infinite ease-in-out;
      opacity: 0.6;
    }
    @keyframes waveMove {
      0%, 100% {
        transform: translateY(0px) rotate(0deg);
      }
      50% {
        transform: translateY(-10px) rotate(3deg);
      }
    }

    /* Gradient background enhancement */
    .award-section::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(120deg, #dfe9f3 0%, #ffffff 100%);
      z-index: -1;
    }
    /* Medal image on right */
    .medal {
      position: relative;
      z-index: 1;
    }
    .medal img {
      width: 200px;
      right: 2%;
      bottom: -40px;
      border-radius: 0px 0px 50% 50%;
      z-index: 9999;
      position: absolute;
    }
    .awards-title h2{
        font-family: "Josefin Sans", sans-serif;
        color: #000;
        font-weight: bold;
        font-size: 30px;
    }
    .nomination-crietarea{
        border-left: 2px solid #0048ff;
        border-radius: 10px;
        padding-top:15px;
        padding-bottom: 15px;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
        background-color: #fff;
    }
    .nomination-crietarea ul li {
        font-family: "Josefin Sans", sans-serif!important;
    }
    .nomination-crietarea ul li::marker {
        color: #cc1d25;
        font-size: 1.3em;
    }
    .awards-cards{
        height: 430px;
        background-color: #fff;
        box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
        border-radius: 10px;
    }
    .awards-cards .inner-parts{
        padding: 15px;
    }
    .awards-cards .inner-parts .awards-image img{
        object-fit: fill;
        border-radius: 10px;
        transition: transform 0.4s ease-in-out;
    }
    .awards-cards .inner-parts .awards-image:hover img {
        transform: scale(1.03); /* Zoom in */
    }
    .nomination-crietarea-image img{
        transition: transform 0.4s ease-in-out;
    }
    .nomination-crietarea-image:hover img {
        transform: scale(1.03); /* Zoom in */
    }
   .awards-cards .inner-parts .awards-name h5 {
        font-family: "Josefin Sans", sans-serif;
        color: #1741fe;
        font-weight: bold;
        text-align: center!important;
        padding-top: 15px;
        position: relative;
        transition: color 0.3s ease;
    }
    .awards-cards .inner-parts .awards-name h5::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: -4px;
        width: 0;
        height: 2px;
        background: #1741fe;
        transition: all 0.4s ease;
        transform: translateX(-50%);
    }
    .awards-cards .inner-parts .awards-name h5:hover::after {
        width: 60%;
    }
    .awards-cards .inner-parts .awards-desc p{
        text-align: center;
    }
    @keyframes fallDown {
        0% {
            transform: translateY(0) rotate(0deg);
            opacity: 1;
        }
        100% {
            transform: translateY(110vh) rotate(360deg);
            opacity: 0.8;
        }
    }
    .award-cv{
        height: auto;
        background-color: #fff;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
        border-radius: 10px;
        border-left: 2px solid #0048ff;
    }
    @media (min-width: 768px) and (max-width: 991px) {
        /* Typical tablet size */
        .about-title {
            margin-top: 100px!important;
        }
    }
    @media(max-width:600px){
        .medal{
            display: none;
        }
        .award-section{
            margin-top: 20px;
        }
        .award-section h2{
            font-size: 35px;
        }
    }