body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background-color: #ffffff;
      color: #222;
      font-size: 1rem;
    }
    header {
      background-color: #0099FF; /* Bright blue */
      padding: 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: white;
    }
    nav a {
      color: white;
      margin-left: 20px;
      text-decoration: none;
      font-weight: 600;
    }
    .hero {
      background: url('Front.jpg') no-repeat center center;
      background-size: cover;
      padding: 100px 20px;
      text-align: center;
      color: white;
    }
    .hero h1 {
      font-size: 3.5em;
      margin-bottom: 10px;
      text-shadow: 1px 1px 3px #000;
      color: #ff4c4c;
    }
    .hero p {
      font-size: 1.3em;
      margin-bottom: 20px;
      text-shadow: 1px 1px 2px #000;
    }
    .cta-button {
      background-color: #FFCC00; /* Yellow accent */
      color: #222;
      padding: 15px 30px;
      border: none;
      font-weight: bold;
      font-size: 1em;
      border-radius: 5px;
      cursor: pointer;
      box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }
    .features {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      background-color: #f9f9f9;
      padding: 40px 20px;
    }
    .feature {
      flex: 1 1 220px;
      margin: 20px;
      text-align: center;
      background: white;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    .feature img {
      width: 60px;
      margin-bottom: 10px;
    }
    footer {
      background-color: #0099FF;
      color: white;
      text-align: center;
      padding: 20px;
    }
    .container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
    }
    @media (max-width: 768px) {
      .nav-menu {
        flex-direction: column;
      }

      .hero-text {
        font-size: 1.2rem;
      }

      .truck-icon {
        width: 80px;
        margin: auto;
      }
        .service-area {
        padding: 30px 15px;
      }

      .service-area h2 {
        font-size: 1.5em;
      }

      .intro-text,
      .note-text {
        font-size: 1em;
      }

    }
    button {
      padding: 12px 20px;
      font-size: 1rem;
    }
    img {
      max-width: 100%;
      height: auto;
    }
    .service-area {
      background-color: #f9f9f9;
      padding: 40px 20px;
    }

    .service-container {
      max-width: 800px;
      margin: auto;
      text-align: center;
    }

    .service-area h2 {
      color: #0099FF;
      margin-bottom: 20px;
      font-size: 1.8em;
    }

    .intro-text {
      font-size: 1.1em;
      color: #333;
      margin-bottom: 30px;
    }

    .area-list {
      list-style: none;
      padding: 0;
      font-size: 1em;
      color: #222;
    }

    .area-list li {
      margin-bottom: 10px;
    }

    .note-text {
      margin-top: 30px;
      font-size: 0.95em;
      color: #666;
    }
    
    .carousel {
      position: relative;
      overflow: hidden;
      max-width: 100%;
      margin: auto;
    }

    .carousel-track {
      display: flex;
      transition: transform 0.5s ease;
    }

    .carousel-track img {
      width: calc(100% / 3); /* Show 3 images */
      aspect-ratio: 1 / 1;
      object-fit: cover;
      flex-shrink: 0;
      border-radius: 10px;
    }

    .carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: #ffffffcc;
      border: none;
      font-size: 2rem;
      cursor: pointer;
      z-index: 1;
    }

    .prev { left: 10px; }
    .next { right: 10px; }





