/* About Us Section */
#nkz01-about-us {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

#nkz01-about-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(71, 178, 228, 0.05) 0%, rgba(55, 81, 126, 0.05) 100%);
  animation: aboutGradient 15s ease infinite;
}

@keyframes aboutGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.nkz01-about-us-content {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-top: 60px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  z-index: 1;
}

.nkz01-about-us-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.nkz01-about-us-text {
  color: #6c757d;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.nkz01-about-us-text:last-child {
  margin-bottom: 0;
}

#nkz01-about-us .nkz01-section-title {
  position: relative;
  z-index: 1;
}

/* Company Timeline Section */
#nkz01-company-timeline {
  padding: 80px 0;
  background: linear-gradient(135deg, #e8eef3 0%, #c4d7e9 100%);
  position: relative;
  overflow: hidden;
}

#nkz01-company-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(71, 178, 228, 0.05) 0%, rgba(55, 81, 126, 0.05) 100%);
  animation: historyGradient 15s ease infinite;
}

@keyframes historyGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.nkz01-history-content {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-top: 30px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 1;
}

.nkz01-history-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.nkz01-history-timeline {
  position: relative;
  padding: 20px 0;
  margin-top: 20px;
}

.nkz01-timeline-title {
  display: block;
  color: #37517e;
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
  margin-top: -45px;
  margin-bottom: 40px;
  position: relative;
  z-index: 3;
}

.nkz01-history-timeline::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% - 80px);
  background: linear-gradient(180deg,
    rgba(71, 178, 228, 0.2) 0%,
    #47b2e4 10%,
    #47b2e4 20%,
    #37517e 50%,
    #47b2e4 80%,
    #47b2e4 90%,
    rgba(71, 178, 228, 0.2) 100%
  );
  box-shadow: 0 0 25px rgba(71, 178, 228, 0.4);
  z-index: 0;
}

.nkz01-timeline-start {
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 30px;
  margin-top: 0;
  z-index: 2;
}

.nkz01-timeline-end {
  margin-top: 120px;
  position: relative;
  padding-top: 20px;
}

.nkz01-timeline-start::before,
.nkz01-timeline-end::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 80px;
  transition: all 0.4s ease;
}

.nkz01-timeline-end::before {
  background: linear-gradient(to bottom, 
    #47b2e4 0%,
    rgba(71, 178, 228, 0.8) 40%,
    rgba(71, 178, 228, 0.6) 55%,
    rgba(71, 178, 228, 0.4) 70%,
    rgba(71, 178, 228, 0.2) 85%,
    rgba(71, 178, 228, 0) 100%
  );
  top: -120px;
  box-shadow: 0 -5px 15px rgba(71, 178, 228, 0.2);
}

.nkz01-timeline-start-icon,
.nkz01-timeline-end-icon {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  transition: all 0.6s ease;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #47b2e4 0%, #37517e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 10px 30px rgba(71, 178, 228, 0.3);
}

.nkz01-timeline-start-icon {
  top: 20px;
  margin: -40px auto 30px;;
  font-size: 1.8rem;
  border: 4px solid #fff;
  width: 80px;
  height: 80px;
}

.nkz01-timeline-end-icon {
  margin: 0 auto;
  width: 80px;
  height: 80px;
}

.nkz01-timeline-start:hover::before,
.nkz01-timeline-end:hover::before {
  box-shadow: 0 0 25px rgba(71, 178, 228, 0.4);
}

.nkz01-timeline-item {
  margin-bottom: 60px;
  margin-top: 0;
  position: relative;
  display: flex;
  align-items: center;
  opacity: 0;
  animation: slideIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: calc(var(--delay) * 0.12s);
  transform-origin: center;
  will-change: transform, opacity;
  perspective: 1000px;
}

.nkz01-timeline-item:last-child {
  margin-bottom: 120px;
}

.nkz01-timeline-item:hover {
  z-index: 5;
  transform: scale(1.015) translateY(-2px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateY(60px) scale(0.95) rotateX(10deg);
  }
  40% {
    opacity: 0.6;
    transform: translateY(-15px) scale(1.02) rotateX(-5deg);
  }
  70% {
    opacity: 0.8;
    transform: translateY(8px) scale(1.01) rotateX(2deg);
  }
  85% {
    opacity: 0.9;
    transform: translateY(-4px) scale(1.005) rotateX(-1deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0);
  }
}

.nkz01-timeline-item:hover .nkz01-timeline-content,
.nkz01-timeline-item:hover .nkz01-timeline-icon,
.nkz01-timeline-item:hover .nkz01-timeline-date {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nkz01-timeline-item:hover .nkz01-timeline-icon {
  transform: translateX(-50%) rotate(15deg);
}

.nkz01-timeline-item:hover .nkz01-timeline-content {
  transform: translateY(-5px) scale(1.01);
}

.nkz01-timeline-item:hover .nkz01-timeline-date span {
  transform: scale(1.05) translateY(-2px);
}

.nkz01-timeline-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #47b2e4 0%, #37517e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  transition: all 0.4s ease;
}

