/* styles.css */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color:bisque
}

.navbar {
    background-color: #8d8282;
    color: #fff;
    padding: 15px 0; /* Increased padding for a larger navbar */
}

.container {
    display: flex;
    justify-content: space-between; /* Space out logo, nav-links, and button */
    align-items: center;
    max-width: 1850px;
    margin: 0 auto;
    position: relative; /* Positioning for menu toggle */
}

.container img {
    height: 51px;
    width: 51px;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    flex-grow: 1; /* Allow nav-links to grow and center */
    justify-content: center; /* Center the nav-links */
}

.nav-links li {
    margin-left: 15px; /* Increased margin for better spacing */
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    padding: 15px 20px; /* Increased padding for larger clickable area */
    font-size: 18px; /* Increased font size for navigation links */
}

.nav-links a:hover {
    background-color: #575757;
    border-radius: 4px;
}

.cta-button {
    background-color: #f36f6f; /* Example color */
    border: none;
    color: white;
    padding: 12px 25px; /* Increased padding for a larger button */
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px; /* Increased font size for the button */
}

.cta-button:hover {
    background-color: #d9534f; /* Darker shade on hover */
}

/* Hide menu toggle by default */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: absolute; /* Position it relative to the container */
    right: 30px; /* Adjust position for larger screens */
}

.menu-toggle .bar {
    background-color: #fff;
    height: 4px; /* Increased height for the bars */
    width: 30px; /* Increased width for the bars */
    margin: 4px 0; /* Increased spacing between bars */
    transition: 0.3s;
}
@media (max-width: 768px) {
    .container {
        flex-direction: column; /* Stack items vertically on smaller screens */
        align-items: flex-start; /* Align items to the start */
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #333;
        position: absolute;
        top: 60px;
        left: 0;
        padding: 10px 0;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .logo {
        margin-left: 30px; /* Ensure logo has space from the left edge on smaller screens */
    }

    .nav-links li {
        margin: 0;
    }

    .nav-links a {
        padding: 15px;
        font-size: 20px; /* Increased font size for better readability on smaller screens */
        display: block;
    }

    .cta-button {
        display: none; /* Hide button on small screens */
    }
}





/*======================CONTENT=========================*/



.container1 {
    display: flex;
    align-items: center; /* Vertically center the items */
    justify-content: center; /* Horizontally center the container */
    max-width: 1200px;
    margin: 20px auto; /* Center the container and add some margin */
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.text {
    max-width: 600px; /* Limit the width of the text */
    margin-right: 20px; /* Space between text and image */
}

.text h1 {
    font-family: "Kanit", sans-serif;
    font-weight: 800;
    font-style: normal;
    margin-top: 0;
    color: #333;
}

.text p {
    font-family: "Roboto Mono", monospace;
    font-optical-sizing: auto;
    font-weight: 5000;
    font-style: normal;
    line-height: 1.6;
    color: #555;
    text-align: justify;
}

.image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .container1 {
        flex-direction: column; /* Stack items vertically on medium screens */
        align-items: center; /* Center items horizontally */
    }

    .text {
        margin-right: 0; /* Remove right margin */
        text-align: center; /* Center text on smaller screens */
    }

    .image {
        margin-top: 20px; /* Add space between text and image */
        max-width: 80%; /* Limit image size on smaller screens */
    }
}

@media (max-width: 768px) {
    .text {
        padding: 10px; /* Add padding for smaller screens */
    }

    .image {
        max-width: 100%; /* Ensure image fits within the screen */
    }
}

@media (max-width: 480px) {
    .text h1 {
        font-size: 24px; /* Reduce font size for very small screens */
    }

    .text p {
        font-size: 16px; /* Adjust font size for readability on small screens */
    }
}



.container2 {
    display: flex;
    align-items: center; /* Vertically center the items */
    justify-content: center; /* Horizontally center the container */
    max-width: 1200px;
    margin: 20px auto; /* Center the container and add some margin */
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.text2 {
    max-width: 600px; /* Limit the width of the text */
    margin-left: 20px; /* Space between text and image */
}


.text2 p {
    font-family: "Roboto Mono", monospace;
    font-optical-sizing: auto;
    font-weight: 5000;
    font-style: normal;
    line-height: 1.6;
    color: #555;
    text-align: justify;
}

.image2 {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}



/* Responsive styles */
@media (max-width: 1024px) {
    .container2 {
        flex-direction: column; /* Stack items vertically on medium screens */
        align-items: center; /* Center items horizontally */
    }

    .text2 {
        margin-right: 0; /* Remove right margin */
        text-align: center; /* Center text on smaller screens */
    }

    .image2 {
        margin-top: 20px; /* Add space between text and image */
        max-width: 80%; /* Limit image size on smaller screens */
    }
}

@media (max-width: 768px) {
    .text2 {
        padding: 10px; /* Add padding for smaller screens */
    }

    .image2 {
        max-width: 100%; /* Ensure image fits within the screen */
    }
}

@media (max-width: 480px) {
    .text2 h1 {
        font-size: 24px; /* Reduce font size for very small screens */
    }

    .text2 p {
        font-size: 16px; /* Adjust font size for readability on small screens */
    }
}


.container3 {
    display: flex;
    justify-content: space-between; /* Space between left and right content */
    align-items: center; /* Align items vertically center */
    padding: 20px;
    background-color: #ffffff;
    border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 90%; /* Adjust container width */
    max-width: 1245px; /* Max width of the container */
    margin: 20px auto; /* Center container horizontally */
    box-sizing: border-box; /* Include padding and border in element's total width and height */
}
.left-content, .right-content {
    
    flex: 1; /* Allows content areas to grow and shrink */
    max-width: 650px; /* Max width of content areas */
    padding: 10px;
    text-align: center;
    border-radius: 5px;
}
.left-content > h1{

    font-family: "Kanit", sans-serif;
    font-weight: 800;
    font-style: normal;
    margin-top: 0;
    color: #333;
}
.right-content > h1{
    font-family: "Kanit", sans-serif;
    font-weight: 800;
    font-style: normal;
    margin-top: 0;
    color: #333;
}
.left-content > img{
    height: 64px;
    width: 64px;
}
.right-content > img{
    height: 64px;
    width: 64px;
}

@media (max-width: 1024px) {
    .container3 {
        flex-direction: column; /* Stack content areas vertically on smaller screens */
        align-items: flex-start; /* Align items to the start of the container */
    }
    .left-content, .right-content {
        max-width: none; /* Remove max-width on smaller screens */
        width: 100%; /* Full width on smaller screens */
        margin-bottom: 20px; /* Add space between stacked content areas */
    }
    .right-content {
        max-width: none; /* Remove max-width on smaller screens */
        width: 100%; /* Full width on smaller screens */
        margin-bottom: 20px; /* Add space between stacked content areas */
    }
}


.roadmap{
    max-width: 1000px;
    display: block;
    align-items: center;
}
.roadmap h1{
    text-align: center;
}
.roadmap div{
    display: flex;
    margin-bottom: 15px;
    
}
.roadmap div img{
   height: 86px;
   width: 86px;
   margin-right: 15px;
}

.roadtext p{
    font-family: "Roboto Mono", monospace;
    font-optical-sizing: auto;
    font-weight: 5000;
    font-style: normal;
    line-height: 1.6;
    color: #555;
    text-align: justify;
}
.roadmap h1{
    font-family: "Kanit", sans-serif;
    font-weight: 800;
    font-style: normal;
    margin-top: 0;
    color: #333;
}