 /*/////// banner ////////// */
        
        .banner-container {
            position: relative;
            height: 100vh;
            width: 100%;
            overflow: hidden;
        }
        
        .banner-slider {
            display: flex;
            height: 100%;
            width: 100%;
        }
        
        .banner-slide {
            min-width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .slide1 {
            background-image: url('images/Banner-img1.jpg');
        }
        
        .slide2 {
            background-image: url('images/Banner-img2.jpg');
        }
        
        .slide3 {
            background-image: url('images/Banner-img3.jpg');
        }
        
        .slide-content {
            position: absolute;
            top: 60%;
            left: 14%;
            transform: translateY(-50%);
            color: white;
            max-width: 100%;
            z-index: 10;
            opacity: 0;
            transition: opacity 0.5s ease, transform 0.5s ease;
            transform: translateY(-40%) translateX(-20px);
        }
        
        .slide-content.active {
            opacity: 1;
            transform: translateY(-50%) translateX(0);
        }
        
        .slide-content h1 {
            font-size: clamp(28px, 5vw, 38px);
            margin-bottom: 20px;
            text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
        }
        
        .slide-content p {
            font-size: clamp(14px, 2.5vw, 18px);
            margin-bottom: 30px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
            text-align: center;
        }
        
        .product-strip-container {
            position: absolute;
            bottom: 40px;
            left: 0;
            width: 100%;
            background-color: rgba(0,0,0,0.7);
            padding: 20px 0;
            z-index: 10;
            overflow: hidden;
        }
        
        .product-strip {
            position: relative;
            width: 85%;
            margin: 0 auto;
        }
        
        .product-slider {
            display: flex;
            width: 100%;
            overflow: hidden;
        }
        
        .product-items-container {
            display: flex;
            transition: transform 0.5s ease;
            width: max-content;
        }
        
        .product-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            color: white;
            padding: 0 25px;
            min-width: calc(100% / 6);
            box-sizing: border-box;
        }
        
        .product-icon {
            font-size: 34px;
        }

        .product-icon img{
            height: auto;
            width: 50px;
        }
        
        .product-title {
            font-size: 15px;
            font-weight: 500;
            text-align: center;
        }
        
        .product-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            pointer-events: none;
        }
        
        .product-nav-btn {
            background: rgba(255,255,255,0.5);
            border: none;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #333;
            font-size: 16px;
            transition: all 0.3s;
            pointer-events: all;
        }
        
        .product-nav-btn:hover {
            background: rgba(255,255,255,0.8);
        }
        
        .slider-controls {
            position: absolute;
            top: 55%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 5%;
            z-index: 10;
            transform: translateY(-50%);
        }
        
        .slider-btn {
            background: rgba(255,255,255,0.5);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #333;
            font-size: 20px;
            transition: all 0.3s;
        }
        
        .slider-btn:hover {
            background: rgba(255,255,255,0.8);
        }
        
        .slider-dots {
            position: absolute;
            bottom: 180px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 10px;
            z-index: 10;
        }
        
        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .dot.active {
            background: white;
            transform: scale(1.2);
        }
        

        @media (max-width: 1200px) {
            .product-item {
                min-width: calc(100% / 4);
                padding: 0 10px;
            }
        }
        
        @media (max-width: 768px) {
            nav {
                padding: 15px 5%;
            }
            
            .menu-btn {
                display: block;
            }
            
            .menu {
                display: none;
            }
            
            .banner-container {
                height: 80vh;
            }
            
            .slide-content {
                left: 5%;
                right: 5%;
                max-width: 90%;
            }
            
            .product-item {
                min-width: calc(100% / 3);
                padding: 0 5px;
            }
            
            .product-icon {
                font-size: 20px;
            }
            
            .product-title {
                font-size: 12px;
            }
            
            .slider-btn {
                width: 35px;
                height: 35px;
                font-size: 16px;
            }
            
            .product-strip-container {
                bottom: 100px;
            }
            
            .slider-dots {
                bottom: 130px;
            }
        }
        
        @media (max-width: 480px) {
            .product-item {
                min-width: calc(100% / 3);
                padding: 0 5px;
            }
        }



/* ///////////popular-products//////// */

.popular-products{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 40px;
    background-color: #efefef;
}

