body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Logo styling */
.logo {
    position: fixed;
    top: -5px;
    left: -25px;
    z-index: 1000;
}

.logo img {
    width: 120px;
    height: auto;
}

/* Hero Section */
.banner {
    width: 100%;
    height: 600px;
    background-image: url('https://img.freepik.com/premium-photo/industrial-dumper-trucks-working-highway-construction-site_1234738-170739.jpg?w=996');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.text-box {
    background-color: rgba(255, 255, 255, 0.85); 
    padding: 9px;
    border-radius: 8px;
    color: rgb(0, 0, 0);
    font-size: 13px;
    max-width: 80%;
}

.text-box h1 {
    margin: 0;
    font-size: 48px;
    font-weight: bold;
    text-transform: uppercase;
}

/* Navigation */
nav {
    background-color: #333;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
}

nav ul li a:hover {
    color: #a96e00;
}

/* General container for sections */
.border {
    width: 80%;
    margin: 50px auto;
    text-align: center;
    margin-bottom: 0px;
}

.container {
    width: 80%;
    margin: 50px auto;
    text-align: left;
    margin-top: 0px;
}

.info-head {
    background: #333;
    padding: 1px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
    color: rgb(255, 255, 255);
}

.info-box {
    background: #f5f5f5;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

p {
    font-size: 16px;
    line-height: 1.6;
}

/* Product List */
.products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 50px;
    text-align: center;
}

.product {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.product:hover {
    transform: translateY(-10px);
    background-color: #ffe60330;
}

.product h4 {
    font-size: 12px;
    margin-bottom: 10px;
    text-align: left;
}

.product p {
    font-size: 10px;
    text-align: left;
}

/* Form and Buttons */
input[type="number"] {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    margin-bottom: 20px;
}

button {
    padding: 12px;
    background-color: #F4B400;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
    margin-bottom: 5px;
}

button:hover {
    background-color: #333;
}

.result {
    font-size: 24px;
    font-weight: bold;
    color: #28a745;
    margin-top: 20px;
}

/* Widget section - only for temperature and pressure */
.widget,
.widget1 {
    width: 100%;
    padding: 20px;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
}
.container,
.container1 {
    width: 100%;
    max-width: 1000px; /* Limit the width to prevent too wide of a layout */
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* Title of the widget */
.title1 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
}

/* Style for the list of tire pressures */
ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Style for each list item, which represents a tire pressure reading */
.widget ul li,
.widget1 ul li {
    background-color: #e0e0e0;
    padding: 20px;
    width: 22%; /* Each tire pressure box takes up about 22% of the container's width */
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Widget section - only for temperature and pressure */
.widget,
.widget1 {
    width: 100%;
    padding: 20px;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
}

.container1 {
    width: 100%;
    max-width: 1000px; /* Limit the width to prevent too wide of a layout */
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* Title of the widget */
.title1 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
}

/* Style for the list of tire pressures */
ul {
    list-style: none;
    display: flex;          /* Use flexbox to align items in a row */
    justify-content: space-between;  /* Evenly space out items */
    flex-wrap: nowrap;      /* Prevent wrapping to the next line */
    padding: 0;
    margin: 0;
}

/* Style for each list item, which represents a tire pressure reading */
.widget ul li,
.widget1 ul li {
    background-color: #e0e0e0;
    padding: 16px;
    width: 20%; /* Each tire pressure box takes up 22% of the container's width */
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Style for the tire heading */
.widget ul li h3,
.widget1 ul li h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

/* Style for the tire pressure value */
.widget ul li span,
.widget1 ul li span {
    font-size: 22px;
    font-weight: bold;
    color:#000000 ; /* Blue color for the pressure value */
}

.widget1 ul li:hover {
    background-color: #F4B400;
    cursor: pointer;
}
/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}