.nkz01-timeline-content {
  width: calc(50% - 50px);
  padding: 25px;
  background: #fff;
  border-radius: 15px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.nkz01-timeline-item:nth-child(odd) .nkz01-timeline-content {
  margin-right: auto;
}

.nkz01-timeline-item:nth-child(even) .nkz01-timeline-content {
  margin-left: auto;
}

.nkz01-timeline-content::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #47b2e4 0%, #37517e 100%);
  opacity: 0;
  z-index: 1;
  border-radius: 15px;
  transition: opacity 0.4s ease;
}

.nkz01-timeline-content h4,
.nkz01-timeline-content p,
.nkz01-timeline-content .nkz01-date {
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.nkz01-timeline-content h4 {
  color: #37517e;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.nkz01-timeline-content p {
  color: #6c757d;
  margin-bottom: 15px;
  line-height: 1.6;
}

.nkz01-timeline-start,
.nkz01-timeline-end {
  text-align: center;
  padding: 20px 0;
  position: relative;
  z-index: 2;
}


.nkz01-timeline-start span,
.nkz01-timeline-end span {
  color: #37517e;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: -100px;
  display: block;
  position: relative;
  z-index: 3;
}


.nkz01-timeline-start:hover .nkz01-timeline-start-icon,
.nkz01-timeline-end:hover .nkz01-timeline-end-icon {
  transform: translateX(-50%) rotate(5deg);
  box-shadow: 0 0 20px rgba(71, 178, 228, 0.2);
}

.nkz01-timeline-date {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: calc(50% - 50px);
  z-index: 3;
}

.nkz01-timeline-item:nth-child(odd) .nkz01-timeline-date {
  right: 0;
  text-align: left;
  padding-left: 80px;
}

.nkz01-timeline-item:nth-child(even) .nkz01-timeline-date {
  left: 0;
  text-align: right;
  padding-right: 80px;
}

.nkz01-timeline-date span {
  display: inline-block;
  padding: 10px 25px;
  background: linear-gradient(135deg, #47b2e4 0%, #37517e 100%);
  border-radius: 30px;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
}

.nkz01-timeline-date::before {
  content: '';
  position: absolute;
  top: 50%;
  width: 60px;
  height: 2px;
  background: #47b2e4;
}

.nkz01-timeline-item:nth-child(odd) .nkz01-timeline-date::before {
  left: 0;
}

.nkz01-timeline-item:nth-child(even) .nkz01-timeline-date::before {
  right: 0;
}

.nkz01-timeline-item:hover .nkz01-timeline-date span {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, #37517e 0%, #47b2e4 100%);
}

.nkz01-timeline-item:hover .nkz01-timeline-date::before {
  background: #37517e;
}

.nkz01-timeline-end {
  margin-top: 80px;
}

.nkz01-timeline-start::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(71, 178, 228, 0.2), #47b2e4);
  box-shadow: 0 0 15px rgba(71, 178, 228, 0.2);
}

.nkz01-timeline-end::before {
  content: '';
  position: absolute;
  left: 50%;
  top: -80px;
  transform: translateX(-50%);
  width: 2px;
  height: 80px;
  background: linear-gradient(to bottom, #47b2e4, transparent);
}

.nkz01-timeline-end::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translateX(-50%);
  width: 2px;
  height: 40px;
  background: #47b2e4;
}

.nkz01-timeline-end-icon {
  width: 80px;
  height: 80px;
  margin: -80px auto 0;
  background: linear-gradient(135deg, #47b2e4 0%, #37517e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  box-shadow: 0 10px 30px rgba(71, 178, 228, 0.3);
  transition: all 0.6s ease;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  transform-origin: center;
}

.nkz01-timeline-start:hover .nkz01-timeline-start-icon,
.nkz01-timeline-end:hover .nkz01-timeline-end-icon {
  transform: translateX(-50%) rotate(15deg);
  box-shadow: 0 10px 25px rgba(71, 178, 228, 0.2);
}


.nkz01-timeline-item:hover .nkz01-timeline-icon {
  transform: translateX(-50%) rotate(15deg);
  box-shadow: 0 0 20px rgba(71, 178, 228, 0.4);
}

.nkz01-timeline-item:hover .nkz01-timeline-content {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.nkz01-timeline-item:hover .nkz01-timeline-content::after {
  opacity: 1;
}

.nkz01-timeline-item:hover .nkz01-timeline-content h4,
.nkz01-timeline-item:hover .nkz01-timeline-content p,
.nkz01-timeline-item:hover .nkz01-timeline-content .nkz01-date {
  color: #fff;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  /* Eliminar la línea central del timeline */
  .nkz01-history-timeline::before {
    display: none;
  }

  /* Ajuste de las fechas */
  .nkz01-timeline-date {
    position: relative;
    width: auto;
    top: auto;
    left: auto !important;
    right: auto !important;
    padding: 0 !important;
    margin: 0 0 15px 0;
    transform: none;
    text-align: center;
  }

  .nkz01-timeline-date span {
    display: inline-block;
    font-size: 0.9rem;
    padding: 8px 20px;
  }

  .nkz01-timeline-date::before {
    display: none;
  }

  /* Ajuste de los elementos de inicio y fin */
  .nkz01-timeline-start,
  .nkz01-timeline-end {
    padding: 20px 0;
    margin: 20px 0;
  }

  .nkz01-timeline-start::before,
  .nkz01-timeline-end::before {
    display: none;
  }

  .nkz01-timeline-start-icon,
  .nkz01-timeline-end-icon {
    position: relative;
    left: auto;
    transform: none;
    margin: 0 auto 20px;
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  /* Ajuste de los elementos del timeline */
  .nkz01-timeline-item {
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    padding: 0 15px;
  }

  .nkz01-timeline-item:last-child {
    margin-bottom: 60px;
  }

  /* Centrar los iconos horizontalmente antes de cada tarjeta */
  .nkz01-timeline-icon {
    position: relative;
    left: auto;
    transform: none;
    margin: 0 auto 20px;
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    z-index: 10;
  }

  /* Hacer que las tarjetas ocupen el ancho completo */
  .nkz01-timeline-content {
    width: 100%;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 25px;
  }

  .nkz01-timeline-content h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-align: center;
  }

  .nkz01-timeline-content p {
    font-size: 1rem;
    line-height: 1.6;
  }

  /* Ajuste de la animación al hacer hover */
  .nkz01-timeline-item:hover .nkz01-timeline-icon {
    transform: scale(1.1) rotate(10deg);
  }

  /* Mejora de la visualización del título del timeline */
  .nkz01-timeline-title {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-align: center;
  }
}

/* Ajustes adicionales para pantallas muy pequeñas */
@media (max-width: 480px) {
  .nkz01-timeline-content {
    padding: 20px;
  }

  .nkz01-timeline-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
    margin-bottom: 15px;
  }

  .nkz01-timeline-date span {
    font-size: 0.8rem;
    padding: 6px 15px;
  }

  .nkz01-timeline-content h4 {
    font-size: 1.1rem;
  }

  .nkz01-timeline-content p {
    font-size: 0.95rem;
  }
  
  .nkz01-timeline-item {
    padding: 0 10px;
  }
}

/* History Milestone Styles */
.nkz01-history-milestone {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  animation: historySlideIn 0.6s ease forwards;
  animation-delay: calc(var(--delay) * 0.2s);
  opacity: 0;
}

.nkz01-history-milestone::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #47b2e4 0%, #37517e 100%);
  opacity: 0;
  z-index: 1;
  transition: opacity 0.4s ease;
}

.nkz01-history-milestone:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.nkz01-history-milestone:hover::after {
  opacity: 1;
}

.nkz01-history-milestone i,
.nkz01-history-milestone h4,
.nkz01-history-milestone p,
.nkz01-history-milestone .nkz01-history-date {
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.nkz01-history-milestone:hover i,
.nkz01-history-milestone:hover h4,
.nkz01-history-milestone:hover p,
.nkz01-history-milestone:hover .nkz01-history-date {
  color: #fff;
  transform: translateY(-5px);
}

.nkz01-history-milestone i {
  transform: scale(1);
  transition: transform 0.4s ease;
}

.nkz01-history-milestone:hover i {
  transform: scale(1.2) rotate(10deg);
}

.nkz01-history-milestone .nkz01-history-date {
  display: inline-block;
  padding: 5px 15px;
  background: rgba(71, 178, 228, 0.1);
  border-radius: 20px;
  color: #47b2e4;
  font-size: 0.9rem;
  margin-top: 10px;
  transition: all 0.4s ease;
}

.nkz01-history-milestone:hover .nkz01-history-date {
  background: rgba(255, 255, 255, 0.2);
}

@keyframes historySlideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Core Values Section */
#nkz01-core-values {
  padding: 80px 0;
  background: linear-gradient(135deg, #dde2e6 0%, #8bb4dd 100%);
  position: relative;
  overflow: hidden;
}

#nkz01-core-values::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(71, 178, 228, 0.05) 0%, rgba(55, 81, 126, 0.05) 100%);
  animation: gradientAnimation 15s ease infinite;
}

.nkz01-core-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 30px;
}

