.core-values {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 20px;
  margin-bottom: 10px;
}

.value-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1c9200;
  color: #fff;
  padding: 5px 10px;
  border-radius: 50px;
  transition: 0.3s ease;
  cursor: default;
}

.value-tag:hover {
  background: #157500;
  transform: translateY(-4px);
}

.slide-text--home-six .sec-title-three {
  position: relative;
  z-index: 2;
}

.slide-text--home-six .sec-title-three__title {
  color: #fff;
}

.slide-text--home-six .sec-title-three__tagline {
  color: #ffb400;
}

.client-logo-section {
  background: #f8f9fb;
  padding: 45px 0;
  overflow: hidden;
  position: relative;
}

.client-logo-section::before,
.client-logo-section::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
}

.client-logo-section::before {
  left: 0;
  background: linear-gradient(to right, #f8f9fb 0%, transparent 100%);
}

.client-logo-section::after {
  right: 0;
  background: linear-gradient(to left, #f8f9fb 0%, transparent 100%);
}

.logo-slider {
  overflow: hidden;
  white-space: nowrap;
}

.logo-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: logoscroll 35s linear infinite;
}

.logo-track img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  margin: 0 35px;
  padding: 15px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.logo-track img:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

@keyframes logoscroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .logo-track img {
    width: 110px;
    height: 65px;
    margin: 0 18px;
    padding: 10px;
  }

  .client-logo-section {
    padding: 30px 0;
  }
}

.topbar-five__social {
  display: flex;
  align-items: center;
  gap: 15px;
}

.topbar-five__social a {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: #1c9200;
  transition: all 0.3s ease;
}

.topbar-five__social a:hover {
  background: #ffb400;
  color: #000;
  transform: translateY(-3px);
}

.main-slider-five__item {
  position: relative;
  overflow: hidden;
}

.main-slider-five__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.55) 45%,
    rgba(0, 0, 0, 0.2) 75%,
    rgba(0, 0, 0, 0) 100%
  );
}

.main-slider-five__content {
  position: relative;
  z-index: 2;
}
@media (max-width: 700px) {
  .exp {
    margin-bottom: 20px;
  }
}

/* Space below sticky header */
.page-header {
  position: relative;
  padding: 80px 0 20px;
  overflow: hidden;
}

.page-header__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.page-header__inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-header__title {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
}
.security-card {
  background: #fff;
  border-radius: 20px;
  padding: 35px 30px;
  height: 100%;
  transition: 0.4s;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.security-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #1716f1, #1c9200);
  transform: scaleX(0);
  transition: 0.4s;
}

.security-card:hover::before {
  transform: scaleX(1);
}

.security-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.security-icon {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1716f1, #1c9200);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.security-icon i {
  color: #fff;
  font-size: 30px;
}

.security-card h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.security-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.security-card ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: #222;
}

.security-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #1c9200;
  font-weight: bold;
}

@media (max-width: 767px) {
  .security-services {
    padding: 70px 0;
  }

  .security-card {
    padding: 25px;
  }
}
ul.list-sty li {
  font-size: 16px;
  color: #222;
}
.why-choose-section {
  background: #f8fbff;
  position: relative;
  overflow: hidden;
}

.why-desc {
  max-width: 850px;
  margin: 20px auto 0;

  line-height: 1.9;
  font-size: 17px;
}

.why-card {
  background: #fff;
  border-radius: 18px;
  padding: 25px;
  text-align: center;
  height: 100%;
  transition: 0.45s;
  position: relative;
  overflow: hidden;
  border: 1px solid #eee;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #1716f1, #1c9200);
  transition: 0.45s;
}

.why-card:hover::before {
  left: 0;
}

.why-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(23, 22, 241, 0.18);
}

.why-icon {
  width: 85px;
  height: 85px;
  margin: auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #1716f1, #1c9200);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 34px;
  margin-bottom: 25px;
  transition: 0.6s;
}

.why-card:hover .why-icon {
  transform: rotateY(360deg) scale(1.08);
}

.why-card h4 {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 15px;
}

