  .banner {
      position: relative;
      height: 100vh;
      background: linear-gradient(rgba(2, 54, 99, 0.7), rgba(2, 54, 99, 0.7)),
                  url('../img/banner-1.png') no-repeat center center/cover;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      flex-direction: column;
      color: white;
      padding: 2rem;
    }

    .card-custom {
      background: white;
      height: 200px;
      border-radius: 12px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .card-custom:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    }

    .card-custom img {
      max-width: 60%;
      max-height: 60%;
      object-fit: contain;
    }

     /* About Us Section */
    .about-section {
      padding: 60px 0;
    }
    .about-text {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    /* Services Section */
    .services-section {
      background-color: #cfe2ff;
      padding: 60px 0;
    }

    .service-card {
      background: white;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      text-align: center;
      padding: 30px 20px;
      height: 100%;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

    .service-card i {
      font-size: 40px;
      color: #0d6efd;
      margin-bottom: 15px;
    }


 .wireless-printer-section {
      background-color: #007bff;
      color: white;
      padding: 0; /* no extra padding for full height */
    }

    .wireless-printer-row {
      display: flex;
      min-height: 500px; /* Minimum height for large screens */
    }

    .wireless-printer-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .wireless-printer-text {
      padding: 60px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      height: 100%;
    }

    .wireless-printer-heading {
      font-size: 2.5rem;
      font-weight: bold;
      margin-bottom: 20px;
    }

    @media (max-width: 767px) {
      .wireless-printer-row {
        flex-direction: column;
      }

      .wireless-printer-text {
        padding: 30px;
      }

      .wireless-printer-section {
        padding-top: 40px;
      }
    }
    @media (max-width: 768px) {
      .banner{
      height: 100%;

      }
      .banner h1 {
        font-size: 2rem;
      }
      .card-custom {
        height: 180px;
      }
    }

    @media (max-width: 576px) {
      .banner h1 {
        font-size: 1.8rem;
      }
      .card-custom {
        height: 160px;
      }
    }
   
   .foot{
    text-align: left;
   }
   .foot a{
    text-decoration: none;
   }