/* Project Details Minimalist Modern Style - Hard Reset */

:root {
    --primary-color: #ffc107;
    --text-dark: #2c3e50;
    --text-light: #ecf0f1;
    --bg-light: #f8f9fa;
}

body {
    background-color: #fafafa !important;
    background-image: none !important;
    /* Removes diagonal lines on sides */
}

/* Header Background Fix */
#header {
    background: rgba(26, 26, 26, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Breadcrumbs Section - FULL RESET */
.breadcrumbs {
    padding: 140px 0 30px 0 !important;
    background: #fafafa !important;
    background-image: none !important;
    min-height: auto !important;
    position: relative;
    text-align: center;
}

.breadcrumbs::before {
    display: none !important;
    /* Remove any overlay from main.css */
}

.breadcrumbs h2 {
    font-size: 2.2rem !important;
    font-weight: 800 !important;
    color: var(--text-dark) !important;
    margin-bottom: 10px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block !important;
}

.title-separator {
    width: 60px;
    height: 4px;
    background-color: var(--primary-color) !important;
    margin: 0 auto 20px auto !important;
    border-radius: 2px;
    display: block !important;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
    font-size: 0.9rem;
    color: #888 !important;
}

.breadcrumbs ol li+li::before {
    color: #ccc !important;
}

.breadcrumbs ol li a {
    color: #999 !important;
    text-decoration: none;
}

/* Content Layout */
.project-details {
    padding: 40px 0 80px 0 !important;
}

/* Swiper Slider Styling */
.portfolio-details-slider {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06) !important;
}

.portfolio-details-slider img {
    width: 100%;
    height: auto;
}

/* Project Info Area */
.project-info {
    padding: 10px 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

.project-info h3 {
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    margin-bottom: 20px !important;
    color: var(--text-dark) !important;
    text-transform: uppercase;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
    padding-bottom: 8px;
}

.project-info p {
    font-size: 1rem;
    line-height: 1.7;
    color: #444 !important;
    margin-bottom: 30px !important;
}

.project-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.project-info ul li {
    display: flex;
    align-items: center;
    padding: 12px 0 !important;
    border-bottom: 1px solid #eee !important;
}

.project-info ul li:last-child {
    border-bottom: none !important;
}

.project-info ul li i {
    color: var(--primary-color) !important;
    margin-right: 15px !important;
    width: 20px;
    text-align: center;
}

.project-info ul li strong {
    font-weight: 700;
    color: var(--text-dark) !important;
    margin-right: 10px;
    min-width: 140px;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .breadcrumbs {
        padding: 150px 0 20px 0 !important;
    }

    .breadcrumbs h2 {
        font-size: 1.5rem !important;
    }

    .project-info {
        margin-top: 20px;
    }
}