   body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background-color: #f8f9fa;
        }

        .text-gradient {
            background: linear-gradient(45deg, #007bff, #6f42c1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
      .gallery-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            justify-content: center;
        }

        .gallery-item {
            overflow: hidden;
            border-radius: 12px;
            background-color: #fff;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
            transform: translateY(30px);
            opacity: 0;
            animation: fadeUp 0.6s ease forwards;
        }

        .gallery-item:nth-child(odd) {
            animation-delay: 0.1s;
        }

        .gallery-item:nth-child(even) {
            animation-delay: 0.2s;
        }

        @keyframes fadeUp {
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .gallery-item:hover {
            transform: scale(1.03);
            transition: transform 0.3s ease;
        }

        .gallery-item img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            border-radius: 12px;
            transition: transform 0.3s ease;
        }

        .gallery-item img:hover {
            transform: scale(1.05);
        }

        @media (max-width: 576px) {
            .gallery-item img {
                height: 180px;
            }
        }
        /* new code # */

        .project-description {
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .btn-back {
            display: inline-block;
            margin-top: 2rem;
        }