/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */


/* ==========================================
   EXACT PORTFOLIO CARD GRID DESIGN
   ========================================== */

.pf-grid-wrapper {
    width: 100%;
    box-sizing: border-box;
}

.pf-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pf-card-item {
    width: 100%;
}

/* Outer Card Box with Dark Border */
.pf-card-box {
    background-color: #141414 !important;
    border: 1px solid #222222 !important;
    border-radius: 20px !important;
    padding: 20px !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    transition: transform 0.3s ease, border-color 0.3s ease !important;
}

.pf-card-box:hover {
    border-color: #FF6200 !important;
    transform: translateY(-5px) !important;
}

/* Image Inner Box */
.pf-img-wrapper {
    width: 100% !important;
    height: 250px !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    margin-bottom: 20px !important;
    background-color: #0b0b0b !important;
}

.pf-img-wrapper a {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
}

.pf-img-wrapper img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: 12px !important;
    transition: transform 0.5s ease !important;
}

.pf-card-box:hover .pf-img-wrapper img {
    transform: scale(1.05) !important;
}

/* Card Bottom Info */
.pf-card-footer {
    display: flex !important;
    align-items: flex-end !important;
    justify-content: space-between !important;
    gap: 15px !important;
}

.pf-card-text {
    flex: 1 !important;
}

.pf-card-title {
    margin: 0 0 8px 0 !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
}

.pf-card-title a {
    color: #ffffff !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.pf-card-title a:hover {
    color: #FF6200 !important;
}

.pf-card-desc {
    color: #888888 !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    margin: 0 !important;
}

/* Circle Arrow Button */
.pf-arrow-btn {
    width: 44px !important;
    height: 44px !important;
    background-color: #222222 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    flex-shrink: 0 !important;
    transition: background-color 0.3s ease, transform 0.3s ease !important;
}

.pf-arrow-btn svg {
    display: block !important;
}

.pf-card-box:hover .pf-arrow-btn {
    background-color: #FF6200 !important;
    transform: scale(1.08) !important;
}

/* Responsive */
@media (max-width: 991px) {
    .pf-grid-container { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 600px) {
    .pf-grid-container { grid-template-columns: 1fr !important; }
}