.nkz01-core-value-card {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nkz01-core-value-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #47b2e4 0%, #37517e 100%);
  opacity: 0;
  z-index: 1;
  transition: all 0.4s ease;
  border-radius: 20px;
}

.nkz01-core-value-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 35px rgba(71, 178, 228, 0.3);
}

.nkz01-core-value-card:hover::after {
  opacity: 1;
}

.nkz01-core-value-card:hover i,
.nkz01-core-value-card:hover h4,
.nkz01-core-value-card:hover p {
  color: #fff;
  position: relative;
  z-index: 2;
}

.nkz01-core-value-card i {
  font-size: 2.5rem;
  color: #47b2e4;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.nkz01-core-value-card h4 {
  color: #37517e;
  font-size: 1.3rem;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.nkz01-core-value-card p {
  color: #6c757d;
  margin: 0;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.nkz01-core-value-card:hover i {
  transform: scale(1.2) rotate(10deg);
  color: #47b2e4;
}

.nkz01-core-value-card:hover h4 {
  color: #37517e;
}

@media (max-width: 992px) {
  .nkz01-core-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .nkz01-core-values-grid {
    grid-template-columns: 1fr;
  }
}

/* Values Grid */
.nkz01-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 30px;
}

.nkz01-value-item {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nkz01-value-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #47b2e4 0%, #37517e 100%);
  opacity: 0;
  z-index: 1;
  transition: opacity 0.4s ease;
}

.nkz01-value-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.nkz01-value-item:hover::after {
  opacity: 0.1;
}

.nkz01-value-item i {
  font-size: 2.5rem;
  color: #47b2e4;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.nkz01-value-item h4 {
  color: #37517e;
  font-size: 1.3rem;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.nkz01-value-item p {
  color: #6c757d;
  margin: 0;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.nkz01-value-item:hover i {
  transform: scale(1.2) rotate(10deg);
  color: #47b2e4;
}

.nkz01-value-item:hover h4 {
  color: #37517e;
}

@media (max-width: 992px) {
  .nkz01-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .nkz01-values-grid {
    grid-template-columns: 1fr;
  }
}

/* Mission & Vision Section */
#nkz01-mission-vision {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

/* Our Services Section */
#nkz01-our-services {
  padding: 80px 0;
  background: linear-gradient(135deg, #e8f0f7 0%, #d1e3f2 100%);
  position: relative;
  overflow: hidden;
}

#nkz01-our-services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(71, 178, 228, 0.05) 0%, rgba(55, 81, 126, 0.05) 100%);
  animation: servicesGradient 15s ease infinite;
}

@keyframes servicesGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.nkz01-why-us {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.nkz01-section-title {
  position: relative;
  z-index: 1;
  padding-top: 40px;
  margin-bottom: 60px;
}

.nkz01-section-title .nkz01-subtitle {
  color: #47b2e4;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 15px;
  display: block;
  text-transform: uppercase;
}

.nkz01-section-title h2 {
  color: #37517e;
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: capitalize;
  position: relative;
  padding-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.nkz01-section-title h2::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #47b2e4, transparent);
}

.nkz01-section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #47b2e4 0%, #37517e 100%);
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(71, 178, 228, 0.3);
}

.nkz01-section-title:hover h2 {
  transform: translateY(-2px);
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.15);
}

.nkz01-section-title:hover h2::before {
  width: 150px;
  transition: width 0.3s ease;
}

.nkz01-section-title:hover h2::after {
  width: 100px;
  transition: width 0.3s ease;
}

.nkz01-title-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 25px 0;
  position: relative;
}

