@charset "utf-8";
/* CSS Document */
/* Card containers for top level partitions ********************************************************************************************************************************* */
        .card-container {
            display: flex;
            flex-wrap: wrap;
            gap: 40px 30px; /* Reduced vertical gap */
            padding: 40px;
            justify-content: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .row-divider {
            width: 100%;
            border: none;
            border-top: 1px solid #e0e0e0;
            margin: 20px 0; /* Reduced margin */
        }

        .card {
            width: calc((100% - 60px) / 3);
            min-width: 300px;
            background: #fff;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.4s ease;
            height: 510px;
            display: flex;
            flex-direction: column;
        }

        .card:hover {
            transform: translateY(-15px);
        }

        .card-image-link {
            display: block;
            height: 280px;
            overflow: hidden;
        }

        .card-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
            display: block;
        }

        .card-image-link:hover .card-image {
            transform: scale(1.05);
        }

        .card-content {
            padding: 25px;
            background: rgba(255, 255, 255, 0.9);
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .card-title {
            color: #43c7e7; /* was #676566 */
            font-size: 1.8rem;
            margin-bottom: 10px;
            font-weight: 700;
            position: relative;
            padding-bottom: 5px;
            min-height: 50px;
            line-height: 1.3;
        }

        .card-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: #43c7e7;
            transition: width 0.3s ease;
        }

        .card:hover .card-title:after {
            width: 100px;
        }

        .card-text {
            color: #939393;
            font-size: 1.5rem;
            line-height: 1.6;
            margin-bottom: 25px;
            min-height: 60px;
        }

        .read-more {
            display: inline-block;
            padding: 10px 25px;
            border: 2px solid #43c7e7;
            color: #43c7e7;
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 1.3rem;
            margin-top: auto;
            width: fit-content;
        }

        .read-more:hover {
            background: #43c7e7;
            color: white;
        }

        @media (max-width: 1000px) {
            .card {
                width: calc((100% - 30px) / 2);
            }
        }

        @media (max-width: 700px) {
            .card-container {
                padding: 20px;
                gap: 30px 20px;
            }
            
            .card {
                width: 100%;
            }
        }


/* Comparison Tables for each individual Office Partition section - acoustic glass etc ******************************************************************************************************************************/

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    color: #43c7e7;
    font-size: 2.4rem;
    font-weight: 300;
}

.section-title strong {
    font-weight: 600;
}

.comparison-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.comparison-item {
    flex: 0 1 calc((100% - 60px) / 3);  /* Using flex instead of width */
    min-width: 300px;
    background: #fff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: auto;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Only apply 2-per-row when its a 4-item grid */
.comparison-grid.four-items .comparison-item {
    flex: 0 1 calc((100% - 30px) / 2);
}

.comparison-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(67, 199, 231, 0.15);
}

.door-header {
    background: #43c7e7;
    color: white;
    padding: 20px;
    position: relative;
    overflow: hidden;
    height: 120px; /* Added fixed height */
    display: flex; /* Added to control content alignment */
    flex-direction: column; /* Stack badge and title vertically */
    justify-content: flex-start; /* Align content to top */
}

.door-header i {
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 5rem;
    opacity: 0.1;
}

