.elementor-13 .elementor-element.elementor-element-52231ad{--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;}/* Start custom CSS for html, class: .elementor-element-a0f3d90 *//* Section */
.portfolio {
    background: radial-gradient(circle at top, #f8f3ea, #e6d7bd);
    padding: 120px 20px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

/* Heading */
.portfolio-title {
    font-size: 46px;
    color: #b8965a;
    letter-spacing: 1px;
}

.portfolio-subtitle {
    color: #5c4b2e;
    margin-bottom: 70px;
}

/* Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

/* Card */
.portfolio-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    z-index: 1;
    transition: 0.5s ease;
}

/* 🔥 Animated Border */
.portfolio-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    background: linear-gradient(
        130deg,
        transparent,
        gold,
        #d4af37,
        gold,
        transparent
    );
    background-size: 300% 300%;
    animation: borderMove 5s linear infinite;
    z-index: -1;
}

/* Inner Glass Layer */
.portfolio-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    z-index: -1;
}

/* Hover Card */
.portfolio-card:hover {
    transform: translateY(-15px) scale(1.04);
    box-shadow: 0 25px 60px rgba(184,150,90,0.4);
}

/* Image Box */
.image-box {
    overflow: hidden;
}

.image-box img {
    width: 100%;
    display: block;
    transition: 0.6s ease;
}

/* Image Zoom */
.portfolio-card:hover img {
    transform: scale(1.12);
}

/* Content */
.content {
    padding: 25px;
}

.content h3 {
    color: #000;
    margin-bottom: 5px;
    font-size: 18px;
}

.content p {
    color: #6e5c3b;
    font-size: 14px;
}

.content h2 {
    color: #b8965a;
    margin-top: 10px;
    font-size: 24px;
    text-shadow: 0 2px 10px rgba(184,150,90,0.3);
}

/* ✨ Border Animation */
@keyframes borderMove {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 300% 50%;
    }
}

/* Responsive */
@media(max-width: 768px){
    .portfolio-title {
        font-size: 32px;
    }
}/* End custom CSS */