/* ===== CASE STUDIES SECTION CSS ===== */
.portfolio-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background-color: var(--section-bg, #161623);
}

.portfolio-section .section-subtitle {
    display: inline-block;
    background: linear-gradient(90deg, rgba(126, 211, 33, 0.2) 0%, rgba(154, 122, 249, 0.2) 100%);
    color: #78e57e;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 15px;
    position: relative;
    text-align: left;
}

.portfolio-section .section-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    text-align: left;
    color: var(--text-heading, #ffffff);
}

.portfolio-section .section-description,
.portfolio-section .portfolio-description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-body, rgba(255, 255, 255, 0.8));
    max-width: 80%;
    text-align: left;
}

.portfolio-section .gradient-text {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-purple) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    font-weight: 800;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-purple));
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1;
}

.portfolio-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(126, 211, 33, 0.2);
}

.portfolio-item:hover::before {
    opacity: 1;
}

.portfolio-thumbnail {
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    position: relative;
}

.portfolio-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.portfolio-item:hover .portfolio-thumbnail img {
    transform: scale(1.1);
}

/* Video preview container */
.video-preview-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.portfolio-item:hover .video-preview-container {
    opacity: 1;
}

.video-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Position play button higher up to avoid overlap with metrics */
.fixed-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -70%);
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-purple) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: all 0.4s ease;
    box-shadow: 0 0 30px rgba(126, 211, 33, 0.4);
}

.fixed-play-button::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 22px solid #fff;
    margin-left: 5px;
}

/* Enhanced pulsing effect for play button */
.play-button-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    animation: play-pulse 2s infinite cubic-bezier(0.66, 0, 0, 1);
}

/* New animation for pulsing effect */
@keyframes play-pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        opacity: 0.4;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.portfolio-item:hover .fixed-play-button {
    transform: translate(-50%, -70%) scale(1.1);
    box-shadow: 0 0 40px rgba(126, 211, 33, 0.7);
}

/* Category-specific play button styles */
.portfolio-item.corporate .fixed-play-button,
.portfolio-item .category-tag:contains("Fitness") ~ .portfolio-thumbnail .fixed-play-button {
    background: linear-gradient(135deg, #7ED321, #4CAF50);
    box-shadow: 0 0 30px rgba(126, 211, 33, 0.4);
}

.portfolio-item.commercial .fixed-play-button,
.portfolio-item .category-tag:contains("Trainer") ~ .portfolio-thumbnail .fixed-play-button {
    background: linear-gradient(135deg, #E91E63, #9c27b0);
    box-shadow: 0 0 30px rgba(156, 39, 176, 0.4);
}

.portfolio-item.events .fixed-play-button,
.portfolio-item .category-tag:contains("Restaurant") ~ .portfolio-thumbnail .fixed-play-button {
    background: linear-gradient(135deg, #F44336, #FF5722);
    box-shadow: 0 0 30px rgba(244, 67, 54, 0.4);
}

.portfolio-item.documentary .fixed-play-button,
.portfolio-item .category-tag:contains("Coffee") ~ .portfolio-thumbnail .fixed-play-button {
    background: linear-gradient(135deg, #795548, #A1887F);
    box-shadow: 0 0 30px rgba(121, 85, 72, 0.4);
}

.portfolio-item .category-tag:contains("Rental") ~ .portfolio-thumbnail .fixed-play-button {
    background: linear-gradient(135deg, #00BCD4, #03A9F4);
    box-shadow: 0 0 30px rgba(0, 188, 212, 0.4);
}

.portfolio-item .category-tag:contains("Luxury") ~ .portfolio-thumbnail .fixed-play-button {
    background: linear-gradient(135deg, #3F51B5, #5C6BC0);
    box-shadow: 0 0 30px rgba(63, 81, 181, 0.4);
}

/* Enhanced overlay to make stats more visible */
.video-preview-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.2) 0%, 
        rgba(0, 0, 0, 0.6) 60%, 
        rgba(0, 0, 0, 0.9) 100%);
    z-index: 2;
}

/* Enhanced stats display for better visibility */
.case-study-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    padding: 20px 15px;
    z-index: 4; /* Ensure stats are above the overlay and video */
    transition: all 0.3s ease;
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.85) 0%, 
        rgba(0, 0, 0, 0.5) 80%, 
        transparent 100%);
}