.door-badge {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

.door-title {
    color: white;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

.door-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.door-description {
    color: #676566;
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.feature-section {
    background: rgba(67, 199, 231, 0.05);
    padding: 10px; /*was 15px */
    border-radius: 8px;
    margin-bottom: 10px;
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #43c7e7;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-list {
    list-style: none;
    margin-left: 25px;
    color: #676566;
}

.feature-list li {
    margin-bottom: 8px;
    font-size: 1.2rem;
    position: relative;
}

.feature-list li:before {
    content: "";
    position: absolute;
    left: -20px;
    top: 8px;
    width: 6px;
    height: 6px;
    background: #43c7e7;
    border-radius: 50%;
}

.acoustic-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    color: #676566;
    padding: 15px;
    background: rgba(67, 199, 231, 0.05);
    border-radius: 8px;
}

.acoustic-rating i {
    color: #43c7e7;
    font-size: 1.2rem;
}

.acoustic-value {
    font-weight: 600;
    color: #43c7e7;
    display: block;
    margin-top: 5px; /* Adjust as needed */
}

.enquiry-btn {
    display: inline-block;
    padding: 12px 25px;
    border: 2px solid #43c7e7;
    color: #43c7e7;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    margin-top: auto;
    width: 100%;
    background: none;
    cursor: pointer;
    border-radius: 6px;
    text-align: center;
}

.enquiry-btn:hover {
    background: #43c7e7;
    color: white;
}

@media (max-width: 1000px) {
    .comparison-item {
        width: calc((100% - 30px) / 2);
    }
}

@media (max-width: 700px) {
    .container {
        padding: 20px;
    }
    
    .comparison-grid {
        gap: 20px;
    }
    
    .comparison-item {
        width: 100%;
    }

    .section-title {
        font-size: 2rem;
    }
}



/* Banners for PDF downloads and Video links ********************************************************************************************************************************* */

        .banner-container {
            display: flex;
			flex-wrap: wrap;
			gap: 5px; /* Maintains gap between banners */
			padding: 0;
			width: 100%;
        }

        .banner {
            flex: 1;
            min-width: 300px;
            display: flex;
            justify-content: flex-start;
            align-items: center;
            text-align: left;
            background-color: #f4f4f4;
            padding: 100px 5%;
            position: relative;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
			background-attachment: scroll;
            color: #fff;
            overflow: hidden;
            transition: transform 0.3s ease;
			will-change: transform; /* Tell browser to optimize for transform */
			transform: translateZ(0); /* Creates a new rendering layer */
			backface-visibility: hidden;
        }

        .banner:hover {
            transform: translateY(-15px);
        }

        .banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.6);
            z-index: 1;
        }

        .banner-content {
            max-width: 700px;
            position: relative;
            z-index: 2;
        }

        .banner h1 {
            font-family: 'Montserrat', "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; 
            font-size: 2.6rem;
            margin: 0 0 20px;
            color: #fff;
            position: relative;
            padding-bottom: 10px;
			transition: none; /* Remove any conflicting transitions */
        }

        .banner h1:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: white;
			will-change: width; /* Hints to the browser about the animation */
    		transition: width 0.3s ease;
        }

        .banner:hover h1:after {
            width: 150px;
        }

        .banner p {
            font-size: 1.5rem;
            line-height: 1.2;
            margin: 0 0 30px;
            color: #eee;
        }

        .banner-buttons a {
            text-decoration: none;
            padding: 10px 20px;
            border-radius: 0;
            font-size: 1.5rem;
            font-weight: 500;
            transition: background-color 0.3s ease, color 0.3s ease;
            background-color: #43c7e7;
            color: #fff;
        }

        .banner-buttons a:hover {
            background-color: #2f91a9;
        }

        .pdf-banner {
            background-image: url('../truline-brochure-btn.webp');
        }

        .video-banner {
            background-image: url('../acoustic-glass-doors-02-btn.webp');
        }

        .video-banner-fp01 {
            background-image: url('../frameless-partitioning-btn.webp');
        }
		.video-banner-fp02 {
            background-image: url('../frameless-partitioning-02-btn.webp');
        }

 		.video-banner-frp01 {
            background-image: url('../framed-relocatable-partitioning-01-btn.webp');
        }
		.video-banner-frp02 {
            background-image: url('../framed-relocatable-partitioning-btn.webp');
        }
		.video-banner-frp03 {
            background-image: url('../framed-relocatable-partitioning-02-btn.webp');
        }

		.video-banner-xp01 {
            background-image: url('../xp-frames-02-btn.webp');
        }

        /* Lightbox Styles */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }

        .lightbox iframe {
            width: 80%;
            height: 80%;
            border: none;
        }

        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 2rem;
            color: #fff;
            cursor: pointer;
            background: none;
            border: none;
        }


/* Breadcrumbs for service pages  ********************************************************************************************************************************* */


   .breadcrumb-container {
            padding: 20px 0;
            font-family: 'Montserrat', sans-serif;
        }

        .breadcrumb {
            display: flex;
            align-items: center;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .breadcrumb-item {
            display: flex;
            align-items: center;
            color: #666;
            font-size: 1.2rem;
            font-weight: 500;
        }

        .breadcrumb-item a {
            color: #666;
            text-decoration: none;
            position: relative;
            padding-bottom: 2px;
        }

        .breadcrumb-item a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #43c7e7;
            transition: width 0.3s ease;
        }

        .breadcrumb-item a:hover::after {
            width: 100%;
        }

        .breadcrumb-item a:hover {
            color: #43c7e7;
        }

        .breadcrumb-item:last-child {
            color: #43c7e7;
            font-weight: 600;
            position: relative;
            padding-bottom: 2px;
        }

        .breadcrumb-item:last-child::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            opacity: 0;
        }

        .breadcrumb-separator {
            margin: 0 10px;
            color: #999;
            font-size: 1.1rem;
        }

        .fa-house {
            margin-right: 5px;
            font-size: 1.2rem;
        }

        @media (max-width: 768px) {
            .breadcrumb-container {
                padding: 15px 0;
            }
            
            .breadcrumb-item {
                font-size: 0.8rem;
            }
        }