/* XK Interactive - Advanced Service Cards Styles */
/* Interactive service showcases with animations and hover effects */

/* Service Card Container */
.service-card {
    background: linear-gradient(135deg, #0D1117 0%, #161B22 100%);
    border: 1px solid #30363D;
    border-radius: 16px;
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 210, 63, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #FF6B35;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
}

.service-card.hovered {
    transform: translateY(-10px) scale(1.02);
    border-color: #FF6B35;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
}

/* Service Card Header */
.service-card-header {
    position: relative;
    padding: 2rem 2rem 1rem;
    z-index: 2;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF6B35 0%, #FFD23F 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #000;
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #FF6B35 0%, #FFD23F 100%);
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.service-card:hover .service-icon::before {
    opacity: 0.3;
}

.service-icon .icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-icon .icon-bg {
    opacity: 1;
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 107, 53, 0.1);
    color: #FF6B35;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.service-badge.featured {
    background: linear-gradient(135deg, #FF6B35 0%, #FFD23F 100%);
    color: #000;
    border: none;
}

/* Service Card Body */
.service-card-body {
    padding: 0 2rem 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    z-index: 2;
    position: relative;
}

.service-title {
    color: #F0F6FC;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-description {
    color: #8B949E;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Service Features */
.service-features {
    margin-bottom: 1.5rem;
}

.service-features h5 {
    color: #F0F6FC;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    color: #8B949E;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
}

.service-card.animate-in .feature-list li {
    opacity: 1;
    transform: translateX(0);
}

.feature-list li i {
    color: #FF6B35;
    margin-right: 0.75rem;
    font-size: 0.8rem;
}

.feature-more {
    margin-top: 0.5rem;
}

.btn-more-features {
    background: none;
    border: none;
    color: #FF6B35;
    font-size: 0.85rem;
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.btn-more-features:hover {
    color: #FFD23F;
}

/* Service Pricing */
.service-pricing {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 107, 53, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.1);
    border-radius: 12px;
}

.price-display {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.price-from {
    color: #8B949E;
    font-size: 0.8rem;
}

.price-amount {
    color: #FF6B35;
    font-size: 1.5rem;
    font-weight: 700;
}

.price-period {
    color: #8B949E;
    font-size: 0.9rem;
}

.price-discount {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.discount-badge {
    background: #28A745;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
}

.original-price {
    color: #8B949E;
    font-size: 0.8rem;
    text-decoration: line-through;
}

/* Service Stats */
.service-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-top: 1px solid #30363D;
    border-bottom: 1px solid #30363D;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    color: #FF6B35;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-label {
    color: #8B949E;
    font-size: 0.8rem;
}

/* Service Card Footer */
.service-card-footer {
    padding: 1.5rem 2rem 2rem;
    margin-top: auto;
    z-index: 2;
    position: relative;
}

.service-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-actions .btn {
    flex: 1;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.service-actions .btn:hover {
    transform: translateY(-2px);
}

/* Portfolio Thumbnails */
.service-portfolio {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.portfolio-label {
    color: #8B949E;
    font-size: 0.8rem;
    white-space: nowrap;
}

.portfolio-thumbnails {
    display: flex;
    gap: 0.5rem;
}

.portfolio-thumb {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.portfolio-thumb:hover {
    border-color: #FF6B35;
    transform: scale(1.1);
}

.portfolio-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Service Overlay */
.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.95) 0%, rgba(255, 210, 63, 0.95) 100%);
    color: #000;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
}

.service-card:hover .service-overlay {
    opacity: 1;
    visibility: visible;
}

.overlay-content {
    text-align: center;
}

.overlay-content h4 {
    color: #000;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.benefit-list li {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.benefit-list li i {
    color: #000;
    margin-right: 0.5rem;
}

.overlay-cta .btn {
    background: #000;
    color: #FF6B35;
    border: 2px solid #000;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
}

.overlay-cta .btn:hover {
    background: transparent;
    color: #000;
    border-color: #000;
}

/* Service Statistics Cards */
.stat-card {
    background: linear-gradient(135deg, #0D1117 0%, #161B22 100%);
    border: 1px solid #30363D;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: #FF6B35;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.stat-card .stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF6B35 0%, #FFD23F 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #000;
    margin: 0 auto 1.5rem;
}

.stat-card .stat-number {
    color: #FF6B35;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-card .stat-label {
    color: #8B949E;
    font-size: 1rem;
    font-weight: 500;
}

/* Feature Modal */
.feature-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.feature-modal.show {
    opacity: 1;
    visibility: visible;
}

.feature-modal .modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 17, 23, 0.8);
    backdrop-filter: blur(5px);
}

.feature-modal .modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #161B22;
    border: 1px solid #30363D;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.feature-modal .modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid #30363D;
}

.feature-modal .modal-header h4 {
    color: #F0F6FC;
    margin: 0;
}

.feature-modal .modal-close {
    background: none;
    border: none;
    color: #8B949E;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.feature-modal .modal-close:hover {
    color: #FF6B35;
    background: rgba(255, 107, 53, 0.1);
}

.feature-modal .modal-body {
    padding: 1.5rem;
    color: #8B949E;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-card {
        margin-bottom: 2rem;
    }

    .service-card-header {
        padding: 1.5rem 1.5rem 1rem;
    }

    .service-card-body {
        padding: 0 1.5rem 1rem;
    }

    .service-card-footer {
        padding: 1rem 1.5rem 1.5rem;
    }

    .service-actions {
        flex-direction: column;
    }

    .service-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-item {
        text-align: left;
    }

    .service-portfolio {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Animation classes */
.service-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.service-card.filter-show {
    opacity: 1;
    transform: scale(1);
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .service-card,
    .service-icon,
    .feature-list li,
    .portfolio-thumb,
    .service-overlay {
        transition: none;
    }

    .service-card:hover {
        transform: none;
    }
}

/* ===== PORTFOLIO CARDS STYLES ===== */
/* Rich project presentations with interactive features */

/* Portfolio Card Container */
.portfolio-card {
    background: linear-gradient(135deg, #0D1117 0%, #161B22 100%);
    border: 1px solid #30363D;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    border-color: #FF6B35;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
}

.portfolio-card.hovered {
    transform: translateY(-8px);
    border-color: #FF6B35;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
}

/* Portfolio Image Container */
.portfolio-image-container {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.portfolio-card:hover .portfolio-image {
    transform: scale(1.1);
}

/* Portfolio Overlay */
.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.9) 0%, rgba(255, 210, 63, 0.9) 100%);
    color: #000;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(2px);
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
    visibility: visible;
}

.overlay-content {
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.portfolio-card:hover .overlay-content {
    transform: translateY(0);
}

.project-category {
    background: rgba(0, 0, 0, 0.2);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.overlay-content .project-title {
    color: #000;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.project-excerpt {
    color: #000;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

/* Project Stats in Overlay */
.project-stats {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.project-stats .stat-item {
    text-align: center;
}

.project-stats .stat-value {
    display: block;
    color: #000;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.project-stats .stat-label {
    color: #000;
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Project Actions in Overlay */
.project-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.project-actions .btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    border-radius: 6px;
    font-weight: 600;
}

.project-actions .btn-light {
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    border: none;
}

.project-actions .btn-primary {
    background: #000;
    color: #FF6B35;
    border: 2px solid #000;
}

/* Project Badges */
.project-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 5;
}

.project-badges .badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.project-badges .badge.featured {
    background: linear-gradient(135deg, #FF6B35 0%, #FFD23F 100%);
    color: #000;
}

.project-badges .badge.award {
    background: #28A745;
    color: white;
}

/* Technology Stack */
.tech-stack {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
    z-index: 5;
}

.tech-badge {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 500;
    backdrop-filter: blur(5px);
}

.tech-more {
    background: rgba(255, 107, 53, 0.8);
    color: #000;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
}

/* Portfolio Content */
.portfolio-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: #8B949E;
}

.portfolio-title {
    margin-bottom: 1rem;
}

.portfolio-title a {
    color: #F0F6FC;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    transition: color 0.2s ease;
}

.portfolio-title a:hover {
    color: #FF6B35;
}

.portfolio-description {
    color: #8B949E;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Project Highlights */
.project-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: #8B949E;
}

.highlight-item i {
    width: 16px;
    text-align: center;
}

/* Portfolio Footer */
.portfolio-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #30363D;
}

.project-tags {
    display: flex;
    gap: 0.5rem;
}

.project-tags .tag {
    background: rgba(255, 107, 53, 0.1);
    color: #FF6B35;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

/* Portfolio Actions */
.portfolio-actions {
    display: flex;
    gap: 0.5rem;
}

.action-btn {
    background: none;
    border: 1px solid #30363D;
    color: #8B949E;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.85rem;
}

.action-btn:hover {
    border-color: #FF6B35;
    color: #FF6B35;
    background: rgba(255, 107, 53, 0.1);
}

.action-btn.liked {
    color: #E74C3C;
    border-color: #E74C3C;
    background: rgba(231, 76, 60, 0.1);
}

.action-btn.bookmarked {
    color: #FFD23F;
    border-color: #FFD23F;
    background: rgba(255, 210, 63, 0.1);
}

.like-count {
    font-size: 0.7rem;
    margin-left: 0.25rem;
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.filter-btn {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    color: #FF6B35;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-btn:hover {
    background: rgba(255, 107, 53, 0.2);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, #FF6B35 0%, #FFD23F 100%);
    color: #000;
    border-color: #FF6B35;
}

.filter-count {
    background: rgba(0, 0, 0, 0.2);
    color: inherit;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.filter-btn.active .filter-count {
    background: rgba(0, 0, 0, 0.2);
}

/* Portfolio Preview Modal */
.portfolio-preview-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.portfolio-preview-modal.show {
    opacity: 1;
    visibility: visible;
}

.portfolio-preview-modal .modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 17, 23, 0.9);
    backdrop-filter: blur(10px);
}

.portfolio-preview-modal .modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #161B22;
    border: 1px solid #30363D;
    border-radius: 16px;
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.portfolio-preview-modal .modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid #30363D;
}

.portfolio-preview-modal .modal-header h4 {
    color: #F0F6FC;
    margin: 0;
}

.portfolio-preview-modal .modal-close {
    background: none;
    border: none;
    color: #8B949E;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.portfolio-preview-modal .modal-close:hover {
    color: #FF6B35;
    background: rgba(255, 107, 53, 0.1);
}

.portfolio-preview-modal .modal-body {
    padding: 1.5rem;
}

.preview-loading {
    text-align: center;
    color: #8B949E;
    padding: 2rem;
}

.preview-loading i {
    font-size: 2rem;
    color: #FF6B35;
    margin-bottom: 1rem;
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #161B22;
    border: 1px solid #30363D;
    color: #F0F6FC;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 10001;
}

.toast-notification.show {
    transform: translateX(0);
}

/* Portfolio Item Animation */
.portfolio-item {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.portfolio-item.filter-show {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-item.filter-hide {
    opacity: 0;
    transform: translateY(30px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .portfolio-overlay {
        padding: 1rem;
    }

    .overlay-content .project-title {
        font-size: 1.25rem;
    }

    .project-stats {
        gap: 1rem;
    }

    .project-actions {
        flex-direction: column;
        gap: 0.5rem;
    }

    .portfolio-content {
        padding: 1rem;
    }

    .project-highlights {
        gap: 0.5rem;
    }

    .portfolio-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .filter-buttons {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

/* Reduced motion support for portfolio */
@media (prefers-reduced-motion: reduce) {
    .portfolio-card,
    .portfolio-image,
    .portfolio-overlay,
    .overlay-content,
    .action-btn,
    .filter-btn {
        transition: none;
    }

    .portfolio-card:hover {
        transform: none;
    }

    .portfolio-card:hover .portfolio-image {
        transform: none;
    }
}
