.products-grid {
    padding: 4rem 0;
    display: flex;
    flex-direction: column;
    gap: 6rem;
    /* Large pretty gap between projects */
}

/* Glassmorphism Section Title (Consistent with Products) */
.section-title {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 5rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.product-category {
    position: relative;
    margin-bottom: 2rem;
}

.product-category h2 {
    margin-bottom: 2.5rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 2.2rem;
    font-weight: 700;
    border-left: 5px solid #fff;
    padding-left: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Project Images Styling */
.product-category img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: brightness(0.9);
}

.product-category img:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    filter: brightness(1.1);
    z-index: 2;
}

/* The Details Card (Right Column) */
.product-category .col-md-6:last-child .row {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    margin: 0;
    /* Reset margins to fit perfectly */
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    height: 100%;
    transition: transform 0.3s ease;
}

.product-category .col-md-6:last-child .row:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Typography inside the Details Card */
.product-category .col-md-6:last-child .row h3 {
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 5px;
    display: inline-block;
}

.product-category .col-md-6:last-child .row p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    font-weight: 300;
}

/* Layout Spacing Fixes */
.product-category .row.g-4 {
    --bs-gutter-x: 2rem;
    --bs-gutter-y: 2rem;
}

.carousel-separator {
    opacity: 0.3;
    margin: 4rem 0;
}

/* Specific fix for Hand Rail image to match tall details card */
.handrail-image {
    min-height: 550px !important;
    height: 100% !important;
}


@media (max-width: 768px) {
    .product-category img {
        height: 200px;
    }

    .product-category h2 {
        font-size: 1.8rem;
    }

    .products-grid {
        padding: 2rem 0;
        gap: 4rem;
    }

    .product-category .col-md-6:last-child .row {
        margin-top: 1.5rem;
        padding: 1.5rem;
    }
}