.commitment-box {
  margin-top: 30px;
  background: linear-gradient(135deg, #1716f1, #1c9200);
  border-radius: 20px;
  padding: 45px;
  color: #fff;
  box-shadow: 0 20px 50px rgba(23, 22, 241, 0.25);
}

.commitment-box h3 {
  color: #fff;
  font-size: 32px;
  margin-bottom: 15px;
}

.commitment-box p {
  color: #fff;
  line-height: 1.9;
  margin: 0;
}

.commitment-icon {
  font-size: 70px;
  color: #fff;
  animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

@media (max-width: 767px) {
  .commitment-box {
    padding: 30px;
    text-align: center;
  }

  .commitment-icon {
    margin-bottom: 20px;
  }
}

.nk-zigzag-section {
  background: #f7f9fc;
  position: relative;
  overflow: hidden;
}

.center-circle {
  position: relative;
  width: 320px;
  height: 320px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.center-circle img {
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 50%;
  background: #fff;
  padding: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 2;
}

.circle-border {
  position: absolute;
  width: 310px;
  height: 310px;
  border: 3px dashed #1716f1;
  border-radius: 50%;
  animation: rotateCircle 18s linear infinite;
}

@keyframes rotateCircle {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.zigzag-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  padding: 18px;
  margin: 18px 0;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
  position: relative;
}

.left {
  margin-right: 40px;
}

.right {
  margin-left: 40px;
}

.left::after {
  content: "";
  position: absolute;
  right: -40px;
  top: 50%;
  width: 40px;
  height: 2px;
  background: #1716f1;
}

.right::before {
  content: "";
  position: absolute;
  left: -40px;
  top: 50%;
  width: 40px;
  height: 2px;
  background: #1c9200;
}

.zigzag-card i {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1716f1, #1c9200);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  transition: 0.5s;
  flex-shrink: 0;
}

.zigzag-card h5 {
  margin-bottom: 6px;
  font-size: 20px;
  font-weight: 700;
}

.zigzag-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(23, 22, 241, 0.18);
}

.zigzag-card:hover i {
  transform: rotate(360deg) scale(1.1);
}

.zigzag-card:hover {
  background: linear-gradient(135deg, #1716f1, #1c9200);
  color: #fff;
}

.zigzag-card:hover h5,
.zigzag-card:hover p {
  color: #fff;
}

@media (max-width: 991px) {
  .left,
  .right {
    margin: 15px 0;
  }

  .left::after,
  .right::before {
    display: none;
  }

  .center-circle {
    width: 260px;
    height: 260px;
    margin: 40px auto;
  }

  .center-circle img {
    width: 210px;
    height: 210px;
  }

  .circle-border {
    width: 250px;
    height: 250px;
  }
}
.certification-card {
  background: #fff;
  padding: 35px 25px;
  text-align: center;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
  height: 100%;
  border-top: 4px solid #1716f1;
}

.certification-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(23, 22, 241, 0.18);
  border-top-color: #1c9200;
}

.certification-card i {
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1716f1, #1c9200);
  color: #fff;
  font-size: 32px;
  margin-bottom: 20px;
  transition: 0.4s;
}

.certification-card:hover i {
  transform: rotateY(180deg);
}

.certification-card h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.certification-card p {
  color: #666;
  margin: 0;
  line-height: 1.7;
}

.service-box {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  padding: 5px 10px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
  border-left: 4px solid #1716f1;
}

.service-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(23, 22, 241, 0.18);
}

.service-box i {
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  background: #1716f1;
  color: #fff;
  border-radius: 50%;
  font-size: 22px;
  transition: 0.3s;
}

.service-box:hover i {
  background: #1c9200;
  transform: rotate(8deg);
}

.service-box span {
  font-size: 17px;
  font-weight: 600;
  color: #222;
}

.about-highlight {
  background: linear-gradient(135deg, #1716f1 0%, #1c9200 100%);
  padding: 30px;
  border-radius: 10px;
  color: #fff;
  margin-top: 25px;
  box-shadow: 0 15px 35px rgba(23, 22, 241, 0.15);
}

.about-highlight h5 {
  color: #fff;
  margin-bottom: 15px;
  font-weight: 700;
}

.about-highlight p {
  margin: 0;
  color: #fff;
}
