.slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;

}

.slider {
  display: flex;
  width: 100%;
  transition: transform 0.6s ease-in-out;
}

.slide-new {
  flex: 0 0 100%;
  align-items: center;
  justify-content: center;
}

.slide-new img {
  width: 100%;
  object-fit: cover;
  display: block;
}

 .nav-buttons {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 1rem;
    pointer-events: none;
  }

  .nav-buttons button {
    background: rgba(0, 0, 0, 0.6);
    border: none;
    color: white;
    font-size: 1.5rem;
    padding: 0.75rem 1rem;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    transition: background 0.3s;
  }

  .nav-buttons button:hover {
    background: rgba(255, 255, 255, 0.2);
  }


  @media (max-width: 768px) {
    .nav-buttons button {
      font-size: 1rem;
      padding: 0.5rem 0.75rem;
    }
    
  } 

  /* ------next----- */
 .learn-more-btn {
    display: inline-block;
    padding: 7px 10px;
    border: 1px solid #d9230f;
    color: #d9230f;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
  }

  .learn-more-btn:hover {
    background-color: #d9230f;
    color: #fff;
    text-decoration: none;
  }

  .panel:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  }
  .panel-body {
    padding: 5px;
    margin-top: 2px;
}

  /* ------next 2----- */

  .logo-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 20px;
    text-decoration: none;
    background-color: #fff;
    transition: box-shadow 0.2s ease;
  }
  
  .logo-box:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .logo-img {
    width: 100%;
    height: 100%;
    margin-bottom: 10px;
  }
  
  .logo-text {
    font-size: 1.1rem;
    font-weight: normal;
    color: #666;
  }

    /* ------next 3----- */
    .btn-ai-cta {
    background-color: #0056d2;
    color: #fff;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
  }

  .btn-ai-cta:hover {
    background-color: #0041a8;
  }

  .ai-hero-section {
    background: #f8f9fa;
    padding: 60px 0;
  }

  .hero-heading {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
  }

  .hero-subheading {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
    max-width: 500px;
  }

  .btn-ai-cta {
    background-color: #d9230f;
    color: white;
    padding: 12px 24px;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }

  .btn-ai-cta:hover {
    background-color: #b91c0c;
    color: white;
    text-decoration: none;
  }

  .hero-img {
    max-width: 100%;
    height: auto;
  }

  @media (max-width: 767px) {
    .hero-heading {
      font-size: 24px;
    }

    .hero-subheading {
      font-size: 14px;
    }
  }
    /* ------next 4----- */

   .ai-slider       {position:relative; overflow:hidden; width:100%; max-width:1140px; margin:40px auto;  }
  .slides          {display:flex; transition:transform .5s ease; width:100%; touch-action: pan-y;}
  .card            {flex:0 0 33.333%; padding: 15px; box-sizing:border-box; text-align:center; border: 1px solid #e0e0e0;}
  .card img        {width:100%; height:auto; border:1px solid #e0e0e0;}
  .card h4         {margin:15px 0 8px; font-size:18px;}
  .card p          {font-size:14px; min-height:48px;}
  /* .btn             {display:inline-block; padding:6px 18px; background:#007bff; color:#fff; font-size:13px; border-radius:4px; text-decoration:none;} */
  .navb             {position:absolute; top:50%; transform:translateY(-50%); background:none; border:none; font-size:48px; color:#000; opacity:.25; cursor:pointer; padding:0 10px; z-index:1;}
  .navb:hover       {opacity:.5;}
  .prevb            {left:0; }
  .nextb            {right:0;}
  #aiSlider button{
    background: rgba(0, 0, 0, 0.6);
    border: none;
    color: white;
    font-size: 1.5rem;
    padding: 0.75rem 1rem;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    transition: background 0.3s;
  }
  @media(max-width:768px){ .card{flex:0 0 100%;} }