@font-face {
  font-family: 'icomoon';
  src:  url('fonts/icomoon.eot?9o9dwh');
  src:  url('fonts/icomoon.eot?9o9dwh#iefix') format('embedded-opentype'),
    url('fonts/icomoon.ttf?9o9dwh') format('truetype'),
    url('fonts/icomoon.woff?9o9dwh') format('woff'),
    url('fonts/icomoon.svg?9o9dwh#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  display:none;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-check:before {
  content: "\e919";
}
.icon-arrow-down:before {
  content: "\e91b";
}
.icon-arrow-up:before {
  content: "\e924";
}
.icon-arrow-right:before {
  content: "\e925";
}
.icon-arrow-left:before {
  content: "\e926";
}
.icon-search1:before {
  content: "\e91c";
}
.icon-play:before {
  content: "\e91d";
}
.icon-emotion:before {
  content: "\e91e";
}
.icon-value:before {
  content: "\e91f";
}
.icon-phone:before {
  content: "\e920";
}
.icon-complete:before {
  content: "\e921";
}
.icon-strategies:before {
  content: "\e922";
}
.icon-clock1:before {
  content: "\e923";
}
.icon-care:before {
  content: "\e912";
}
.icon-support:before {
  content: "\e913";
}
.icon-guidance:before {
  content: "\e914";
}
.icon-arrow-right2:before {
  content: "\e90a";
}
.icon-arrow-left2:before {
  content: "\e911";
}
.icon-up-right-arrow:before {
  content: "\e900";
}
.icon-blood-drop:before {
  content: "\e901";
}
.icon-bandage:before {
  content: "\e902";
}
.icon-people:before {
  content: "\e903";
}
.icon-folder:before {
  content: "\e904";
}
.icon-placeholder:before {
  content: "\e905";
}
.icon-clock:before {
  content: "\e906";
}
.icon-coin:before {
  content: "\e907";
}
.icon-location-pin:before {
  content: "\e908";
}
.icon-customer-support:before {
  content: "\e909";
}
.icon-right-arrow:before {
  content: "\e90b";
}
.icon-left-arrow:before {
  content: "\e915";
}
.icon-elderly:before {
  content: "\e90c";
}
.icon-search:before {
  content: "\e90d";
}
.icon-speak:before {
  content: "\e90e";
}
.icon-controls:before {
  content: "\e90f";
}
.icon-old-man:before {
  content: "\e910";
}
.icon-plus:before {
  content: "\e916";
}
.icon-right-up:before {
  content: "\e917";
}
.icon-quote:before {
  content: "\e918";
}
.icon-star:before {
  content: "\e91a";
}


    .tabs-wrapper {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 2px solid #ccc;
      margin-bottom: 20px;
      padding: 0 20px 10px;
    }

    .tabs {
      display: flex;
      gap: 30px;
    }

    .tabs button {
      background: none;
      border: none;
      font-weight: bold;
      font-size: 18px;
      cursor: pointer;
      color: #555;
    }

    .tabs button.active {
      color: #003366;
      border-bottom: 3px solid #003366;
    }

    .nav-arrows {
      display: flex;
      gap: 10px;
    }

    .nav-arrows .arrow {
      background: #e0e0e0;
      border-radius: 50%;
      width: 35px;
      height: 35px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-weight: bold;
    }

    .carousel-container {
      display: flex;
      gap: 20px;
    }

    .fixed-left {
      flex: 0 0 250px;
    }

    .network-card {
      background: #003366;
      border-radius: 12px;
      padding: 30px;
      color: #fff;
      height: 100%;
    }

    .network-card h2 {
      font-weight: bold;
      font-size: 22px;
    }

    .network-card p {
      margin: 20px 0;
      font-size: 15px;
    }

    .network-card .btn {
      background: #008fb3;
      border: none;
      font-size: 14px;
    }

    /* SCROLLER WRAPPER */
    .hospital-carousel {
      flex: 1;
      overflow-x: hidden;
      display: flex;
      gap: 20px;
      scroll-behavior: smooth;
    }

    .hospital-card {
      flex: 0 0 250px;
      border-radius: 12px;
      overflow: hidden;
      background: #fff;
      height: 350px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);

    }

    .hospital-card img {
      width: 100%;
      height: 315px;
      object-fit: cover;
    }

    .hospital-card .card-body {
      padding: 10px;
    }

    .hospital-card h5 {
      font-size: 18px;
      font-weight: 600;
      margin: 0;
    }
      
    @media (max-width: 768px) {
  /* Make container stack vertically */
  .carousel-container {
    flex-direction: column;
    gap: 20px;
    position: relative; /* For absolutely positioned arrows */
  }

  /* Make network card full width */
  .fixed-left {
    flex: 1 1 100%;
  }

  .network-card {
    width: 100%;
  }

  /* Make tabs row scrollable under network card */
  .tabs-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    width: 100%;
    display: flex;
    gap: 20px;
  }

  .tabs::-webkit-scrollbar {
    display: none; /* Hide scrollbar for cleaner look */
  }

  .tabs button {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  /* Reposition nav arrows inside hospital carousel */
  /* .nav-arrows {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 5px;
    z-index: 2;
    display: flex;
    gap: 5px;
  }

  .nav-arrows .arrow {
    width: 30px;
    height: 30px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
  } */

  /* Cards wrapper takes full width */
  .hospital-carousel {
    flex: 1 1 100%;
  }
}

   