﻿@media (min-width: 1520px) {
    html, body {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        background-color: #111;
        font-family: 'Bai Jamjuree', sans-serif;
        overflow-x: hidden; /* Prevent horizontal scrolling */
    }

    .image-container {
        position: relative;
        width: 100%;
        height: auto;
        z-index: 5;
    }

    .main-image {
        width: 100%;
        height: auto;
        display: block;
        z-index: 5;
    }

    .floating-box {
        position: absolute;
        padding: 15px;
        background-color: rgba(26, 26, 26, 0.83);
        border-radius: 10px;
        width: 27%;
        margin-top: 5%;
    }

    .left {
        top: 130px;
        left: 100px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .small-box {
        height: 130px;
        width: 200px; /* Adjust width as necessary */
        bottom: 20px;
        color: #ffffff; /* Ensure text is white */
    }

    .one {
        left: calc(31.33% - 75px); /* Evenly space the boxes */
        margin-bottom: 5px;
    }

    .two {
        left: calc(48% - 75px);
        margin-bottom: 5px;
    }

    .three {
        left: calc(64.66% - 75px);
        margin-bottom: 5px;
    }

    .medium-text {
        font-size: 24px; /* Adjust font size as necessary */
        color: #ffffff; /* Ensure text is white */
        font-family: 'Black Ops One', sans-serif;
        font-size: 45px;
    }

    .small-text {
        font-size: 25px; /* Adjust font size as necessary */
        color: #ffffff; /* Ensure text is white */
        font-family: 'Bai Jamjuree', sans-serif;
        margin-bottom: 20px; /* Add margin to separate text and buttons */
    }

    .big-text {
        font-size: 80px;
        color: dbdbdbdb;
        font-family: 'Black Ops One', sans-serif;
        background-color: rgba(26, 26, 26, 0.83);
        border-radius: 10px;
    }

    .centered-banner-text {
        position: absolute;
        font-size: 70px;
        top: 0;
        left: 50%;
        color: #f1f1f1;
        transform: translate(-50%, 30%);
        font-family: 'Black Ops One', sans-serif;
        background-color: rgba(0, 0, 0, 0.5); /* Light black background box */
        padding: 10px 20px;
        border-radius: 5px;
        z-index: 3;
    }

    .left-box-section {
        display:none;
    }
    .floating-box .button-group-sub {
        display: flex;
        justify-content: space-between;
        align-items: center;
        bottom: 20px;
        left: 20px;
        width: calc(100% - 40px); /* Adjust width if needed */
        margin-top: auto;
    }
    /* Header Styles */
    .header-title {
        color: #ffffff;
        font-size: 2.5rem;
        font-family: 'Black Ops One', sans-serif;
        margin-bottom: 1rem;
        text-align: center;
    }

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

    .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: 1200px;
        margin: 0 auto;
        padding: 2rem 0;
    }

    /* Products Container */
    .products-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
        border-bottom: 2px solid #777;
        padding-bottom: 1rem;
        margin-top: 20px;
        margin-bottom: 20px;
        transition: transform 0.5s ease-in-out;
        overflow: hidden;
        width: 100%;
        padding-top: 40px;
    }

    /* Product Card Styles */
    .product-card {
        background-color: #222;
        border: 2px solid #777;
        border-radius: 8px;
        overflow: hidden;
        width: 300px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        margin-bottom: 20px;
        transition: transform 0.25s cubic-bezier(0.65, 0.05, 0.36, 1);
    }

        .product-card:hover {
            transform: scale(1.15); /* Zoom effect */
        }

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

    .product-info {
        padding: 1rem;
        color: #ffffff;
    }

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

    .product-button {
        background-color: #D67026;
        color: #111;
        border: none;
        padding: 0.5rem;
        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;
        }

    /* Carousel Controls */
    .carousel-controls {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 1rem;
    }

    .page-number {
        color: #ccc;
        font-size: 1rem;
    }

    .carousel-arrows {
        display: flex;
        gap: 0.5rem;
        margin-left: auto;
        margin-right: auto;
    }

    .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: #555;
        }

    /* Testimonials Styles */
    .testimonials-title {
        font-size: 2rem;
        font-family: 'Black Ops One', sans-serif;
        margin-bottom: 1rem;
        text-align: center;
        color: #ffffff;
    }

    .testimonials-description {
        font-size: 1.2rem;
        color: #ffffff;
        text-align: center;
        margin-bottom: 2rem;
    }

    .testimonials-container {
        display: flex;
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
        border-bottom: 2px solid #777;
        padding-bottom: 1rem;
        margin-bottom: 20px;
    }

    .testimonial-card {
        background-color: #222;
        border: 2px solid #777;
        border-radius: 8px;
        padding: 1rem;
        width: 300px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        text-align: center;
        margin-bottom: 20px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
        min-height: 280px;
    }

    .testimonial-rating {
        font-size: 1.5rem;
        color: #f1c40f;
        margin-bottom: 0.5rem;
    }

    .testimonial-title {
        font-family: 'Black Ops One', sans-serif;
        font-size: 1.2rem;
        color: #fff;
        margin-bottom: 0.5rem;
    }

    .testimonial-text {
        font-size: 1rem;
        margin-bottom: 1rem;
        font-family: 'Bai Jamjuree', sans-serif;
        color: #ffffff;
    }

    .testimonial-author {
        font-size: 0.9rem;
        color: #ccc;
        text-align: center;
        font-family: 'Bai Jamjuree', sans-serif;
    }

    .read-more-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: 5px;
        font-family: 'Bai Jamjuree', sans-serif;
        margin-bottom: 1rem;
    }

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

    .testimonial-details {
        display: none; /* Hidden by default, revealed on button click */
        margin-top: 1rem;
    }

    .testimonial-screenshot {
        width: 100%;
        max-width: 800px; /* Adjust max-width as necessary */
        margin-bottom: 1rem;
        cursor: pointer;
    }

    #testimonial-details-container {
        text-align: center;
    }

    .testimonial-details-container img.enlarged {
        max-width: 190%;
        max-height: 190%;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1000;
        background-color: rgba(0, 0, 0, 0.8);
        padding: 10px;
        border-radius: 10px;
    }

    /* FAQ Styles */
    .faq-title {
        font-size: 2rem;
        color: #ffffff;
        font-family: 'Black Ops One', sans-serif;
        margin-bottom: 1rem;
        text-align: center;
    }

    .faq-description {
        font-size: 1.2rem;
        color: #ffffff;
        text-align: center;
        margin-bottom: 2rem;
    }

    .faq-container {
        display: flex;
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
        border-bottom: 2px solid #777;
        padding-bottom: 1rem;
    }

    .faq-card {
        background-color: #222;
        border: 2px solid #777;
        border-radius: 8px;
        padding: 1rem;
        width: 300px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        text-align: center;
        margin-bottom: 20px;
    }

    .faq-question {
        font-family: 'Black Ops One', sans-serif;
        font-size: 1.2rem;
        color: #fff;
        margin-bottom: 0.5rem;
    }

    .faq-answer {
        font-size: 1rem;
        color: #ffffff;
        margin-bottom: 1rem;
        font-family: 'Bai Jamjuree', sans-serif;
    }

    /* CTA Section Styles */
    .cta-section {
        text-align: center;
        padding: 4rem 2rem;
        background-color: #111;
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .cta-content {
        max-width: 1200px;
        display: flex;
        flex-direction: column;
        align-items: center;
        border-bottom: 2px solid #777;
        border-top: 2px solid #777;
        padding-bottom: 3rem;
    }

    .cta-title {
        font-size: 2.5rem;
        font-family: 'Black Ops One', sans-serif;
        margin-bottom: 1rem;
    }

    .cta-description {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        font-family: 'Bai Jamjuree', sans-serif;
    }

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

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

    /* Info Section Styles */
    .info-section {
        background-color: #111;
        padding: 2rem 0;
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin-top: 20px;
    }

    .info-container {
        display: flex;
        justify-content: space-around;
        align-items: stretch; /* This ensures the boxes stretch to the same height */
        width: 90%;
        max-width: 1200px;
    }

    .info-card {
        text-align: center;
        padding: 1rem;
        flex: 1; /* This ensures each card takes up the same amount of space */
        display: flex;
        align-items: stretch; /* This ensures the content inside the card stretches to fill the height */
        gap: 20px;
    }

    .info-box {
        background-color: #222;
        border: 2px solid #777;
        border-radius: 8px;
        padding: 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center; /* This centers the content vertically */
        width: 200px; /* Make the box take up the full width of the card */
        transition: transform 0.25s cubic-bezier(0.65, 0.05, 0.36, 1), filter 0.25s ease-in-out;
    }

        .info-box:hover {
            transform: scale(1.16); /* Add transform scale for the zoom effect */
            filter: brightness(1.2);
        }

        .info-box img {
            width: 60px;
            height: 60px;
            margin-bottom: 1rem;
        }

        .info-box h3 {
            font-size: 1.2rem;
            font-family: 'Bai Jamjuree', sans-serif;
            color: #ffffff;
        }

    .banner-content {
        left: 50%;
        transform: translateX(-50%);
        padding: 5px;
        box-sizing: border-box;
    }

    .map-section {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 2rem 0;
        text-align: center;
    }

    .map-title {
        font-size: 2rem;
        font-family: 'Black Ops One', sans-serif;
        margin-bottom: 1rem;
        color: #ffffff;
    }

    .map-container {
        width: 100%;
        height: 450px;
    }
}

    /* iPads, Tablets (768px) */
