/********** Template CSS **********/
:root {
  --primary: #069894;
  --secondary: #34ad54;
  --light: #eef9ff;
  --dark: #00242e;
}

/*** Spinner ***/
.spinner {
  width: 40px;
  height: 40px;
  background: var(--primary);
  margin: 100px auto;
  -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
  animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
  0% {
    -webkit-transform: perspective(120px);
  }
  50% {
    -webkit-transform: perspective(120px) rotateY(180deg);
  }
  100% {
    -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg);
  }
}

@keyframes sk-rotateplane {
  0% {
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  }
  50% {
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  }
  100% {
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}

#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Heading ***/
h1,
h2,
.fw-bold {
  font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
  font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
  font-weight: 600 !important;
}

/*** Button ***/
.btn {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  transition: 0.5s;
}

.btn-primary,
.btn-secondary {
  color: #ffffff;
  box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
  box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
  box-shadow: inset 0 0 0 0 var(--secondary);
}

.top-bar {background: linear-gradient(90deg, #005a66, #02adad);}

.btn-square {
  width: 36px;
  height: 36px;
}

.btn-sm-square {
  width: 30px;
  height: 30px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
  font-family: "Nunito", sans-serif;
  position: relative;
  margin-left: 25px;
  padding: 15px;
  color: #035f6c;
  font-size: 18px;
  font-weight: 600;
  outline: none;
  transition: 0.5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
  padding: 22px 0;
  color: #035f6c;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--primary);
}

.navbar-dark .navbar-brand h1 {
  color: #ffffff;
}

.navbar-dark .navbar-toggler {
  color: var(--primary) !important;
  border-color: var(--primary) !important;
}

@media (max-width: 991.98px) {
  .sticky-top.navbar-dark {
    position: relative;
    background: #ffffff;
  }

  .navbar-dark .navbar-nav .nav-link,
  .navbar-dark .navbar-nav .nav-link.show,
  .sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 10px 0;
    color: var(--dark);
  }

  .navbar-dark .navbar-brand h1 {
    color: var(--primary);
  }
}

@media (min-width: 992px) {
  .navbar-dark {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #ffffff !important; /* Force white background */
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  .sticky-top.navbar-dark {
    position: fixed;
    background-color: #ffffff !important; /* Also force sticky state to white */
  }

  .navbar-dark .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    bottom: -1px;
    left: 50%;
    background: var(--primary);
    transition: 0.5s;
  }

  .navbar-dark .navbar-nav .nav-link:hover::before,
  .navbar-dark .navbar-nav .nav-link.active::before {
    width: 100%;
    left: 0;
  }

  .navbar-dark .navbar-nav .nav-link.nav-contact::before {
    display: none;
  }

  .sticky-top.navbar-dark .navbar-brand h1 {
    color: var(--primary);
  }

  .container-fluid.bg-dark.px-5.d-none.d-lg-block {
    background-image: linear-gradient(
      90deg,
      #084753,
      #0d9da5
    ); /* adjust colors as needed */
    background-size: cover;
    background-repeat: no-repeat;
  }
  .header-section button.navbar-toggler {
    width: 13% !important;
    padding: 6px 0;
  }
}

.header-section {
    position: sticky !important;
    top: 0;
    z-index: 99;
    background: rgb(255, 255, 255, 0.95) !important;
}

/*** Carousel ***/
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(3, 43, 47, 0.5);
  z-index: 1;
}

@media (max-width: 576px) {
  .carousel-caption h5 {
    font-size: 14px;
    font-weight: 500 !important;
  }

  .carousel-caption h1 {
    font-size: 22px;
    font-weight: 600 !important;
    line-height: 1.3;
  }
}

.carousel-control-prev,
.carousel-control-next {
  width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
}

/*** Section Title ***/
.section-title::before {
  position: absolute;
  content: "";
  width: 150px;
  height: 5px;
  left: 0;
  bottom: 0;
  background: var(--primary);
  border-radius: 2px;
}

.section-title.text-center::before {
  left: 50%;
  margin-left: -75px;
}

.section-title.section-title-sm::before {
  width: 90px;
  height: 3px;
}

.section-title::after {
  position: absolute;
  content: "";
  width: 6px;
  height: 5px;
  bottom: 0px;
  background: #ffffff;
  -webkit-animation: section-title-run 5s infinite linear;
  animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
  width: 4px;
  height: 3px;
}

.section-title.text-center::after {
  -webkit-animation: section-title-run-center 5s infinite linear;
  animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
  -webkit-animation: section-title-run-sm 5s infinite linear;
  animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
  0% {
    left: 0;
  }
  50% {
    left: 145px;
  }
  100% {
    left: 0;
  }
}

@-webkit-keyframes section-title-run-center {
  0% {
    left: 50%;
    margin-left: -75px;
  }
  50% {
    left: 50%;
    margin-left: 45px;
  }
  100% {
    left: 50%;
    margin-left: -75px;
  }
}

@-webkit-keyframes section-title-run-sm {
  0% {
    left: 0;
  }
  50% {
    left: 85px;
  }
  100% {
    left: 0;
  }
}

/*** Service ***/
.service-item {
  position: relative;
  height: 300px;
  padding: 0 30px;
  transition: 0.5s;
}

.service-item .service-icon {
  margin-bottom: 30px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: 2px;
  transform: rotate(-45deg);
}

.service-item .service-icon i {
  transform: rotate(45deg);
}

.service-item a.btn {
  position: absolute;
  width: 60px;
  bottom: -48px;
  left: 50%;
  margin-left: -30px;
  opacity: 0;
}

.service-item:hover a.btn {
  bottom: -24px;
  opacity: 1;
  background-color: #078199;
}

/*** Testimonial ***/
.testimonial-carousel .owl-dots {
  margin-top: 15px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.testimonial-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  background: #dddddd;
  border-radius: 2px;
  transition: 0.5s;
}

.testimonial-carousel .owl-dot.active {
  width: 30px;
  background: #01bec7;
}

.testimonial-carousel .owl-item.center {
  position: relative;
  z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
  transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
  background: #ffffff !important;
  box-shadow: 0 0 30px #dddddd;
}

/*** Team ***/
.team-item {
  transition: 0.5s;
}

.team-social {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}

.team-social a.btn {
  position: relative;
  margin: 0 3px;
  margin-top: 100px;
  opacity: 0;
}

.team-item:hover {
  box-shadow: 0 0 30px #dddddd;
}

.team-item:hover .team-social {
  background: rgba(9, 30, 62, 0.7);
}

.team-item:hover .team-social a.btn:first-child {
  opacity: 1;
  margin-top: 0;
  transition: 0.3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
  opacity: 1;
  margin-top: 0;
  transition: 0.3s 0.05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
  opacity: 1;
  margin-top: 0;
  transition: 0.3s 0.1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
  opacity: 1;
  margin-top: 0;
  transition: 0.3s 0.15s;
}

.team-item .team-img img,
.blog-item .blog-img img {
  transition: 0.5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
  transform: scale(1.15);
}

/*** Miscellaneous ***/
@media (min-width: 991.98px) {
  .facts {
    position: relative;
    margin-top: -75px;
    z-index: 1;
  }
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

.bg-header {
  background: linear-gradient(rgba(9, 30, 62, 0.7), rgba(9, 30, 62, 0.7)),
    url(../img/carousel-1.jpg) center center no-repeat;
  background-size: cover;
}

.link-animated a, .foot-email {
  transition: 0.5s;
}

.link-animated a:hover, .foot-email:hover {
  padding-left: 10px;
}


.foot-email p, .foot-email a {
    font-size: 14px;
}

@media (min-width: 767.98px) {
  .footer-about {
    margin-bottom: -75px;
  }
}

body {
  margin: 0;
}

.grid-center {
  display: grid;
  place-items: center;
  min-height: 10vh; /* Use min-height to ensure it takes full viewport height */
}

.More_Services {
  text-align: center;
  text-decoration: none; /* Optional: Removes underline */
  padding: 10px 20px;
  background-color: #029cb1; /* Example background color */
  color: white; /* Text color */
  border-radius: 5px; /* Optional: Adds rounded corners */
  transition: background-color 1.3s ease, transform 1.3s ease; /* Smooth transition effect */
}

/* Hover effect */
.More_Services:hover {
  color: white;
  background-color: #065f82; /* Darker shade for hover */
  transform: scale(1.05); /* Slight scale effect to make it feel interactive */
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animated-heading {
  animation: fadeInUp 1s ease-out forwards;
}

.bg-responsive {
  background-color: transparent;
}

/* Apply navy only for small screens */
@media (max-width: 991.98px) {
  .bg-responsive {
    background-color: #ffffff; /* or your custom navy color */
  }
}

@media (max-width: 991.98px) {
  .navbar-dark .navbar-nav .nav-link {
    color: rgb(4, 73, 107) !important;
  }

  .navbar-dark .navbar-nav .nav-link:hover,
  .navbar-dark .navbar-nav .nav-link:focus {
    color: #ddd !important; /* Optional: lighter on hover */
  }
}

.oval-img {
  object-fit: cover;
  border-radius: 30% / 10%;
}

/* Modal background */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s ease-in-out;
}

/* Modal box */
.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 30px;
  border-radius: 15px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  animation: slideIn 0.3s ease-in-out;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

/* Close button */
.close-btn {
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

/* Animations */
@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.navbar-brand h1 {
  font-size: 32px;
}

.carousel-caption h1 {
  font-size: 60px;
}

.rcm-section {
  background: linear-gradient(to top, #005a66, #02adad);
  color: #ffffff;
  padding: 60px 20px;
  font-family: "Segoe UI", sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.subtitle {
  margin-bottom: 50px;
  font-size: 1.1rem;
  color: #d8eafc;
}

.rcm-content {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.rcm-buttons {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rcm-buttons button {
  position: relative;
  background: linear-gradient(to bottom, #005a66, #02adad);
  color: white;
  border: 1px solid #03c3c3;
  padding: 16px 50px;
  border-radius: 6px;
  text-align: left;
  font-size: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: visible;
  display: flex;
  align-items: center;
  gap: 12px;
  outline: none;
}

.rcm-buttons button:hover:not(.active) {
  background: linear-gradient(to right, #038d8d, #03c3c3);
  border: 1px solid #03c3c3;
}

.rcm-buttons button.active {
  background: linear-gradient(to right, #017070, #03c3c3);
  border: 1px solid #03c3c3;
  border-radius: 30px;
}

.rcm-buttons button p {
  margin: 0;
  pointer-events: none;
}

/* Arrow shape on the right side of the active button */
.rcm-buttons button.active::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  /* border: 1px solid white; */
  border-top: 24px solid transparent;
  border-bottom: 24px solid transparent;
  border-left: 20px solid #03c3c3;
  z-index: 1;
}

.rcm-details {
  flex: 2;
  background: #ffffff;
  color: #202020;
  padding: 25px;
  border-radius: 8px;
  min-height: 300px;
}

.rcm-details h3 {
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.rcm-details ul {
  padding-left: 20px;
}

.rcm-details li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.rcm-buttons button i {
  min-width: 20px; /* keeps icons aligned if some are narrower */
  pointer-events: none;
}

.rcm-industry-section {
  background: linear-gradient(to top, #005a66, #02adad);
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.rcm-industry-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.rcm-industry-section .subtext {
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.industry-cards {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 280px;
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  transition: transform 0.3s ease;
  border: 1px solid rgb(211, 211, 211);
}

.card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
}

.card .icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.card p {
  font-size: 1rem;
  line-height: 1.6;
}

.relevance-section {
  padding: 40px;
  font-family: Arial, sans-serif;
  text-align: center;
  background-color: #ffffff;
}

.relevance-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.relevance-section .highlight {
  background: linear-gradient(90deg, #01656b, #01bec7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.relevance-section p {
  font-size: 16px;
  color: #333;
  margin: 10px 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.relevance-section a {
  color: #03aaaa;
  text-decoration: none;
}

.button-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  max-width: 1000px;
  margin: 30px auto 0 auto;
}

.button-grid button {
  background: linear-gradient(135deg, #007e8c, #02bec1);
  color: #fff;
  border: none;
  padding: 15px 10px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.button-grid button:hover {
  background: linear-gradient(230deg, #007e8c, #02bec1);
  transform: translateY(-2px);
}

.billing-section {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  background-color: #f5f5f5;
  border-radius: 25px;
  overflow: hidden;
  max-width: 1300px;
  margin: 40px auto;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.billing-content {
  flex: 1 1 50%;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.billing-content h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.3;
}

.billing-content .highlight {
  background: linear-gradient(90deg, #017286, #06cae4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.billing-content p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
}

.billing-image {
  flex: 1 1 50%;
  display: flex;
  align-items: stretch;
}

.billing-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-mask-image: linear-gradient(to right, transparent, black 30%);
  mask-image: linear-gradient(to right, transparent, black 30%);
}

.specialties-section {
  padding: 60px 20px;
  text-align: center;
  background: #e9ffff;
  border-radius: 50px;
}

.specialties-section h2 {
  font-size: 1.8rem;
  margin-bottom: 5px;
}

.subheading {
  font-size: 1.5rem;
  color: #09989f;
  font-weight: bold;
  margin-bottom: 30px;
}

.scroll-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.scroll-track {
  display: inline-flex;
  will-change: transform;
  gap: 60px;
  padding: 10px 0;
}

/*.scroll-wrapper:hover .scroll-track {*/
/*  animation-play-state: paused;*/
/*}*/

.scroll-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 100px;
  white-space: nowrap;
}

.scroll-item img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
  filter: grayscale(100%);
  transition: filter 0.3s;
}

.scroll-item:hover img {
  filter: none;
}

.scroll-item p {
  font-size: 0.95rem;
  margin: 0;
  color: #06a0a0;
}

/*@keyframes scroll-left {*/
/*  0% {*/
/*    transform: translateX(0);*/
/*  }*/
/*  100% {*/
/*    transform: translateX(-50%);*/
/*  }*/
/*}*/

.view-all {
  margin-top: 30px;
  background-color: #08beaf;
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
}

.view-all:hover {
  background-color: #028a85;
}

.logo-circle {
  width: 110px;
  height: 110px;
  border: 2px solid #06e0e0;
  border-radius: 50%;
  margin: auto;
  padding: 10px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  text-align: center;
}

.logo-circle img {
  max-width: 70px;
  height: auto;
  margin-bottom: 0px;
}

.logo-circle span {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  line-height: 1.2;
}

.logo-circle:hover {
  transform: scale(1.08);
}

.main-logo img {
  width: 110px;
  background: white;
  border-radius: 50%;
  padding: 15px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
  transform: scale(1.4);
}

.testimonial-gradient {
  background: linear-gradient(
    to top,
    #ffffff,
    #97e3e7
  ); /* light teal to white gradient */
  padding: 50px 0 0;
}

.rcm2-industry-section {
  background: linear-gradient(to top, #ffffff, #ace9ec);
  color: rgb(1, 38, 48);
  padding: 60px 20px;
  text-align: center;
}

.rcm2-industry-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.rcm2-industry-section .subtext {
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.industry2-cards {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.card2 {
  flex: 1;
  min-width: 280px;
  background: white;
  padding: 30px;
  border-radius: 10px;
  transition: transform 0.3s ease;
  border: 2px solid rgb(2, 66, 76);
}

.card2:hover {
  transform: translateY(-5px);
  background: rgba(226, 253, 255, 0.6);
}

.card2 .icon2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.card2 h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.card2 p {
  font-size: 14px;
  line-height: 1.6;
}

/* Base dropdown animation */
.dropdown-fade-scale {
  opacity: 0;
  transform: scale(0.95);
  transform-origin: top;
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: block;
  visibility: hidden;
  pointer-events: none;
}

/* When dropdown is open */
.nav-item.dropdown.show .dropdown-fade-scale {
  opacity: 1;
  transform: scale(1);
  visibility: visible;
  pointer-events: auto;
}

/* Stagger effect for each item */
.dropdown-fade-scale .dropdown-item {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Animate items when dropdown is shown */
.nav-item.dropdown.show .dropdown-fade-scale .dropdown-item {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays using nth-child */
.dropdown-fade-scale .dropdown-item:nth-child(1) {
  transition-delay: 0.05s;
}
.dropdown-fade-scale .dropdown-item:nth-child(2) {
  transition-delay: 0.1s;
}
.dropdown-fade-scale .dropdown-item:nth-child(3) {
  transition-delay: 0.15s;
}
.dropdown-fade-scale .dropdown-item:nth-child(4) {
  transition-delay: 0.2s;
}
.dropdown-fade-scale .dropdown-item:nth-child(5) {
  transition-delay: 0.25s;
}
.dropdown-fade-scale .dropdown-item:nth-child(6) {
  transition-delay: 0.3s;
}
.dropdown-fade-scale .dropdown-item:nth-child(7) {
  transition-delay: 0.35s;
}
.dropdown-fade-scale .dropdown-item:nth-child(8) {
  transition-delay: 0.4s;
}
.dropdown-fade-scale .dropdown-item:nth-child(9) {
  transition-delay: 0.45s;
}
.dropdown-fade-scale .dropdown-item:nth-child(10) {
  transition-delay: 0.5s;
}
.dropdown-fade-scale .dropdown-item:nth-child(11) {
  transition-delay: 0.55s;
}
.dropdown-fade-scale .dropdown-item:nth-child(12) {
  transition-delay: 0.6s;
}

.billing-section2 {
  padding: 40px 20px;
  background-color: #ffffff;
}

.billing-section2 h2 {
  text-align: center;
  color: #003366;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 5px;
}

.billing-section2 h1 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #001f3f;
}

.subtext2 {
  text-align: center;
  font-size: 14px;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #555;
  line-height: 1.6;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.feature-box {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 20px;
  width: 300px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.feature-box img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.feature-title {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 16px;
  color: #003366;
}

.feature-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* Responsive Layout */
@media (max-width: 768px) {
  .feature-box {
    width: 90%;
  }
  .offcanvas-body .navbar-brand img.img-fluid {
        width: 60% !important;
        margin-bottom: 0;
    }

  .billing-section2 h1 {
    font-size: 24px;
  }

  .billing-section2 h2 {
    font-size: 23px;
  }
  .billing-section2  h6 {
      font-size: 21px;
  }
}

.denials-section-loopmedix {
  max-width: 800px;
  margin: auto;
}

.denials-title-loopmedix {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
  position: relative;
  color: #00242e;
}

.denials-title-loopmedix::after {
  content: "";
  width: 90px;
  height: 4px;
  background-color: rgb(3, 205, 227);
  display: block;
  margin: 10px auto 0;
}

.denial-item-loopmedix {
  background-color: white;
  border: 1px solid #ccc;
  margin-bottom: 10px;
  border-radius: 6px;
  overflow: hidden;
  color: #04424f;
}

.denial-header-loopmedix {
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  transition: background-color 0.3s;
  color: #04424f;
  font-family: Rubik;
  border-radius: 6px !important;
  border: 0 !important;
  box-shadow: none !important;
  background: #fafafa !important;
  transition: 0.2s all;
}

.denial-header-loopmedix.accordion-button:not(.collapsed) {
  background: transparent;
  color: unset;
}

.denial-item-loopmedix.accordion-item:first-of-type .accordion-button {
  border-radius: 6px !important;
}

.denial-item-loopmedix.accordion-item:first-of-type .accordion-button:hover {
  background: #e6fcff;
}

.denial-item-loopmedix.accordion-item:not(:first-of-type) {
  border: 1px solid #ccc;
}

.denial-item-loopmedix.accordion-item:first-of-type {
  border-radius: 6px;
}

.denial-header-loopmedix.accordion-button::after {
  content: "+";
  background: unset;
  font-size: 22px;
  position: absolute;
  right: 11px;
  top: 17px;
  width: 13px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.denial-header-loopmedix.accordion-button::after {
  transform: rotate(-45deg);
}

.denial-header-loopmedix.accordion-button.collapsed::after {
  transform: rotate(0deg);
}

.denial-icon-loopmedix {
  font-size: 20px;
  transition: transform 0.3s;
}

.denial-item-loopmedix.active .denial-icon-loopmedix {
  transform: rotate(45deg); /* Turns plus into X */
}

.denial-content-loopmedix {
  background-color: #fafafa;
}

.tc-tabs {
  display: flex;
  background: #f1f1f1;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  max-width: 90%;
  margin: 20px auto 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.tc-tab {
  flex: 1;
  padding: 14px;
  text-align: center;
  cursor: pointer;
  background: #e6e6e6;
  border: none;
  color: #02363f;
  font-weight: 400;
  transition: background 0.3s;
  font-size: 14px;
  text-transform: uppercase;
}

.tc-tabs .tc-tab p {
  margin: 0;
}

.tc-tabs .tc-tab i {
  display: none;
  font-size: 30px;
}

.tc-tab.active {
  background: #013741;
  color: rgb(0, 238, 255);
}

.tc-content-container {
  display: flex;
  flex-direction: column;
  background: linear-gradient(to right, #002e40, #068a91);
  border-radius: 0 0 10px 10px;
  padding: 20px;
  max-width: 90%;
  margin: 0 auto;
}

.tc-tab-content {
  display: none;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  color: white;
}

.tc-tab-content.active {
  display: flex;
}

.tc-text {
  flex: 1;
  padding-right: 20px;
}

.tc-text h2 {
  color: rgb(0, 247, 255);
}

.tc-text a {
  color: #66ccff;
  text-decoration: none;
}

.tc-image img {
  width: 150px;
  height: auto;
}

.web-dev-section {
  padding: 60px 20px;
  background-color: #ffffff;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.web-dev-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.web-dev-left {
  flex: 1;
  text-align: center;
}

.web-dev-image {
  max-width: 100%;
  height: auto;
}

.web-dev-right {
  flex: 1;
}

.web-dev-title {
  font-size: 32px;
  font-weight: 700;
  color: #002147;
  position: relative;
  margin-bottom: 20px;
}

.web-dev-title::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background-color: #01bec7;
  margin-top: 8px;
}

.web-dev-description {
  font-size: 16px;
  color: #444;
  margin-bottom: 30px;
  line-height: 1.6;
}

.web-dev-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.web-dev-list li {
  font-size: 16px;
  color: #555;
  margin-bottom: 15px;
  display: flex;
  align-items: start;
  gap: 10px;
}

.web-dev-icon {
  background-color: #05c7e4;
  color: #fff;
  border-radius: 50%;
  width: 25px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.e-statements-section {
  background: linear-gradient(to left, #094454, #0f88a3);
  color: white;
  padding: 60px 20px;
  font-family: "Segoe UI", sans-serif;
}

.e-statements-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.e-statements-left {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.e-statements-left img {
  width: 100%;
  border-radius: 8px;
  max-height: 400px;
  object-fit: cover;
}

.e-statements-right {
  flex: 1 1 55%;
}

.e-statements-heading {
  font-size: 20px;
  margin-bottom: 10px;
  color: #ffffff;
}

.e-statements-circle {
  width: 80px;
  height: 80px;
  border: 6px solid #06e0e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
}

.e-statements-right h2 {
  font-size: 28px;
  font-weight: bold;
  margin: 10px 0 20px;
  color: #ffffff;
  border-left: 4px solid #1accf8;
  padding-left: 10px;
}

.e-statements-text p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.highlight-link {
  color: #0acad4;
  text-decoration: underline;
  cursor: pointer;
}

.highlight-brand {
  font-weight: bold;
  color: #01f2ff;
}

@media screen and (max-width: 768px) {
  .e-statements-container {
    flex-direction: column;
    text-align: center;
  }

  .e-statements-left,
  .e-statements-right {
    flex: 1 1 100%;
  }

  .e-statements-right h2 {
    text-align: center;
    border-left: none;
    padding-left: 0;
  }

  .e-statements-circle {
    margin: 0 auto 10px;
  }
}

.benefits-section {
  max-width: 1200px;
  margin: auto;
}

.timeline-container {
  display: flex;
  flex-direction: column;
  position: relative;
}

.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background-color: #007599;
  transform: translateX(-50%);
  z-index: 1;
}

.timeline-row {
  display: flex;
  justify-content: space-between;
  margin: 30px 0;
  position: relative;
}

.timeline-card {
  width: 45%;
  background: #fff;
  border: 1px solid #cde5f9;
  border-radius: 8px;
  padding: 20px 24px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
  z-index: 2;
}

.timeline-card h3 {
  margin-top: 0;
  font-size: 20px;
  font-weight: bold;
  color: #1a1a1a;
  position: relative;
}

.timeline-card h3::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #00d9ff;
  margin-top: 6px;
}

.timeline-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 26px;
  height: 26px;
  background-color: white;
  border: 6px solid #06cae4;
  border-radius: 50%;
  z-index: 3;
}

.invisible {
  visibility: hidden;
}

.web-dev-list2.two-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 40px; /* row and column gap */
  list-style: none;
  padding: 0;
  margin: 0;
}

.web-dev-icon2 {
  color: rgb(4, 176, 189);
  margin-right: 8px;
}

.timeline-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  position: relative;
}

.timeline-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 40px 0;
  position: relative;
}

.timeline-box {
  width: 45%;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  position: relative;
}

.timeline-box:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.timeline-box h3 {
  color: #00b4dd;
  font-weight: 600;
  margin-bottom: 10px;
}

.timeline-box p {
  font-size: 15px;
  color: #004249;
  line-height: 1.6;
}

.timeline-dot {
  width: 30px;
  height: 30px;
  background: #207794;
  border: 5px solid #00f2ff;
  border-radius: 50%;
  position: static;
  z-index: 10;
}

.timeline-dot::after {
  content: "";
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: #207794;
  z-index: -1;
}

.timeline-box.left {
  text-align: right;
}

.timeline-box.right {
  text-align: left;
}

/* Responsive */
@media (max-width: 768px) {
  .timeline-row {
    flex-direction: column;
    align-items: center;
    z-index: 9;
    margin-bottom: 10px;
  }

  .timeline-box {
    width: 90%;
    text-align: left !important;
    margin-bottom: 0;
  }

  .timeline-dot::after {
    display: none;
  }
  .timeline-line {
    top: 60px;
  }

  .timeline-container {
    padding: 0;
  }
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  justify-content: center;
  gap: 30px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.specialty-item {
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 20px;
  zoom: 1.2;
}

.icon-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid #067695;
  position: relative;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9f9f9;
  margin-top: 10px;
}

.icon-circle::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border-top: 5px solid #00e5ff;
  border-right: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-left: 3px solid transparent;
  transform: rotate(45deg);
}

.specialty-item img {
  width: 40px;
  height: 40px;
  z-index: 1;
}

.specialty-item:hover {
  transform: scale(1.05);
  transform: rotate(360deg);
}

.specialty-label {
  margin-bottom: 10px;
  font-size: 14px;
  color: #333;
}

/* Responsive adjustments */
@media (max-width: 1000px) {
  .grid-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 500px) {
  .grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ehr-section {
}

.ehr-section-title {
  text-align: center;
  color: #02666f;
  font-size: 28px;
  margin-bottom: 10px;
}

.ehr-section-title .ehr-highlight {
  border-bottom: 3px solid #00fff7;
  display: inline-block;
  padding-bottom: 5px;
}

.ehr-description {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
  font-size: 16px;
  color: #444;
}

.ehr-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}

.ehr-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.ehr-card {
  background: #fff;
  border-radius: 8px;
  padding: 20px 25px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.ehr-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.ehr-card-logo {
  max-height: 40px;
  margin-bottom: 15px;
}

.ehr-card p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.claim-box {
    gap: 24px;
}

.banner-section {
  padding: 0 !important;
  margin: 0 !important;
}

@media (max-width: 450px) {
  .ehr-card-grid {
    grid-template-columns: 1fr;
  }
  .offcanvas-start {
     width: 75%;
  }
  .expert-wrap h5 {
      font-size: 17px;
  }
    .rcm-section .subtitle {
        font-size: 15px;
    }

    .rcm-details li {
        line-height: normal;
        font-size: 14px;
    }

    .relevance-section p {
        font-size: 14px;
        text-align: justify;
        text-align-last: center;
    }

    .billing-content p {
        font-size: 14px;
    }
}

@media screen and (max-width: 1300px) {
  .acc-section .col-lg-7,
  .acc-section .col-lg-5 {
    width: 50%;
  }

  .acc-img img {
    position: unset !important;
    width: 100%;
  }
}

@media screen and (max-width: 1240px) {
  .header-section.navbar-dark .navbar-nav .nav-link {
    font-size: 18px;
    margin: 0;
  }
}

@media screen and (max-width: 1100px) {
  .header-section.navbar-dark .navbar-nav .nav-link {
    font-size: 15px;
  }
}

@media screen and (max-width: 1024px) {
  .header-section.navbar-dark .navbar-nav .nav-link {
    padding: 14px;
  }

  .header-section.navbar-dark .navbar-brand img.img-fluid {
    width: 84%;
  }
  #header-carousel .carousel-caption h1 {
    font-size: 40px !important;
    line-height: 50px;
  }
  .banner-inner {
    position: relative !important;
    margin: 0 !important;
    width: 100% !important;
  }

  .banner-inner::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    z-index: 0;
  }
  .banner-inner h1 {
    color: var(--primary);
    font-size: 40px !important;
    text-shadow: 2px 2px 7px black;
  }
  .web-dev-main-section {
    padding: 20px 0;
  }
  .banner-section {
    padding: 0 !important;
    margin: 0 0 0 !important;
  }
  .banner-inner-wrap {
    width: 100% !important;
    margin: 0 !important;
    justify-content: center !important;
  }
  .top-left small {
    font-size: 13px;
  }
  .text-section {
        margin: 30px 0 0;
    }
}

@media screen and (max-width: 991px) {
  .acc-section .col-lg-7,
  .acc-section .col-lg-5 {
    width: unset;
  }
  .acc-img img {
    width: 60%;
    margin: 0 auto;
    display: block;
  }
  .banner-section {
    margin: 0 !important;
  }
  .e-statements-left img {
    width: 60%;
    margin: 60px auto 60px;
  }
}

@media screen and (max-width: 768px) {
  #header-carousel .carousel-caption h1 {
    width: 90%;
    margin: 0 auto;
  }
  .header-section.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--primary) !important;
    opacity: 80%;
  }
  .billing-form-wrap::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(0, 0, 0, 0.5);
    z-index: 01;
    top: 0;
    left: 0;
    border-radius: 0 3.3rem 3.3rem 0;
  }
  .billing-form-wrap h4 {
    color: var(--primary);
    margin-bottom: 10px;
  }
  .billing-form-wrap h1 {
    color: var(--primary);
    font-size: 28px;
    margin: 0 0 0;
  }
  .billing-form-wrap p {
    margin-bottom: 10px;
    font-size: 16px !important;
  }
  .rcm-content {
    flex-direction: column;
  }
  .rcm-buttons button p {
    display: none;
  }
  .rcm-buttons {
    flex-direction: row;
  }
  .rcm-buttons button.active::after {
    top: 76%;
    right: 40%;
    transform: translateY(0) rotate(90deg);
  }
  .rcm-buttons button.active {
    background: linear-gradient(to bottom, #017070, #03c3c3);
  }
  .partner-box {
    width: 50%;
  }
  .rcm-details {
    width: 100%;
  }
  .rcm-buttons button {
    padding: 16px 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .billing-wrap-inner {
    justify-content: center !important;
  }
  .logo-circle-section {
    padding: 20px 0 0 !important;
  }
  .logo-circle-wrap {
    flex-direction: column;
    width: 100%;
  }

  .logo-circle-wrap .col-md-4 {
    width: 60%;
    margin-bottom: 20px;
  }

  .logo-circle-wrap .col-md-2 {
    margin-bottom: 50px !important;
  }
  div#offcanvasMenu .nav-link {
    font-size: 20px;
  }
  .tc-tabs .tc-tab p {
    display: none;
  }

  .tc-tabs .tc-tab i {
    display: block;
  }
  .tc-image {
    display: none;
  }
  .contact-sec-inner {
    margin: 0 !important;
  }

  .billing-form-wrap-inner h4 {
    width: 100% !important;
  }
  .acc-section .container.py-5 {
    padding-block: 0 !important;
  }
  .contact-row {
    margin-bottom: 0 !important;
  }
  .email-flex {
    justify-content: center;
  }
  .features {
    gap: 30px;
  }
  .timeline-circle-first {
    display: none;
  }
  .benefits-section .timeline-row {
    flex-direction: column-reverse;
  }
  .benefits-section .timeline-circle {
    top: -11%;
  }
  .top-bar {
    padding: 10px 0;
  }

  .top-bar .row .col-lg-4 {
    text-align: left !important;
  }

  .top-bar .row .col-lg-8 {
    text-align: left !important;
  }
  .header-section {
        padding-block: 0px !important;
  }
}

@media screen and (max-width: 576px) {
  .web-dev-container {
    flex-direction: column;
    padding: 0 20px;
  }
  .banner-inner-wrap p {
    font-size: 14px !important;
  }
  .banner-inner-wrap .mb-3 {
    margin: 0 !important;
  }
  .banner-inner-wrap br {
    display: none;
  }
  .acc-img img {
    width: 100%;
  }
  .e-statements-left img {
    width: 100%;
    margin: 0 auto;
  }
  .web-dev-list2 {
    grid-template-columns: unset !important;
  }
  .top-bar .row {
    flex-wrap: wrap;
  }

  .top-left {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .top-right {
    justify-content: center;
    width: 100%;
    gap: 10px;
    margin: 10px 0 0;
  }

  .top-right a {
    margin: 0 !important;
  }
}

@media screen and (max-width: 440px) {
  .header-section .navbar-brand {
    width: 75% !important;
    margin: 0;
  }
  .header-section button.navbar-toggler {
    width: 15% !important;
  }
  #header-carousel .carousel-caption h1 {
    font-size: 19px !important;
    line-height: normal;
    margin-bottom: 20px;
  }
  #header-carousel .carousel-caption h5 {
    font-size: 12px;
    margin-bottom: 10px !important;
  }
  #header-carousel
    .carousel-caption
    a.btn.btn-outline-light.py-md-3.px-md-5.animated.slideInRight {
    font-size: 12px;
  }
  .smarter-section {
    padding: 0 !important;
  }
  .smarter-section .container.py-5 {
    padding-block: 0 !important;
  }
  .billing-form-wrap-inner {
    margin: 0 !important;
  }
  .billing-form-wrap {
    height: 630px !important;
    border-radius: 10px !important;
    background-position: 93% 100% !important;
  }
  .billing-form-wrap::before {
    border-radius: 10px;
  }
  .rcm-buttons button.active::after {
    top: 79%;
    right: 35%;
    border-top: 17px solid transparent;
    border-bottom: 17px solid transparent;
    border-left: 17px solid #03c3c3;
  }
  .partner-box {
    width: 100%;
  }
  .billing-wrap-inner {
    margin: 0 !important;
  }

  .billing-wrap-inner a.btn.btn-primary.w-50.px-4.py-2 {
    margin: 0 !important;
    width: auto !important;
  }

  .logo-circle-wrap .col-md-4 {
    width: 100%;
  }

  .logo-circle-wrap {
    margin: 0 auto;
  }
  .smarter-section .row.g-5 {
    width: 100%;
    margin: 0 auto;
  }
  div#header-carousel .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 2rem;
    height: 2rem;
  }
  .claim-box {
    height: 135px !important;
  }
  .testimonial-carousel
    .owl-item
    .testimonial-item
    .d-flex.align-items-center.border-bottom.pt-5.pb-4.px-5 {
    padding: 10px !important;
  }
  .banner-inner h1 {
    font-size: 30px !important;
  }
  .card2 {
    min-width: 100% !important;
  }
  .top-left {
    gap: 10px;
  }

  .top-bar {
    padding: 10px 10px !important;
  }
  .top-right {
        display: none !important;
    }

    small.address {
        display: none;
    }

    .top-left {
        height: auto !important;
    }
    .top-bar .row .col-lg-8 {
        text-align: center !important;
        margin: 0 !important;
    }
    .billing-form-wrap-inner-wrap p {
        font-size: 14px !important;
    }
}

@media screen and (max-width: 400px) {
  .logo-circle-wrap .col-4 {
    padding: 0;
  }
  .billing-content {
    padding: 50px 30px;
    flex: unset;
  }
  .rcm-buttons button.active::after {
    top: 82%;
    right: 35%;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-left: 14px solid #03c3c3;
  }
  .billing-form-wrap p:last-child {
    margin-bottom: 25px;
  }

  .billing-form-wrap {
    height: 650px !important;
  }
}

@media screen and (max-width: 375px) {
  .header-section .navbar-brand {
    width: 70% !important;
    margin: 0;
  }

  .header-section button.navbar-toggler {
    width: 20% !important;
  }

  .header-section.navbar-dark .navbar-brand img.img-fluid {
    width: 90%;
  }
  .industry-cards .card {
     min-width: 100%;
   }
   .claim-txt h5 {
      font-size: 15px;
      margin-bottom: 5px !important;
   }
   .section-title h1 {
        font-size: 22px;
    }

    .rcm-industry-section h2 {
        font-size: 22px;
    }

    .rcm-industry-section p {
        font-size: 14px !important;
    }

    .relevance-section h2 {font-size: 27px;}

    .billing-content h2, .billing-content h3 {
        font-size: 22px;
    }

    .specialties-section h2 {
        font-size: 22px;
    }
    .ehr-section-title {
        font-size: 22px;
    }
    .denials-title-loopmedix {
        margin-bottom: 0;
    }

    .denials-title-loopmedix h2 {
        font-size: 22px;
    }
}
@media screen and (max-width: 350px) {
  .top-right {
    margin: 30px 0 0 0;
  }
  .billing-content h2 {
    font-size: 22px;
  }
  .logo-circle {
    width: 90px;
    height: 90px;
  }

  .main-logo img {
    width: 100px;
    height: 100px;
  }

  .logo-circle img {
    max-width: 50px;
  }
  .offcanvas-start {
    width: 80%;
   }
}