.portfolio-item:hover .case-study-stats {
    transform: translateY(0);
    opacity: 1;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-value {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, var(--primary-green), var(--primary-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.7));
}

.stat-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

/* Video Modal Styling */
.video-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(8px);
}

.video-modal-overlay.active {
    opacity: 1;
}

.video-modal-container {
    position: relative;
    width: 80%;
    max-width: 1200px;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.video-modal-overlay.active .video-modal-container {
    transform: scale(1);
}

.video-modal-content {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.video-modal-close:hover {
    background: rgba(126, 211, 33, 0.8);
    transform: rotate(90deg);
}

.video-modal-close::before,
.video-modal-close::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: #fff;
}

.video-modal-close::before {
    transform: rotate(45deg);
}

.video-modal-close::after {
    transform: rotate(-45deg);
}

iframe, .portfolio-video {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Responsive styles for the video modal */
@media (max-width: 992px) {
    .video-modal-container {
        width: 90%;
    }
}

@media (max-width: 768px) {
    .video-modal-container {
        width: 95%;
    }
    
    .video-modal-close {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 576px) {
    .portfolio-section {
        padding: 50px 0;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .fixed-play-button {
        width: 40px;
        height: 40px;
    }
    
    .fixed-play-button::after {
        width: 60px;
        height: 60px;
    }
    
    .fixed-play-button::before {
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
        border-left: 12px solid #fff;
    }
    
    .video-modal-container {
        width: 100%;
        max-height: 80vh;
    }
}

/* Integration with thumbnail placeholder */
.thumbnail-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #1a1a1a, #252525);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 2rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s ease;
}

.thumbnail-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

@keyframes shimmer {
    0% {
        transform: rotate(45deg) translateX(-100%);
    }
    100% {
        transform: rotate(45deg) translateX(100%);
    }
}

.thumbnail-placeholder i {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.7);
    animation: pulse 2s infinite;
    z-index: 2;
    text-shadow: 0 0 15px rgba(126, 211, 33, 0.7);
}

.thumbnail-placeholder .fa-clock {
    color: #7ED321;
}

.portfolio-info {
    padding: 1.8rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.portfolio-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(126, 211, 33, 0.03) 0%, 
        rgba(156, 39, 176, 0.03) 100%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

.portfolio-item:hover .portfolio-info::before {
    opacity: 1;
}

.portfolio-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
    transition: all 0.3s ease;
}

.portfolio-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-purple));
    transition: all 0.4s ease;
}

.portfolio-item:hover .portfolio-info h3::after {
    width: 80px;
}

.portfolio-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.2rem;
    line-height: 1.6;
    flex-grow: 1;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    transform: translateY(0);
}

.portfolio-item:hover .portfolio-info p {
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
}

.category-tag {
    display: inline-block;
    background: rgba(126, 211, 33, 0.1);
    color: #7ED321;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: auto;
    border: 1px solid rgba(126, 211, 33, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.category-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-purple));
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.portfolio-item:hover .category-tag {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
    color: #ffffff;
}

.portfolio-item:hover .category-tag::before {
    opacity: 0.2;
}

/* Item category-specific styles */
.portfolio-item.corporate .category-tag {
    background: rgba(126, 211, 33, 0.1);
    border-color: rgba(126, 211, 33, 0.2);
    color: #7ED321;
}

.portfolio-item.commercial .category-tag {
    background: rgba(156, 39, 176, 0.1);
    border-color: rgba(156, 39, 176, 0.2);
    color: #9c27b0;
}

.portfolio-item.events .category-tag {
    background: rgba(33, 150, 243, 0.1);
    border-color: rgba(33, 150, 243, 0.2);
    color: #2196F3;
}

.portfolio-item.documentary .category-tag {
    background: rgba(255, 152, 0, 0.1);
    border-color: rgba(255, 152, 0, 0.2);
    color: #FF9800;
}

