.accordion-button {
  font-weight: 500;
  background-color: #fff;
  border: none;
  transition: background-color 0.3s ease;
}

.accordion-button:hover {
  background-color: #f4f7fd;
}

.accordion-button:focus {
  box-shadow: none;
  outline: none;
}

.accordion-body {
  font-size: 0.95rem;
  color: #444;
}
/* Scroll-in animation */
.pop-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease-out;
}
.pop-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* Hover effect */
.card {
  transition: all 0.3s ease;
  border-radius: 12px;
}
.card:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 28px rgba(0, 123, 255, 0.1);
}
.why-choose-us .col-md-4 {
  border-right: 1px solid #eaeaea;
}

@media (min-width: 768px) {
  .why-choose-us .col-md-4:last-child {
    border-right: none;
  }
}

.card-box {
  transition: 0.3s ease;
  border-radius: 12px;
  border: 1px solid #e3e6f0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.card-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.badge {
  border-radius: 30px;
  font-size: 0.85rem;
  padding: 0.45em 0.85em;
  font-weight: 500;
  cursor: default;
  transition: 0.2s ease-in-out;
}

.badge:hover {
  transform: scale(1.1);
}
 .masonry {
      column-count: 3;
      column-gap: 1.5rem;
    }

    .testimonial-card {
      border-radius: 0.75rem;
      padding: 1.5rem;
      margin-bottom: 1.5rem;
      display: inline-block;
      width: 100%;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .testimonial-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
    }

    .testimonial-card p {
      font-size: 1rem;
      line-height: 1.6;
      color: #555;
      position: relative;
      padding-left: 1.5rem;
    }

    .testimonial-card p::before {
      content: "“";
      font-size: 2rem;
      color: #ccc;
      position: absolute;
      left: 0;
      top: -0.5rem;
    }

    .testimonial-card h6 {
      font-weight: bold;
      font-size: 0.95rem;
      margin-top: 1rem;
    }

    @media (max-width: 992px) {
      .masonry {
        column-count: 2;
      }
    }

    @media (max-width: 576px) {
      .masonry {
        column-count: 1;
      }

      .testimonial-card {
        padding: 1.25rem;
      }
    }

    .bg-light-custom {
      background-color: rgb(243, 246, 253);
      border: 1px solid #e5eaf4;
    }

    .bg-accent {
      background: linear-gradient(180deg, #1351D8 0%, rgba(19, 81, 216, 0.7) 100%);
      color: #fff;
    }

    .bg-accent p,
    .bg-accent h6 {
      color: #fff;
    }