.elementor-8190 .elementor-element.elementor-element-e4076c4{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-8190 .elementor-element.elementor-element-cab4352 .portfolio .entry-title{font-size:18px;text-transform:uppercase;}.elementor-8190 .elementor-element.elementor-element-cab4352 .portfolio-post-thumbnail img{width:100%;}.elementor-8190 .elementor-element.elementor-element-cab4352  .portfolio-post-thumbnail, .elementor-8190 .elementor-element.elementor-element-cab4352  .portfolio-post-thumbnail img{height:330px;object-fit:cover;}.elementor-8190 .elementor-element.elementor-element-cab4352 a.elementor-button, .elementor-8190 .elementor-element.elementor-element-cab4352 .elementor-button{color:#FFFFFF;background-color:var( --e-global-color-b296989 );}/* Start custom CSS */.elementor-portfolio__filter[data-filter=".__all"] {
    display: none !important;
}
.portfolio-list li:first-child {
    display: none !important;
}
.entry-locations::before {
    content: "\f3c5"; /* FontAwesome Location Pin code */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 8px; /* Space between icon and text */
    color: #000; /* You can change this to your theme color */
    font-size: 14px;
}

/* Ensure the container aligns properly */
.entry-locations {
    display: inline-flex;
    align-items: center;
}


/* Add building icon before the 'Type' label */
.portfolio-list li:nth-child(2) label::before {
    content: "\f1ad"; /* FontAwesome Building Icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 8px;
    color: #C5A059; /* Your premium brand gold color */
    font-size: 14px;
}

/* Ensure the text aligns correctly with the icon */
.portfolio-list li label {
    display: flex;
    align-items: center;
}


.osf_portfolio:nth-child(1) { animation-delay: 0.1s; }
.osf_portfolio:nth-child(2) { animation-delay: 0.2s; }
.osf_portfolio:nth-child(3) { animation-delay: 0.3s; }
.osf_portfolio:nth-child(4) { animation-delay: 0.4s; }
.osf_portfolio:nth-child(5) { animation-delay: 0.5s; }
.osf_portfolio:nth-child(6) { animation-delay: 0.6s; }


/* 1. On-Load Animation (Fade & Slide Up) */
.osf_portfolio {
    opacity: 0;
    transform: translateY(30px);
    animation: portfolioFadeUp 0.8s ease forwards;
}

@keyframes portfolioFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 2. Hover Interaction */
.portfolio-inner {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Smooth easing */
    background: #fff;
    border-radius: 8px; /* Optional: adds a modern rounded look */
    overflow: hidden;
    position: relative;
    border: 1px solid transparent;
}

.portfolio-inner:hover {
    transform: translateY(-10px) scale(1.02); /* Slight lift and grow */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12); /* Premium soft shadow */
    border-color: #eee;
    z-index: 10;
}

/* 3. Image Zoom Effect */
.portfolio-post-thumbnail img {
    transition: transform 0.6s ease;
}

.portfolio-inner:hover .portfolio-post-thumbnail img {
    transform: scale(1.1); /* Zooms the image inside the card */
}

/* 4. Text Contrast Improvement */
.portfolio-content {
    transition: background 0.3s ease;
}

.portfolio-inner:hover .entry-title a {
    color: #C5A059; /* Changes title to your brand gold on hover */
}/* End custom CSS */