
        /* Portfolio Hero */
        .portfolio-hero {
            padding: 150px 0 50px;
            background: rgb(123 61 255 / 24%);
            position: relative;
            overflow: hidden;
            text-align: center;
            margin-bottom: -50px;
        }
        
                
        .portfolio-hero-container {
            position: relative;
            z-index: 1;
        }
        
        .portfolio-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--dark-color);
        }
        
        .portfolio-hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
            color: var(--gray-color);
        }
        
        /* Portfolio Section */
        .portfolio {
            padding: 80px 0;
            background: white;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 80px;
        }
        
        .heading-title h3 {
            font-size: 1.2rem;
            color: #7b3dff;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--dark-color);
            margin-bottom: 15px;
        }
        
        .section-title p {
            color: var(--gray-color);
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* Portfolio Container */
        .portfolio-container {
            display: flex;
            flex-direction: column;
            gap: 4rem;
        }
        
        .portfolio-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 3rem;
            background: #fff;
            border-radius: 35px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }
        
        .portfolio-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        
        .portfolio-item.reverse {
            flex-direction: row-reverse;
            background-color: rgba(123, 61, 255, 0.08);
        }
        
        .portfolio-img {
            flex: 1;
            border-radius: 20px;
            overflow: hidden;
            padding: 5px;
            
        }
        
        .portfolio-img img {
            width: 100%;
            height: auto;
            border-radius: 20px;
            transition: transform 0.5s ease;
        }
        
        .portfolio-item:hover .portfolio-img img {
            transform: scale(1.03);
        }
        
        .portfolio-info {
            flex: 1;
            position: relative;
        }
        
        .infocontainer {
            padding: 1rem;
        }
        
        .projectsviewbtn {
            margin-bottom: 1.5rem;
        }
        
        .projectsviewbtn p {
            margin: 0;
           
        }

        .projectdescshort {
            font-size: 0.5rem;
        }
        
        .projectsviewbtn a {
            text-decoration: none;
            color: #7b3dff;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }
        
        .projectsviewbtn a:hover {
            color: #5a22d4;
            gap: 12px;
        }
        
        .portfolio-info h3 {
            font-size: 1.8rem;
            color: #7b3dff;
            margin-bottom: 1rem;
            font-weight: 600;
        }
        
        .portfolio-info > p {
            color: #555;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }
        
        .portfolio-features {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        
        .portfolio-features li {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 15px;
            margin-bottom: 12px;
            color: #444;
        }
        
        .portfolio-features li img {
            width: 20px;
            height: 20px;
        }
        
        .portfolio-category {
            display: inline-block;
            background: #7b3dff;
            color: #fff;
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            position: absolute;
            right: 0;
            top: 0;
        }
        
        .section-footer {
            text-align: center;
            margin-top: 60px;
        }
        

        
        /* Portfolio Filters */
        .portfolio-filters {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 50px;
            gap: 10px;
        }
        
        .filter-btn {
            padding: 10px 25px;
            background: transparent;
            border: 2px solid #7b3dff;
            border-radius: 30px;
            color: #7b3dff;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .filter-btn.active, .filter-btn:hover {
            background: #7b3dff;
            color: white;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
        .portfolio-item, .portfolio-item.reverse {
            flex-direction: column;
            text-align: center;
            background-color: whitesmoke;
            outline: solid 2px #7b3dff;
        }
            
            .portfolio-img {
                max-width: 100%;
                padding: 5px;
                background-color: none;
                box-shadow: none;
            }
            
            .portfolio-info {
                width: 100%;
            }
        }
        
        @media (max-width: 768px) {
            .portfolio-hero h1 {
                font-size: 2.5rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .portfolio-item {
                padding: 1.0rem;
                gap: 2rem;
            }
            
            .portfolio-info h3 {
                font-size: 1.5rem;
            }
        }
        
        @media (max-width: 576px) {
            section {
                padding: 60px 0;
            }
            
            .portfolio-hero {
                padding: 120px 0 60px;
            }
            
            .portfolio-hero h1 {
                font-size: 2rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .portfolio-filters {
                flex-direction: column;
                align-items: center;
            }
            
            .filter-btn {
                width: 200px;
                text-align: center;
            }
            
            .portfolio-hero p {
            font-size: 0.9rem;
            max-width: 700px;
            margin: 0 auto 30px;
            color: var(--gray-color);
        }
                .infocontainer {
            padding: 1rem;
            text-align: left;
        }
        
        }
        
        /* Screen Reader Only Styles */
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
    