
  .tabs {
    display: flex;
    margin-bottom: 15px;
    cursor: pointer;
  }

  .tab {
    padding: 10px 20px;
    border-bottom: 2px solid transparent;
  }

  .tab.active {
    border-bottom: 2px solid red;
    font-weight: bold;
  }

  .swiper-slide.column {
    background: #f9f9f9;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    width: 300px !important;
  }

  ul {
    padding-left: 15px;
  }

  ul li {
    margin-bottom: 6px;
  }


/*Need Assistance? Your wish is our command*/
      
        .container {
            max-width: 1200px;
            margin: auto;
            text-align: center;
        }

        .cards {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
        }

        .card {
            /*flex: 1 1 250px;*/
            background: white;
          /*  padding: 20px;*/
            border-radius: 10px;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: transform 0.3s;
            min-width: 220px;
        }

        .card:hover {
            transform: translateY(-5px);
        }

        .highlight {
            background: #fff6e5;
        }

        .card h2 {
            color: #ff5722;
            font-size: 24px;
            margin: 10px 0;
        }

        .card p {
            color: #444;
            font-size: 18px;
        }

        .btn {
            background: #ffb300;
            color: #000;
            padding: 10px 15px;
            border: none;
            cursor: pointer;
            font-weight: bold;
            border-radius: 5px;
            margin-top: 10px;
        }

        .btn:hover {
            background: #ffa000;
        }

        @media (max-width: 768px) {
            .cards {
                flex-direction: column;
                align-items: center;
                 display: flex;
            flex-wrap: wrap;
            }

            .card {
               /* width: 90%;*/
            }
        }
        
        
     
        
        .banner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: #FFF5E8;
            padding: 20px 40px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .banner-text {
            max-width: 60%;
        }

        .banner-text h2 {
            font-size: 24px;
            font-weight: bold;
            color: #333;
        }

        .banner-text h2 span {
            color: #FF5E2B;
        }

        .banner-text p {
            font-size: 16px;
            color: #555;
            margin-bottom: 10px;
        }

        .banner-button {
            text-align: center;
        }

        .banner-button button {
            background: #FF5E2B;
            color: white;
            border: none;
            padding: 12px 20px;
            font-size: 16px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
        }

        .banner-button p {
            font-size: 14px;
            color: #555;
            margin-top: 5px;
        }

        .banner img {
            max-width: 60px;
            height: auto;
        }

 