
        /* Portfolio Details Hero */
        .portfolio-details-hero {
            background: linear-gradient(135deg, #4cc9f0 0%, #4361ee 100%);
            color: white;
            padding: 120px 0 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .portfolio-details-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('assets/images/portfolio/hero-pattern.png') center/cover no-repeat;
            opacity: 0.1;
        }
        
        .portfolio-details-hero h1 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            position: relative;
        }
        
        .portfolio-details-hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }
        
        .portfolio-details-breadcrumb {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 30px;
        }
        
        .portfolio-details-breadcrumb a {
            color: white;
            text-decoration: none;
            margin: 0 10px;
            transition: opacity 0.3s;
        }
        
        .portfolio-details-breadcrumb a:hover {
            opacity: 0.8;
        }
        
        .portfolio-details-breadcrumb i {
            font-size: 0.8rem;
        }
        
        /* Portfolio Details Content */
        .portfolio-details-container {
            padding: 80px 0;
        }
        
        .portfolio-details-grid {
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 40px;
        }
        
        @media (max-width: 992px) {
            .portfolio-details-grid {
                grid-template-columns: 1fr;
            }
        }
        
        /* Portfolio Main Content */
        .portfolio-main-content {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
        }
        
        .portfolio-featured-image {
            height: 500px;
            position: relative;
            overflow: hidden;
        }
        
        .portfolio-featured-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .portfolio-content-body {
            padding: 40px;
        }
        
        @media (max-width: 768px) {
            .portfolio-content-body {
                padding: 25px;
            }
        }
        
        .portfolio-content-header {
            margin-bottom: 30px;
        }
        
        .portfolio-category-badge {
            display: inline-block;
            background: #4361ee;
            color: white;
            padding: 5px 15px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .portfolio-title {
            font-size: 2rem;
            margin-bottom: 15px;
            font-weight: 700;
            color: #343a40;
        }
        
        .portfolio-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }
        
        .portfolio-meta-item {
            display: flex;
            align-items: center;
            color: #6c757d;
            font-size: 0.95rem;
        }
        
        .portfolio-meta-item i {
            color: #4361ee;
            margin-left: 8px;
            font-size: 1.1rem;
        }
        
        .portfolio-description {
            line-height: 1.9;
            margin-bottom: 30px;
            font-size: 1.05rem;
        }
        
        /* Portfolio Gallery */
        .portfolio-gallery-section {
            margin-bottom: 40px;
        }
        
        .section-title {
            font-size: 1.5rem;
            margin-bottom: 20px;
            font-weight: 600;
            position: relative;
            padding-right: 15px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 5px;
            height: 25px;
            background: #4361ee;
            border-radius: 5px;
        }
        
        .portfolio-gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
        }
        
        .gallery-item {
            height: 200px;
            border-radius: 8px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }
        
        .gallery-item:hover img {
            transform: scale(1.05);
        }
        
        .gallery-item-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .gallery-item:hover .gallery-item-overlay {
            opacity: 1;
        }
        
        .gallery-item-overlay i {
            color: white;
            font-size: 1.5rem;
        }
        
        /* Portfolio Technologies */
        .portfolio-technologies {
            margin-bottom: 40px;
        }
        
        .technologies-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .technology-badge {
            background: #4361ee;
            color: white;
            padding: 5px 15px;
            border-radius: 30px;
            font-size: 0.9rem;
        }
        
        /* Portfolio Testimonial */
        .portfolio-testimonial-card {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 10px;
            margin-bottom: 40px;
            position: relative;
        }
        
        .portfolio-testimonial-card::before {
            content: '\201C';
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 5rem;
            color: rgba(67, 97, 238, 0.1);
            font-family: serif;
            line-height: 1;
        }
        
        .testimonial-rating {
            color: #ffc107;
            margin-bottom: 15px;
        }
        
        .testimonial-content {
            font-style: italic;
            margin-bottom: 20px;
            line-height: 1.8;
            position: relative;
            z-index: 2;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .testimonial-author img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin-left: 15px;
            object-fit: cover;
        }
        
        .testimonial-author-info h5 {
            margin-bottom: 5px;
            font-size: 1.1rem;
        }
        
        .testimonial-author-info p {
            color: #6c757d;
            font-size: 0.9rem;
        }
        
        /* Portfolio Sidebar */
        .portfolio-sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        
        .sidebar-widget {
            background: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .widget-title {
            font-size: 1.3rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
            position: relative;
        }
        
        .widget-title::after {
            content: '';
            position: absolute;
            bottom: -1px;
            right: 0;
            width: 50px;
            height: 2px;
            background: #4361ee;
        }
        
        /* Project Info Widget */
        .project-info-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .project-info-item {
            display: flex;
            justify-content: space-between;
            padding-bottom: 15px;
            border-bottom: 1px dashed #eee;
        }
        
        .project-info-label {
            font-weight: 600;
            color: #495057;
        }
        
        .project-info-value {
            color: #6c757d;
        }
        
        /* Client Widget */
        .client-widget {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        
        .client-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            overflow: hidden;
            margin-bottom: 20px;
            border: 5px solid #f8f9fa;
        }
        
        .client-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .client-name {
            font-size: 1.3rem;
            margin-bottom: 5px;
            font-weight: 700;
        }
        
        .client-company {
            color: #6c757d;
            margin-bottom: 15px;
        }
        
        .client-social {
            display: flex;
            gap: 10px;
        }
        
        .client-social a {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background: #f8f9fa;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #6c757d;
            transition: all 0.3s;
        }
        
        .client-social a:hover {
            background: #4361ee;
            color: white;
        }
        
        /* Download Widget */
        .download-widget {
            background: linear-gradient(135deg, #4361ee 0%, #3a0ca3 100%);
            color: white;
            text-align: center;
            padding: 30px;
            border-radius: 10px;
        }
        
        .download-icon {
            font-size: 3rem;
            margin-bottom: 15px;
            color: rgba(255, 255, 255, 0.2);
        }
        
        .download-title {
            font-size: 1.3rem;
            margin-bottom: 15px;
        }
        
        .download-description {
            opacity: 0.8;
            margin-bottom: 20px;
            font-size: 0.95rem;
        }
        
        .download-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 25px;
            background: white;
            color: #4361ee;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .download-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .download-btn i {
            margin-right: 8px;
        }
        
        /* Related Projects */
        .related-projects {
            padding: 60px 0;
            background: #f8f9fa;
        }
        
        .related-title {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 50px;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .related-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: #4361ee;
        }
        
        .related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .related-item {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .related-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .related-item-image {
            height: 200px;
            position: relative;
            overflow: hidden;
        }
        
        .related-item-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .related-item:hover .related-item-image img {
            transform: scale(1.05);
        }
        
        .related-item-content {
            padding: 20px;
        }
        
        .related-item-category {
            display: inline-block;
            color: #4361ee;
            font-size: 0.9rem;
            margin-bottom: 10px;
            font-weight: 600;
        }
        
        .related-item-title {
            font-size: 1.2rem;
            margin-bottom: 10px;
            font-weight: 700;
        }
        
        .related-item-description {
            color: #6c757d;
            margin-bottom: 15px;
            line-height: 1.6;
            font-size: 0.95rem;
        }
        
        .related-item-link {
            color: #4361ee;
            font-size: 0.9rem;
            font-weight: 600;
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        
        .related-item-link i {
            margin-right: 5px;
        }
        
        /* Portfolio CTA */
        .portfolio-details-cta {
            background: linear-gradient(135deg, #4361ee 0%, #3a0ca3 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .portfolio-details-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('assets/images/portfolio/cta-pattern.png') center/cover no-repeat;
            opacity: 0.1;
        }
        
        .portfolio-details-cta .container {
            position: relative;
            z-index: 2;
        }
        
        .portfolio-details-cta h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
        }
        
        .portfolio-details-cta p {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }
        
        .portfolio-details-cta-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }
        
        .portfolio-details-cta-btn {
            padding: 12px 30px;
            border-radius: 5px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .portfolio-details-cta-btn-primary {
            background: white;
            color: #4361ee;
        }
        
        .portfolio-details-cta-btn-primary:hover {
            background: #f8f9fa;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .portfolio-details-cta-btn-outline {
            border: 2px solid white;
            color: white;
            background: transparent;
        }
        
        .portfolio-details-cta-btn-outline:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        /* Image Modal */
        .image-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 9999;
            display: none;
            align-items: center;
            justify-content: center;
        }
        
        .image-modal-content {
            max-width: 90%;
            max-height: 90%;
            position: relative;
        }
        
        .image-modal-content img {
            max-width: 100%;
            max-height: 90vh;
            display: block;
            border-radius: 5px;
        }
        
        .image-modal-close {
            position: absolute;
            top: -40px;
            right: 0;
            color: white;
            font-size: 2rem;
            cursor: pointer;
        }
        
        /* Responsive Styles */
        @media (max-width: 1200px) {
            .portfolio-featured-image {
                height: 400px;
            }
        }
        
        @media (max-width: 992px) {
            .portfolio-details-grid {
                grid-template-columns: 1fr;
            }
            
            .portfolio-sidebar {
                grid-row: 1;
            }
        }
        
        @media (max-width: 768px) {
            .portfolio-details-hero h1 {
                font-size: 2rem;
            }
            
            .portfolio-details-hero p {
                font-size: 1rem;
            }
            
            .portfolio-featured-image {
                height: 300px;
            }
            
            .portfolio-title {
                font-size: 1.7rem;
            }
            
            .related-title {
                font-size: 1.7rem;
            }
            
            .related-grid {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
        }
        
        @media (max-width: 576px) {
            .portfolio-details-hero {
                padding: 100px 0 60px;
            }
            
            .portfolio-featured-image {
                height: 250px;
            }
            
            .portfolio-meta {
                flex-direction: column;
                gap: 10px;
            }
            
            .portfolio-gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
            
            .related-grid {
                grid-template-columns: 1fr;
            }
            
            .portfolio-details-cta h2 {
                font-size: 1.8rem;
            }
            
            .portfolio-details-cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .portfolio-details-cta-btn {
                width: 100%;
                max-width: 250px;
            }
        }
    