.elementor-295 .elementor-element.elementor-element-9f9cd3d{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-13990f1 *//* Portfolio CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    overflow-x: hidden;
}

.portfolio-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Header Section */
.portfolio-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 0;
    background: linear-gradient(135deg, #E34A0B 0%, #ff6b3d 100%);
    border-radius: 20px;
    color: white;
    box-shadow: 0 10px 30px rgba(227, 74, 11, 0.3);
}

.main-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.intro-text {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.highlight-text {
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 15px;
    opacity: 0.9;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
}

.portfolio-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Video Container */
.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Content Wrapper */
.content-wrapper {
    padding: 30px;
}

.project-header {
    margin-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
}

.project-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #E34A0B;
    margin-bottom: 15px;
}

.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 10px;
}

.client, .type {
    font-size: 0.95rem;
    color: #666;
    padding: 5px 12px;
    background-color: #f8f9fa;
    border-radius: 20px;
    border: 1px solid #e9ecef;
}

.project-description {
    margin-top: 20px;
}

.project-description p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    text-align: justify;
}

.project-description strong {
    color: #E34A0B;
    font-weight: 600;
}

/* Responsive Design */

/* Large Desktop */
@media (min-width: 1200px) {
    .portfolio-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    /* First video - top left */
    .portfolio-item:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
    }
    
    /* Second video - full width featured */
    .portfolio-item:nth-child(2) {
        grid-column: 1 / -1;
        grid-row: 2;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }
    
    .portfolio-item:nth-child(2) .video-container {
        padding-bottom: 0;
        height: 100%;
    }
    
    /* Third video - top right */
    .portfolio-item:nth-child(3) {
        grid-column: 2;
        grid-row: 1;
    }
    
    /* Fourth video - bottom left */
    .portfolio-item:nth-child(4) {
        grid-column: 1;
        grid-row: 3;
    }
    
    /* Fifth video - bottom right */
    .portfolio-item:nth-child(5) {
        grid-column: 2;
        grid-row: 3;
    }
}

/* Medium Desktop */
@media (min-width: 992px) and (max-width: 1199px) {
    .portfolio-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    /* First video - top left */
    .portfolio-item:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
    }
    
    /* Second video - full width featured */
    .portfolio-item:nth-child(2) {
        grid-column: 1 / -1;
        grid-row: 2;
    }
    
    /* Third video - top right */
    .portfolio-item:nth-child(3) {
        grid-column: 2;
        grid-row: 1;
    }
    
    /* Fourth video - bottom left */
    .portfolio-item:nth-child(4) {
        grid-column: 1;
        grid-row: 3;
    }
    
    /* Fifth video - bottom right */
    .portfolio-item:nth-child(5) {
        grid-column: 2;
        grid-row: 3;
    }
}

/* Tablet */
@media (max-width: 991px) {
    .portfolio-container {
        padding: 20px 15px;
    }
    
    .portfolio-header {
        padding: 30px 20px;
        margin-bottom: 40px;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .intro-text {
        font-size: 1.1rem;
    }
    
    .portfolio-grid {
        gap: 30px;
    }
    
    .content-wrapper {
        padding: 25px;
    }
    
    .project-title {
        font-size: 1.6rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .portfolio-container {
        padding: 15px 10px;
    }
    
    .portfolio-header {
        padding: 25px 15px;
        margin-bottom: 30px;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .intro-text {
        font-size: 1rem;
    }
    
    .portfolio-grid {
        gap: 25px;
    }
    
    .content-wrapper {
        padding: 20px;
    }
    
    .project-title {
        font-size: 1.4rem;
    }
    
    .project-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .client, .type {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .project-description p {
        font-size: 0.95rem;
        text-align: left;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .portfolio-container {
        padding: 10px 5px;
    }
    
    .portfolio-header {
        padding: 20px 10px;
        border-radius: 15px;
    }
    
    .main-title {
        font-size: 1.8rem;
    }
    
    .intro-text {
        font-size: 0.95rem;
    }
    
    .content-wrapper {
        padding: 15px;
    }
    
    .project-title {
        font-size: 1.3rem;
    }
    
    .project-description p {
        font-size: 0.9rem;
    }
}

/* Loading and Performance Optimizations */
.video-container iframe {
    loading: lazy;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #E34A0B;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c23a09;
}

/* Accessibility improvements */
.portfolio-item:focus-within {
    outline: 2px solid #E34A0B;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .video-container {
        display: none;
    }
    
    .portfolio-item {
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .portfolio-header {
        background: none;
        color: #333;
        box-shadow: none;
    }
}/* End custom CSS */