.produts-container{
    max-width: 80%;
    height: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 20px;
}
.produts-container a{
    text-decoration: none;
}
.products-box{
    width: 240px;
    height: 260px;
    padding: 20px;
    margin-top: 20px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.products-box:hover{
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.products-box p{
    font-size: 1rem;
    background-color: #00000093;
    padding: 5px;
    width: fit-content;
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
}

.products-img1{
    background-image: url(images/Double\ Bed.jpg); 
}
.products-img2{
    background-image: url(images/Office\ Cabinet.jpg); 
}
.products-img3{
    background-image: url(images/Office\ Table.jpeg); 
}

.products-img4{
    background-image: url(images/Dining\ Table.png); 
}
.products-img5{
    background-image: url(images/Centre\ Table.jpg); 
}
.products-img6{
    background-image: url(images/Dressing\ Table.jpg); 
}
.products-img7{
    background-image: url(images/Wardrobe\ With\ Dressing.jpg); 
}
.products-img8{
    background-image: url(images/Double\ Bed1.jpg); 
}

.section-button{
    background-color: #cc9600;
    color: #000;
    font-size: 1rem;
    text-decoration: none;
    padding: 10px 20px;
    font-weight: 600;
    margin-top: 30px;
}

@media (max-width: 980px){
    .products-box{
    width: 300px;
    height: 360px;
    }
}

@media (max-width: 768px){
    .produts-container{
    max-width: 100%;
    }

}



/* /////////Popular categories///////// */


.popular-categories {
    width: 100%;
    padding: 60px 0;
    background-color: #f9f9f9;
}

.popular-categories .categories-container {
    width: 100%;
    margin: 0 auto;
    display: flex;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #333;
    text-transform: uppercase;
}

.categories-grid {
    width: 90%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.services-categories-grid{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.category-item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.category-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.583);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 1s ease;
}

.icon-wrapper {
    text-align: center;
    color: white;
    transition: all 1s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.icon-wrapper img {
    width: 50px;
    height: auto;
}

.icon-wrapper span {
    font-size: 20px;
    font-weight: 600;
}

.hover-content {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 20px;
    background-color: #cc9600ac;
    transition: all .3s ease;
    box-sizing: border-box;
    color: #fff;
    font-weight: 600;
}

.category-item:hover .overlay,
.category-item:hover .icon-wrapper {
    opacity: 0;
}

.category-item:hover .hover-content {
    bottom: 0;
}

.categories-button{
    background-color: #cc9600;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 10%;
}
.categories-button .fas{
    font-size: 40px;
    color: white;
}
.categories-button .categories-btn-name{
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    display: none;
    text-decoration: none;
}

.categories-button:hover .categories-show-icon{
    display: none;
}
.categories-button:hover .categories-btn-name{
    display: block;
    transition: all 1s;
}



/* Responsive adjustments */
@media (max-width: 992px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-categories-grid{
        grid-template-columns: repeat(1, 1fr)
    }
    .popular-categories .categories-container{
        flex-direction: column;
    }
    .categories-button{
        width: 100%;
        height: 100px;
    }
    .categories-grid {
    width: 100%;
    }
}

@media (max-width: 576px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
    .popular-categories .categories-container{
        flex-direction: column;   
    }
}




 /* ///////Current Projects/////// */


.current-projects {
    width: 100%;
    padding: 60px 0;
    background-color: #f9f9f9;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.project-button{
    background-color: #cc9600;
    color: #fff;
    font-weight: 600;
    padding: 12px 20px;
    text-decoration: none;
}




/* //////Story/////// */


.aldac-story-section {
        position: relative;
        height: 70vh;
        overflow: hidden;
    }
    
    .aldac-parallax-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('images/bedroom-back-image.png');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        z-index: 0;
    }
    
    .aldac-content-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: rgba(0, 0, 0, 0.6);
        color: white;
        padding: 20px;
        text-align: center;
        z-index: 1;
    }
    
    .aldac-content-overlay h2 {
        font-size: 2rem;
        margin-bottom: 20px;
        font-weight: bold;
        text-transform: uppercase;
    }
    
    .aldac-content-overlay p {
        font-size: 1rem;
        width: 90%;;
        line-height: 1.4;
    }
    
    /* Mobile Responsive */
    @media (max-width: 768px) {
        .aldac-content-overlay h2 {
            font-size: 2rem;
        }
        
        .aldac-content-overlay p {
            font-size: 1rem;
            padding: 0 15px;
        }
        
        .aldac-parallax-bg {
            background-attachment: scroll;
        }
    }


    /* ///////Client Testimonials///////// */

    .client-testimonials {
        padding: 40px;
        font-family: Arial, sans-serif;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 20px;
        color: #333;
        text-transform: uppercase;
    }
    
    .testimonials-header {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin: 0 auto;
    }

    .testimonial-image-container {
        position: relative;
        cursor: pointer;
        display: inline-block;
        max-width: 560px;
        width: 100%;
    }

    .testimonial-image-container img {
        width: 100%;
        max-width: 400px;
        border-radius: 10px;
        transition: transform 0.3s;
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }

    .testimonial-image-container:hover img {
        transform: scale(1.02);
    }

    .play-icon {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 50px;
        color: rgba(255, 255, 255, 0.9);
        text-shadow: 0 0 15px rgba(0,0,0,0.7);
        transition: all 0.3s;
    }

    .testimonial-image-container:hover .play-icon {
        color: #fff;
        transform: translate(-50%, -50%) scale(1.1);
    }
    
    .view-more {
        color: #000000;
        text-decoration: none;
        font-size: 16px;
        background-color: #cc9600;
        font-weight: 500;
        padding: 12px 25px;
        margin-top: 25px;
        border-radius: 5px;
        transition: all 0.3s;
        display: inline-block;
    }

    .view-more:hover {
        background-color: #e0ac00;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    /* Video Overlay Styles */
    .video-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.95);
        z-index: 1000;
        justify-content: center;
        align-items: center;
    }

    .overlay-content {
        position: relative;
        width: 90%;
        max-width: 900px;
    }

    .video-container {
        position: relative;
        padding-bottom: 56.25%; /* 16:9 aspect ratio */
        height: 0;
        overflow: hidden;
        background: #000;
        border-radius: 8px;
    }

    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .client-testimonials {
            padding: 30px 20px;
        }
        
        .section-title {
            font-size: 1.5rem;
        }
        
        .play-icon {
            font-size: 50px;
        }
        
        .view-more {
            padding: 10px 20px;
            font-size: 15px;
        }
        
        .overlay-content {
            width: 95%;
        }
        
        .close-btn {
            top: -35px;
            font-size: 30px;
        }
    }



