  /* Portfolio specific styles - matching existing design */
    .portfolio-filter .btn {
        border-radius: 50px;
        padding: 8px 24px;
        font-size: 14px;
        font-weight: 500;
        transition: all 0.3s ease;
        background: transparent;
        border: 1px solid rgba(0,0,0,0.1);
    }
    .portfolio-filter .btn:hover,
    .portfolio-filter .btn.active {
        background: var(--primary, #fabd00);
        border-color: var(--primary, #fabd00);
        color: #fff;
    }
    
    /* ========== ENTERPRISE STYLING ========== */
    .project-card {
        background: #fff;
        border-radius: 24px;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        box-shadow: 0 20px 35px -12px rgba(0,0,0,0.08);
        height: 100%;
        cursor: pointer;
        position: relative;
        backdrop-filter: blur(0px);
        border: 1px solid rgba(255,255,255,0.3);
    }
    .project-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 30px 50px -15px rgba(0,0,0,0.2);
        border-color: rgba(250,189,0,0.3);
    }
    
    /* Image Container - clean aspect ratio */
    .project-img {
        height: 280px;
        overflow: hidden;
        background: linear-gradient(145deg, #0b1428, #121b36);
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    .project-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease, filter 0.4s ease;
        will-change: transform;
    }
    .project-card:hover .project-img img {
        transform: scale(1.08);
        filter: brightness(0.7) blur(1px);
    }
    
    /* Premium Overlay - only shows on hover, NO "Click to view" */
    .project-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(13,27,62,0.92) 0%, rgba(26,42,79,0.96) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.35s ease, backdrop-filter 0.3s;
        backdrop-filter: blur(2px);
    }
    .project-card:hover .project-overlay {
        opacity: 1;
    }
    
    /* Overlay Content - App Category + Title (no extra text) */
    .overlay-content {
        text-align: center;
        padding: 1.2rem;
        transform: translateY(15px);
        transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    }
    .project-card:hover .overlay-content {
        transform: translateY(0);
    }
    .overlay-icon {
        font-size: 3rem;
        margin-bottom: 0.75rem;
        display: inline-block;
        background: rgba(250,189,0,0.2);
        padding: 0.5rem 1rem;
        border-radius: 60px;
        backdrop-filter: blur(4px);
    }
    .overlay-category {
        font-size: 0.8rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
        background: rgba(250,189,0,0.9);
        display: inline-block;
        padding: 0.25rem 1rem;
        border-radius: 30px;
        color: #0b1428;
        margin-bottom: 0.75rem;
    }
    .overlay-title {
        font-size: 1.35rem;
        font-weight: 700;
        color: white;
        margin: 0;
        line-height: 1.3;
        text-shadow: 0 1px 2px rgba(0,0,0,0.2);
        letter-spacing: -0.2px;
    }
    .overlay-sub {
        font-size: 0.75rem;
        color: rgba(255,255,255,0.7);
        margin-top: 0.5rem;
        letter-spacing: 0.3px;
    }
    
    /* Bottom content (visible without hover) */
    .project-content {
        padding: 1.25rem 1.2rem 1.4rem;
        text-align: left;
        background: white;
        border-top: 1px solid rgba(0,0,0,0.03);
    }
    .project-category {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 4px 12px;
        background: rgba(250,189,0,0.1);
        color: var(--primary, #fabd00);
        border-radius: 50px;
        font-size: 0.7rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }
    .project-title {
        font-size: 1.15rem;
        font-weight: 800;
        margin-bottom: 0;
        color: #0d1b3e;
        transition: color 0.2s;
        line-height: 1.3;
    }
    .project-card:hover .project-title {
        color: #fabd00;
    }
    
    /* ===== NEW MODAL STYLES ===== */
.project-modal .modal-dialog {
    max-width: 900px;
}
.project-modal .modal-content {
    border-radius: 20px;
    overflow: hidden;
    border: none;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    display: flex;
    flex-direction: row;
}
.pm-left {
    width: 52%;
    background: #0b1428;
    position: relative;
    min-height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}
.pm-left img {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
    display: block;
}
.pm-badge-left {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(0,0,0,0.65);
    border-left: 3px solid #fabd00;
    border-radius: 0 8px 8px 0;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(8px);
}
.pm-badge-cat {
    font-size: 11px;
    font-weight: 700;
    background: rgba(250,189,0,0.2);
    color: #fabd00;
    padding: 3px 10px;
    border-radius: 20px;
    white-space: nowrap;
}
.pm-badge-title {
    font-size: 12px;
    color: #fff;
    font-weight: 500;
}
.pm-right {
    flex: 1;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    background: #fff;
    position: relative;
}
.pm-close-btn {
    position: absolute;
    top: 14px; right: 14px;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: #f4f4f4;
    border: none;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    color: #333;
    transition: all 0.2s;
    line-height: 1;
    z-index: 5;
}
.pm-close-btn:hover { background: #fabd00; color: #0b1428; transform: rotate(90deg); }
.pm-cat-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    background: rgba(250,189,0,0.1);
    color: #b38900;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
    width: fit-content;
}
.pm-modal-title {
    font-size: 20px;
    font-weight: 800;
    color: #0d1b3e;
    line-height: 1.3;
    margin-bottom: 10px;
}
.pm-divider {
    width: 40px; height: 3px;
    background: #fabd00;
    border-radius: 2px;
    margin-bottom: 14px;
}
.pm-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    flex: 1;
}
.pm-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 1.25rem;
}
.pm-tag {
    padding: 4px 12px;
    background: #f0f2f8;
    color: #0d1b3e;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
}
.pm-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}
.pm-btn-primary {
    flex: 1;
    padding: 11px 16px;
    background: #fabd00;
    color: #0b1428;
    border: none;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    min-width: 120px;
    transition: opacity 0.2s;
}
.pm-btn-primary:hover { opacity: 0.85; color: #0b1428; }
.pm-btn-secondary {
    flex: 1;
    padding: 11px 16px;
    background: transparent;
    color: #0d1b3e;
    border: 1.5px solid #ddd;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    min-width: 120px;
    transition: all 0.2s;
}
.pm-btn-secondary:hover { border-color: #fabd00; color: #b38900; }
.pm-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}
.pm-nav-btn {
    background: #f4f4f4;
    border: none;
    border-radius: 50px;
    padding: 7px 16px;
    font-size: 12px;
    color: #444;
    cursor: pointer;
    transition: all 0.2s;
}
.pm-nav-btn:hover { background: #fabd00; color: #0b1428; }
.pm-nav-count { font-size: 12px; color: #aaa; }

@media (max-width: 768px) {
    .project-modal .modal-content { flex-direction: column !important; border-radius: 16px; }
    .pm-left { width: 100% !important; min-height: 220px !important; }
    .pm-modal-title { font-size: 17px; }
    .pm-right { padding: 1.25rem; }
}