/* public/assets/custom/css/dashboard-showcase.css */
.dashboard-showcase-section {
    padding: 120px 0;
    background: transparent;
    position: relative;
    margin-top: -10rem;
    z-index: 10;
}

.dashboard-showcase-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.showcase-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.showcase-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: transparent;
    border: none;
    color: #555;
    min-width: 100px;
    text-align: center;
}

.showcase-tab .tab-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 20px;
}

.showcase-tab .tab-icon .fas {
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
}

.showcase-tab .tab-label {
    font-size: 13px;
    font-weight: 500;
    transition: color 0.3s;
}

.showcase-tab:hover .tab-icon {
    background-color: rgba(0, 0, 0, 0.1);
}
.showcase-tab:hover {
    color: #111;
}

.showcase-tab.active {
    color: #6366F1; /* Primary Color */
}

.showcase-tab.active .tab-icon {
    background-color: #6366F1;
    color: white;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

.showcase-content-wrapper {
    margin-top: 32px;
}

.showcase-pane {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.showcase-pane.active {
    display: block;
    opacity: 1;
}

.showcase-pane-content {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.showcase-image-wrapper {
    flex: 3;
    min-width: 0;
}

.showcase-image-wrapper img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.showcase-text-wrapper {
    flex: 1;
    padding-top: 24px;
}

.showcase-text-wrapper h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a202c;
}

.showcase-text-wrapper p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
}

@media (max-width: 992px) {
    .showcase-pane-content {
        flex-direction: column;
    }
    .showcase-text-wrapper {
        padding-top: 0;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .dashboard-showcase-container {
        padding: 24px;
    }


    .showcase-tabs {
        gap: 8px;
    }
    .showcase-tab {
        padding: 8px;
        min-width: 80px;
    }
    .showcase-tab .tab-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    .showcase-tab .tab-label {
        font-size: 12px;
    }
}
