.main {
    background-color: #000;
}

/* 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;
}

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

.breadcrumb-container {
    max-width: 1360px;
    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.active a {
    color: #fff;
}

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

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

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

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

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

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

/* Design Power Section */
.design-power-section {
    background-color: #000;
    color: #fff;
    padding: 80px 0;
}

.design-power-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.design-power-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: flex-start;
}

.design-power-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.design-power-title {
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin: 0;
}

.design-power-description {
    font-size: 18px;
    color: #ccc;
    line-height: 1.6;
    margin: 0;
}

@media(min-width:768px) and (max-width:1365px) {
    .design-power-description {
        font-size: 16px;
    }
}

.design-explore-btn {
    background: #FF99D3;
    color: #fff;
    padding: 10px 25px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    width: fit-content;
    cursor: pointer;
    transition: all 0.3s ease;
}

@media(max-width:767px) {
    .design-explore-btn {
        font-size: 14px;
    }
}

.design-explore-btn:hover {
    background: #e88bc4;
    color: #fff;
    transform: translateY(-2px);
    text-decoration: none;
    font-weight: 700;
}

/* Wireframes */
.design-wireframes {
    margin-top: 60px;
}

.wireframe-grid {
    background: #fff;
    padding: 10px;
}

.wireframe-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wireframe-item {
    background: #f5f5f5;
    border: 2px solid #ddd;
    border-radius: 8px;
    height: 120px;
    position: relative;
}

.wireframe-mobile {
    width: 60px;
    height: 120px;
    border-radius: 15px;
}

.wireframe-mobile::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: #ddd;
    border-radius: 2px;
}

.wireframe-mobile::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 15px;
    background: #ddd;
    border-radius: 50%;
}

.wireframe-stack {
    width: 80px;
    height: 100px;
}

.wireframe-tablet {
    width: 90px;
    height: 120px;
    border-radius: 10px;
}

.wireframe-desktop {
    width: 120px;
    height: 80px;
    border-radius: 5px;
}

/* Design Services Right Side */
.design-power-right {
    /* padding-top: 60px; */
}

@media(min-width:768px) and (max-width:1365px) {
    .design-power-right {
        padding-top: 0;
    }
}

.design-services-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.design-service-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    flex-direction: column;
}

.service-number {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    min-width: 40px;
    flex-shrink: 0;
}

.service-content {
    flex: 1;
}

.service-description {
    font-size: 18px;
    color: #808080;
    line-height: 1.6;
    margin: 0;
}

@media(min-width:768px) and (max-width:1365px) {
    .service-description {
        font-size: 16px;
    }
}

/* Design Gallery Section */
.design-gallery-section {
    background-color: #000;
    padding: 0 0 80px 0;
}

.design-gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.design-gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-item-large {
    height: 300px;
}

.gallery-item-medium {
    height: 400px;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 14px;
}

.gallery-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 1366px) {
    .design-power-content {
        gap: 60px;
    }

    .design-power-title {
        font-size: 30px;
    }

    .wireframe-grid {
        padding: 30px;
        gap: 15px;
    }

    .wireframe-item {
        height: 100px;
    }

    .wireframe-mobile {
        height: 100px;
    }

    .design-services-list {
        gap: 40px;
    }

    .design-gallery-grid {
        gap: 15px;
    }

    .gallery-item-large,
    .gallery-item-medium {
        height: 250px;
    }
}

/* Mobile Styles */
@media (max-width: 767px) {
    .design-power-section {
        padding: 40px 0;
    }

    .design-power-container {
        padding: 0 15px;
    }

    .design-power-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .design-power-title {
        font-size: 24px;
    }

    .design-power-description {
        font-size: 14px;
    }

    .design-power-right {
        padding-top: 0;
    }

    .wireframe-grid {
        grid-template-columns: repeat(3, 1fr);
        padding: 20px;
        gap: 10px;
    }

    .wireframe-item {
        height: 80px;
    }

    .wireframe-mobile {
        height: 80px;
        width: 40px;
    }

    .wireframe-stack {
        width: 50px;
        height: 70px;
    }

    .wireframe-tablet {
        width: 60px;
        height: 80px;
    }

    .wireframe-desktop {
        width: 80px;
        height: 60px;
    }

    .design-services-list {
        gap: 30px;
    }

    .design-service-item {
        gap: 20px;
    }

    .service-number {
        font-size: 16px;
        min-width: 30px;
    }

    .service-description {
        font-size: 14px;
    }

    .design-gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-item-large,
    .gallery-item-medium {
        height: 250px;
    }
}

/* Breadcrumb 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;
    }
}

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

.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;
}

.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: 36px;
    font-weight: bold;
    color: #222;
    margin-bottom: 15px;
}

.dc-description {
    font-size: 17px;
    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;
    flex-direction: row-reverse;
    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;
}

.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;
}

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

/* 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 */
        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;
        text-align: left;
    }

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

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

/* Customer Case Section Styles */
.customer-case-section {
    padding: 60px 20px;
    background-color: #fff;
    /* White background */
    overflow: hidden;
}

.cc-container {
    max-width: 1680px;
    /* Full width for the carousel */
    margin: 0 auto;
    padding: 0;
    /* Adjust padding as needed */
}

.cc-main-title {
    font-size: 32px;
    font-weight: bold;
    color: #222;
    text-align: center;
    margin-bottom: 40px;
}

.customer-case-swiper {
    width: 100%;
    /* overflow: hidden; Swiper handles this */
}

.customer-case-swiper .swiper-wrapper {
    display: flex;
    /* Ensure it's a flex container, Swiper usually does this */
    align-items: stretch;
    /* This is key to make all slides in a row have the same height */
}

.cc-slide {
    overflow: hidden;
    /* Ensures content respects border-radius */
    display: flex;
    /* Make the slide itself a flex container */
    flex-direction: column;
    /* Stack its children vertically */
    /* box-shadow: 0 6px 15px rgba(0,0,0,0.07); */
    height: auto;
    /* Important: Override Swiper's potential inline height */
    align-self: stretch;
    /* Ensure the slide stretches to the height of the wrapper's flex line */
}

.cc-image-wrapper {
    width: 100%;
    aspect-ratio: 16 / 10;
    /* Placeholder */
    flex-shrink: 0;
    /* Prevent image wrapper from shrinking */
}

.cc-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cc-testimonial-content {
    padding: 25px;
    flex-grow: 1;
    /* Allows this part to fill remaining space */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Pushes customer info to bottom if content is short */
}

.cc-quote {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    /* Allows quote to take up available space within testimonial content */
}

.cc-customer-info {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    margin-top: auto;
    /* Pushes to bottom if testimonial is short */
}

.cc-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.cc-customer-details {
    /* Styles for name and role container */
}

.cc-customer-name {
    font-size: 18px;
    color: #000;
    margin: 0 0 2px 0;
    text-align: center;
}

@media(min-width:768px) and (max-width:1365px) {
    .cc-customer-name {
        font-size: 14px;
    }
}

.cc-customer-role {
    font-size: 13px;
    color: #555;
    margin: 0;
}

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

    /* Swiper slidesPerView will handle column changes in JS */
}

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

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

    .cc-testimonial-content {
        padding: 20px;
    }

    .cc-quote {
        font-size: 14px;
    }

    .cc-customer-name {
        font-size: 15px;
    }

    .cc-avatar {
        width: 45px;
        height: 45px;
    }
}

.line-box {
    width: 100px;
    height: 3px;
    background-color: #fff;
    margin-bottom: 50px;
}