 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            /* background: #f9f9fb; */
            color: #333;
            line-height: 1.6;
        }

        /* Main Container */
        .main-section {
            max-width: 1600px;
            margin: 0 auto;
            margin-top: 120px;
            padding: 10px;
        }

        /* Top Header */
        .header {
            text-align: center;
            margin-bottom: 60px;
        }

        .header h1 {
            font-family: 'Roboto', sans-serif;
            font-weight: 500;
            font-size: 2.8rem;
            color: #222;
            margin-bottom: 20px;
        }

        .header p {
            font-size: 1.1rem;
            max-width: 800px;
            margin: 0 auto;
            color: #555;
        }

        /* Subsection */
        .subsection {
            margin-bottom: 80px;
        }

        .subsection-heading {
            position: relative;
            font-size: 2rem;
            color: #333;
            padding-left: 20px;
            margin-bottom: 40px;
            max-width: max-content;
        }

        .subsection-heading::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 8px;
            background: #333;
        }

        /* Images Grid */
        .images-grid {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
        }

        /* === RECOGNITIONS SECTION (Click to Full View) === */
        .recognition-box {
            position: relative;
            max-width: 350px;
            width: 100%;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            cursor: pointer;
        }

        .recognition-box:hover {
            transform: translateY(-5px);
        }

        .recognition-box img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease;
        }

        .recognition-box:hover img {
            transform: scale(1.05);
        }

        .overlay-text {
            position: absolute;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.95);
            padding: 15px;
            text-align: center;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            font-size: 1rem;
            color: #333;
            font-weight: 500;
        }

        /* === FULL IMAGE MODAL (on Click) === */
        .full-image-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.92);
            backdrop-filter: blur(12px);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.4s ease;
            padding: 20px;
        }

        .full-image-modal.active {
            display: flex;
            opacity: 1;
        }

        .full-image-modal img {
            max-width: 90%;
            max-height: 90vh;
            border-radius: 16px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
            animation: zoomIn 0.5s ease-out;
        }

        @keyframes zoomIn {
            from {
                transform: scale(0.8);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        .close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            font-size: 1.4rem;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .close-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: rotate(90deg);
        }

        /* === AWARDS SECTION (Click Modal with Text) === */
        .award-box {
            position: relative;
            width: 400px;
            height: 350px;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            cursor: pointer;
        }

        .award-box:hover {
            transform: translateY(-5px);
        }

        .award-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .award-box:hover img {
            transform: scale(1.05);
        }

        .award-overlay {
            position: absolute;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.95);
            padding: 15px;
            text-align: center;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            font-size: 1rem;
            color: #333;
            font-weight: 500;
        }

        /* Click Modal with Text */
        .click-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.92);
            backdrop-filter: blur(12px);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            padding: 20px;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .click-modal.active {
            display: flex;
            opacity: 1;
        }

        .click-modal-content {
            background: linear-gradient(135deg, #1a1a2e, #16213e);
            max-width: 1000px;
            width: 100%;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            display: flex;
            position: relative;
            animation: modalPop 0.5s ease-out;
        }

        @keyframes modalPop {
            from {
                transform: scale(0.85);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        .modal-image {
            flex: 1;
            max-width: 450px;
        }

        .modal-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .modal-divider {
            width: 1px;
            background: linear-gradient(to bottom, transparent, #fff, transparent);
            opacity: 0.6;
            margin: 0 30px;
        }

        .modal-text {
            flex: 1;
            padding: 40px 30px;
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .modal-text h2 {
            font-size: 2rem;
            margin-bottom: 16px;
            color: #e0e0ff;
        }

        .modal-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #ddd;
        }

        .modal-text .highlight {
            color: #bb86fc;
            font-weight: 600;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .images-grid {
                gap: 20px;
            }

            .award-box {
                width: 350px;
                height: 300px;
            }
        }

        @media (max-width: 992px) {
            .click-modal-content {
                flex-direction: column;
                max-width: 700px;
            }

            .modal-image {
                max-width: 100%;
                height: 300px;
            }

            .modal-divider {
                height: 1px;
                width: 80%;
                margin: 0 auto;
                background: linear-gradient(to right, transparent, #fff, transparent);
            }

            .modal-text {
                padding: 30px 25px;
            }
        }

        @media (max-width: 768px) {
            .header h1 {
                font-size: 2.2rem;
            }

            .subsection-heading {
                font-size: 1.8rem;
                margin: 0 auto 40px;
                text-align: center;
                padding-left: 0;
            }

            .subsection-heading::before {
                left: 50%;
                transform: translateX(-50%);
                width: 60px;
                height: 4px;
                top: auto;
                bottom: -10px;
            }

            .images-grid {
                flex-direction: column;
                align-items: center;
            }

            .recognition-box, .award-box {
                max-width: 90%;
                width: 100%;
            }

            .recognition-box img {
                height: auto;
            }

            .award-box {
                height: 280px;
            }
        }

        @media (max-width: 576px) {
            .modal-text h2 {
                font-size: 1.7rem;
            }

            .modal-text p {
                font-size: 1rem;
            }
        }