/* New category-specific styles for updated case studies */
.portfolio-item .category-tag[class*="fitness"],
.portfolio-item .category-tag:contains("Fitness") {
    background: rgba(76, 175, 80, 0.1);
    border-color: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
}

.portfolio-item .category-tag[class*="trainer"],
.portfolio-item .category-tag:contains("Trainer Community") {
    background: rgba(233, 30, 99, 0.1);
    border-color: rgba(233, 30, 99, 0.2);
    color: #E91E63;
}

.portfolio-item .category-tag[class*="restaurant"],
.portfolio-item .category-tag:contains("Restaurant") {
    background: rgba(244, 67, 54, 0.1);
    border-color: rgba(244, 67, 54, 0.2);
    color: #F44336;
}

.portfolio-item .category-tag[class*="coffee"],
.portfolio-item .category-tag:contains("Coffee") {
    background: rgba(121, 85, 72, 0.1);
    border-color: rgba(121, 85, 72, 0.2);
    color: #795548;
}

.portfolio-item .category-tag[class*="rental"],
.portfolio-item .category-tag:contains("Rental Cars") {
    background: rgba(0, 188, 212, 0.1);
    border-color: rgba(0, 188, 212, 0.2);
    color: #00BCD4;
}

.portfolio-item .category-tag[class*="luxury"],
.portfolio-item .category-tag:contains("Luxury Cars") {
    background: rgba(63, 81, 181, 0.1);
    border-color: rgba(63, 81, 181, 0.2);
    color: #3F51B5;
}

