    /* Header Styles */
        .subheader {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            padding: 60px 0 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .subheader::after {
            content: '';
            position: absolute;
            bottom: -50px;
            left: 0;
            width: 100%;
            height: 100px;
            background-color: var(--light);
            clip-path: polygon(0 50%, 100% 0, 100% 100%, 0% 100%);
        }
        
        .subheader h1 {
            font-size: 3rem;
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .subheader p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            opacity: 0.9;
        }
        .feature-icon {
    background-color: var(--primary-light);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex
;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}



		 
        /* Introduction Section */
        .intro-section {
            padding: 80px 0 40px;
            text-align: center;
        }
        
        .intro-section h2 {
            color: var(--secondary);
            font-size: 2.2rem;
            margin-bottom: 20px;
        }
        
        .intro-section p {
            max-width: 800px;
            margin: 0 auto 30px;
            font-size: 1.1rem;
        }
        
        /* Project Showcase */
        .project-showcase {
            padding: 40px 0 80px;
        }
        
        .project {
            margin-bottom: 100px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }
        
        .project-header {
            background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
            color: white;
            padding: 30px;
            position: relative;
        }
        
        .project-title {
            font-size: 2rem;
            margin-bottom: 10px;
        }
        
        .project-url {
            color: white;
            opacity: 0.9;
            text-decoration: none;
            font-weight: 500;
            transition: opacity 0.3s ease;
            display: inline-flex;
            align-items: center;
        }
        
        .project-url:hover {
            opacity: 1;
            text-decoration: underline;
        }
        
        .project-url svg {
            margin-right: 5px;
        }
        
        .project-content {
            display: flex;
            flex-wrap: wrap;
        }
        
        .project-image {
            flex: 1;
            min-width: 300px;
            padding: 30px;
        }
        
        .project-image img {
            width: 100%;
            height: auto;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .project-details {
            flex: 1;
            min-width: 300px;
            padding: 30px;
        }
        
        .project-description {
            margin-bottom: 30px;
            font-size: 1.05rem;
        }
        
        .feature-list {
            list-style-type: none;
        }
        
        .feature-item {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }
        
        .feature-icon {
            background-color: var(--primary-light);
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .feature-text h4 {
            color: var(--secondary);
            margin-bottom: 5px;
        }
        
        .testimonial {
            background-color: var(--light);
            padding: 20px;
            border-radius: 5px;
            margin-top: 30px;
            border-left: 4px solid var(--accent);
            font-style: italic;
        }
        
        .technologies {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 30px;
			padding: 20px 6px;
			background-color: var(--light);
        }
        
        .tech-tag {
            background-color: var(--gray);
            color: var(--text);
            padding: 5px 12px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 500;
        }
        
        /* Featured Project (Chrome Study) */
        .featured-project {
            position: relative;
        }
        
        .featured-badge {
            position: absolute;
            top: -15px;
            right: 30px;
            background-color: var(--accent);
            color: var(--dark);
            padding: 8px 15px;
            border-radius: 5px;
            font-weight: bold;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
        }
        
        /* Call to Action */
        .cta-section {
            text-align: center;
            padding: 60px 0;
            background-color: white;
            margin-bottom: 80px;
        }
        
        .cta-section h2 {
            color: var(--secondary);
            margin-bottom: 20px;
        }
        
        .cta-button {
            background-color: var(--primary);
            color: white;
            padding: 12px 25px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            transition: background-color 0.3s ease;
        }
        
        .cta-button:hover {
            background-color: var(--secondary);
        }
		
		
		      
    
        /* Responsive */
        @media (max-width: 768px) {
            header h1 {
                font-size: 2.2rem;
            }
            
            header p {
                font-size: 1rem;
            }
            
            .project-content {
                flex-direction: column;
            }
            
            .featured-badge {
                top: auto;
                bottom: -15px;
                right: auto;
                left: 30px;
            }
        }