.nkz01-title-decoration span {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #47b2e4 0%, #37517e 100%);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(71, 178, 228, 0.2);
  transition: all 0.3s ease;
}

.nkz01-title-decoration:hover span {
  width: 100px;
  box-shadow: 0 3px 6px rgba(71, 178, 228, 0.3);
  transform: scaleX(1.1);
}

.nkz01-title-decoration span::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  100% {
    left: 100%;
  }
}

.nkz01-title-decoration i {
  color: #47b2e4;
  font-size: 2rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 2;
  text-shadow: 2px 2px 4px rgba(71, 178, 228, 0.2);
}

.nkz01-title-decoration i::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: rgba(71, 178, 228, 0.1);
  border-radius: 50%;
  z-index: -1;
  transition: all 0.4s ease;
}

.nkz01-title-decoration:hover i {
  transform: rotate(15deg) scale(1.2);
  color: #37517e;
  text-shadow: 3px 3px 6px rgba(71, 178, 228, 0.3);
}

.nkz01-title-decoration:hover i::after {
  width: 40px;
  height: 40px;
}

.nkz01-section-title:hover .nkz01-title-decoration i {
  transform: rotate(15deg) scale(1.1);
}

.nkz01-section-title .nkz01-lead {
  color: #6c757d;
  font-size: 1.3rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  position: relative;
  padding-top: 15px;
  transition: all 0.3s ease;
}

.nkz01-section-title .nkz01-lead::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #47b2e4, transparent);
  opacity: 0.5;
}

.nkz01-section-title:hover .nkz01-lead {
  transform: translateY(-2px);
  color: #37517e;
}

