/* 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 {
    width: 100%;
    max-width: 1400px;
    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: 16px;
}

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

@media(max-width:767px){
    .delicate-craftsmanship-section{
        padding:30px 0 60px;
    }
}

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

@media(max-width:767px){
    .dc-container{
        padding:0 15px;
    }
}

.dc-header {
    text-align: left;
    margin-bottom: 50px;
    width: 100%;
    max-width: 1400px;
    padding: 0 20px 20px;
    margin: 80px auto 0;
    position: relative;
}

@media(max-width:767px){
    .dc-header{
        margin:0;
        padding:0 15px 20px;
    }
}

.dc-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 1px;
    background-color: #000;
}

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

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

.dc-description {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    width: 100%;
    max-width: 1400px;
    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%; */
    overflow: hidden;
}

.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: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    text-align: left;
}

.dc-text-content p {
    font-size: 18px;
    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: #FF99D3;
    /* Light grey button */
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;
    width: 150px; 
    text-align: center;
    font-size:18px;
    transition: all 0.3s ease;
}

@media(min-width:768px) and (max-width:1365px) {
    .dc-item-button {
        font-size:14px;
    }
}

@media(max-width:767px){
    .dc-item-button{
        font-size:14px;
    }
}

.dc-item-button:hover {
    font-weight: 700;
    background: #FF99D3;
    color: #fff;
    border: none;
}

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

    .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: left;
        /* 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 */
        width: 100%;
    }

    .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: 14px;
    }

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

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

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

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

    .dc-image-content {
        /* Consider if full width images are too large on small mobile */
    }
}