.services-block {
  padding: 60px 0;
}
.services-block .services-container {
  max-width: 1200px;
  margin: 0 auto;
}
.services-block .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 1024px) {
  .services-block .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}
@media (max-width: 768px) {
  .services-block .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.services-block .service-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.services-block .service-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px 25px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 4px 15px rgba(0, 124, 186, 0.1);
          box-shadow: 0 4px 15px rgba(0, 124, 186, 0.1);
}
.services-block .service-box:hover {
  -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 8px 25px rgba(0, 124, 186, 0.2);
          box-shadow: 0 8px 25px rgba(0, 124, 186, 0.2);
  border-color: var(--secondary-color, #005a87);
}
.services-block .box-header {
  margin-bottom: 20px;
  text-align: center;
}
.services-block .service-icon {
  margin-bottom: 15px;
}
.services-block .service-icon svg, .services-block .service-icon img {
  width: 50px;
  height: 50px;
  color: var(--primary-color, #007cba);
}
.services-block .service-icon i {
  font-size: 50px;
  color: var(--primary-color, #007cba);
}
.services-block .service-title .title-primary {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary, #333333);
  margin-bottom: 5px;
  line-height: 1.3;
}
.services-block .service-title .title-secondary {
  font-size: 14px;
  color: var(--text-secondary, #666666);
  font-weight: 400;
  line-height: 1.4;
}
.services-block .service-description {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-bottom: 25px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary, #666666);
  text-align: center;
}
.services-block .service-button {
  background: var(--primary-color, #007cba);
  color: #ffffff;
  border: 2px solid var(--primary-color, #007cba);
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-top: auto;
  display: inline-block;
}
.services-block .service-button:hover {
  background: var(--secondary-color, #005a87);
  border-color: var(--secondary-color, #005a87);
  color: #ffffff;
  text-decoration: none;
}
.services-block .service-button:focus {
  outline: 2px solid var(--primary-color, #007cba);
  outline-offset: 2px;
}

.services-grid .service-item {
  -webkit-animation: fadeInUp 0.6s ease forwards;
          animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
  -webkit-transform: translateY(30px);
      -ms-transform: translateY(30px);
          transform: translateY(30px);
}
.services-grid .service-item:nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.services-grid .service-item:nth-child(2) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
.services-grid .service-item:nth-child(3) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.services-grid .service-item:nth-child(4) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.services-grid .service-item:nth-child(5) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.services-grid .service-item:nth-child(6) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.services-grid .service-item:nth-child(7) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.services-grid .service-item:nth-child(8) {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}
.services-grid .service-item:nth-child(9) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.services-grid .service-item:nth-child(10) {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}
.services-grid .service-item:nth-child(11) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.services-grid .service-item:nth-child(12) {
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}

@-webkit-keyframes fadeInUp {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
:root {
  --primary-color: #007cba;
  --secondary-color: #005a87;
  --text-primary: #333333;
  --text-secondary: #666666;
}/*# sourceMappingURL=block-services.css.map */