*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

:root {
  --grc-primary: #1B6CA8;
  --grc-accent:  #2FBCD3;
  --grc-dark:    #1a1a2e;
}

/* Force Astra to step aside on the front page */
#main.site-main,
#primary,
.ast-article-single,
.entry-content,
.site-content .ast-container {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  float: none !important;
}

/* ═══════════════════════════════
   HERO
═══════════════════════════════ */
.grc-hero {
  font-family: 'Poppins', sans-serif;
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  min-height: calc(80vh - 70px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.grc-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  animation: grcBgDrift 22s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes grcBgDrift {
  from { transform: scale(1.00) translateX(0); }
  to   { transform: scale(1.06) translateX(-1.5%); }
}

.grc-hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(27, 108, 168, 0.55) 0%,
    rgba(26, 26, 46, 0.72) 60%,
    rgba(26, 26, 46, 0.85) 100%
  );
}

.grc-hero__accent-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #1B6CA8, #2FBCD3);
}

.grc-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 860px;
  animation: grcFadeUp 1s ease both;
}

@keyframes grcFadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}

.grc-hero__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #2FBCD3;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: grcFadeUp 0.9s 0.25s ease forwards;
}

.grc-hero__headline {
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.13;
  color: #ffffff;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: grcFadeUp 0.9s 0.45s ease forwards;
}

.grc-hero__headline span {
  background: linear-gradient(90deg, #2FBCD3, #7ee8f5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.grc-hero__sub {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 2.5rem;
  opacity: 0;
  animation: grcFadeUp 0.9s 0.65s ease forwards;
}

.grc-hero__cta {
  display: inline-block;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #ffffff;
  background: #1B6CA8;
  padding: 0.9rem 2.4rem;
  border-radius: 50px;
  border: 2px solid transparent;
  transition: background 0.3s, border-color 0.3s, transform 0.25s, box-shadow 0.3s;
  box-shadow: 0 8px 28px rgba(27, 108, 168, 0.45);
  opacity: 0;
  animation: grcFadeUp 0.9s 0.85s ease forwards;
}

.grc-hero__cta:hover {
  background: transparent;
  border-color: #2FBCD3;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(47, 188, 211, 0.4);
}

@media (max-width: 600px) {
  .grc-hero__cta { padding: 0.8rem 2rem; font-size: 0.9rem; }
}

/* ═══════════════════════════════
   WHO WE ARE
═══════════════════════════════ */
.grc-wwa {
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
  padding: 100px 0;
  overflow: hidden;
}

.grc-wwa__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.grc-wwa__text-col { position: relative; }

.grc-wwa__text-col::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--grc-primary), var(--grc-accent) 60%, transparent);
  border-radius: 2px;
}

.grc-wwa__label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grc-accent);
  margin-bottom: 1rem;
}

.grc-wwa__heading {
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--grc-dark);
  margin-bottom: 1.5rem;
}

.grc-wwa__heading em {
  font-style: normal;
  color: var(--grc-primary);
}

.grc-wwa__para {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: #4a4a6a;
  margin-bottom: 2.25rem;
}

.grc-wwa__notice {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px 22px;
  background: #f4f7fb;
  border: 1px solid #e4eaf3;
  border-left: 3px solid var(--grc-primary);
  border-radius: 10px;
}

.grc-wwa__notice p {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.75;
  color: #4a4a6a;
  margin: 0;
}

.grc-wwa__notice a {
  color: var(--grc-primary);
  font-weight: 600;
  text-decoration: underline;
}

.grc-wwa__notice a:hover { color: var(--grc-accent); }

.grc-wwa__img-col { position: relative; }

.grc-wwa__img-col::before {
  content: '';
  position: absolute;
  top: -24px;
  right: -24px;
  width: 75%;
  height: 75%;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--grc-primary) 0%, var(--grc-accent) 100%);
  opacity: 0.12;
  z-index: 0;
}

.grc-wwa__img-wrap {
  position: relative;
  z-index: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(26, 26, 46, 0.14);
  aspect-ratio: 4 / 3;
}

.grc-wwa__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.grc-wwa__img-wrap:hover img { transform: scale(1.04); }

