.custom-section {
    width: 100%;
    padding: 80px 50px;
    text-align: center;
    font-family: Arial, sans-serif;
}

.custom-rugs-section p,
.custom-rugs-section li {
    text-align: justify;
}

.breadcrumb {
    font-size: 13px;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 15px;
}

.custom-section h1 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 10px;
}

.subtitle {
    color: #666;
    margin-bottom: 20px;
}

.links {
    margin-bottom: 50px;
    font-size: 15px;
}

.links a {
    text-decoration: none;
    color: black;
    font-weight: 500;
}

.links a:hover {
    text-decoration: underline;
}

.content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    gap: 60px;
    text-align: left;
}

/* LEFT SIDE */
.left {
    flex: 1;
}

.left img {
    width: 100%;
    max-width: 600px;
    border-radius: 2px;
}

/* RIGHT SIDE */
.right {
    flex: 1;
    max-width: 450px;
}

.right h2 {
    font-size: 34px;
    margin-bottom: 15px;
}

.right p {
    color: #444;
    font-size: 16px;
    line-height: 1.6;
}

/* ✅ Responsive for mobile */
@media screen and (max-width: 768px) {
    .content {
        flex-direction: column;
        text-align: center;
    }

    .right {
        max-width: 100%;
    }

    .left img {
        max-width: 100%;
    }
}


.design-freeze-section {
    padding: 80px 50px;
    background: #fff;
}

.df-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* LEFT SIDE */
.df-left {
    max-width: 400px;
}

.df-left h2 {
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 15px;
}

.df-left p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

/* RIGHT SIDE */
.df-right {
    text-align: center;
}

.df-image img {
    width: 100%;
    max-width: 500px;
    border: 1px solid #eee;
    margin-bottom: 20px;
}

/* Buttons row */
.df-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
}

.btn-small {
    padding: 10px 50px;
    border: none;
    background: #ead7c2;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
}

.btn-approve {
    width: 100%;
    padding: 14px;
    border: none;
    background: #ead7c2;
    font-size: 15px;
    letter-spacing: 1px;
    cursor: pointer;
}

/* Hover effect */
.btn-small:hover,
.btn-approve:hover {
    background: #d8c0a3;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .df-container {
        flex-direction: column;
        text-align: center;
    }

    .df-left {
        max-width: 100%;
    }

    .df-right img {
        max-width: 100%;
    }
}


.custom-rugs-section {
    padding: 50px 20px;
    background: #f8f8f8;
}

.custom-rugs-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.custom-rugs-section p,
.custom-rugs-section li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.read-more-btn {
    display: inline-block;
    background: #ff6b00;
    color: #fff;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.read-more-btn:hover {
    background: #e65a00;
}

.full-text h3 {
    margin-top: 20px;
    font-size: 20px;
}

.full-text ul {
    margin-left: 20px;
}


.washing-process-section {
    position: relative;
    padding: 100px 0;
    background: url('../images/carpet\ washing.jpg') center center / cover no-repeat;
}

.washing-process-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.washing-process-section .container {
    position: relative;
    z-index: 2;
}

.section-title {
    text-align: center;
    color: #fff;
    font-size: 36px;
    margin-bottom: 60px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.process-card {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    padding: 35px;
    color: #fff;
    min-height: 220px;
    position: relative;

}

.process-card span {
    font-size: 42px;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.process-card h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: white;
}

.process-card p {
    font-size: 15px;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 991px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}