.nkz01-section-title:hover .nkz01-lead::before {
  width: 60px;
  opacity: 1;
  transition: all 0.3s ease;
}

.nkz01-our-services-accordion {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  height: 100%;
  position: relative;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden;
  margin: 0 auto;
  max-width: 1000px;
  border: 1px solid rgba(71, 178, 228, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nkz01-our-services-accordion::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(71, 178, 228, 0.05) 0%, rgba(55, 81, 126, 0.05) 100%);
  opacity: 0;
  z-index: 0;
  transition: opacity 0.4s ease;
}

.nkz01-our-services-accordion:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(71, 178, 228, 0.2);
  border: 1px solid rgba(71, 178, 228, 0.3);
}

.nkz01-our-services-accordion:hover::before {
  opacity: 1;
  transform: scale(1.02);
  background: linear-gradient(135deg, rgba(71, 178, 228, 0.08) 0%, rgba(55, 81, 126, 0.08) 100%);
}

.nkz01-services-list .nkz01-accordion-item {
  border: none;
  margin-bottom: 15px;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.nkz01-services-list .nkz01-accordion-button {
  padding: 25px 30px;
  background: #fff;
  border-radius: 15px !important;
  font-weight: 600;
  color: #37517e;
  border: none;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-size: 1.2rem;
  position: relative;
  z-index: 2;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(71, 178, 228, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  margin-bottom: 5px;
}

.nkz01-services-list .nkz01-accordion-button .nkz01-button-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nkz01-services-list .nkz01-accordion-button * {
  position: relative;
  z-index: 3;
}

.nkz01-services-list .nkz01-accordion-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(71, 178, 228, 0.1);
  opacity: 0;
  z-index: 1;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 15px;
  transform: scale(0.95);
}

.nkz01-services-list .nkz01-accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  color: #37517e;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(71, 178, 228, 0.3);
  border-left: 4px solid #47b2e4;
  font-weight: 600;
  letter-spacing: 0.2px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  text-shadow: 0 1px 2px rgba(71, 178, 228, 0.2);
}

.nkz01-services-list .nkz01-accordion-button:not(.collapsed):hover {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  color: #37517e;
  border-left: 4px solid #37517e;
  box-shadow: 0 8px 25px rgba(71, 178, 228, 0.2);
  font-weight: 700;
  letter-spacing: 0.5px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  text-shadow: 0 1px 2px rgba(71, 178, 228, 0.3);
  transform: translateY(-4px);
}

.nkz01-services-list .nkz01-accordion-button:hover {
  transform: translateY(-3px);
  background: #f8f9fa;
  color: #37517e;
  box-shadow: 0 8px 25px rgba(71, 178, 228, 0.2);
}

.nkz01-services-list .nkz01-accordion-button:hover::before {
  opacity: 1;
  transform: scale(1);
}

.nkz01-services-list .nkz01-accordion-button i {
  color: #47b2e4;
  transition: all 0.4s ease;
}

.nkz01-services-list .nkz01-accordion-button:hover i,
.nkz01-services-list .nkz01-accordion-button:not(.collapsed) i {
  color: #47b2e4;
  transform: rotate(10deg) scale(1.1);
}

.nkz01-services-list .nkz01-accordion-button::after {
  font-family: "bootstrap-icons";
  content: "\F282";
  background-image: none;
  font-weight: bold;
  color: #47b2e4;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 3;
  text-shadow: none;
}

.nkz01-services-list .nkz01-accordion-button:not(.collapsed)::after {
  transform: rotate(-180deg);
  color: #47b2e4;
}

.nkz01-services-list .nkz01-accordion-button:hover::after {
  color: #37517e;
  transform: translateY(-2px);
  text-shadow: 0 2px 4px rgba(71, 178, 228, 0.2);
}

.nkz01-services-list .nkz01-accordion-button:not(.collapsed):hover::after {
  transform: translateY(-2px) rotate(-180deg);
  color: #37517e;
  text-shadow: 0 2px 4px rgba(71, 178, 228, 0.2);
}

.nkz01-services-list .nkz01-accordion-button:not(.collapsed)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nkz01-services-list .nkz01-accordion-button:not(.collapsed):hover::before {
  opacity: 1;
  transform: scale(1.02);
  background: linear-gradient(135deg, rgba(71, 178, 228, 0.15) 0%, rgba(55, 81, 126, 0.15) 100%);
  box-shadow: inset 0 2px 5px rgba(71, 178, 228, 0.1);
}

.nkz01-services-list .nkz01-accordion-button:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  box-shadow: 0 10px 30px rgba(71, 178, 228, 0.25);
  border-left: 4px solid rgba(71, 178, 228, 0.7);
  color: #37517e;
  font-weight: 700;
  letter-spacing: 0.4px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-shadow: 0 1px 2px rgba(71, 178, 228, 0.15);
}

