﻿@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 */
    }

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

    .button-group {
        display: flex;
        justify-content: center;
        flex: 1;
        gap: 60px;
        padding: 10px 0;
    }
    /* Header Styles */
    header {
        position: relative;
        width: 100%;
        height: auto;
        overflow: hidden;
    }

    .banner-link {
        color: white; /* Ensures the text remains white */
        text-decoration: none; /* Removes underline */
    }

        .banner-link:hover {
            color: #4361ee; /* Changes text color to blue on hover */
        }

    .header-container {
        position: relative;
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center; /* Centering the content horizontally */
        align-items: center;
        margin-bottom: 10px;
    }

    .header-image {
        width: 100%;
        height: 35px;
        object-fit: cover;
        object-position: center;
    }

    .banner-content {
        position: absolute;
        align-items: center;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        color: white;
        padding: 5px 20px;
        font-size: 18px;
        font-weight: bold;
        z-index: 2; /* Ensure the text is above the image */
        margin-left: -60px;
    }

    .navigation-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 20px;
        background-color: #111;
        position: relative;
    }
    .burger-menu {
        display: none;
    }
    .logo-image {
        width: 150px;
        height: auto;
        z-index: 1;
        position: absolute;
        top: -20px;
        left: 100px;
        transition: transform 0.2s cubic-bezier(0.65, 0.05, 0.36, 1), filter 0.25s ease-in-out;
    }

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

    .nav-links {
        display: flex;
        align-items: center;
        gap: 20px;
        justify-content: center; /* Center the button group */
        flex: 1;
    }

    .contact-container {
        margin-left: auto;
    }


    button {
        background-color: #111;
        color: white;
        padding: 10px 20px;
        border: none;
        cursor: pointer;
        transition: background-color 0.3s ease;
        border-radius: 5px;
        font-size: 18px;
    }

        button:hover {
            background-color: #ff6f00;
            color: white;
        }

        button.contact-us {
            background-color: #D67026;
            color: #111;
        }

            button.contact-us:hover {
                background-color: #e65c00;
                color: white;
            }
    /* Footer Styles */
    .footer-section {
        background-color: #111;
        padding: 2rem 1rem;
        color: #fff;
        text-align: center;
    }

    .footer-content {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .footer-logo-email {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 350px;
        margin-left: 5rem;
    }

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


    .footer-email-button {
        margin-top: 10px;
        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;
    }

    .footer-links {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 2rem;
        margin-bottom: 2rem;
        flex: 1;
        margin-left: 1rem;
        margin-right: 5rem;
    }

    .footer-column h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
        font-family: 'Black Ops One', sans-serif;
    }

    .footer-column ul {
        list-style: none;
        padding: 0;
    }

        .footer-column ul li {
            margin-bottom: 0.5rem;
        }

            .footer-column ul li a {
                color: #fff;
                text-decoration: none;
                font-family: 'Bai Jamjuree', sans-serif;
            }

    .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 1rem;
        border-top: 1px solid #777;
        padding-top: 1rem;
    }

        .footer-bottom p {
            margin: 0;
        }

        .footer-bottom a {
            color: #fff;
            text-decoration: none;
        }

    .footer-social a {
        margin: 0 0.5rem;
    }

    .footer-social img {
        width: 20px;
        height: 20px;
    }

    /*Active button*/
    button.active {
        background-color: #D67026;
        color: #111;
    }
}

    /* Small screens, laptops (769px — 1519px) */
