.elementor-27 .elementor-element.elementor-element-83f68ae{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:-100px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:80px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;--z-index:0;}.elementor-27 .elementor-element.elementor-element-83f68ae:not(.elementor-motion-effects-element-type-background), .elementor-27 .elementor-element.elementor-element-83f68ae > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#EEEEEE;}.elementor-27 .elementor-element.elementor-element-ff56e32{--display:flex;--justify-content:center;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-27 .elementor-element.elementor-element-45a35a7{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-27 .elementor-element.elementor-element-45a35a7:not(.elementor-motion-effects-element-type-background), .elementor-27 .elementor-element.elementor-element-45a35a7 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url("https://vertexmarketingstudio.com/wp-content/uploads/2025/07/p-scaled.jpg");background-position:center center;background-size:cover;}.elementor-27 .elementor-element.elementor-element-eddff4a{--spacer-size:80vh;}.elementor-27 .elementor-element.elementor-element-b4d51d3{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-27 .elementor-element.elementor-element-b4d51d3:not(.elementor-motion-effects-element-type-background), .elementor-27 .elementor-element.elementor-element-b4d51d3 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:transparent;background-image:linear-gradient(180deg, var( --e-global-color-text ) 0%, var( --e-global-color-primary ) 100%);}.elementor-27 .elementor-element.elementor-element-3471df2{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-27 .elementor-element.elementor-element-21a91ed{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}@media(min-width:768px){.elementor-27 .elementor-element.elementor-element-45a35a7{--width:100%;}}@media(max-width:767px){.elementor-27 .elementor-element.elementor-element-83f68ae{--min-height:50vh;--padding-top:50px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-27 .elementor-element.elementor-element-eddff4a{--spacer-size:17vh;}}/* Start custom CSS for html, class: .elementor-element-a7b7c6c *//* Portfolio with Lightbox - CSS Code */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: #000;
    color: white;
    overflow-x: hidden;
}

.portfolio-container {
    position: relative;
}

.portfolio-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.6s ease-out;
    cursor: pointer;
}

.portfolio-section:hover .portfolio-image {
    transform: scale(1.02);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0,0,0,0.6) 0%,
        rgba(0,0,0,0.3) 50%,
        rgba(0,0,0,0.7) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.portfolio-section:hover .portfolio-overlay {
    opacity: 1;
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.project-number {
    font-size: 80px;
    font-weight: 900;
    line-height: 0.8;
    opacity: 0.3;
    color: #fff;
}

.project-info {
    text-align: right;
    max-width: 400px;
}

.project-category {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
    margin-bottom: 8px;
}

.project-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 12px;
    line-height: 1.2;
}

.project-description {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.5;
}

.project-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.project-year {
    font-size: 14px;
    opacity: 0.6;
}

.view-project {
    padding: 12px 24px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.view-project:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.scroll-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.scroll-dot.active {
    background: #fff;
    transform: scale(1.5);
}

.progress-counter {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 1000;
    background: rgba(0,0,0,0.5);
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 14px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.main-title {
    position: fixed;
    top: 30px;
    left: 30px;
    z-index: 1000;
    background: rgba(0,0,0,0.5);
    padding: 15px 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.main-title h1 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
}

.main-title p {
    font-size: 12px;
    opacity: 0.7;
}

/* Lightbox Modal Styles */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 95%;
    max-height: 95%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: lightboxZoomIn 0.3s ease-out;
}

@keyframes lightboxZoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10001;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.lightbox-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.lightbox-content:hover .lightbox-info {
    transform: translateY(0);
}

.lightbox-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 8px;
}

.lightbox-category {
    font-size: 14px;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.lightbox-description {
    font-size: 16px;
    line-height: 1.5;
    opacity: 0.9;
}

.lightbox-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10001;
}

.lightbox-navigation:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-counter {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    backdrop-filter: blur(10px);
    z-index: 10001;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .portfolio-overlay {
        padding: 20px;
    }
    
    .project-number {
        font-size: 60px;
    }
    
    .project-title {
        font-size: 24px;
    }
    
    .project-header {
        flex-direction: column;
        gap: 20px;
    }
    
    .project-info {
        text-align: left;
        max-width: 100%;
    }
    
    .main-title, .progress-counter {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        margin: 20px;
        background: rgba(0,0,0,0.8);
    }

    .lightbox-navigation {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-info {
        padding: 20px;
    }

    .lightbox-title {
        font-size: 20px;
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.1);
}

::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.3);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,0.5);
}/* End custom CSS */