@media (min-width: 1520px) {
    html, body {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        background-color: #111;
        font-family: 'Bai Jamjuree', sans-serif;
    }


    /* Header Styles */
    .header-title {
        color: #ffffff;
        font-size: 2.5rem;
        font-family: 'Black Ops One', sans-serif;
        margin-bottom: 1rem;
    }

    .header-content {
        display: flex;
        color: #ffffff;
        align-items: center;
        gap: 0rem;
    }

    .description-wrapper {
        flex: 1;
    }

    .header-description {
        font-size: 1.2rem;
    }

    .view-all-wrapper {
        display: flex;
        align-items: center;
    }

    .view-all-button {
        background-color: #D67026;
        color: #111;
        border: none;
        padding: 0.5rem 1rem;
        cursor: pointer;
        font-size: 1rem;
        transition: background-color 0.3s ease;
        border-radius: 8px;
        font-family: 'Bai Jamjuree', sans-serif;
    }

        .view-all-button:hover {
            background-color: #e65c00;
        }

    .featured-products-section,
    .testimonials-section,
    .faq-section {
        width: 90%;
        max-width: 1300px;
        margin: 0 auto;
        padding: 2rem 0;
    }

    /* Updated product card styles */
    .product-card {
        background-color: #222;
        border: 2px solid #777;
        border-radius: 8px;
        overflow: hidden;
        width: calc(33.3333% - 30px); /* Adjust width to show 3 cards per page */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        margin: 10px;
        flex: 0 0 calc(33.3333% - 30px); /* Adjust width to show 3 cards per page */
        gap: 10px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        box-sizing: border-box;
    }

    .products-wrapper {
        overflow: hidden;
        width: 100%; /* Ensure full width */
        display: flex;
        justify-content: center;
        align-items: center;
    }


    .product-button {
        background-color: #D67026;
        color: #111;
        border: none;
        padding: 0.75rem; /* Increased padding */
        width: 100%;
        text-align: center;
        cursor: pointer;
        transition: background-color 0.3s ease;
        border-radius: 5px;
        font-family: 'Bai Jamjuree', sans-serif;
        margin-top: auto;
    }

        .product-button:hover {
            background-color: #e65c00;
        }

    /* Products Container */
    .products-container {
        display: flex;
        transition: transform 0.5s ease-in-out;
        gap: 10px;
        width: 100%; /* Ensure full width */
    }

    /* Product Card Styles */
    .products-section {
        padding: 60px 120px;
        background-color: #111;
        color: white;
        text-align: center;
    }

    .products-header h2 {
        font-size: 2.5rem;
        font-family: 'Black Ops One', sans-serif;
        margin-bottom: 25px;
    }

    .products-header p {
        font-size: 1.1rem;
        font-family: 'Bai Jamjuree', sans-serif;
        margin-bottom: 50px;
        max-width: 800px;
        margin: 0 auto;
    }

    .products-wrapper {
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .products-container {
        display: flex;
        transition: transform 0.5s ease-in-out;
        gap: 10px;
    }

    .product-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .product-info {
        padding: 1.5rem;
        color: #ffffff;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        flex-grow: 1;
    }

    .product-title {
        font-family: 'Black Ops One', sans-serif;
        font-size: 1.5rem;
        margin: 0.5rem 0;
        color: #fff;
    }

    .product-description {
        font-size: 1rem;
        margin: 0.5rem 0;
        font-family: 'Bai Jamjuree', sans-serif;
        text-align: center; /* Center the description horizontally */
    }

    .product-button {
        background-color: #D67026;
        color: #111;
        border: none;
        padding: 0.75rem;
        width: 100%;
        text-align: center;
        cursor: pointer;
        transition: background-color 0.3s ease;
        border-radius: 5px;
        font-family: 'Bai Jamjuree', sans-serif;
        margin-top: auto;
    }

        .product-button:hover {
            background-color: #e65c00;
        }

    .carousel-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .arrow-button {
        background-color: #333;
        border: 1px solid #ccc;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

        .arrow-button img {
            width: 20px;
            height: 20px;
        }

        .arrow-button:hover {
            background-color: rgba(0, 0, 0, 0.8);
        }

    .page-number {
        text-align: center;
        margin-top: 1rem;
        font-size: 1.2rem;
        font-family: 'Bai Jamjuree', sans-serif;
        color: #fff;
    }

    .carousel-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    /* Contact Section */
    .contact-section {
        padding: 50px 100px;
        background-color: #111;
        color: white;
        text-align: center;
    }

    .contact-header h2 {
        font-size: 2.5rem;
        font-family: 'Black Ops One', sans-serif;
        margin-bottom: 20px;
    }

    .contact-header p {
        font-size: 1.1rem;
        font-family: 'Bai Jamjuree', sans-serif;
        max-width: 800px;
        margin: 0 auto;
        margin-bottom: 30px;
    }


    .contact-form form {
        max-width: 800px;
        margin: 0 auto;
        text-align: left;
    }

    .form-group {
        display: flex;
        flex-wrap: nowrap;
        gap: 20px;
        margin-bottom: 20px;
    }

        .form-group input, .form-group select {
            flex: 1;
        }

        .form-group.button-group {
            margin-top: 20px;
        }

    form input, form select, form textarea {
        width: calc(50% - 10px);
        padding: 15px;
        border: none;
        border-radius: 5px;
        background-color: #1a1a1a;
        color: white;
        font-family: 'Bai Jamjuree', sans-serif;
        font-size: 1rem;
    }

    form textarea {
        width: 100%;
        height: 150px;
        resize: none;
    }

    form button {
        background-color: #D67026;
        color: #111;
        padding: 15px 30px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-family: 'Bai Jamjuree', sans-serif;
        font-size: 1rem;
        display: block;
        width: 100%;
        text-align: center;
    }

        form button:hover {
            background-color: #e65c00;
        }
    /* Ensuring the correct styles are applied */
    .footer-logo-email {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        width: 350px;
        margin: 0 auto;
    }

    .footer-logo {
        width: 100px;
    }

    .footer-email {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 0.5rem;
    }

    .footer-email-input {
        padding: 1rem;
        font-size: 1rem;
        border-radius: 4px;
        border: none;
        width: 200px;
        box-sizing: border-box;
        background-color: #fff; /* Ensure the input background is white */
        color: #777;
    }

    .footer-email-button {
        background-color: #D67026;
        border: none;
        padding: 0.5rem 1rem;
        cursor: pointer;
        border-radius: 4px;
        font-size: 1rem;
        color: #111;
        font-family: 'Bai Jamjuree', sans-serif;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 62px;
    }
}
@media (min-width: 920px) and (max-width: 1519px) {
    html, body {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        background-color: #111;
        font-family: 'Bai Jamjuree', sans-serif;
    }


    /* Header Styles */
    .header-title {
        color: #ffffff;
        font-size: 2.5rem;
        font-family: 'Black Ops One', sans-serif;
        margin-bottom: 1rem;
    }

    .header-content {
        display: flex;
        color: #ffffff;
        align-items: center;
        gap: 0rem;
    }

    .description-wrapper {
        flex: 1;
    }

    .header-description {
        font-size: 1.2rem;
    }

    .view-all-wrapper {
        display: flex;
        align-items: center;
    }

    .view-all-button {
        background-color: #D67026;
        color: #111;
        border: none;
        padding: 0.5rem 1rem;
        cursor: pointer;
        font-size: 1rem;
        transition: background-color 0.3s ease;
        border-radius: 8px;
        font-family: 'Bai Jamjuree', sans-serif;
    }

        .view-all-button:hover {
            background-color: #e65c00;
        }

    .featured-products-section,
    .testimonials-section,
    .faq-section {
        width: 90%;
        max-width: 1300px;
        margin: 0 auto;
        padding: 2rem 0;
    }

    /* Updated product card styles */
    .product-card {
        background-color: #222;
        border: 2px solid #777;
        border-radius: 8px;
        overflow: hidden;
        width: calc(33.3333% - 30px); /* Adjust width to show 3 cards per page */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        margin: 10px;
        flex: 0 0 calc(33.3333% - 30px); /* Adjust width to show 3 cards per page */
        gap: 10px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        box-sizing: border-box;
    }

    .products-wrapper {
        overflow: hidden;
        width: 100%; /* Ensure full width */
        display: flex;
        justify-content: center;
        align-items: center;
    }


    .product-button {
        background-color: #D67026;
        color: #111;
        border: none;
        padding: 0.75rem; /* Increased padding */
        width: 100%;
        text-align: center;
        cursor: pointer;
        transition: background-color 0.3s ease;
        border-radius: 5px;
        font-family: 'Bai Jamjuree', sans-serif;
    }

        .product-button:hover {
            background-color: #e65c00;
        }

    /* Products Container */
    .products-container {
        display: flex;
        transition: transform 0.5s ease-in-out;
        gap: 10px;
        width: 100%; /* Ensure full width */
    }

    /* Product Card Styles */
    .products-section {
        padding: 60px 120px;
        background-color: #111;
        color: white;
        text-align: center;
    }

    .products-header h2 {
        font-size: 2.5rem;
        font-family: 'Black Ops One', sans-serif;
        margin-bottom: 25px;
    }

    .products-header p {
        font-size: 1.1rem;
        font-family: 'Bai Jamjuree', sans-serif;
        margin-bottom: 50px;
        max-width: 800px;
        margin: 0 auto;
    }

    .products-wrapper {
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .products-container {
        display: flex;
        transition: transform 0.5s ease-in-out;
        gap: 10px;
    }

    .product-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .product-info {
        padding: 0.5rem;
        color: #ffffff;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .product-title {
        font-family: 'Black Ops One', sans-serif;
        font-size: 1.5rem;
        margin: 0.5rem 0;
        color: #fff;
    }

    .product-description {
        font-size: 1rem;
        margin: 0.5rem 0;
        font-family: 'Bai Jamjuree', sans-serif;
        text-align: center; /* Center the description horizontally */
        display: none;
    }

    .product-button {
        background-color: #D67026;
        color: #111;
        border: none;
        padding: 0.75rem;
        width: 100%;
        text-align: center;
        cursor: pointer;
        transition: background-color 0.3s ease;
        border-radius: 5px;
        font-family: 'Bai Jamjuree', sans-serif;
        margin-top: auto;
    }

        .product-button:hover {
            background-color: #e65c00;
        }

    .carousel-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .arrow-button {
        background-color: #333;
        border: 1px solid #ccc;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

        .arrow-button img {
            width: 20px;
            height: 20px;
        }

        .arrow-button:hover {
            background-color: rgba(0, 0, 0, 0.8);
        }

    .page-number {
        text-align: center;
        margin-top: 1rem;
        font-size: 1.2rem;
        font-family: 'Bai Jamjuree', sans-serif;
        color: #fff;
    }

    .carousel-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    /* Contact Section */
    .contact-section {
        padding: 50px 100px;
        background-color: #111;
        color: white;
        text-align: center;
    }

    .contact-header h2 {
        font-size: 2.5rem;
        font-family: 'Black Ops One', sans-serif;
        margin-bottom: 20px;
    }

    .contact-header p {
        font-size: 1.1rem;
        font-family: 'Bai Jamjuree', sans-serif;
        max-width: 800px;
        margin: 0 auto;
        margin-bottom: 30px;
    }


    .contact-form form {
        max-width: 800px;
        margin: 0 auto;
        text-align: left;
    }

    .form-group {
        display: flex;
        flex-wrap: nowrap;
        gap: 20px;
        margin-bottom: 20px;
    }

        .form-group input, .form-group select {
            flex: 1;
        }

        .form-group.button-group {
            margin-top: 20px;
        }

    form input, form select, form textarea {
        width: calc(50% - 10px);
        padding: 15px;
        border: none;
        border-radius: 5px;
        background-color: #1a1a1a;
        color: white;
        font-family: 'Bai Jamjuree', sans-serif;
        font-size: 1rem;
    }

    form textarea {
        width: 100%;
        height: 150px;
        resize: none;
    }

    form button {
        background-color: #D67026;
        color: #111;
        padding: 15px 30px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-family: 'Bai Jamjuree', sans-serif;
        font-size: 1rem;
        display: block;
        width: 100%;
        text-align: center;
    }

        form button:hover {
            background-color: #e65c00;
        }
    /* Ensuring the correct styles are applied */
    .footer-logo-email {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        width: 350px;
        margin: 0 auto;
    }

    .footer-logo {
        width: 100px;
    }

    .footer-email {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 0.5rem;
    }

    .footer-email-input {
        padding: 1rem;
        font-size: 1rem;
        border-radius: 4px;
        border: none;
        width: 200px;
        box-sizing: border-box;
        background-color: #fff; /* Ensure the input background is white */
        color: #777;
    }

    .footer-email-button {
        background-color: #D67026;
        border: none;
        padding: 0.5rem 1rem;
        cursor: pointer;
        border-radius: 4px;
        font-size: 1rem;
        color: #111;
        font-family: 'Bai Jamjuree', sans-serif;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 62px;
    }
}

@media (max-width: 919px) {
    html, body {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        background-color: #111;
        font-family: 'Bai Jamjuree', sans-serif;
    }


    /* Header Styles */
    .header-title {
        color: #ffffff;
        font-size: 2.5rem;
        font-family: 'Black Ops One', sans-serif;
        margin-bottom: 1rem;
    }

    .header-content {
        display: flex;
        color: #ffffff;
        align-items: center;
        gap: 0rem;
    }

    .description-wrapper {
        flex: 1;
    }

    .header-description {
        font-size: 1.2rem;
    }

    .view-all-wrapper {
        display: flex;
        align-items: center;
    }

    .view-all-button {
        background-color: #D67026;
        color: #111;
        border: none;
        padding: 0.5rem 1rem;
        cursor: pointer;
        font-size: 1rem;
        transition: background-color 0.3s ease;
        border-radius: 8px;
        font-family: 'Bai Jamjuree', sans-serif;
    }

        .view-all-button:hover {
            background-color: #e65c00;
        }

    .featured-products-section,
    .testimonials-section,
    .faq-section {
        width: 90%;
        max-width: 1300px;
        margin: 0 auto;
        padding: 2rem 0;
    }

    /* Updated product card styles */
    .product-card {
        background-color: #222;
        border: 2px solid #777;
        border-radius: 8px;
        overflow: hidden;
        width: calc(33.3333% - 15px); /* Adjust width to show 3 cards per page */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        flex: 0 0 calc(33.3333% - 10px); /* Adjust width to show 3 cards per page */
        gap: 10px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        box-sizing: border-box;
    }

    .products-wrapper {
        overflow: hidden;
        width: 100%; /* Ensure full width */
        display: flex;
        justify-content: center;
        align-items: center;
    }


    .product-button {
        background-color: #D67026;
        color: #111;
        border: none;
        padding: 0.75rem; /* Increased padding */
        width: 100%;
        text-align: center;
        cursor: pointer;
        transition: background-color 0.3s ease;
        border-radius: 10px;
        font-family: 'Bai Jamjuree', sans-serif;
    }

        .product-button:hover {
            background-color: #e65c00;
        }

    /* Products Container */
    .products-container {
        display: flex;
        transition: transform 0.5s ease-in-out;
        width: 100%; /* Ensure full width */
    }

    /* Product Card Styles */
    .products-section {
        background-color: #111;
        color: white;
        text-align: center;
    }

    .products-header h2 {
        font-size: 2.5rem;
        font-family: 'Black Ops One', sans-serif;
        margin-bottom: 25px;
    }

    .products-header p {
        font-size: 1.1rem;
        font-family: 'Bai Jamjuree', sans-serif;
        margin-bottom: 50px;
        max-width: 800px;
        margin: 0 auto;
    }

    .products-wrapper {
    
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .products-container {
        display: flex;
        transition: transform 0.5s ease-in-out;
        gap: 10px;
    }

    .product-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .product-info {
        padding: 0.5rem;
        color: #ffffff;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .product-title {
        font-family: 'Black Ops One', sans-serif;
        font-size: 1rem;
        margin: 0.5rem 0;
        color: #fff;
    }

    .product-description {
        font-size: 1rem;
        margin: 0.5rem 0;
        font-family: 'Bai Jamjuree', sans-serif;
        text-align: center; /* Center the description horizontally */
        display: none;
    }

    .product-button {
        background-color: #D67026;
        color: #111;
        border: none;
        padding: 0.75rem;
        width: 100%;
        text-align: center;
        cursor: pointer;
        transition: background-color 0.3s ease;
        border-radius: 5px;
        font-family: 'Bai Jamjuree', sans-serif;
        margin-top: auto;
    }

        .product-button:hover {
            background-color: #e65c00;
        }

    .carousel-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .arrow-button {
        background-color: #333;


        width: 30px;
        height: 100px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

        .arrow-button img {
            width: 20px;
            height: 20px;
        }

        .arrow-button:hover {
            background-color: rgba(0, 0, 0, 0.8);
        }

    .page-number {
        text-align: center;
        margin-top: 1rem;
        font-size: 1.2rem;
        font-family: 'Bai Jamjuree', sans-serif;
        color: #fff;
    }

    .carousel-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    /* Contact Section */
    .contact-section {
        padding: 50px 20px;
        background-color: #111;
        color: white;
        text-align: center;
    }

    .contact-header h2 {
        font-size: 2.5rem;
        font-family: 'Black Ops One', sans-serif;
        margin-bottom: 20px;
    }

    .contact-header p {
        font-size: 1.1rem;
        font-family: 'Bai Jamjuree', sans-serif;
        max-width: 800px;
        margin: 0 auto;
        margin-bottom: 30px;
    }


    .contact-form form {
        max-width: 800px;
        margin: 0 auto;
        text-align: left;
    }

    .form-group {
        display: flex;
        flex-wrap: nowrap;
        gap: 20px;
        margin-bottom: 20px;
    }

        .form-group input, .form-group select {
            flex: 1;
        }

        .form-group.button-group {
            margin-top: 20px;
        }

    form input, form select, form textarea {
        width: calc(50% - 10px);
        padding: 15px;
        border: none;
        border-radius: 5px;
        background-color: #1a1a1a;
        color: white;
        font-family: 'Bai Jamjuree', sans-serif;
        font-size: 1rem;
    }

    form textarea {
        width: 100%;
        height: 150px;
        resize: none;
    }

    form button {
        background-color: #D67026;
        color: #111;
        padding: 15px 30px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-family: 'Bai Jamjuree', sans-serif;
        font-size: 1rem;
        display: block;
        width: 100%;
        text-align: center;
    }

        form button:hover {
            background-color: #e65c00;
        }
    /* Ensuring the correct styles are applied */
    .footer-logo-email {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        width: 350px;
        margin: 0 auto;
    }

    .footer-logo {
        width: 100px;
    }

    .footer-email {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 0.5rem;
    }

    .footer-email-input {
        padding: 1rem;
        font-size: 1rem;
        border-radius: 4px;
        border: none;
        width: 200px;
        box-sizing: border-box;
        background-color: #fff; /* Ensure the input background is white */
        color: #777;
    }

    .footer-email-button {
        background-color: #D67026;
        border: none;
        padding: 0.5rem 1rem;
        cursor: pointer;
        border-radius: 4px;
        font-size: 1rem;
        color: #111;
        font-family: 'Bai Jamjuree', sans-serif;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 62px;
    }
}