/* Banner Styles */
.banner-desc-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.banner-desc-box-title {
    color: #fff;
    font-size: 48px;
    font-weight: bold;
    text-align: center;
}

.banner-desc-box-content {
    color: #fff;
    font-size: 18px;
    text-align: center;
}

@media (max-width: 767px) {
    .banner-desc-box{
        width: 98%;
    }
    .banner-desc-box-title h1{
        font-size: 22px;
    }
    .banner-desc-box-content{
        font-size: 16px;
    }
}

/* Breadcrumb Navigation Styles */
.breadcrumb-nav {
    padding: 20px 0;
    background-color: #fff;
}

.breadcrumb-container {
    max-width: 1680px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.breadcrumb-item {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 14px;
}

.breadcrumb-item:not(:last-child)::after {
    content: '>';
    margin-left: 10px;
    color: #999;
}

.breadcrumb-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.breadcrumb-item.active {
    color: #222;
    font-weight: 500;
}

.home-icon {
    display: flex;
    align-items: center;
}

.home-icon img {
    width: 16px;
    height: 16px;
}

/* Mobile Styles */
@media (max-width: 767px) {
    .breadcrumb-nav {
        padding: 15px 0;
    }

    .breadcrumb-container {
        padding: 0 15px;
    }

    .breadcrumb-item {
        font-size: 12px;
    }

    .breadcrumb-item:not(:last-child)::after {
        margin-left: 8px;
    }

    .home-icon img {
        width: 14px;
        height: 14px;
    }
}

.breadcrumb-item+.breadcrumb-item::before {
    display: none;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
}

/* Delicate Craftsmanship Section Styles */
.delicate-craftsmanship-section {
    padding: 60px 20px;
    background-color: #fff;
    /* Or a very light grey if preferred */
}

.dc-container {
    max-width: 1680px;
    /* Adjust as needed */
    margin: 0 auto;
    padding: 0;
}

.dc-header {
    text-align: center;
    margin-bottom: 50px;
}

.dc-subtitle-above {
    font-size: 16px;
    color: #666;
    margin-bottom: 8px;
}

.dc-main-title {
    font-size: 36px;
    font-weight: bold;
    color: #222;
    margin-bottom: 15px;
}

.dc-description {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.dc-process-list {
    /* Container for all process items */
}

.dc-process-item {
    display: flex;
    align-items: center;
    gap: 40px;
    /* Gap between text and image */
    margin-bottom: 70px;
    /* Space between process items */
}

.dc-process-item:last-child {
    margin-bottom: 0;
}

.dc-text-content {
    flex: 1;
    position: relative;
    /* For positioning the number */
    padding-top: 20px;
    /* Space for the number, adjust as needed */
}

.dc-image-content {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.dc-image-content img {
    width: 100%;
    height: auto;
    /* Maintain aspect ratio */
    display: block;
}

/* Reverse layout for alternate items */
.dc-process-item.dc-item-reverse {
    flex-direction: row-reverse;
}

.dc-item-number {
    font-size: 60px;
    /* Large number size */
    font-weight: bold;
    color: #ccc;
    /* Light grey color for the number */
    line-height: 1;
    z-index: -1;
    /* Place it behind the title */
    font-family: 'Times New Roman', Times, serif;
}

.dc-item-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-top: 15px;
    margin-bottom: 15px;
    position: relative;
    /* Ensure title is above the number */
    z-index: 1;
}

.dc-text-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    position: relative;
    /* Ensure text is above the number */
    z-index: 1;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .dc-main-title {
        font-size: 32px;
    }

    .dc-description {
        font-size: 16px;
    }

    .dc-item-number {
        font-size: 40px;
        top: -5px;
    }

    .dc-item-title {
        font-size: 24px;
    }

    .dc-process-item,
    .dc-process-item.dc-item-reverse {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .dc-image-content {
        order: -1;
    }

    .dc-process-item.dc-item-reverse .dc-image-content {
        order: -1;
    }

    .dc-text-content {
        padding-top: 30px;
        /* Increased padding for number on mobile */
    }

    .dc-text-content p {
        font-size: 15px;
    }

    .dc-process-item {
        margin-bottom: 50px;
    }

    .dc-item-number {
        left: 50%;
        transform: translateX(-50%);
        /* Center the number */
        top: 0;
    }
}

@media (max-width: 767px) {
    .dc-header {
        margin-bottom: 40px;
    }

    .dc-main-title {
        font-size: 28px;
    }

    .dc-item-number {
        font-size: 36px;
    }

    .dc-item-title {
        font-size: 22px;
    }
}

/* Featured Works Section Styles */
.featured-works-section {
    padding: 60px 0;
    background-color: #fff;
    /* Or a very light grey background */
}

.fw-container {
    max-width: 1680px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    /* overflow: hidden; */
    /* Add overflow hidden here */
}

.fw-header {
    text-align: center;
    margin-bottom: 40px;
}

.fw-main-title {
    font-size: 32px;
    font-weight: bold;
    color: #222;
    margin-bottom: 10px;
}

.fw-description {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    max-width: 650px;
    margin: 0 auto;
}

.featured-works-swiper {
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.fw-slide {
    text-align: center;
}

.fw-slide-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.fw-image-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    /* overflow: hidden; This was removed by user, ensure child img has radius */
    border-radius: 10px;
    margin-bottom: 15px;
    background-color: #f0f0f0;
    /* Placeholder background */
    transition: transform 0.3s ease;
}

.fw-slide-link:hover .fw-image-wrapper {
    transform: scale(1.03);
    /* Slight zoom on image wrapper hover */
}

.fw-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.fw-slide-caption {
    font-size: 16px;
    /* Increased font size for better visibility */
    color: #333;
    margin: 10px 0 0 0;
    /* Adjusted margin, particularly margin-top */
}

/* Swiper Navigation Buttons */
.fw-button-prev,
.fw-button-next {
    position: absolute;
    top: 50%;
    /* Calculations for positioning buttons outside the main slide area but within fw-container */
    /* Assumes slidesPerView=4 and spaceBetween=30 at 1400px container width */
    /* Slide area width approx (1400 - 2*20(padding) - 3*30(spaceBetween))/4 per slide */
    /* Buttons need to be outside this slide flow, but inside fw-container's padding */
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(240, 240, 240, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease;
    color: #333;
    z-index: 10;
}

.fw-button-prev:hover,
.fw-button-next:hover {
    background-color: rgba(220, 220, 220, 0.9);
}

.fw-button-prev {
    left: -25px;
    /* Adjust to be within fw-container's padding but outside slides */
}

.fw-button-next {
    right: -25px;
    /* Adjust to be within fw-container's padding but outside slides */
}

.fw-button-prev::after,
.fw-button-next::after {
    font-size: 18px;
    /* Arrow size */
    font-weight: bold;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .fw-main-title {
        font-size: 28px;
    }

    .featured-works-swiper {
        padding: 0 30px;
        /* Adjust padding for nav buttons */
    }
}

@media (max-width: 767px) {
    .fw-main-title {
        font-size: 26px;
    }

    .fw-description {
        font-size: 15px;
    }

    .featured-works-swiper {
        padding: 0;
        /* Remove padding, nav buttons might need different styling or hide */
    }

    .fw-button-prev,
    .fw-button-next {
        /* Example: hide buttons on very small screens or make them smaller */
        width: 30px;
        height: 30px;
        /* Or display: none; */
    }

    .fw-button-prev::after,
    .fw-button-next::after {
        font-size: 14px;
    }

    .fw-button-prev {
        left: 5px;
    }

    .fw-button-next {
        right: 5px;
    }
}

.site-footer {
    background: #fff !important;
}

.fw-content{
    position: relative;
}