.portfolio-item.corporate:hover .category-tag::before {
    background: linear-gradient(90deg, #7ED321, #4CAF50);
}

.portfolio-item.commercial:hover .category-tag::before {
    background: linear-gradient(90deg, #9c27b0, #673ab7);
}

.portfolio-item.events:hover .category-tag::before {
    background: linear-gradient(90deg, #2196F3, #03A9F4);
}

.portfolio-item.documentary:hover .category-tag::before {
    background: linear-gradient(90deg, #FF9800, #FF5722);
}

/* Hover effects for category tags */
.portfolio-item:hover .category-tag[class*="fitness"],
.portfolio-item:hover .category-tag:contains("Fitness")::before {
    background: linear-gradient(90deg, #4CAF50, #8BC34A);
    opacity: 0.2;
}

.portfolio-item:hover .category-tag[class*="trainer"],
.portfolio-item:hover .category-tag:contains("Trainer Community")::before {
    background: linear-gradient(90deg, #E91E63, #FF4081);
    opacity: 0.2;
}

.portfolio-item:hover .category-tag[class*="restaurant"],
.portfolio-item:hover .category-tag:contains("Restaurant")::before {
    background: linear-gradient(90deg, #F44336, #FF5722);
    opacity: 0.2;
}

.portfolio-item:hover .category-tag[class*="coffee"],
.portfolio-item:hover .category-tag:contains("Coffee")::before {
    background: linear-gradient(90deg, #795548, #A1887F);
    opacity: 0.2;
}

.portfolio-item:hover .category-tag[class*="rental"],
.portfolio-item:hover .category-tag:contains("Rental Cars")::before {
    background: linear-gradient(90deg, #00BCD4, #03A9F4);
    opacity: 0.2;
}

.portfolio-item:hover .category-tag[class*="luxury"],
.portfolio-item:hover .category-tag:contains("Luxury Cars")::before {
    background: linear-gradient(90deg, #3F51B5, #5C6BC0);
    opacity: 0.2;
}

/* Light theme styles for portfolio section */
.light-theme .portfolio-section {
    background-color: #f8f9fa;
    background-image: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.light-theme .portfolio-section .section-title {
    color: #333333;
}

.light-theme .portfolio-section .section-description,
.light-theme .portfolio-section .portfolio-description {
    color: rgba(0, 0, 0, 0.7);
}

.light-theme .portfolio-item {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.light-theme .portfolio-item:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: rgba(126, 211, 33, 0.3);
}

.light-theme .portfolio-info h3 {
    color: #333;
}

.light-theme .portfolio-info p {
    color: #666;
}

.light-theme .portfolio-item:hover .portfolio-info p {
    color: #333;
}

.light-theme .portfolio-info {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.light-theme .category-tag {
    background: rgba(126, 211, 33, 0.08);
    color: #2E7D32;
    border-color: rgba(126, 211, 33, 0.2);
}

.light-theme .thumbnail-placeholder {
    background: linear-gradient(145deg, #e6e6e6, #f5f5f5);
}

.light-theme .thumbnail-placeholder i {
    color: rgba(0, 0, 0, 0.5);
    text-shadow: 0 0 15px rgba(126, 211, 33, 0.3);
}

.light-theme .portfolio-item.corporate .category-tag {
    background: rgba(126, 211, 33, 0.08);
    color: #2E7D32;
    border-color: rgba(126, 211, 33, 0.2);
}

.light-theme .portfolio-item.commercial .category-tag {
    background: rgba(156, 39, 176, 0.08);
    color: #7B1FA2;
    border-color: rgba(156, 39, 176, 0.2);
}

.light-theme .portfolio-item.events .category-tag {
    background: rgba(33, 150, 243, 0.08);
    color: #1976D2;
    border-color: rgba(33, 150, 243, 0.2);
}

.light-theme .portfolio-item.documentary .category-tag {
    background: rgba(255, 152, 0, 0.08);
    color: #E65100;
    border-color: rgba(255, 152, 0, 0.2);
}

.light-theme .portfolio-item:hover .category-tag {
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* Video modal light theme styles */
.light-theme .video-modal-overlay {
    background: rgba(255, 255, 255, 0.95);
}

.light-theme .video-modal-container {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.light-theme .video-modal-close {
    background: linear-gradient(135deg, #4CAF50 0%, #7B1FA2 100%);
}

.light-theme .fixed-play-button {
    background: linear-gradient(135deg, #4CAF50 0%, #9c27b0 100%);
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.5);
}

.light-theme .fixed-play-button::after {
    background: rgba(76, 175, 80, 0.15);
}

.light-theme .portfolio-item:hover .fixed-play-button {
    box-shadow: 0 0 30px rgba(76, 175, 80, 0.7);
}

/* Additional theme related styles */
html.light-theme .portfolio-section {
    background-color: var(--section-bg, #f8f9fa);
    color: var(--text-color, #333);
}

html:not(.light-theme) .portfolio-section {
    background-color: var(--section-bg, #161623);
    color: var(--text-color, #fff);
}

/* Responsive styles for portfolio section */
@media (max-width: 992px) {
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .video-modal-container {
        width: 95%;
    }
    
    .video-modal-close {
        top: -20px;
        right: -20px;
    }
    
    .fixed-play-button {
        width: 50px;
        height: 50px;
    }
    
    .fixed-play-button::after {
        width: 70px;
        height: 70px;
    }
    
    .fixed-play-button::before {
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: 15px solid #fff;
    }
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .video-modal-close {
        top: 10px;
        right: 10px;
    }
    
    .fixed-play-button {
        width: 45px;
        height: 45px;
    }
    
    .fixed-play-button::before {
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: 15px solid #fff;
    }
}

@media (max-width: 576px) {
    .portfolio-section {
        padding: 50px 0;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .fixed-play-button {
        width: 40px;
        height: 40px;
    }
    
    .fixed-play-button::after {
        width: 60px;
        height: 60px;
    }
    
    .fixed-play-button::before {
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
        border-left: 12px solid #fff;
    }
    
    .video-modal-container {
        width: 100%;
        max-height: 80vh;
    }
}

/* Header spacing for Case Studies section */
.portfolio-section .col-lg-6.p-0 {
    padding-left: 25px !important;
}

@media (max-width: 768px) {
    .portfolio-section .col-lg-6.p-0 {
        padding-left: 15px !important;
    }
}

@media (max-width: 576px) {
    .portfolio-section .col-lg-6.p-0 {
        padding-left: 10px !important;
    }
}

/* Remove data visualization bars since they overlap with the stats */
.data-visualization {
    display: none;
}