  .banner {
      background: linear-gradient(to right, #0a4275 0%, #1e6cc0 100%);
      color: white;
      padding: 93px 96px;
      border-radius: 0px;
      position: relative;
      overflow: hidden;
      margin: 0px auto;
      height: 516px;
  }

  .banner-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: relative;
      z-index: 2;
  }

  .text-content {
      flex: 1;
      padding-right: 30px;
  }

  .banner h1 {
      font-size: 2.8rem;
      margin-bottom: 15px;
      font-weight: 700;
  }

  .banner p {
      font-size: 1.2rem;
      margin-bottom: 25px;
      line-height: 1.6;
      max-width: 600px;
  }

  .highlight {
      color: #ffcc00;
      font-weight: 700;
  }

  .features {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      margin-bottom: 30px;
  }

  .feature {
      background: rgba(255, 255, 255, 0.15);
      padding: 8px 15px;
      border-radius: 20px;
      font-size: 0.9rem;
      display: flex;
      align-items: center;
  }

  .feature i {
      margin-right: 8px;
      color: #ffcc00;
  }

  .cta-button {
      background: #ffcc00;
      color: #0a4275;
      padding: 15px 30px;
      border: none;
      border-radius: 30px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(255, 204, 0, 0.3);
  }

  .cta-button:hover {
      background: #ffd633;
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(255, 204, 0, 0.4);
  }

  .image-content {
      flex: 0 0 45%;
      text-align: center;
  }

  .truck-image {
      max-width: 100%;
      animation: float 4s ease-in-out infinite;
  }

  @keyframes float {
      0% {
          transform: translateY(0px);
      }

      50% {
          transform: translateY(-15px);
      }

      100% {
          transform: translateY(0px);
      }
  }

  .decoration {
      position: absolute;
      z-index: 1;
  }

  .circle-1 {
      width: 200px;
      height: 200px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.05);
      top: -50px;
      right: -50px;
  }

  .circle-2 {
      width: 150px;
      height: 150px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.05);
      bottom: -50px;
      left: 100px;
  }

  /* Responsive design */
  @media (max-width: 900px) {
      .banner-content {
          flex-direction: column;
          text-align: center;
      }

      .text-content {
          padding-right: 0;
          margin-bottom: 30px;
      }

      .features {
          justify-content: center;
      }

      .banner h1 {
          font-size: 2.2rem;
      }

      .banner p {
          font-size: 1rem;
      }
  }



  .modern-section {
      background: linear-gradient(135deg, var(--light) 0%, #ffffff 100%);
      position: relative;
      overflow: hidden;
  }

  .modern-section::before {
      content: '';
      position: absolute;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: rgba(45, 91, 255, 0.05);
      top: -150px;
      right: -150px;
  }

  .modern-section::after {
      content: '';
      position: absolute;
      width: 200px;
      height: 200px;
      border-radius: 50%;
      background: rgba(255, 107, 53, 0.05);
      bottom: -100px;
      left: -100px;
  }

  .section-badge {
      display: inline-block;
      background: var(--primary-light);
      color: var(--primary);
      padding: 6px 16px;
      border-radius: 100px;
      font-weight: 600;
      font-size: 0.85rem;
      letter-spacing: 0.5px;
      margin-bottom: 1rem;
  }

  .section-title {
      font-weight: 800;
      color: var(--dark);
      margin-bottom: 1rem;
      position: relative;
      display: inline-block;
  }

  .section-title::after {
      content: '';
      position: absolute;
      width: 40px;
      height: 4px;
      background: var(--secondary);
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 2px;
  }

  .section-subtitle {
      color: #64748B;
      font-size: 1.1rem;
      max-width: 600px;
      margin: 0 auto;
  }

  .feature-card {
      background: #ffffff;
      border-radius: 16px;
      overflow: hidden;
      transition: all 0.3s ease;
      position: relative;
      z-index: 1;
      height: 100%;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.8);
  }

  .feature-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  }

  .feature-card::before {
      content: '';
      position: absolute;
      width: 100%;
      height: 5px;
      background: linear-gradient(90deg, var(--primary), var(--secondary));
      top: 0;
      left: 0;
      opacity: 0;
      transition: opacity 0.3s ease;
  }

  .feature-card:hover::before {
      opacity: 1;
  }

  .feature-icon {
      width: 70px;
      height: 70px;
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      background: var(--primary-light);
      color: var(--primary);
      font-size: 1.8rem;
      transition: all 0.3s ease;
  }

  .feature-card:hover .feature-icon {
      transform: scale(1.1);
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: white;
  }

  .feature-title {
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 0.75rem;
  }

  .feature-text {
      color: #64748B;
      font-size: 0.95rem;
      line-height: 1.6;
  }

  .grid-container {
      position: relative;
  }

  /* Animation for cards to appear sequentially */
  @keyframes fadeInUp {
      from {
          opacity: 0;
          transform: translateY(20px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  .feature-card {
      animation: fadeInUp 0.5s ease forwards;
  }

  .feature-card:nth-child(1) {
      animation-delay: 0.1s;
  }

  .feature-card:nth-child(2) {
      animation-delay: 0.2s;
  }

  .feature-card:nth-child(3) {
      animation-delay: 0.3s;
  }

  .feature-card:nth-child(4) {
      animation-delay: 0.4s;
  }

  .feature-card:nth-child(5) {
      animation-delay: 0.5s;
  }