 /* #serviceCarousel {
    width: 100%;
    background-color: #0e4b6c;
    color: #fff;
    padding: 80px 0;
  }

  .service-card {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    text-align: center;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease;
  }

  .service-card:hover {
    transform: translateY(-8px);
  }

  .service-card .icon {
    width: 70px;
    height: 70px;
    background: #fff;
    color: #0e4b6c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
  }

  .service-card h3 {
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 15px;
  }

  .service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #d9e6ef;
  }


  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    background-color: #fff;
    border-radius: 50%;
    padding: 10px;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 5%;
  } */

  /* ========================= */

  /* #serviceCarousel {
    width: 100%;
    background: linear-gradient(135deg, #e3f2fd, #ffffff);
  }

  .service-slide {
    width: 100%;
    height: 400px;
    color: #222;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 50px 20px;
    box-sizing: border-box;
  }

  .service-slide .icon {
    font-size: 70px;
    margin-bottom: 20px;
    color: #007bff;
    animation: pulseIcon 2s infinite;
  }

  .service-slide h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
  }

  .service-slide p {
    font-size: 18px;
    color: #555;
    max-width: 750px;
  }


  @keyframes pulseIcon {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.9; }
    100% { transform: scale(1); opacity: 1; }
  }


  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    filter: invert(100%);
  }

  @media (max-width: 768px) {
    .service-slide {
      height: auto;
      padding: 40px 15px;
    }

    .service-slide h2 {
      font-size: 24px;
    }

    .service-slide p {
      font-size: 16px;
    }

    .service-slide .icon {
      font-size: 50px;
    }
  } */


  /* ================================================== */


  #serviceCarousel {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  #serviceCarousel img {
    object-fit: cover;
  }
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    filter: invert(1);
  }