/* Service Experimental Design - Sample Box */

/* Main Section Background - Dark Theme */
#service-showcase {
    background-color: #868e96;
    /* Lighter Gray Tone */
    color: #f8f9fa;
    padding: 100px 0;
    min-height: 100vh;
}

#service-showcase .section-heading {
    color: #ffffff;
    /* Bright white text */
    font-weight: 900;
    letter-spacing: -1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    /* Stronger shadow for contrast */
}

#service-showcase .section-subheading {
    color: #ffffff !important;
    /* Bright White */
    font-weight: 500;
    margin-bottom: 50px;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

#service-showcase .section-subheading strong {
    color: #d54029;
    /* Brand Red for visibility */
    font-weight: 800;
}

/* Search Box Restyling */
#service-showcase .search_box input {
    background-color: #6c757d;
    border: 1px solid #dee2e6;
    color: #fff;
}

#service-showcase .search_box input::placeholder {
    color: #e9ecef;
}

#service-showcase .search_box button {
    background-color: #343a40;
    border: 1px solid #343a40;
    color: #fed136;
    font-weight: bold;
}

#service-showcase .search_box button:hover {
    background-color: #23272b;
    border-color: #fed136;
}

/* Portfolio Grid - Card Design */
#service-showcase .portfolio-item {
    margin-bottom: 30px;
}

#service-showcase .portfolio-link {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

#service-showcase .portfolio-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(254, 209, 54, 0.2);
    /* Yellow glow */
}

#service-showcase .portfolio-link .portfolio-hover {
    display: none !important;
}

#service-showcase .portfolio-link:hover .portfolio-hover {
    opacity: 0;
}

#service-showcase .portfolio-link .portfolio-hover-content {
    color: #fed136;
}

#service-showcase .portfolio-caption {
    background-color: #343a40;
    /* Darker Gray for contrast */
    padding: 20px;
    text-align: center;
    border-radius: 0 0 8px 8px;
    margin-top: -5px;
    /* overlap slightly to hide gap */
    border-top: none;
}

#service-showcase .portfolio-caption h4 {
    margin: 0;
    text-transform: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}

#service-showcase .portfolio-caption .text-muted {
    color: #adb5bd !important;
    font-size: 0.9rem;
    margin-top: 5px;
    margin-bottom: 0;
}

/* Category Chips (if added later) */
#service-showcase .badge-category {
    background-color: #333;
    color: #ccc;
    border: 1px solid #444;
    padding: 5px 10px;
    font-size: 0.8rem;
    border-radius: 20px;
}

/* Empty State */
#service-showcase .text-muted p {
    color: #666;
}