/* Owl Carousel Dots for Portfolio */
.portfolio-modern .owl-dots {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-top: 24px;
    /* background: rgba(0,0,0,0.12); */
    padding: 10px 24px;
    border-radius: 30px;
    /* box-shadow: 0 2px 8px rgba(160,140,107,0.10); */
}
.portfolio-modern .owl-dot {
    width: 14px !important;
    height: 14px !important;
    background: #bca37a !important;
    border-radius: 50% !important;
    border: 2px solid #fff !important;
    transition: all 0.3s;
    opacity: 0.6;
    margin: 0 !important;
    cursor: pointer;
    position: relative;
}
.portfolio-modern .owl-dot.active {
    background: #fff !important;
    border-color: #bca37a !important;
    opacity: 1;
    box-shadow: 0 0 8px #bca37a44;
    transform: scale(1.2);
}
.portfolio-modern .owl-dot:hover {
    opacity: 1;
    background: #fff !important;
    border-color: #bca37a !important;
}
/* Modern Portfolio Section */
.portfolio-modern {
    width: 100%;
    /* min-height: 80vh; */
    background: linear-gradient(120deg, #181511 60%, #23201c 100%);
    padding: 80px 0 60px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.portfolio-modern-title {
    font-family: 'FuturaBT-Light', 'FuturaLT', Arial, sans-serif;
    font-size: 3.5rem;
    color: #bca37a;
    letter-spacing: 0.08em;
    font-weight: 300;
    margin-bottom: 12px;
    text-align: center;
}
.portfolio-modern-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #bca37a 0%, #23201c 100%);
    border-radius: 2px;
    margin: 0 auto 32px auto;
}
.portfolio-modern-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    position: relative;
    margin-bottom: 32px;
}
.portfolio-modern-arrow {
    background: #bca37a;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 2rem;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(160,140,107,0.12);
    transition: background 0.3s, color 0.3s;
    z-index: 2;
}
.portfolio-modern-arrow:hover {
    background: #23201c;
    color: #bca37a;
}
.portfolio-modern-items {
    display: flex;
    gap: 32px;
    overflow: hidden;
    width: 100%;
    max-width: 1000px;
    min-height: 400px;
    align-items: center;
    justify-content: center;
}
.portfolio-modern-item {
    flex: 0 0 300px;
    max-width: 380px;
    background: #23201c;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    overflow: hidden;
    transition: transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.portfolio-modern-item img {
    width: 100%;
    height: 390px;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.3s;
}
.portfolio-modern-item:hover img {
    transform: scale(1.05);
}
.portfolio-modern-btnwrap {
    text-align: center;
    margin-top: 16px;
}
.portfolio-modern-btn {
    display: inline-block;
    padding: 12px 36px;
    background: linear-gradient(90deg, #bca37a 0%, #23201c 100%);
    color: #fff;
    font-family: 'FuturaBT-Light', 'FuturaLT', Arial, sans-serif;
    font-size: 1.1rem;
    border-radius: 24px;
    text-decoration: none;
    letter-spacing: 0.06em;
    box-shadow: 0 2px 8px rgba(160,140,107,0.12);
    transition: background 0.3s, color 0.3s;
}
.portfolio-modern-btn:hover {
    background: linear-gradient(90deg, #23201c 0%, #bca37a 100%);
    color: #fff;
}
.portfolio-modern .owl-nav{
    display: none;
}
@media (max-width: 1100px) {
    .portfolio-modern-items {
        gap: 16px;
        max-width: 700px;
    }
    .portfolio-modern-item {
        flex: 0 0 220px;
        max-width: 220px;
    }
    .portfolio-modern-item img {
        height: 220px;
    }
}
@media (max-width: 900px) {
    .portfolio-modern-title {
        font-size: 2.2rem;
    }
    .portfolio-modern-items {
        gap: 8px;
        max-width: 98vw;
    }
    .portfolio-modern-item {
        flex: 0 0 180px;
        max-width: 180px;
    }
    .portfolio-modern-item img {
        height: 160px;
    }
    .portfolio-modern .portfolio-modern-slider .owl-item{
        margin-right: 10px !important;
    }
}
