.elementor-9424 .elementor-element.elementor-element-a400d2d{--display:flex;}@media(min-width:768px){.elementor-9424 .elementor-element.elementor-element-a400d2d{--content-width:90%;}}/* Start custom CSS for html, class: .elementor-element-797f520 */* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Urbanist', sans-serif;
}

.portfolio-section {
    background: #fff;
    padding: 80px 20px;
}

.portfolio-header {
    text-align: center;
    margin-bottom: 80px;
}

.portfolio-pill {
    display: inline-block;
    padding: 8px 18px;
    background: #e6f0e6;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #0A340A;
    margin-bottom: 20px;
    font-family: 'Urbanist', sans-serif;
}

.portfolio-heading {
    font-family: 'Urbanist', sans-serif;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 700;
    color: #0A340A;
    line-height: 1.15;
    margin-bottom: 20px;
}

.portfolio-tagline {
    font-size: 18px;
    font-weight: 600;
    color: #0A340A;
    font-family: 'Urbanist', sans-serif;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.portfolio-separator {
    width: 60px;
    height: 4px;
    background: #0A340A;
    border-radius: 2px;
    margin: 30px auto 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    max-width: 1400px;
    margin: 0 auto;
}

.portfolio-item {
    background: #fff;
    border: 1px solid #d4e4d4;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .5s ease, transform .4s ease, box-shadow .3s ease, border-color .3s ease;
}

.portfolio-item.portfolio-active {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-item:nth-child(1) { transition-delay: .06s; }
.portfolio-item:nth-child(2) { transition-delay: .13s; }
.portfolio-item:nth-child(3) { transition-delay: .20s; }
.portfolio-item:nth-child(4) { transition-delay: .27s; }
.portfolio-item:nth-child(5) { transition-delay: .34s; }
.portfolio-item:nth-child(6) { transition-delay: .41s; }

.portfolio-item:hover {
    box-shadow: 0 12px 40px rgba(10, 52, 10, 0.13);
    border-color: #0A340A;
    transform: translateY(-5px);
}

.portfolio-browser {
    background: #f2f7f2;
    border-bottom: 1px solid #d4e4d4;
    padding: 12px 16px 0;
}

.portfolio-toolbar {
    background: #fff;
    border: 1px solid #d4e4d4;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    margin-bottom: 12px;
}

.portfolio-dots {
    display: flex;
    gap: 6px;
}

.portfolio-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.portfolio-dot-red { background: #ff6059; }
.portfolio-dot-yellow { background: #ffbd2d; }
.portfolio-dot-green { background: #28c840; }

.portfolio-urlbar {
    flex: 1;
    background: #edf4ed;
    border-radius: 5px;
    height: 22px;
    font-size: 11px;
    color: #4a6e4a;
    display: flex;
    align-items: center;
    padding: 0 10px;
    gap: 5px;
    white-space: nowrap;
    overflow: hidden;
}

.portfolio-imgbox {
    width: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
    background: linear-gradient(135deg, #f0f7f0 0%, #e2efe2 100%);
    overflow: hidden;
}

.portfolio-imgbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.portfolio-imgnum {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 11px;
    font-weight: 700;
    color: #0A340A;
    background: rgba(226, 239, 226, 0.95);
    border-radius: 12px;
    padding: 4px 10px;
    border: 1px solid #b5d4b5;
    z-index: 2;
}

.portfolio-content {
    padding: 20px 22px 22px;
}

.portfolio-category {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #0A340A;
    margin-bottom: 8px;
    font-family: 'Urbanist', sans-serif;
}

.portfolio-name {
    font-family: 'Urbanist', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #111;
    line-height: 1.35;
    margin-bottom: 8px;
}

.portfolio-info {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 15px;
    font-weight: 400;
    font-family: 'Urbanist', sans-serif;
}

.portfolio-bottom {
    border-top: 1px solid #eaf3ea;
    padding-top: 12px;
}

.portfolio-stat {
    font-size: 13px;
    color: #888;
    font-family: 'Urbanist', sans-serif;
}

.portfolio-stat b {
    color: #0A340A;
    font-weight: 700;
}

.portfolio-readmore { display: none; }

/* ===== Modal ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    animation: zoomIn 0.3s ease;
}

.modal-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    cursor: pointer;
    transition: color 0.2s;
    z-index: 10000;
}

.modal-close:hover {
    color: #0A340A;
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes zoomIn { from { transform: scale(0.8); } to { transform: scale(1); } }

@media(max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-heading {
        font-size: 36px;
    }

    .portfolio-section {
        padding: 60px 15px;
    }
}

@media(max-width: 440px) {
    .modal-close {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }
}/* End custom CSS */