@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 */
    }

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

    .button-group {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-left: 200px;
        flex: 1;
    }
    /* Header Styles */
    header {
        position: relative;
        width: 100%;
        height: auto;
        overflow: hidden;
    }

    .banner-link {
        color: white; /* Ensures the text remains white */
        text-decoration: none; /* Removes underline */
        display: none;
    }

        .banner-link:hover {
            color: #4361ee; /* Changes text color to blue on hover */
        }

    .header-container {
        position: relative;
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center; /* Center horizontally */
        align-items: center; /* Center vertically */
        margin-bottom: 10px;
    }

    .header-image {
        width: 100%;
        height: 35px;
        object-fit: cover;
        object-position: center;
    }

    .banner-content {
        position: absolute;
        align-items: center;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        padding: 5px 20px;
        font-size: 15px;
        font-weight: bold;
        z-index: 2; /* Ensure the text is above the image */
    }

    .navigation-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 20px;
        background-color: #111;
        position: relative;
        border-bottom: 1px solid #ccc;
    }

    .burger-menu {
        display: none;
    }

    .logo-image {
        width: 150px;
        height: auto;
        z-index: 1;
        position: absolute;
        top: -20px;
        left: 100px;
        transition: transform 0.2s cubic-bezier(0.65, 0.05, 0.36, 1), filter 0.25s ease-in-out;
    }

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

    .nav-links {
        display: flex;
        align-items: center;
        gap: 20px;
        justify-content: center; /* Center the button group */
        flex: 1;
    }

    .contact-container {
        margin-left: auto;
    }


    button {
        background-color: #111;
        color: white;
        padding: 10px 20px;
        border: none;
        cursor: pointer;
        transition: background-color 0.3s ease;
        border-radius: 5px;
        font-size: 18px;
    }

        button:hover {
            background-color: #ff6f00;
            color: white;
        }

        button.contact-us {
            background-color: #D67026;
            color: #111;
        }

            button.contact-us:hover {
                background-color: #e65c00;
                color: white;
                /* Footer Styles */
            }
    .footer-section {
    background-color: #111;
    padding: 2rem 1rem;
    color: #fff;
    text-align: center;
    }

    .footer-content {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .footer-logo-email {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 350px;
    }

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


    .footer-email-button {
        margin-top: 10px;
        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;
    }

    .footer-links {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 2rem;
        margin-bottom: 2rem;
        flex: 1;
        margin-left: 1rem;
        margin-right: 5rem;
        display: none;
    }

    .footer-column h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
        font-family: 'Black Ops One', sans-serif;
    }

    .footer-column ul {
        list-style: none;
        padding: 0;
    }

        .footer-column ul li {
            margin-bottom: 0.5rem;
        }

            .footer-column ul li a {
                color: #fff;
                text-decoration: none;
                font-family: 'Bai Jamjuree', sans-serif;
            }

    .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 1rem;
        border-top: 1px solid #777;
        padding-top: 1rem;
    }

        .footer-bottom p {
            margin: 0;
        }

        .footer-bottom a {
            color: #fff;
            text-decoration: none;
        }

    .footer-social a {
        margin: 0 0.5rem;
    }

    .footer-social img {
        width: 20px;
        height: 20px;
    }

    /*Active button*/
    button.active {
        background-color: #D67026;
        color: #111;
    }
}

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

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

        .button-group button {
            width: 100%;
            padding: 30px 0;
            padding: 16px 16px;
            border: none;
            background-color: #111;
            color: white;
            cursor: pointer;
            transition: background-color 0.5s ease;
            border-radius: 5px;
            position: relative;
            font-size: 18px;
        }

            .button-group button:hover {
                background-color: #ff6f00;
                color: #111;
            }

        .contact-container button.contact-us {
            width: 100%;
            padding: 10px 0;
            padding: 16px 16px;
            border: none;
            background-color: #111;
            color: white;
            cursor: pointer;
            transition: background-color 0.5s ease;
            border-radius: 5px;
            position: relative;
            font-size: 18px;
        }

            .contact-container button.contact-us:hover {
                background-color: #ff6f00;
                color: #111;
            }

    header {
        position: relative;
        width: 100%;
        height: auto;
        overflow: hidden;
    }

    .banner-link {
        color: white;
        text-decoration: none;
        display: none;
    }

        .banner-link:hover {
            color: #4361ee;
        }

    .header-container {
        position: relative;
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 10px;
    }

    .header-image {
        width: 100%;
        height: 35px;
        object-fit: cover;
        object-position: center;
    }

    .banner-content {
        position: absolute;
        align-items: center;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        padding: 5px 20px;
        font-size: 15px;
        font-weight: bold;
        z-index: 2;
    }

    .navigation-container {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;

        background-color: #111;
        position: relative;
        border-bottom: 1px solid #ccc;
    }

    .burger-menu {
        display: block;
        font-size: 30px;
        cursor: pointer;
        color: white; /* Ensure the burger menu icon is white */
        position: absolute;
        left: 20px; /* Position the menu */
        top: 20px;
    }
    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }
    .nav-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out;
    }

        /* Styles when the nav-links are active */
        .nav-links.active {
            max-height: 500px; /* Adjust this value as needed */
            opacity: 1;
            animation: fadeIn 0.5s ease-in-out;
        }


    .contact-container {
        width: 100%;
        text-align: center;
    }

    .logo-image {
        width: 150px;
        height: auto;
        z-index: 1;
        position: center;
        top: -100px;
        left: 50px;
        transition: transform 0.2s cubic-bezier(0.65, 0.05, 0.36, 1), filter 0.25s ease-in-out;
    }

        .logo-image:hover {
            transform: scale(1.16);
            filter: brightness(1.2);
        }

    .footer-section {
        background-color: #111;
        padding: 2rem 1rem;
        color: #fff;
        text-align: center;
    }

    .footer-content {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .footer-logo-email {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 350px;
    }

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

    .footer-email-button {
        margin-top: 10px;
        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;
    }

    .footer-links {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 2rem;
        margin-bottom: 2rem;
        flex: 1;
        margin-left: 1rem;
        margin-right: 5rem;
        display: none;
    }

    .footer-column h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
        font-family: 'Black Ops One', sans-serif;
    }

    .footer-column ul {
        list-style: none;
        padding: 0;
    }

        .footer-column ul li {
            margin-bottom: 0.5rem;
        }

            .footer-column ul li a {
                color: #fff;
                text-decoration: none;
                font-family: 'Bai Jamjuree', sans-serif;
            }

    .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 1rem;
        border-top: 1px solid #777;
        padding-top: 1rem;
    }

        .footer-bottom p {
            margin: 0;
        }

        .footer-bottom a {
            color: #fff;
            text-decoration: none;
        }

    .footer-social a {
        margin: 0 0.5rem;
    }

    .footer-social img {
        width: 20px;
        height: 20px;
    }

    button.active {
        background-color: #D67026;
        color: #111;
    }
}
