body
{
    background: #fef8f5;
    font-family: 'Rubik', sans-serif;
    color: #333;
    padding-top: 120px;
}

.order-online-btn2 
{
  background-color: #FFBD2B;
  color: white !important;
  padding: 15px 40px; 
  font-size: 15px;  
  border: 7px solid #FFBD2B;
  border-radius: 9999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.12s ease-in-out, box-shadow 0.12s ease-in-out;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: inline-block;
  line-height: 1;
}

header {
  background-color: #f27121; /* Bold orange */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 40px;
  z-index: 10000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.5s;
}

header .logo {
  color: #fff;
}

header .navigation li a {
  color: #fff;
}

header .navigation li {
  list-style: none;
  margin-left: 30px;
}

header .navigation li a {
  text-decoration: none;
  color: #fff;
  font-weight: 400;
}

.navigation a.active {
  color: #FFBD2B; /* or any highlight color */
  font-weight: bold;
}

.truck-section {
  display: flex;                     /* Place content and image side by side */
  justify-content: space-between;    /* Space between text and image */
  align-items: center;                /* Vertically align */
  gap: 30px;
  padding: 40px;
}

.truck-content {
  flex: 1;
  max-width: 55%;
}

.truck-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.truck-image img {
  max-width: 90%;
  border-radius: 20px;
}

.truck-box {
    background: #FFBD2B;
    border-radius: 28px;
    padding: 60px 40px;
    max-width: 1300px;
    margin: 40px auto;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.truck-subtitle {
  font-size: 3rem;           /* Keep it large */
  font-weight: 800;
  color: #d9480f;
  white-space: nowrap;       /* Prevents wrapping to another line */
  overflow: hidden;          /* Avoid overflow if it's too wide */
  text-overflow: ellipsis;   /* (Optional) Show "..." if it’s too long */
  display: block;
}

.truck-title {
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
}

.truck-desc {
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.cta-buttons a {
    background-color: #d9480f;
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: background 0.3s ease;
}

.cta-buttons a:hover {
    background-color: #c33f0a;
}

footer {
    text-align: center;
    margin: 60px 0 40px;
    color: #333;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
  .truck-subtitle {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .truck-subtitle {
    font-size: 1.8rem;
  }
}