.feature-box {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
  }

  .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #4a90e2;
  }

  .service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
  }
  .service-image {
    height: 200px;
    object-fit: cover;
    width: 100%;
  }
  .service-title {
    font-weight: bold;
    text-align: center;
    padding: 15px 0;
    background-color: #f8f9fa;
  }

  .bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.3);
    z-index: 9999;
  }

  .nav-item {
    flex-grow: 1;
    text-align: center;
    padding: 10px 0;
    color: #aaa;
    font-size: 15px;
    transition: color 0.3s ease;
  }

  .nav-item i {
    font-size: 20px;
    display: block;
    margin-bottom: 2px;
  }

  .nav-item.active,
  .nav-item:hover {
    color: #fff;
  }

  .nav-item.settings {
    background-color: #fff;
    color: #000;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
  }

  .nav-item.settings:hover {
    color: #000;
  }

  /* Hide on desktop */
  @media (min-width: 992px) {
    .bottom-nav {
      display: none;
    }
  }
  .modal-dialog {
    max-width: 100%;
    margin: 1.75rem auto;
  }

  .modal-content {
    height: 80vh; /* 80% of viewport height */
    overflow-y: auto;
    border-radius: 15px;
  }

  @media (min-width: 576px) {
    .modal-dialog {
      max-width: 450px;
    }
  }
  .dropdown-scrollable {
    max-height: 200px; /* Adjust height as needed */
    overflow-y: auto;
  }

  /* Always show vertical scrollbar */
  .dropdown-scrollable::-webkit-scrollbar {
    width: 6px;
  }

  .dropdown-scrollable::-webkit-scrollbar-track {
    background: #f1f1f1;
  }

  .dropdown-scrollable::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
  }

  .dropdown-scrollable::-webkit-scrollbar-thumb:hover {
    background: #555;
  }

  .fade-in-up {
    animation: fadeInUp 1s ease-in-out;
  }
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .issue-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .issue-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  }
  .icon {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #0d6efd;
  }

  .card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: none;
    border-radius: 1rem;
  }
  .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  }
  .icon-circle {
    font-size: 1.5rem;
    padding: 12px;
    background-color: #0d6efd;
    color: white;
    border-radius: 50%;
    width: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .card-title {
    font-weight: 600;
    margin-top: 10px;
  }
  .card-text {
    font-size: 0.95rem;
    color: #555;
  }

  .animated {
    animation-duration: 1s;
    animation-fill-mode: both;
  }
  .fadeInUp {
    animation-name: fadeInUp;
  }
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translate3d(0, 40px, 0);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }

  /* Call Button Styling */
.call-btn-fixed {
  position: fixed;
  bottom: 100px; /* Adjust as needed */
  right: 20px; /* Adjust as needed */
  z-index: 1050; /* Ensure it's above other content like navbars */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px; /* Adjust size */
  height: 60px; /* Adjust size */
  border-radius: 50%;
  background-color: #284ca7; /* Bootstrap success green */
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.call-btn-fixed:hover {
  background-color: #213788; /* Darker green on hover */
}

/* Pulse Animation */
.pulse-animation {
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0% {
      transform: scale(0.9);
      box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7); /* Green shadow */
  }
  70% {
      transform: scale(1);
      box-shadow: 0 0 0 15px rgba(40, 167, 69, 0); /* Expanding green shadow */
  }
  100% {
      transform: scale(0.9);
      box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
  }
}

/* For larger screens, you might want to make it a wider button with text */
@media (min-width: 768px) {
  .call-btn-fixed {
      width: auto;
      padding: 15px 25px;
      border-radius: 30px; /* More pill-shaped */
      font-size: 1.2rem;
  }
  .call-btn-fixed .d-none.d-md-inline {
      display: inline !important; /* Show text on medium and up */
  }
}

.call-now-btn {
  position: relative;
  display: inline-block;
  color: #fff;
  background-color: #2859a7;
  border: none;
  padding: 12px 25px;
  font-size: 15px;
  border-radius: 50px;
  overflow: hidden;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.call-now-btn:hover {
  background-color: #218838;
  text-decoration: none;
  color: #fff;
}

.call-now-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0.3), rgba(255,255,255,0));
  transform: skewX(-20deg);
  animation: shine 2s infinite;
}

@keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}

.overflow-x-hidden{
overflow-x: hidden !important;
}
input[list], textarea {
  scroll-behavior: smooth;
}