     .gallery-container {
            max-width: 1200px;
            margin: 0px auto;
            background: #fff;
            padding: 10px 40px;
            border-radius: 0px 0px 10px 10px;
            box-shadow: 0 4px 16px rgba(0,0,0,0.1);
        }

        .gallery-container2 {
            max-width: 1200px;
            margin: 40px auto;
            background: #fff;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 4px 16px rgba(0,0,0,0.1);
        }

        .gallery-title {
            font-size: 1.6rem;
            font-weight: bold;
            color: #003f7d;
            border-left: 4px solid #005bac;
            padding-left: 10px;
            margin-bottom: 25px;
        }

        .title-img {
            width: 100%;
            max-width: 1200px;
            border-radius: 10px;
            margin-bottom: 40px;
        }

        /* Grid */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .gallery-item {
            text-align: center;
        }

        .gallery-grid img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            border-radius: 10px;
            transition: 0.3s;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        .gallery-grid img:hover {
            transform: scale(1.03);
        }

        .gallery-name {
            margin-top: 8px;
            font-size: 14px;
            color: #003f7d;
            font-weight: bold;
        }

        /* Responsive */
        @media (max-width: 900px) {
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {
            .gallery-grid {
                grid-template-columns: 1fr;
            }
        }

      