/* Banner Section */
        .banner-section {
            position: relative;
            height: 280px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .banner-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

        .banner-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
            z-index: 2;
        }

        .banner-content {
            position: relative;
            z-index: 3;
            text-align: center;
            color: var(--white);
            padding: 0 20px;
        }

        .banner-title {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 15px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .banner-subtitle {
            font-size: 18px;
            font-weight: 400;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Main Content Section */
        .main-content {
            padding: 60px 20px;
            background-color: var(--white);
            min-height: 100vh;
        }

        .content-wrapper {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Awards Section */
        .awards-section {
            margin-bottom: 30px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid var(--border-color);
            background: var(--white);
            transition: all 0.3s ease;
        }

        .awards-section:hover {
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        }

        /* Section Header */
        .section-header {
            background: var(--secondary-color);
            padding: 25px 30px;
            cursor: pointer;
            position: relative;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .section-header:hover {
            background: linear-gradient(135deg, #a73737, var(--secondary-color));
        }

        .section-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .section-header:hover::before {
            opacity: 1;
        }

        .section-title {
            font-size: 24px;
            font-weight: 700;
            color: var(--white);
            display: flex;
            align-items: center;
            gap: 15px;
            position: relative;
            z-index: 1;
        }

        .section-title i {
            font-size: 20px;
            color: var(--secondary-color);
        }

        .section-count {
            background: rgba(247, 2, 2, 0.2);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            color: var(--white);
            position: relative;
            z-index: 1;
        }

        .dropdown-icon {
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
        }

        .dropdown-icon i {
            color: var(--white);
            font-size: 16px;
            transition: transform 0.3s ease;
        }

        .awards-section.active .dropdown-icon i {
            transform: rotate(180deg);
        }

        /* Section Content */
        .section-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease, padding 0.3s ease;
            background: var(--bg-light);
        }

        .awards-section.active .section-content {
            max-height: 2000px;
            padding: 30px;
        }

        /* Awards Grid */
        .awards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
            gap: 25px;
        }

        /* Award Card */
        .award-card {
            background: var(--white);
            border-radius: 12px;
            padding: 25px;
            display: flex;
            align-items: center;
            gap: 20px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .award-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(36, 92, 61, 0.05), transparent);
            transition: left 0.6s ease;
        }

        .award-card:hover::before {
            left: 100%;
        }

        .award-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            border-color: var(--primary-color);
        }

        /* Award Image */
        .award-image {
            width: 120px;
            height: 120px;
            border-radius: 12px;
            overflow: hidden;
            flex-shrink: 0;
            border: 3px solid var(--border-color);
            transition: all 0.3s ease;
            position: relative;
        }

        .award-card:hover .award-image {
            border-color: var(--secondary-color);
            transform: scale(1.05);
        }

        .award-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .award-card:hover .award-image img {
            transform: scale(1.1);
        }

        /* Award Details */
        .award-details {
            flex: 1;
        }

        .award-name {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 5px;
            transition: color 0.3s ease;
        }

        .award-card:hover .award-name {
            color: var(--primary-color);
        }

        .award-designation {
            font-size: 14px;
            color: var(--text-light);
            margin-bottom: 12px;
        }

        /* Award Badges */
        .award-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .award-badge {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .award-badge i {
            font-size: 10px;
        }

        .badge-national {
            background: linear-gradient(135deg, var(--primary-color), #2a8d5d);
            color: var(--white);
        }

        .badge-international {
            background: linear-gradient(135deg, var(--secondary-color), #b02020);
            color: var(--white);
        }

        .badge-regional {
            background: linear-gradient(135deg, var(--info-color), #2563eb);
            color: var(--white);
        }

        .badge-special {
            background: linear-gradient(135deg, var(--warning-color), #d97706);
            color: var(--white);
        }

        .award-badge:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .banner-title {
                font-size: 32px;
            }

            .banner-subtitle {
                font-size: 16px;
            }

            .section-title {
                font-size: 20px;
            }

            .awards-grid {
                grid-template-columns: 1fr;
            }

            .award-card {
                padding: 20px;
            }

            .award-image {
                width: 60px;
                height: 60px;
            }

            .award-name {
                font-size: 16px;
            }
        }

        @media (max-width: 576px) {
            .banner-title {
                font-size: 24px;
            }

            .section-header {
                padding: 20px;
            }

            .awards-section.active .section-content {
                padding: 20px;
            }

            .award-card {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }

            .award-image {
                width: 70px;
                height: 70px;
            }

            .award-badges {
                justify-content: center;
            }
        }

        /* Loading Animation */
        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .award-card {
            animation: slideIn 0.6s ease forwards;
        }

        .award-card:nth-child(1) { animation-delay: 0.1s; }
        .award-card:nth-child(2) { animation-delay: 0.2s; }
        .award-card:nth-child(3) { animation-delay: 0.3s; }
        .award-card:nth-child(4) { animation-delay: 0.4s; }
        .award-card:nth-child(5) { animation-delay: 0.5s; }
        .award-card:nth-child(6) { animation-delay: 0.6s; }