 /* Portfolio Details Page Styles */
        .portfolio-details {
            padding: 10px 0 50px;
            background: #f8f9fa;
        }
       
        .portfolio-header {
            margin-bottom: 40px;
            text-align: center;
        }
       
        .portfolio-header h1 {
            color: #333;
            margin-bottom: 15px;
            font-weight: 700;
        }
       
        .portfolio-header .breadcrumb {
            background: transparent;
            justify-content: center;
            margin-bottom: 0;
        }
       
        .breadcrumb-item a {
            color: #007bff;
            text-decoration: none;
        }
       
        .breadcrumb-item.active {
            color: #6c757d;
        }
       
        .portfolio-content {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            overflow: hidden;
            margin-bottom: 30px;
        }
       
        .portfolio-image {
            width: 100%;
            height: 400px;
            overflow: hidden;
        }
       
        .portfolio-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            /* Removed hover effect - image stays static */
        }
       
        .portfolio-info {
            padding: 30px;
        }
       
        .project-title {
            font-size: 28px;
            color: #333;
            margin-bottom: 20px;
            font-weight: 700;
        }
       
        .project-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }
       
        .meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }
       
        .meta-icon {
            color: #007bff;
            font-size: 18px;
        }
       
        .meta-label {
            font-weight: 600;
            color: #555;
        }
       
        .meta-value {
            color: #333;
        }
       
        .project-description {
            margin-bottom: 30px;
        }
       
        .project-description h3 {
            color: #333;
            margin-bottom: 15px;
            font-size: 22px;
        }
       
        .project-description p {
            color: #666;
            line-height: 1.8;
            margin-bottom: 15px;
        }
       
        .project-features {
            margin-bottom: 30px;
        }
       
        .project-features h3 {
            color: #333;
            margin-bottom: 20px;
            font-size: 22px;
            border-bottom: 2px solid #007bff;
            padding-bottom: 10px;
        }
       
        /* Features List Styles - Similar to Image */
        .features-container {
            background: #fff;
            border-radius: 8px;
            padding: 25px;
            border-left: 5px solid #28a745;
        }
       
        .feature-category {
            margin-bottom: 25px;
        }
       
        .feature-category:last-child {
            margin-bottom: 0;
        }
       
        .category-title {
            font-size: 20px;
            color: #333;
            margin-bottom: 15px;
            font-weight: 600;
            border-bottom: 1px solid #eee;
            padding-bottom: 8px;
        }
       
        .features-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
       
        .features-list li {
            padding: 10px 0;
            padding-left: 35px;
            position: relative;
            color: #555;
            line-height: 1.6;
            font-size: 16px;
            border-bottom: 1px solid #f0f0f0;
        }
       
        .features-list li:last-child {
            border-bottom: none;
        }
       
        .features-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #28a745;
            font-size: 18px;
            font-weight: bold;
            width: 25px;
            height: 25px;
            background: #e8f5e9;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
       
        /* Alternative checkmark style with Font Awesome */
        .features-list.fa-check li:before {
            content: "\f00c";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            font-size: 14px;
            background: #28a745;
            color: white;
        }
       
        /* Simple tick style */
        .features-list.simple-tick li:before {
            content: "✓";
            color: #28a745;
            font-size: 20px;
            background: none;
            width: auto;
            height: auto;
        }
       
        .no-features {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 8px;
            text-align: center;
            color: #666;
            font-style: italic;
            border: 1px dashed #ddd;
        }
       
        .no-features i {
            font-size: 24px;
            margin-bottom: 10px;
            display: block;
            color: #6c757d;
        }
       
        /* Feature Grid Layout */
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
       
        .feature-card {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            border-top: 3px solid #28a745;
        }
       
        .feature-card h4 {
            color: #333;
            margin-bottom: 10px;
            font-size: 18px;
            font-weight: 600;
        }
       
        .feature-card p {
            color: #666;
            margin: 0;
            font-size: 14px;
        }
       
        .project-links {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }
       
        .btn-visit, .btn-back {
            padding: 12px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
       
        .btn-visit {
            background: #007bff;
            color: white;
            border: 2px solid #007bff;
        }
       
        .btn-visit:hover {
            background: transparent;
            color: #007bff;
        }
       
        .btn-back {
            background: #6c757d;
            color: white;
            border: 2px solid #6c757d;
        }
       
        .btn-back:hover {
            background: transparent;
            color: #6c757d;
        }
       
        .related-projects {
            padding: 50px 0;
            background: white;
        }
       
        .section-title {
            text-align: center;
            margin-bottom: 40px;
        }
       
        .section-title h2 {
            color: #333;
            font-size: 32px;
            margin-bottom: 15px;
        }
        
        
        .tiny-border {
            width: 50px;
            height: 3px;
            background: #007bff;
            margin: 0 auto 30px;
        }
       
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }
       
        .project-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
       
        .project-card:hover {
            transform: translateY(-10px);
        }
       
        .project-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
       
        .card-content {
            padding: 20px;
        }
       
        .card-content h3 {
            color: #333;
            margin-bottom: 10px;
            font-size: 18px;
        }
       
        .card-content .category {
            color: #007bff;
            font-size: 14px;
            margin-bottom: 15px;
            display: block;
        }
       
        .card-content p {
            color: #666;
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 15px;
        }
       
        .card-link {
            color: #007bff;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }
       
        .card-link:hover {
            color: #0056b3;
        }
       
        /* Feature count badge */
        .feature-count {
            background: #28a745;
            color: white;
            padding: 2px 10px;
            border-radius: 12px;
            font-size: 12px;
            margin-left: 10px;
            font-weight: normal;
        }
       
        @media (max-width: 768px) {
            .portfolio-details {
                padding: 80px 0 30px;
            }
           
            .project-title {
                font-size: 24px;
            }
           
            .portfolio-image {
                height: 300px;
            }
           
            .project-meta {
                flex-direction: column;
                gap: 15px;
            }
           
            .project-links {
                flex-direction: column;
            }
           
            .projects-grid {
                grid-template-columns: 1fr;
            }
           
            .feature-grid {
                grid-template-columns: 1fr;
            }
           
            .features-list li {
                padding-left: 30px;
            }
        }
 