.dish-end-section {
    padding: 50px 0;
    background: #fff;
}

.dish-end-section .container {
    width: 90%;
    margin: auto;
}

.dish-image {
    width: 100%;
    margin-bottom: 20px;
}

.dish-image img {
    width: 90%;
    height: 500px;

    border-radius: 6px;
    display: block;
}

.toc-box {
    width: 100%;
    background: #0d506e;
    padding: 35px;
    border-radius: 5px;
}

.toc-box h3 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 600;
}

.toc-box ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.toc-box ul li {
    margin-bottom: 18px;
}

.toc-box ul li:last-child {
    margin-bottom: 0;
}

.toc-box ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: .3s;
}

.toc-box ul li a:hover {
    color: #ffd24d;
    padding-left: 8px;
}

.product-content {
    padding: 40px 0;
}

.product-content .container {
    width: 90%;
    margin: auto;
}

.product-content p {
    font-size: 18px;
    line-height: 32px;
    color: #555;
    margin-bottom: 25px;
    text-align: justify;
}

.product-content h2 {
    color: #0d506e;
    font-size: 30px;
    line-height: 48px;
    margin-top: 15px;
    margin-bottom: 20px;
    font-weight: 700;
}

/* Responsive */

@media(max-width:768px) {

    .toc-box {
        padding: 25px;
    }

    .toc-box h3 {
        font-size: 24px;
    }

    .toc-box ul li a {
        font-size: 16px;
    }

    .product-content h2 {
        font-size: 28px;
        line-height: 40px;
    }

    .product-content p {
        font-size: 16px;
        line-height: 28px;
    }

}

.ss-dish-description {
    padding: 0px 0 20px;
}

.ss-dish-description .container {
    width: 90%;
    margin: auto;
}

.ss-dish-description p {
    font-size: 18px;
    color: #555;
    line-height: 32px;
    text-align: justify;
    margin-bottom: 25px;
}

.ss-dish-description h2 {
    font-size: 30px;
    color: #0d506e;
    margin-top: 20px;
    margin-bottom: 30px;
    font-weight: 700;
}

/* Specification */

.specification-box {
    padding-bottom: 20px;
}

.specification-box .container {
    width: 90%;
    margin: auto;
}

.spec-box {
    background: #f8f8f8;
    border: 1px solid #e5e5e5;
    padding: 40px;
    border-radius: 6px;
}

.spec-row {
    display: flex;
    margin-bottom: 22px;
    align-items: flex-start;
}

.spec-row:last-child {
    margin-bottom: 0;
}

.spec-row strong {
    width: 230px;
    color: #0d506e;
    font-size: 19px;
    font-weight: 600;
}

.spec-row span {
    flex: 1;
    color: #444;
    font-size: 18px;
    line-height: 30px;
}

/* Mobile */

@media(max-width:768px) {

    .spec-box {
        padding: 25px;
    }

    .spec-row {
        display: block;
    }

    .spec-row strong {
        display: block;
        width: 100%;
        margin-bottom: 8px;
        font-size: 17px;
    }

    .spec-row span {
        font-size: 16px;
        line-height: 28px;
    }

    .ss-dish-description h2 {
        font-size: 28px;
        line-height: 40px;
    }

    .ss-dish-description p {
        font-size: 16px;
        line-height: 28px;
    }

}

.material-types {
    padding: 20px 0;
}

.material-types .container {
    width: 90%;
    margin: auto;
}

.material-types h2 {
    font-size: 30px;
    color: #0d506e;
    margin-bottom: 35px;
    font-weight: 700;
}

.material-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.material-grid a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 70px;
    padding: 15px;
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    background: #fff;
    color: #0d506e;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s ease;
}

.material-grid a:hover {
    background: #0d506e;
    color: #fff;
    border-color: #0d506e;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

@media(max-width:991px) {
    .material-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:576px) {
    .material-grid {
        grid-template-columns: 1fr;
    }

    .material-types h2 {
        font-size: 28px;
    }

    .material-grid a {
        font-size: 16px;
        min-height: 60px;
    }
}

.dish-types {
    padding: 20px 0;
}

.dish-types .container {
    width: 90%;
    margin: auto;
}

.dish-types h2 {
    color: #0d506e;
    font-size: 30px;
    margin-bottom: 25px;
}

.dish-table {
    width: 100%;
    border-collapse: collapse;
}

.dish-table td {
    border: 1px solid #ddd;
    padding: 20px;
    width: 50%;
    vertical-align: middle;
}

.dish-table td a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    line-height: 30px;
    transition: .3s;
}

.dish-table td a:hover {
    color: #0d506e;
    padding-left: 8px;
}

@media(max-width:768px) {

    .dish-table,
    .dish-table tr,
    .dish-table td {
        display: block;
        width: 100%;
    }

}

.application-section {
    padding: 20px 0px;
}

.application-section .container {
    width: 90%;
    margin: auto;
}

.application-section h2 {
    font-size: 30px;
    color: #0d506e;
    margin-bottom: 30px;
    font-weight: 700;
}

.application-table {
    width: 100%;
    border-collapse: collapse;
}

.application-table td {
    width: 50%;
    padding: 18px 20px;
    font-size: 18px;
    color: #333;
    /* border:1px solid #e5e5e5; */
    transition: .3s;
}

.application-table td:hover {
    background: #f5f9fc;
    color: #0d506e;
}

@media(max-width:768px) {

    .application-table,
    .application-table tr,
    .application-table td {
        display: block;
        width: 100%;
    }

    .application-table td {
        border-bottom: 1px solid #ddd;
    }

}

.enquiry-section {
    padding: 20px 0;
}

.enquiry-section .container {
    width: 90%;
    margin: auto;
}

.enquiry-box {
    background: #2f2f2f;
    border-radius: 6px;
    padding: 45px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.enquiry-content {
    width: 70%;
}

.enquiry-content h3 {
    color: #ffffff;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 15px;
}

.enquiry-content p {
    color: #d9d9d9;
    font-size: 22px;
    line-height: 34px;
    margin: 0;
}

.enquiry-btn {
    width: 30%;
    display: flex;
    justify-content: flex-end;
}

.enquiry-btn a {
    background: #d9e2f8;
    color: #000;
    text-decoration: none;
    font-size: 22px;
    font-weight: 600;
    padding: 18px 45px;
    border-radius: 50px;
    transition: .3s;
    display: inline-block;
}

.enquiry-btn a:hover {
    background: #0d506e;
    color: #fff;
}

/* Responsive */

@media(max-width:991px) {

    .enquiry-box {
        flex-direction: column;
        text-align: center;
        padding: 35px 25px;
    }

    .enquiry-content,
    .enquiry-btn {
        width: 100%;
    }

    .enquiry-btn {
        justify-content: center;
    }

    .enquiry-content h3 {
        font-size: 30px;
    }

    .enquiry-content p {
        font-size: 18px;
        line-height: 30px;
    }

    .enquiry-btn a {
        font-size: 18px;
        padding: 15px 35px;
    }

}