.card-icropci {
  border-radius: 1rem;
  border: 1px solid #ccc;
  box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,0.1);
  background: #fff;
  max-width: 1000px;   
  margin: 0 auto;     
}
@media (max-width: 768px) {
  .card-icropci {
    max-width: 95%;   
  }
}
.section-title { font-size: 1.5rem; font-weight: bold; margin-top: 2rem; margin-bottom: 1rem; }
.feature-block { margin-bottom: 1.5rem; }
.feature-block h4 { font-size: 1.25rem; font-weight: bold; }
.feature-block p { margin-bottom: 0.5rem; }
.nav-card {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.nav-card a {
  flex: 1 1 180px;
  text-decoration: none;
  color: #333;
  background: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 0.75rem;
  padding: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 0.25rem 0.75rem rgba(0,0,0,0.05);
}
.nav-card a:hover {
  background: #e9f5ff;
  transform: translateY(-4px);
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
}
.nav-card i {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  display: block;
}
@media (max-width: 768px) {
  .nav-card {
  gap: 1rem;
    justify-content: space-between;
  }
  .nav-card a {
    flex: 0 0 calc(50% - 0.5rem);
  }
}
.feature-block a {
  text-decoration: none;
  color: inherit;
}
.feature-block a:hover {
  color: #0d6efd;
}
    .searchBtn {
     margin-top: 0px; 
      border-radius: 0.75rem;
      padding: 0 20px;
      font-size: 16px;
      height: 50px;
      width: 120px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      white-space: nowrap;
      font-weight: 400;
      letter-spacing: 0.5px;
      border: 0px solid rgba(0,0,0,0.1);
      min-width: 120px;
      position: relative;
      overflow: hidden;
      transition: all 0.25s ease-in-out;
      color: #fff;
      justify-content: center;
      text-decoration: none;
      flex: 1;
    }
    .searchBtn.btn-success {
      background: linear-gradient(to bottom, #4cd964, #1e7e34);
      box-shadow: inset 0 3px 0 rgba(255,255,255,0.3),
                  inset 0 -3px 0 rgba(0,0,0,0.2),
                  0 2px 2px rgba(0,0,0,0.3);
    }
    .searchBtn.btn-danger {
      background: linear-gradient(to bottom, #ff4d4d, #990000);
       box-shadow: inset 0 3px 0 rgba(255,255,255,0.3),
                  inset 0 -3px 0 rgba(0,0,0,0.2),
                  0 2px 2px rgba(0,0,0,0.3);
    }
    .searchBtn:hover {
      transform: translateY(-2px);
      box-shadow: inset 0 2px 0 rgba(255,255,255,1),
                  inset 0 -2px 0 rgba(0,0,0,0.8),
                  0 6px 12px rgba(0,0,0,0.5);
      text-decoration: none;
      color: #fff;
    }
    .searchBtn:active {
      transform: translateY(1px);
      box-shadow: inset 0 2px 4px rgba(0,0,0,0.7),
                  inset 0 -2px 2px rgba(255,255,255,0.4),
                  0 2px 4px rgba(0,0,0,0.3);
      text-decoration: none;
      color: #fff;
    }
    .searchBtn::after {
      content: "";
      position: absolute;
      top: 0;
      left: -75%;
      width: 50%;
      height: 100%;
      background: linear-gradient(
        120deg,
        rgba(255,255,255,0.1) 0%,
        rgba(255,255,255,0.7) 50%,
        rgba(255,255,255,0.1) 100%
      );
      transform: skewX(-20deg);
    }
    .searchBtn:hover::after {
      animation: shine 1.2s ease-in-out forwards;
    }
    @keyframes shine {
      0% { left: -75%; }
      100% { left: 125%; }
    }
@media (min-width: 992px) {
  .button-group .searchBtn {
    flex: 0 0 auto;   
    width: 200px;     
    min-width: unset; 
  }
}
.button-group {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .button-group {
    flex-wrap: nowrap;
    justify-content: center;
    padding: 0 16px; 
    box-sizing: border-box;
    gap: 25px;
  }
  .button-group .searchBtn {
    flex: 0 0 20%;       
    max-width: 20%;
    text-align: center;
    white-space: nowrap;
    box-sizing: border-box;
  }
}
  .icon-tight {
  margin-right: -5px; 
}
.custom-padding {
  padding: 2.25rem; 
}
.magic-hint {
	margin-top: 100px; 
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1.5rem;
  color: #fff; 
  animation: fadeToPurple 5s ease-in-out infinite;
}
@keyframes fadeToPurple {
  0%   { opacity: 0; color: #fff; }
  30%  { opacity: 1; color: #6f42c1; } 
  50%  { opacity: 1; color: #6f42c1; } 
  70%  { opacity: 1; color: #6f42c1; } 
  100% { opacity: 0; color: #fff; }    
}
.breadcrumb-nav {margin-top: 0px;margin-bottom: 10px;margin-left:-0px;}