  .project-hero-section {
        background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
        padding: 60px 0 40px;
        position: relative;
        overflow: hidden;
    }
    
    .project-hero-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(249, 85, 109, 0.1) 0%, transparent 70%);
        border-radius: 50%;
        z-index: 1;
    }
    
    .project-hero-section::after {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -10%;
        width: 200px;
        height: 200px;
        background: radial-gradient(circle, rgba(1, 53, 141, 0.08) 0%, transparent 70%);
        border-radius: 50%;
        z-index: 1;
    }
    
    .project-hero-content {
        position: relative;
        z-index: 2;
    }
    
    .project-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: #01358d;
        margin-bottom: 1rem;
        line-height: 1.2;
        position: relative;
    }
    
    .project-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #F9556D, #01358d);
        border-radius: 2px;
    }
    
    .project-category-badge {
        display: inline-block;
        background: linear-gradient(135deg, #F9556D, #ff6b7a);
        color: white;
        padding: 8px 20px;
        border-radius: 25px;
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 20px;
        box-shadow: 0 4px 15px rgba(249, 85, 109, 0.3);
        transition: all 0.3s ease;
    }
    
    .project-category-badge:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(249, 85, 109, 0.4);
    }
    
    .project-gallery {
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        background: white;
    }
    
    .project-gallery .item img {
        width: 100%;
        height: 500px;
        object-fit: cover;
        transition: transform 0.3s ease;
    }
    
    .project-gallery .item:hover img {
        transform: scale(1.05);
    }
    
    .project-content {
        background: white;
        border-radius: 15px;
        padding: 40px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        height: 100%;
    }
    
    .project-content h1 {
        color: #01358d;
        font-size: 2rem;
        font-weight: 600;
        margin-bottom: 20px;
    }
    
    .project-content p {
        color: #5B6880;
        line-height: 1.8;
        margin-bottom: 20px;
    }
    
    .project-content h2, .project-content h3, .project-content h4 {
        color: #01358d;
        margin-top: 30px;
        margin-bottom: 15px;
    }
    
    .sidebar-modern {
        background: white;
        border-radius: 15px;
        padding: 30px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        height: fit-content;
        position: sticky;
        top: 100px;
    }
    
    .sidebar-modern .widget-title {
        color: #01358d;
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 25px;
        position: relative;
        padding-bottom: 15px;
    }
    
    .sidebar-modern .widget-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 3px;
        background: linear-gradient(90deg, #F9556D, #01358d);
        border-radius: 2px;
    }
    
    .sidebar-modern ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .sidebar-modern ul li {
        margin-bottom: 12px;
        transition: all 0.3s ease;
    }
    
    .sidebar-modern ul li a {
        display: block;
        padding: 12px 20px;
        color: #5B6880;
        text-decoration: none;
        border-radius: 8px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .sidebar-modern ul li a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 0;
        height: 100%;
        background: linear-gradient(90deg, rgba(249, 85, 109, 0.1), rgba(1, 53, 141, 0.1));
        transition: width 0.3s ease;
    }
    
    .sidebar-modern ul li a:hover {
        color: #F9556D;
        background: rgba(249, 85, 109, 0.05);
        transform: translateX(5px);
    }
    
    .sidebar-modern ul li a:hover::before {
        width: 100%;
    }
    
    .related-section {
        background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
        padding: 80px 0;
        position: relative;
    }
    
    .related-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(1, 53, 141, 0.2), transparent);
    }
    
    .section-title-modern {
        text-align: center;
        margin-bottom: 50px;
    }
    
    .section-title-modern h2 {
        color: #01358d;
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 15px;
        position: relative;
    }
    
    .section-title-modern h2::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #F9556D, #01358d);
        border-radius: 2px;
    }
    
    .product-card-modern {
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        height: 100%;
    }
    
    .product-card-modern:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }
    
    .product-card-modern .thumb {
        position: relative;
        overflow: hidden;
        height: 250px;
    }
    
    .product-card-modern .thumb img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: transform 0.3s ease;
    }
    
    .product-card-modern:hover .thumb img {
        transform: scale(1.1);
    }
    
    .product-card-modern .cart-btn {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(1, 53, 141, 0.9);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: all 0.3s ease;
    }
    
    .product-card-modern:hover .cart-btn {
        opacity: 1;
    }
    
      .product-card-modern .cart-btn .btn {
        background: #F9556D;
        color: white;
        border: none;
        font-weight: 500;
        transition: all 0.3s ease;
        white-space: normal;
        word-wrap: break-word;
        text-align: center;
        line-height: 1.4;
        max-width: 100%;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .product-card-modern .cart-btn .btn:hover {
        background: #01358d;
        transform: scale(1.05);
    }
    
    .product-card-modern .content {
        padding: 25px;
    }
    
    .product-card-modern .content a {
        color: #01358d;
        font-size: 1.1rem;
        font-weight: 600;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .product-card-modern .content a:hover {
        color: #F9556D;
    }
    
    .breadcrumb-modern {
        background: white;
        padding: 20px 0;
        border-bottom: 1px solid #f0f0f0;
        margin-top: 90px;
    }
    
    .breadcrumb-modern ul {
        display: flex;
        align-items: center;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    
    .breadcrumb-modern ul li {
        font-size: 14px;
        font-weight: 500;
        color: #01358d;
        margin-right: 10px;
        display: flex;
        align-items: center;
    }
    
    .breadcrumb-modern ul li:not(:last-child)::after {
        content: '›';
        margin-left: 10px;
        color: #F9556D;
        font-weight: bold;
    }
    
    .breadcrumb-modern ul li a {
        color: #5B6880;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .breadcrumb-modern ul li a:hover {
        color: #F9556D;
    }
    
    @media (max-width: 768px) {
        .project-title {
            font-size: 2rem;
        }
        
        .project-content {
            padding: 25px;
        }
        
        .sidebar-modern {
            margin-top: 30px;
            position: static;
        }
        
        .section-title-modern h2 {
            font-size: 2rem;
        }
    }