.nkz01-services-list .nkz01-accordion-button:hover i {
  background: linear-gradient(135deg, #47b2e4 0%, #37517e 100%);
  color: #fff;
  transform: translateY(-3px) rotate(12deg) scale(1.15);
  box-shadow: 0 6px 20px rgba(71, 178, 228, 0.25);
  border-radius: 12px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.nkz01-services-list .nkz01-accordion-button i {
  color: #47b2e4;
  font-size: 1.4rem;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(71, 178, 228, 0.1);
  border-radius: 10px;
  margin-right: 0;
  flex-shrink: 0;
}

.nkz01-services-list .nkz01-accordion-button:not(.collapsed) i {
  color: #47b2e4;
  transform: rotate(15deg) scale(1.2);
  background: rgba(71, 178, 228, 0.15);
  box-shadow: 0 4px 15px rgba(71, 178, 228, 0.2);
}

.nkz01-services-list .nkz01-accordion-button:hover i {
  transform: translateY(-3px) rotate(8deg);
  color: #fff;
  background: linear-gradient(135deg, #47b2e4 0%, #37517e 100%);
  box-shadow: 0 6px 20px rgba(71, 178, 228, 0.3);
  border-radius: 12px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  text-shadow: 0 1px 2px rgba(71, 178, 228, 0.2);
}

.nkz01-services-list .nkz01-accordion-button:not(.collapsed):hover i {
  transform: translateY(-3px) rotate(15deg) scale(1.2);
  color: #fff;
  background: linear-gradient(135deg, #37517e 0%, #47b2e4 100%);
  box-shadow: 0 6px 20px rgba(71, 178, 228, 0.3);
  border-radius: 12px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.nkz01-services-list .nkz01-accordion-collapse {
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.nkz01-services-list .nkz01-accordion-body {
  padding: 30px 35px;
  color: #6c757d;
  font-size: 1.1rem;
  line-height: 1.8;
  background: #fff;
  border-radius: 0 0 15px 15px;
  position: relative;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 8px 25px rgba(71, 178, 228, 0.1);
  transform-origin: top;
  opacity: 0;
  transform: translateY(-20px);
  margin-top: -5px;
  border-top: 2px solid rgba(71, 178, 228, 0.1);
}

.nkz01-services-list .nkz01-accordion-body * {
  position: relative;
  z-index: 3;
}

.nkz01-services-list .nkz01-accordion-collapse.show .nkz01-accordion-body {
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 0.5s ease forwards;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-left: 4px solid #47b2e4;
  box-shadow: 0 8px 25px rgba(71, 178, 228, 0.15);
  font-weight: 500;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nkz01-services-list .nkz01-accordion-body::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(71, 178, 228, 0.1);
  opacity: 0;
  z-index: 1;
  transition: all 0.4s ease;
  border-radius: 0 0 15px 15px;
}

.nkz01-services-list .nkz01-accordion-item:hover .nkz01-accordion-body {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(71, 178, 228, 0.35);
  background: linear-gradient(135deg, #47b2e4 0%, #37517e 100%);
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  border-top: 2px solid #47b2e4;
  letter-spacing: 0.4px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-weight: 500;
}

.nkz01-services-list .nkz01-accordion-item:hover .nkz01-accordion-body::after {
  opacity: 1;
}

.nkz01-services-list .nkz01-accordion-collapse.show .nkz01-accordion-body {
  color: #6c757d;
  text-shadow: none;
}

.nkz01-services-list .nkz01-accordion-collapse.show:hover .nkz01-accordion-body {
  color: #ffffff;
  background: linear-gradient(135deg, #47b2e4 0%, #37517e 100%);
  box-shadow: 0 10px 30px rgba(71, 178, 228, 0.35);
  border-top: 2px solid #47b2e4;
  border-left: 4px solid #37517e;
  transform: translateY(-3px);
  letter-spacing: 0.4px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  font-weight: 500;
}

.nkz01-services-list .nkz01-accordion-item:hover .nkz01-accordion-button:not(.collapsed) {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(71, 178, 228, 0.3);
}

.nkz01-services-list .nkz01-accordion-item:hover .nkz01-accordion-body {
  transform: translateY(-2px);
}

@keyframes servicesPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}

@media (max-width: 768px) {
  .nkz01-why-us {
    padding: 60px 0;
  }

  .nkz01-section-title h2 {
    font-size: 2.2rem;
  }

  .nkz01-accordion-button {
    padding: 15px 20px;
    font-size: 1rem;
  }
}

/* Growth & Achievements Section */
#nkz01-growth-achievements {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

#nkz01-growth-achievements::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(71, 178, 228, 0.05) 0%, rgba(55, 81, 126, 0.05) 100%);
  animation: gradientAnimation 15s ease infinite;
}

.nkz01-growth-achievements-section .nkz01-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.nkz01-growth-achievements-section .nkz01-row > [class*="col-"] {
  padding: 0 15px;
  margin-bottom: 30px;
  display: flex;
}

.nkz01-achievement-card {
  background: #fff;
  padding: 45px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 100%;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.nkz01-achievement-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #47b2e4 0%, #37517e 100%);
  opacity: 0;
  z-index: 1;
  transition: all 0.4s ease;
  border-radius: 20px;
}

.nkz01-achievement-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 18px 35px rgba(71, 178, 228, 0.3);
}

.nkz01-achievement-card:hover::after {
  opacity: 1;
}

.nkz01-achievement-card:hover .nkz01-card-icon,
.nkz01-achievement-card:hover h3,
.nkz01-achievement-card:hover p {
  color: #fff;
  position: relative;
  z-index: 2;
}

.nkz01-achievement-card .nkz01-card-icon {
  width: 85px;
  height: 85px;
  background: rgba(71, 178, 228, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 5px 15px rgba(71, 178, 228, 0.1);
}

.nkz01-achievement-card .nkz01-card-icon i {
  font-size: 2.8rem;
  color: #47b2e4;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nkz01-achievement-card:hover .nkz01-card-icon {
  background: rgba(71, 178, 228, 0.15);
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 8px 25px rgba(71, 178, 228, 0.2);
}

.nkz01-achievement-card:hover .nkz01-card-icon i {
  color: #37517e;
  transform: scale(1.1);
}

.nkz01-achievement-card h3 {
  color: #37517e;
  font-size: 2rem;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  letter-spacing: 0.5px;
}

.nkz01-achievement-card p {
  color: #6c757d;
  font-size: 1.15rem;
  line-height: 1.9;
  position: relative;
  z-index: 2;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  margin-bottom: 0;
}

.nkz01-achievement-card:hover h3 {
  color: #37517e;
  transform: translateY(-3px);
}

.nkz01-achievement-card:hover p {
  color: #f2f5f8;
}

.nkz01-card-decoration {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #47b2e4, #37517e, #47b2e4);
  background-size: 200% 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 2;
}

.nkz01-achievement-card:hover .nkz01-card-decoration {
  transform: scaleX(1);
  box-shadow: 0 0 15px rgba(71, 178, 228, 0.4);
  animation: decorationGradient 3s linear infinite;
}

@keyframes decorationGradient {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

@media (max-width: 768px) {
  .nkz01-achievement-card {
    margin-bottom: 30px;
  }
}

#nkz01-mission-vision::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(71, 178, 228, 0.05) 0%, rgba(55, 81, 126, 0.05) 100%);
  animation: gradientAnimation 15s ease infinite;
}

.nkz01-mission-vision-section .nkz01-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.nkz01-mission-vision-section .nkz01-row > [class*="col-"] {
  padding: 0 15px;
  margin-bottom: 30px;
  display: flex;
}

.nkz01-mission-box,
.nkz01-vision-box {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
}

.nkz01-mission-box::after,
.nkz01-vision-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #47b2e4 0%, #37517e 100%);
  opacity: 0;
  z-index: 1;
  transition: all 0.4s ease;
  border-radius: 20px;
}

.nkz01-mission-box:hover,
.nkz01-vision-box:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(71, 178, 228, 0.3);
}

.nkz01-mission-box:hover::after,
.nkz01-vision-box:hover::after {
  opacity: 1;
}

.nkz01-mission-box:hover h3,
.nkz01-vision-box:hover h3,
.nkz01-mission-box:hover p,
.nkz01-vision-box:hover p {
  color: #fff;
  position: relative;
  z-index: 2;
}

.nkz01-mission-box h3,
.nkz01-vision-box h3 {
  color: #37517e;
  font-size: 1.8rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  z-index: 2;
}

.nkz01-mission-box h3 i,
.nkz01-vision-box h3 i {
  color: #47b2e4;
  font-size: 2rem;
  background: rgba(71, 178, 228, 0.1);
  padding: 15px;
  border-radius: 15px;
  transition: all 0.4s ease;
}

.nkz01-mission-box:hover h3 i,
.nkz01-vision-box:hover h3 i {
  background: #47b2e4;
  color: #fff;
  transform: scale(1.1) rotate(10deg);
}

.nkz01-mission-box p,
.nkz01-vision-box p {
  color: #6c757d;
  font-size: 1.1rem;
  line-height: 1.8;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .nkz01-mission-box,
  .nkz01-vision-box {
    margin-bottom: 30px;
  }
}

/* CTA Section */
#nkz01-cta {
  background: linear-gradient(rgba(55, 81, 126, 0.9), rgba(55, 81, 126, 0.95)), url('../img/services/multiservices2.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  border-top: 5px solid rgba(71, 178, 228, 0.3);
  border-bottom: 5px solid rgba(71, 178, 228, 0.3);
}

#nkz01-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(71, 178, 228, 0.1) 0%, transparent 70%);
  animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
  0% { opacity: 0.3; }
  50% { opacity: 0.7; }
  100% { opacity: 0.3; }
}

.nkz01-cta-content {
  color: #fff;
  position: relative;
  z-index: 2;
}

#nkz01-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

#nkz01-cta h2 i {
  color: #47b2e4;
  margin-right: 10px;
  transition: transform 0.3s ease;
}

#nkz01-cta:hover h2 i {
  transform: rotate(15deg) scale(1.1);
}

#nkz01-cta p {
  font-size: 1.1rem;
  opacity: 0.9;
  transition: all 0.3s ease;
}

