.elementor-1299 .elementor-element.elementor-element-84b045c{--display:flex;}/* Start custom CSS for html, class: .elementor-element-1efbccd */.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: #d4a88a;
    margin: 60px 0 30px;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #d4a88a;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.portfolio-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 300px;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Video Section */
.video-section {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 60px;
}

.featured-video {
    flex: 1;
    min-width: 300px;
}

.video-player {
    width: 100%;
    height: 550px;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.video-player video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-list {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.video-thumbnail {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-thumbnail:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.video-thumbnail.active {
    background: #f9e8dd;
    border-left: 4px solid #d4a88a;
}

.thumbnail-img {
    width: 120px;
    height: 80px;
    border-radius: 5px;
    overflow: hidden;
    flex-shrink: 0;
}

.thumbnail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-info {
    flex: 1;
}

.video-info h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #333;
}

.video-info p {
    font-size: 0.9rem;
    color: #666;
}

/* ===================== */
/* Tablet Styles (≤1024px) */
/* ===================== */
@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-item {
        height: 540px;
    }

    .video-section {
        flex-direction: column;
    }

    .video-player {
        height: 350px;
    }

    .video-list {
        flex-direction: row;
        overflow-x: auto;
        padding: 10px 5px;
        gap: 12px;
        width: 100%;
        max-width: 100%;
        scrollbar-width: thin;
        scrollbar-color: #d4a88a #f9e8dd;
    }

    .video-list::-webkit-scrollbar {
        height: 6px;
    }

    .video-list::-webkit-scrollbar-track {
        background: #f9e8dd;
        border-radius: 10px;
    }

    .video-list::-webkit-scrollbar-thumb {
        background: #d4a88a;
        border-radius: 10px;
    }

    .video-thumbnail {
        flex-direction: column;
        min-width: 160px;
        max-width: 160px;
        text-align: center;
        padding: 12px;
        flex-shrink: 0;
    }

    .thumbnail-img {
        width: 140px;
        height: 90px;
        margin-bottom: 8px;
    }

    .video-info {
        display: none;
    }
}

/* ===================== */
/* Mobile Styles (≤768px) */
/* ===================== */
@media (max-width: 768px) {
    .container {
        padding: 20px 15px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-item {
        height: 540px;
    }

    .video-player {
        height: 250px;
    }

    .video-list {
        flex-direction: row;
        overflow-x: auto;
        padding: 10px 5px;
        gap: 10px;
        width: 100%;
        max-width: 100%;
        scrollbar-width: thin;
        scrollbar-color: #d4a88a #f9e8dd;
    }

    .video-list::-webkit-scrollbar {
        height: 6px;
    }

    .video-list::-webkit-scrollbar-track {
        background: #f9e8dd;
        border-radius: 10px;
    }

    .video-list::-webkit-scrollbar-thumb {
        background: #d4a88a;
        border-radius: 10px;
    }

    .video-thumbnail {
        flex-direction: column;
        min-width: 140px;
        max-width: 140px;
        text-align: center;
        padding: 10px;
        flex-shrink: 0;
    }

    .thumbnail-img {
        width: 120px;
        height: 80px;
        margin-bottom: 5px;
    }

    .video-info {
        display: none;
    }
}

/* Extra small mobile devices (≤480px) */
@media (max-width: 480px) {
    .video-thumbnail {
        min-width: 130px;
        max-width: 130px;
    }

    .thumbnail-img {
        width: 110px;
        height: 70px;
    }
}/* End custom CSS */