        .sidebar-info {

            padding: 40px;

            background: rgba(255, 255, 255, 0.05);

            border-radius: 8px;

        }



        .info-block {

            margin-bottom: 30px;

        }



        .info-block h6 {

            text-transform: uppercase;

            letter-spacing: 1px;

            color: #777;

            margin-bottom: 10px;

            font-size: 11px;

        }



        .info-block p {

            color: #000;

            font-weight: 500;

            margin-bottom: 0px;

        }



        .projects-grid-list {

            display: grid;

            grid-template-columns: repeat(auto-fill, minmax(45%, 1fr));

            gap: 20px;

            margin-top: 50px;

        }



        .project-item {

            padding: 20px 25px;

            border: 1px solid rgba(0, 0, 0, 0.05);

            margin-bottom: 0px;

            border-radius: 6px;

            transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);

            background: rgba(255, 255, 255, 0.2);

            display: flex;

            align-items: center;

        }



        .project-item:hover {

            background: #b8b8b8;

            /* transform: translateY(-5px) scale(1.02); */

            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);

            border-color: #585858;

        }



        .project-item span {

            font-size: 15px;

            color: #000;

            font-weight: 400;

            line-height: 1.4;

        }



        .project-item:before {

            content: "\f061";

            font-family: "Font Awesome 6 Free";

            font-weight: 900;

            margin-right: 20px;

            font-size: 12px;

            color: #777;

            transition: all 0.3s ease;

        }



        .project-item:hover:before {

            color: #000;

            transform: translateX(5px);

        }



        @media (max-width: 768px) {

            .projects-grid-list {

                grid-template-columns: 1fr;

            }



            .sidebar-info {

                padding: 30px 20px;

            }

        }

        .p-styling {

            width: 80%;
            text-align: justify;
            padding-bottom: 3%;
            font-size: 1.1rem;
            line-height: 140%;
        }

        .pt-less {
            padding-top: 3vw !important;
        }

        .flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}