#nkz01-cta .nkz01-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.nkz01-btn-contact,
.nkz01-btn-call {
  padding: 18px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-transform: uppercase;
}

.nkz01-btn-contact {
  background: linear-gradient(135deg, #47b2e4 0%, #3498db 100%);
  color: #fff;
  border: 2px solid transparent;
  box-shadow: 0 6px 20px rgba(71, 178, 228, 0.3);
}

.nkz01-btn-call {
  background: transparent;
  color: #fff;
  border: 3px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.nkz01-btn-contact::before,
.nkz01-btn-call::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: -1;
}

.nkz01-btn-contact:hover::before,
.nkz01-btn-call:hover::before {
  transform: translateX(0);
}

.nkz01-btn-contact:hover,
.nkz01-btn-call:hover {
  transform: translateY(-5px);
  color: #fff;
}

.nkz01-btn-contact:hover {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  box-shadow: 0 10px 25px rgba(71, 178, 228, 0.4);
}

.nkz01-btn-call:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.nkz01-btn-contact i,
.nkz01-btn-call i {
  margin-right: 12px;
  font-size: 1.3rem;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nkz01-btn-contact:hover i,
.nkz01-btn-call:hover i {
  transform: translateX(-5px) rotate(15deg) scale(1.2);
}

#nkz01-cta .nkz01-cta-feature {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin-bottom: 30px;
}

#nkz01-cta .nkz01-cta-feature > * {
  width: 100%;
}