.grc-wwa__badge {
  position: absolute;
  bottom: -20px;
  left: -28px;
  z-index: 2;
  background: #ffffff;
  border-radius: 10px;
  padding: 1rem 1.4rem;
  box-shadow: 0 12px 36px rgba(26, 26, 46, 0.13);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.grc-wwa__badge-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--grc-primary), var(--grc-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.grc-wwa__badge-icon svg { width: 20px; height: 20px; fill: #fff; }

.grc-wwa__badge-text strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--grc-dark);
  line-height: 1;
}

.grc-wwa__badge-text span {
  font-size: 0.72rem;
  font-weight: 400;
  color: #7a7a9a;
  letter-spacing: 0.02em;
}

.grc-wwa__text-col,
.grc-wwa__img-col {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.grc-wwa__img-col { transition-delay: 0.15s; }

.grc-wwa--visible .grc-wwa__text-col,
.grc-wwa--visible .grc-wwa__img-col {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .grc-wwa__inner { grid-template-columns: 1fr; gap: 48px; }
  .grc-wwa__text-col::before { display: none; }
  .grc-wwa__img-col::before { top: -16px; right: -16px; }
  .grc-wwa__badge { left: 12px; bottom: -16px; }
}

@media (max-width: 480px) {
  .grc-wwa { padding: 72px 0 80px; }
  .grc-wwa__badge { display: none; }
}

/* ═══════════════════════════════
   SERVICES
═══════════════════════════════ */
#services {
  font-family: 'Poppins', sans-serif;
  padding: 90px 24px;
  background: #f9fafb;
}

.services-inner { max-width: 1100px; margin: 0 auto; }

.services-header { text-align: center; margin-bottom: 56px; }

.services-header .eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2FBCD3;
  margin-bottom: 12px;
}

.services-header h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: #1a1a2e;
  margin: 0;
  line-height: 1.2;
}

.services-header h2 span { color: #1B6CA8; }

.services-divider {
  width: 52px;
  height: 3px;
  background: linear-gradient(90deg, #1B6CA8, #2FBCD3);
  border-radius: 2px;
  margin: 20px auto 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: #ffffff;
  border: 1px solid #e8edf3;
  border-radius: 14px;
  padding: 36px 28px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1B6CA8, #2FBCD3);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(27, 108, 168, 0.12);
  border-color: #c5d9ee;
}

.service-card:hover::before { opacity: 1; }

.card-icon {
  width: 52px;
  height: 52px;
  background: #eef5fb;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease;
}

.service-card:hover .card-icon { background: #daeaf7; }
.card-icon svg { width: 26px; height: 26px; }

.card-body h3 {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a2e;
  margin: 0 0 8px;
  line-height: 1.4;
}

.card-body p {
  font-size: 13.5px;
  font-weight: 400;
  color: #5a6478;
  margin: 0;
  line-height: 1.6;
}

.card-arrow {
  margin-top: auto;
  font-size: 12px;
  font-weight: 600;
  color: #1B6CA8;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.card-arrow svg { width: 14px; height: 14px; }
.service-card:hover .card-arrow { opacity: 1; transform: translateX(0); }

@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  #services { padding: 64px 20px; }
}

/* ═══════════════════════════════
   STATS BAR
═══════════════════════════════ */
#stats-bar {
  font-family: 'Poppins', sans-serif;
  background: #1B6CA8;
  padding: 64px 24px;
  width: 100%;
  box-sizing: border-box;
}

.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 16px 24px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 48px;
  width: 1px;
  background: rgba(255,255,255,0.22);
}

.stat-number {
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

.stat-number span { color: #2FBCD3; }

.stat-label {
  font-size: clamp(12px, 1.4vw, 14px);
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.4;
}

/* Partner logo item */
.stat-item--partner {
  border-left: 1px solid rgba(255,255,255,0.22);
  padding-left: 32px;
  flex: 1.4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.stat-item--partner::after { display: none !important; }

.stat-partner-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.stat-partner-logo {
  width: 180px;
  height: auto;
  display: block;
  opacity: 0.92;
  transition: opacity 0.25s;
}

.stat-partner-logo:hover { opacity: 1; }

.stat-partner-sub {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2FBCD3;
}

@media (max-width: 700px) {
  .stats-inner { flex-wrap: wrap; }
  .stat-item { flex: 0 0 50%; padding: 24px 16px; }
  .stat-item:not(:last-child)::after { display: none; }
  .stat-item:nth-child(1), .stat-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.15); }
  .stat-item:nth-child(1), .stat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.15); }
  .stat-item--partner {
    flex: 0 0 100%;
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-left: 16px;
  }
}

