/* 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 0;
    background-color: #fff; /* Or a very light grey if preferred */
}

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

.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; /* Adjust flex ratio as needed, e.g., flex: 0 0 45%; */
}

.dc-image-content {
    flex: 1; /* Adjust flex ratio as needed, e.g., flex: 0 0 55%; */
    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-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.dc-text-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px; /* Space before button if any */
}

.dc-item-button {
    display: inline-block;
    padding: 10px 25px;
    background-color: #f0f0f0; /* Light grey button */
    color: #333;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dc-item-button:hover {
    background-color: #e0e0e0;
    color: #222;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .dc-main-title {
        font-size: 32px;
    }
    .dc-description {
        font-size: 16px;
    }
    .dc-item-title {
        font-size: 24px;
    }
    .dc-process-item,
    .dc-process-item.dc-item-reverse {
        flex-direction: column;
        gap: 30px;
        text-align: center; /* Center text content on mobile */
    }
    .dc-image-content { /* Image will be above text in column layout by default */
        order: -1; /* Makes image appear first when flex-direction is column */
    }
    .dc-process-item.dc-item-reverse .dc-image-content {
        order: -1; /* Ensure image is still first for reversed items on mobile */
    }
    .dc-text-content p {
        font-size: 15px;
    }
    .dc-process-item {
        margin-bottom: 50px;
    }
}

@media (max-width: 767px) {
    .dc-header {
        margin-bottom: 40px;
    }
    .dc-main-title {
        font-size: 28px;
    }
    .dc-item-title {
        font-size: 22px;
    }
    .dc-image-content {
        /* Consider if full width images are too large on small mobile */
    }
}

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