#nkz01-cta .nkz01-cta-feature h4 {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#nkz01-cta .nkz01-cta-feature p {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

#nkz01-cta .nkz01-cta-feature p:first-of-type {
  margin-bottom: 20px;
  font-size: 1.1rem;
  font-weight: 600;
}

#nkz01-cta .nkz01-cta-feature p:last-of-type {
  text-align: left;
  line-height: 1.6;
}

#nkz01-cta .nkz01-section-title {
  margin-top: 60px;
  margin-bottom: 40px;
}

#nkz01-cta .nkz01-section-title h2 {
  color: #fff;
  margin-bottom: 25px;
}

#nkz01-cta .nkz01-title-decoration span {
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
}

#nkz01-cta .nkz01-title-decoration i {
  color: #fff;
}

#nkz01-cta .nkz01-lead {
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto;
}

#nkz01-cta .nkz01-cta-feature:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
}

#nkz01-cta .nkz01-cta-feature i {
  font-size: 3rem;
  color: #47b2e4;
  margin-bottom: 25px;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, #47b2e4 0%, #3498db 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

#nkz01-cta .nkz01-cta-feature:hover i {
  transform: scale(1.2) rotate(15deg);
  color: #fff;
}

#nkz01-cta .nkz01-cta-feature h4 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 20px;
  transition: all 0.4s ease;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  font-weight: 700;
  letter-spacing: 0.5px;
}

#nkz01-cta .nkz01-cta-feature p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  margin: 0;
  transition: all 0.4s ease;
  line-height: 1.8;
  font-weight: 500;
}

#nkz01-cta .nkz01-cta-feature:hover h4,
#nkz01-cta .nkz01-cta-feature:hover p {
  transform: translateY(-3px);
}

.row.mt-5 {
  display: flex;
  align-items: stretch;
  margin: 0 -15px;
}

.row.mt-5 > [class*="col-"] {
  display: flex;
  flex-direction: column;
  padding: 0 15px;
}

#nkz01-cta .nkz01-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

#nkz01-cta .col-lg-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  padding: 0 15px;
  margin-bottom: 30px;
  display: flex;
}

@media (max-width: 991px) {
#nkz01-cta .col-lg-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

#nkz01-cta .nkz01-cta-feature {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}

#nkz01-cta .nkz01-cta-feature > * {
  width: 100%;
}

#nkz01-cta .nkz01-cta-feature h4 {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

#nkz01-cta .nkz01-cta-feature p {
  flex: 1;
  margin-bottom: 15px;
}

#nkz01-cta .nkz01-cta-feature p:last-child {
  margin-bottom: 0;
}

@media (min-width: 992px) {
#nkz01-cta .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}

@media (max-width: 768px) {
  #nkz01-cta {
    padding: 60px 0;
  }

  #nkz01-cta .nkz01-cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  #nkz01-cta .nkz01-cta-feature {
    margin-bottom: 20px;
  }
}