@media (max-width: 919px) {
    html, body {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        background-color: #111;
        font-family: 'Bai Jamjuree', sans-serif;
        overflow-x: hidden; /* Prevent horizontal scrolling */
    }


    .image-container {
        
        width: 100%;
        height: auto;
        z-index: 5;
    }

    .main-image {
        width: 100%;
        height: auto;
        display: block;
        z-index: 5;
    }

    .floating-box {
        padding: 15px;
        border-radius: 10px;
        width: 100%;
        margin-top: 5%;
        display: none;
    }

    .left {
        top: 130px;
        width:100%;
        display: flex;
        flex-direction: column;
        gap: 10px;
        position: center;
        justify-content: center;
        align-content: center;
        align-items: center;
        display: none;
    }

    .small-box {
        height: 130px;
        width: 200px; /* Adjust width as necessary */
        bottom: 20px;
        color: #ffffff; /* Ensure text is white */
    }

    .one {
        left: calc(31.33% - 75px); /* Evenly space the boxes */
        margin-bottom: 5px;
    }

    .two {
        left: calc(48% - 75px);
        margin-bottom: 5px;
    }

    .three {
        left: calc(64.66% - 75px);
        margin-bottom: 5px;
    }

    .medium-text {
        font-size: 24px; /* Adjust font size as necessary */
        color: #ffffff; /* Ensure text is white */
        font-family: 'Black Ops One', sans-serif;
        font-size: 45px;
    }

    .small-text {
        font-size: 25px; /* Adjust font size as necessary */
        color: #ffffff; /* Ensure text is white */
        font-family: 'Bai Jamjuree', sans-serif;
        width: 90%;
        text-align: center;
    }

    .big-text {
        font-size: 80px;
        color: dbdbdbdb;
        font-family: 'Black Ops One', sans-serif;
        background-color: rgba(26, 26, 26, 0.83);
        border-radius: 10px;
    }

    .centered-banner-text {
        position: absolute;
        font-size: 70px;
        top: 0;
        left: 50%;
        color: #f1f1f1;
        transform: translate(-50%, 30%);
        font-family: 'Black Ops One', sans-serif;
        background-color: rgba(0, 0, 0, 0.5); /* Light black background box */
        padding: 10px 20px;
        border-radius: 5px;
        z-index: 3;
        display: none;
    }
    .left-box-section {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 2rem 0;
    }
    /* Header Styles */
    .header-title {
        color: #ffffff;
        font-size: 2.5rem;
        font-family: 'Black Ops One', sans-serif;
        margin-bottom: 1rem;
        align-items: center;
        justify-content: center; /* Center the content vertically */
        text-align: center;
    }

    .header-content {
        display: flex;
        flex-direction: column;
        color: #ffffff;
        align-items: center;
        justify-content: center; /* Center the content vertically */
        text-align: center; /* Center the text horizontally */
        gap: 1rem; /* Adjust the gap as needed */
        margin: 0 auto;
    }

    .description-wrapper {
        flex: 1;
    }

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

    .view-all-wrapper {
        width: 100%;
        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;
        width: auto;
    }

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

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

    /* Products Container */
    .products-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
        border-bottom: 2px solid #777;
        padding-bottom: 1rem;
        margin-top: 20px;
        margin-bottom: 20px;
        transition: transform 0.5s ease-in-out;
        overflow: hidden;
        width: 100%;
        padding-top: 40px;
    }

    /* Product Card Styles */
    .product-card {
        background-color: #222;
        border: 2px solid #777;
        border-radius: 8px;
        overflow: hidden;
        width: 300px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        margin-bottom: 20px;
        transition: transform 0.25s cubic-bezier(0.65, 0.05, 0.36, 1);
    }

        .product-card:hover {
            transform: scale(1.15); /* Zoom effect */
        }

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

    .product-info {
        padding: 1rem;
        color: #ffffff;
    }

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

    .product-button {
        background-color: #D67026;
        color: #111;
        border: none;
        padding: 0.5rem;
        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;
        }

    /* Carousel Controls */
    .carousel-controls {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 1rem;
    }
    .button-group-sub {
        display: none;
    }
    .page-number {
        color: #ccc;
        font-size: 1rem;
    }

    .carousel-arrows {
        display: flex;
        gap: 0.5rem;
        margin-left: auto;
        margin-right: auto;
    }

    .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: #555;
        }

    /* Testimonials Styles */
    .testimonials-title {
        font-size: 2rem;
        font-family: 'Black Ops One', sans-serif;
        margin-bottom: 1rem;
        text-align: center;
        color: #ffffff;
    }

    .testimonials-description {
        font-size: 1.2rem;
        color: #ffffff;
        text-align: center;
        margin-bottom: 2rem;
    }

    .testimonials-container {
        display: flex;
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
        border-bottom: 2px solid #777;
        padding-bottom: 1rem;
        margin-bottom: 20px;
    }

    .testimonial-card {
        background-color: #222;
        border: 2px solid #777;
        border-radius: 8px;
        padding: 1rem;
        width: 300px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        text-align: center;
        margin-bottom: 20px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
        min-height: 280px;
    }

    .testimonial-rating {
        font-size: 1.5rem;
        color: #f1c40f;
        margin-bottom: 0.5rem;
    }

    .testimonial-title {
        font-family: 'Black Ops One', sans-serif;
        font-size: 1.2rem;
        color: #fff;
        margin-bottom: 0.5rem;
    }

    .testimonial-text {
        font-size: 1rem;
        margin-bottom: 1rem;
        font-family: 'Bai Jamjuree', sans-serif;
        color: #ffffff;
    }

    .testimonial-author {
        font-size: 0.9rem;
        color: #ccc;
        text-align: center;
        font-family: 'Bai Jamjuree', sans-serif;
    }

    .read-more-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: 5px;
        font-family: 'Bai Jamjuree', sans-serif;
        margin-bottom: 1rem;
    }

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

    .testimonial-details {
        display: none; /* Hidden by default, revealed on button click */
        margin-top: 1rem;
    }

    .testimonial-screenshot {
        width: 100%;
        max-width: 800px; /* Adjust max-width as necessary */
        margin-bottom: 1rem;
        cursor: pointer;
    }

    #testimonial-details-container {
        text-align: center;
    }

    .testimonial-details-container img.enlarged {
        max-width: 190%;
        max-height: 190%;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1000;
        background-color: rgba(0, 0, 0, 0.8);
        padding: 10px;
        border-radius: 10px;
    }

    /* FAQ Styles */
    .faq-title {
        font-size: 2rem;
        color: #ffffff;
        font-family: 'Black Ops One', sans-serif;
        margin-bottom: 1rem;
        text-align: center;
    }

    .faq-description {
        font-size: 1.2rem;
        color: #ffffff;
        text-align: center;
        margin-bottom: 2rem;
    }

    .faq-container {
        display: flex;
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
        border-bottom: 2px solid #777;
        padding-bottom: 1rem;
    }

    .faq-card {
        background-color: #222;
        border: 2px solid #777;
        border-radius: 8px;
        padding: 1rem;
        width: 300px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        text-align: center;
        margin-bottom: 20px;
    }

    .faq-question {
        font-family: 'Black Ops One', sans-serif;
        font-size: 1.2rem;
        color: #fff;
        margin-bottom: 0.5rem;
    }

    .faq-answer {
        font-size: 1rem;
        color: #ffffff;
        margin-bottom: 1rem;
        font-family: 'Bai Jamjuree', sans-serif;
    }

    /* CTA Section Styles */
    .cta-section {
        text-align: center;
        padding: 4rem 2rem;
        background-color: #111;
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        box-sizing: border-box; /* Ensure padding is included in the width */
    }

    .cta-content {
        max-width: 800px; /* Set a maximum width for better readability */
        display: flex;
        flex-direction: column;
        align-items: center;
        border-bottom: 2px solid #777;
        border-top: 2px solid #777;
        padding-bottom: 3rem;
        box-sizing: border-box; /* Ensure padding is included in the width */
    }

    .cta-title {
        font-size: 2.5rem;
        font-family: 'Black Ops One', sans-serif;
        margin-bottom: 1rem;
    }

    .cta-description {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        font-family: 'Bai Jamjuree', sans-serif;
    }

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

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

    /* Info Section Styles */
    .info-section {
        background-color: #111;
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;

    }

    .info-container {
        grid-template-columns: repeat(2, 1fr); /* Creates two columns */
        justify-content: center;
        align-items: stretch; /* Ensures the boxes stretch to the same height */
        width: 90%;
        max-width: 1200px;
        margin: 0 auto; /* Center the container */
        padding: 20px 0; /* Add some padding */
    }

    /* Ensure the items within the grid take up the full space */
    .info-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        padding: 2rem;
        text-align: center;
        transition: transform 0.25s cubic-bezier(0.65, 0.05, 0.36, 1), filter 0.25s ease-in-out;
    }

    .info-box {
        background-color: #222;
        border: 2px solid #777;
        border-radius: 8px;
        padding: 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center; /* This centers the content vertically */
        width: 200px; /* Make the box take up the full width of the card */
        transition: transform 0.25s cubic-bezier(0.65, 0.05, 0.36, 1), filter 0.25s ease-in-out;
    }

        .info-box:hover {
            transform: scale(1.16); /* Add transform scale for the zoom effect */
            filter: brightness(1.2);
        }

        .info-box img {
            width: 60px;
            height: 60px;
            margin-bottom: 1rem;
        }

        .info-box h3 {
            font-size: 1.2rem;
            font-family: 'Bai Jamjuree', sans-serif;
            color: #ffffff;
        }



    .map-section {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 2rem 0;
        text-align: center;
    }

    .map-title {
        font-size: 2rem;
        font-family: 'Black Ops One', sans-serif;
        margin-bottom: 1rem;
        color: #ffffff;
    }

    .map-container {
        width: 100%;
        height: 450px;
    }
}

    /* Small screens, laptops (769px — 1024px) */
    @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;
            overflow-x: hidden; /* Prevent horizontal scrolling */
        }


        .image-container {
            position: relative;
            width: 100%;
            height: auto;
            z-index: 5;
        }

        .main-image {
            width: 100%;
            height: auto;
            display: block;
            z-index: 5;
        }

        .floating-box {
            position: absolute;
            padding: 15px;
            background-color: rgba(26, 26, 26, 0.83);
            border-radius: 10px;
            width: 27%;
            margin-top: 5%;
            display: none;
        }

        .left {
            top: 130px;
            left: 100px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            display: none;
        }

        .small-box {
            height: 130px;
            width: 200px; /* Adjust width as necessary */
            bottom: 20px;
            color: #ffffff; /* Ensure text is white */
        }

        .one {
            left: calc(31.33% - 75px); /* Evenly space the boxes */
            margin-bottom: 5px;
        }

        .two {
            left: calc(48% - 75px);
            margin-bottom: 5px;
        }

        .three {
            left: calc(64.66% - 75px);
            margin-bottom: 5px;
        }

        .medium-text {
            font-size: 24px; /* Adjust font size as necessary */
            color: #ffffff; /* Ensure text is white */
            font-family: 'Black Ops One', sans-serif;
            font-size: 45px;
        }

        .small-text {
            font-size: 25px; /* Adjust font size as necessary */
            color: #ffffff; /* Ensure text is white */
            font-family: 'Bai Jamjuree', sans-serif;
        }

        .big-text {
            font-size: 80px;
            color: dbdbdbdb;
            font-family: 'Black Ops One', sans-serif;
            background-color: rgba(26, 26, 26, 0.83);
            border-radius: 10px;
        }

        .centered-banner-text {
            position: absolute;
            font-size: 70px;
            top: 0;
            left: 50%;
            color: #f1f1f1;
            transform: translate(-50%, 30%);
            font-family: 'Black Ops One', sans-serif;
            background-color: rgba(0, 0, 0, 0.5); /* Light black background box */
            padding: 10px 20px;
            border-radius: 5px;
            z-index: 3;
            display: none;
        }
        .left-box-section {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 0;
        }

        /* 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;
            margin-left: 50px
        }

        .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: 1200px;
            margin: 0 auto;
            padding: 2rem 0;
        }

        /* Products Container */
        .products-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            border-bottom: 2px solid #777;
            padding-bottom: 1rem;
            margin-top: 20px;
            margin-bottom: 20px;
            transition: transform 0.5s ease-in-out;
            overflow: hidden;
            width: 100%;
            padding-top: 40px;
        }

        /* Product Card Styles */
        .product-card {
            background-color: #222;
            border: 2px solid #777;
            border-radius: 8px;
            overflow: hidden;
            width: 300px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            margin-bottom: 20px;
            transition: transform 0.25s cubic-bezier(0.65, 0.05, 0.36, 1);
        }

            .product-card:hover {
                transform: scale(1.15); /* Zoom effect */
            }

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

        .product-info {
            padding: 1rem;
            color: #ffffff;
        }

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

        .product-button {
            background-color: #D67026;
            color: #111;
            border: none;
            padding: 0.5rem;
            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;
            }

        /* Carousel Controls */
        .carousel-controls {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 1rem;
        }

        .page-number {
            color: #ccc;
            font-size: 1rem;
        }

        .carousel-arrows {
            display: flex;
            gap: 0.5rem;
            margin-left: auto;
            margin-right: auto;
        }

        .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: #555;
            }

        /* Testimonials Styles */
        .testimonials-title {
            font-size: 2rem;
            font-family: 'Black Ops One', sans-serif;
            margin-bottom: 1rem;
            text-align: center;
            color: #ffffff;
        }

        .testimonials-description {
            font-size: 1.2rem;
            color: #ffffff;
            text-align: center;
            margin-bottom: 2rem;
        }

        .testimonials-container {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            border-bottom: 2px solid #777;
            padding-bottom: 1rem;
            margin-bottom: 20px;
        }

        .testimonial-card {
            background-color: #222;
            border: 2px solid #777;
            border-radius: 8px;
            padding: 1rem;
            width: 300px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            text-align: center;
            margin-bottom: 20px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            height: 100%;
            min-height: 280px;
        }

        .testimonial-rating {
            font-size: 1.5rem;
            color: #f1c40f;
            margin-bottom: 0.5rem;
        }

        .testimonial-title {
            font-family: 'Black Ops One', sans-serif;
            font-size: 1.2rem;
            color: #fff;
            margin-bottom: 0.5rem;
        }

        .testimonial-text {
            font-size: 1rem;
            margin-bottom: 1rem;
            font-family: 'Bai Jamjuree', sans-serif;
            color: #ffffff;
        }

        .testimonial-author {
            font-size: 0.9rem;
            color: #ccc;
            text-align: center;
            font-family: 'Bai Jamjuree', sans-serif;
        }

        .read-more-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: 5px;
            font-family: 'Bai Jamjuree', sans-serif;
            margin-bottom: 1rem;
        }

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

        .testimonial-details {
            display: none; /* Hidden by default, revealed on button click */
            margin-top: 1rem;
        }

        .testimonial-screenshot {
            width: 100%;
            max-width: 800px; /* Adjust max-width as necessary */
            margin-bottom: 1rem;
            cursor: pointer;
        }

        #testimonial-details-container {
            text-align: center;
        }

        .testimonial-details-container img.enlarged {
            max-width: 190%;
            max-height: 190%;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 1000;
            background-color: rgba(0, 0, 0, 0.8);
            padding: 10px;
            border-radius: 10px;
        }

        /* FAQ Styles */
        .faq-title {
            font-size: 2rem;
            color: #ffffff;
            font-family: 'Black Ops One', sans-serif;
            margin-bottom: 1rem;
            text-align: center;
        }

        .faq-description {
            font-size: 1.2rem;
            color: #ffffff;
            text-align: center;
            margin-bottom: 2rem;
        }

        .faq-container {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            border-bottom: 2px solid #777;
            padding-bottom: 1rem;
        }

        .faq-card {
            background-color: #222;
            border: 2px solid #777;
            border-radius: 8px;
            padding: 1rem;
            width: 300px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            text-align: center;
            margin-bottom: 20px;
        }

        .faq-question {
            font-family: 'Black Ops One', sans-serif;
            font-size: 1.2rem;
            color: #fff;
            margin-bottom: 0.5rem;
        }

        .faq-answer {
            font-size: 1rem;
            color: #ffffff;
            margin-bottom: 1rem;
            font-family: 'Bai Jamjuree', sans-serif;
        }

        /* CTA Section Styles */
        .cta-section {
            text-align: center;
            padding: 4rem 2rem;
            background-color: #111;
            color: #fff;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            box-sizing: border-box; /* Ensure padding is included in the width */
        }

        .cta-content {
            max-width: 800px; /* Set a maximum width for better readability */
            display: flex;
            flex-direction: column;
            align-items: center;
            border-bottom: 2px solid #777;
            border-top: 2px solid #777;
            padding-bottom: 3rem;
            box-sizing: border-box; /* Ensure padding is included in the width */
        }

        .cta-title {
            font-size: 2.5rem;
            font-family: 'Black Ops One', sans-serif;
            margin-bottom: 1rem;
        }

        .cta-description {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            font-family: 'Bai Jamjuree', sans-serif;
        }

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

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

        /* Info Section Styles */
        .info-section {
            background-color: #111;
            padding: 2rem 0;
            color: #fff;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            margin-top: 20px;
        }

        .info-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr); /* Creates two columns */
            gap: 20px; /* Adjust the gap between items */
            justify-content: center;
            align-items: stretch; /* Ensures the boxes stretch to the same height */
            width: 90%;
            max-width: 1200px;
            margin: 0 auto; /* Center the container */
            padding: 20px 0; /* Add some padding */
        }

        /* Ensure the items within the grid take up the full space */
        .info-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            
            border-radius: 8px;
            padding: 2rem;
            text-align: center;
            transition: transform 0.25s cubic-bezier(0.65, 0.05, 0.36, 1), filter 0.25s ease-in-out;
        }

        .info-box {
            background-color: #222;
            border: 2px solid #777;
            border-radius: 8px;
            padding: 2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center; /* This centers the content vertically */
            width: 200px; /* Make the box take up the full width of the card */
            transition: transform 0.25s cubic-bezier(0.65, 0.05, 0.36, 1), filter 0.25s ease-in-out;
        }

            .info-box:hover {
                transform: scale(1.16); /* Add transform scale for the zoom effect */
                filter: brightness(1.2);
            }

            .info-box img {
                width: 60px;
                height: 60px;
                margin-bottom: 1rem;
            }

            .info-box h3 {
                font-size: 1.2rem;
                font-family: 'Bai Jamjuree', sans-serif;
                color: #ffffff;
            }

        

        .map-section {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 0;
            text-align: center;
        }

        .map-title {
            font-size: 2rem;
            font-family: 'Black Ops One', sans-serif;
            margin-bottom: 1rem;
            color: #ffffff;
        }

        .map-container {
            width: 100%;
            height: 450px;
        }
    }