@media (max-width: 400px) {
  .stats-inner { flex-direction: column; }
  .stat-item { flex: 0 0 100%; border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .stat-item:last-child { border-bottom: none; }
}

/* ═══════════════════════════════
   PARTNERS & CLIENTS
═══════════════════════════════ */
#partners-clients {
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
  padding: 80px 24px;
  box-sizing: border-box;
}

.pc-inner { max-width: 1100px; margin: 0 auto; }
.pc-block { margin-bottom: 64px; }
.pc-block:last-child { margin-bottom: 0; }

.pc-heading { text-align: center; margin-bottom: 40px; }

.pc-heading .eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #2FBCD3;
  margin-bottom: 8px;
}

.pc-heading h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: #1a1a2e;
  margin: 0;
}

.pc-divider {
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #1B6CA8, #2FBCD3);
  border-radius: 2px;
  margin: 14px auto 0;
}

/* Partners carousel */
.partners-carousel {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 8px 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}

.partners-carousel.is-dragging { cursor: grabbing; scroll-behavior: auto; }

.partners-carousel::-webkit-scrollbar { display: none; }

.partners-carousel::before,
.partners-carousel::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.partners-carousel::before { left: 0; background: linear-gradient(to right, #ffffff, transparent); }
.partners-carousel::after  { right: 0; background: linear-gradient(to left, #ffffff, transparent); }

.partners-track {
  display: flex;
  gap: 20px;
  width: max-content;
}

.partner-card {
  flex-shrink: 0;
  width: 175px;
  background: #f4f6f9;
  border: 1px solid #e4e9f0;
  border-radius: 14px;
  padding: 24px 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  cursor: default;
}

.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(27, 108, 168, 0.12);
  border-color: #c5d9ee;
}

.partner-card__logo {
  width: 100%;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.partner-card__logo img {
  max-width: 100%;
  max-height: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: grayscale(1);
  opacity: 0.7;
  transition: filter 0.3s, opacity 0.3s;
}

.partner-card:hover .partner-card__logo img {
  filter: grayscale(0);
  opacity: 1;
}

.partner-card__name {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.3;
}

.partner-card__sub {
  font-size: 11px;
  font-weight: 400;
  color: #8a8aaa;
  line-height: 1.4;
}

.pc-separator { border: none; border-top: 1px solid #edf0f5; margin: 0 0 64px; }


@media (max-width: 580px) {
  #partners-clients { padding: 60px 20px; }
}

/* ═══════════════════════════════
   CTA BANNER
═══════════════════════════════ */
#cta-banner {
  font-family: 'Poppins', sans-serif;
  position: relative;
  background: #1B6CA8;
  overflow: hidden;
  padding: 96px 24px;
  box-sizing: border-box;
  text-align: center;
}

.cta-wave-top, .cta-wave-bottom {
  position: absolute;
  left: 0;
  width: 100%;
  pointer-events: none;
  line-height: 0;
}

.cta-wave-top { top: 0; }
.cta-wave-bottom { bottom: 0; }

.cta-circle-l, .cta-circle-r {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  background: #ffffff;
  pointer-events: none;
}

.cta-circle-l { width: 420px; height: 420px; top: -120px; left: -140px; }
.cta-circle-r { width: 320px; height: 320px; bottom: -100px; right: -80px; }

.cta-dot-grid {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.cta-inner { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }

.cta-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 100px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  padding: 6px 18px;
  margin-bottom: 24px;
}

.cta-heading {
  font-size: clamp(28px, 5vw, 46px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin: 0 0 18px;
}

.cta-heading span { color: #2FBCD3; }

.cta-sub {
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 400;
  color: rgba(255,255,255,0.80);
  margin: 0 0 40px;
  line-height: 1.6;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: #1B6CA8;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 8px;
  letter-spacing: 0.01em;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
}

.cta-btn:hover {
  background: #2FBCD3;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.22);
}

.cta-btn svg { width: 18px; height: 18px; transition: transform 0.22s ease; flex-shrink: 0; }
.cta-btn:hover svg { transform: translateX(3px); }

@media (max-width: 560px) {
  #cta-banner { padding: 72px 20px; }
  .cta-circle-l { width: 260px; height: 260px; top: -80px; left: -80px; }
  .cta-circle-r { width: 200px; height: 200px; bottom: -60px; right: -50px; }
}
