/* Stat cards */
.loc-banner-card {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  backdrop-filter: blur(6px);
  border-radius: 8px;
  padding: 20px 18px;
  color: #fff;
  height: 100%;
}

.fs-32 {
  font-size: 32px;
}

.NY-organization {
  background-color: #F5FBFF;
}


:root {
  --navy: #0d1240;
  --navy-2: #0a0e30;
  --blue: #1f8fe0;
  --blue-2: #1670c9;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
}

.it-services-section {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  position: relative;
  overflow: hidden;
  padding: 70px 0 80px;
}

.it-services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 520px;
  height: 100%;
  background-image:
    repeating-radial-gradient(circle at 0% 50%, transparent 0, transparent 60px, rgba(255, 255, 255, 0.035) 61px, rgba(255, 255, 255, 0.035) 62px);
  pointer-events: none;
}

.it-services-section .container {
  position: relative;
  z-index: 2;
}

.it-heading {
  color: #fff;
  font-weight: 700;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 18px;
}

.it-subtext {
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  max-width: 780px;
  margin: 0 auto 45px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.it-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
}

.it-nav-btn {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background .2s ease;
  border: none;
}

.it-nav-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid #fff;
  color: #fff;
}

.it-carousel-viewport {
  flex: 1;
  overflow: hidden;
}

.it-cards-row {
  display: flex;
  gap: 24px;
  will-change: transform;
}

.it-card {
  flex: 0 0 calc(25% - 18px);
  background: #fff;
  border-radius: 6px;
  padding: 45px 28px 32px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.it-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--blue) 0%, var(--blue-2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  color: #fff;
  font-size: 1.5rem;
}

.it-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #161b33;
  margin-bottom: 16px;
}

.it-card p {
  font-size: 0.9rem;
  color: #5b607a;
  line-height: 1.7;
  margin: 0;
}

.it-cta-wrap {
  text-align: center;
  margin-top: 50px;
}

.it-cta-btn {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 4px;
  border: 1px solid var(--blue);
  text-decoration: none;
  font-size: 0.95rem;
  transition: background .2s ease;
}

.it-cta-btn:hover {
  background: var(--blue-2);
  color: #fff;
}

@media (min-width:1200px) and (max-width:1399px) {
  .it-card {
    flex: 0 0 calc(33% - 12px);
  }
}

@media (min-width:992px) and (max-width:1199px) {
  .it-card {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width:991px) {
  .stats-col {
    margin-top: 32px;
  }

  .it-card {
    flex: 0 0 calc(100% - 12px);
  }

  /* .page-header.page-header-city {
    min-height: 870px;
  } */
}

@media (max-width:767px) {
  .stat-card {
    padding: 16px 14px;
  }

  .stat-card .stat-number {
    font-size: 1.3rem;
  }

  .page-header.page-header-city {
    min-height: 860px;
  }

  .it-carousel-wrap {
    gap: 8px;
  }

  .it-cards-row {
    gap: 12px;
  }

  .it-card {
    flex: 0 0 100%;
    padding: 35px 22px 26px;
  }

  .it-heading {
    font-size: 1.5rem;
  }

}

@media (max-width:567px) {
  .page-header.page-header-city {
    min-height: 900px;
  }

  .fs-sm-20 {
    font-size: 20px;
  }
}