/* === GROUP HERO (product-page look, mapped to current DOM) === */
:root {
--content-width: clamp(1440px, 90vw, 1800px);
  --hero-min-h: 420px;
  --hero-max-h: 760px;
  --hero-pad-y: clamp(20px, 6vw, 64px);
  --hero-gutter: max(16px, calc((100vw - var(--content-width)) / 2));
  --hero-muted: #cfe0ff;
  --hero-accent: #2a4bff;
  --content-text: #000;
}


.one-container .site-content {
    padding-bottom:1rem;
}


.tax-group .one-container .container {
  background-color: #ffffff;
}

.site-content section .container
 {
    max-width: var(--content-width);
    margin-inline: auto;
    padding-inline: 16px;
}




body .grid-container {
    max-width: 100%;
    padding: 0px;
	margin-left: auto;
    margin-right: auto;
}

/* WRAPPER */
.product-hero {
    position: relative;
    width: 100%;
    height: 80vh;               /* adjust as needed */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #fff;
}

.archive.tax-solution .product-hero {
    height: 80vh;               /* adjust as needed */
}

.product-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;                /* above image, below dots + text */
	background: linear-gradient(
	  to bottom,
	  rgba(0,0,0,0.80) 0%,     /* strong dark */
	  rgba(0,0,0,0.55) 30%,    /* deeper mid */
	  rgba(0,0,0,0.20) 65%,
	  rgba(0,0,0,0.00) 100%
	);
    pointer-events: none;
}

/* Background Image */
.product-hero .hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.product-hero .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dot Overlay */
.product-hero .dot-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.product-hero .dot-grid {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(15, 1fr);
    grid-template-rows: repeat(12, 1fr);
    width: 40%;                /* control width of dotted zone */
    opacity: 0.24;             /* light, subtle */
}

/* Hero Text Wrapper */

.product-hero .hero-text {
    max-width: var(--content-width);
    margin-inline: auto;
    padding-inline: 16px;	
    position: relative;
    z-index: 3;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    padding-top: 80px;
    padding-bottom: 80px;
	width: inherit;
}

.product-hero .hero-title {
    font-size: 6rem;
    line-height: 1.1;
    font-weight: 700;
    margin: 0 0 10px;
	color:#fff;
}


/* keep your existing */
.product-hero .hero-meta {
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

/* FIX: position + better padding for dividers */
.product-hero .hero-meta-item{
  position: relative;              /* ✅ required for ::before/::after */
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  padding: 6px 16px;               /* ✅ room for vertical lines */
  white-space: nowrap;
}

.product-hero .hero-meta-item::before,
.product-hero .hero-meta-item::after{
  content:"";
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  width:1px;
  height:40px;
  background: rgba(255,255,255,.6);
  pointer-events:none;
}

/* Left edge divider only on first item */
.product-hero .hero-meta-item::before{
  left:0;
  display:none;
}
.product-hero .hero-meta-item:first-child::before{
  display:block;
}

/* Right divider on every item except last:
   this becomes the “middle” divider + avoids double-thick lines */
.product-hero .hero-meta-item::after{
  right:0;
}


.product-hero .hero-meta-item span[class^="icon-"]{
  display:flex;
  width:32px;
  height:32px;
  align-items:center;
  justify-content:center;
  background-repeat:no-repeat;
  background-size:contain; /* better than cover for icons */
  background-position:center;
}

.product-hero .hero-meta-item .domain-text{
  width:auto;
  height:auto;
  display:block;
}

.icon-defence {
  background-image: url("../images/defence-b-icon-white.svg");
}
.icon-naval {
  background-image: url("../images/naval-icon-white.svg");
}
.icon-air {
  background-image: url("../images/air-icon-white.svg");
}
.icon-land {
  background-image: url("../images/land-icon-white.svg");
}
.icon-spectrum {
  background-image: url("../images/cyber-icon-white.svg");
}







.product-hero .hero-subtitle {
	max-width: 60%;
}
	
.product-hero .hero-subtitle p {
    font-size: 2.8rem;
    margin: 0 0 25px;
    line-height: 1.4;
}


.breadcrumb-section .container {
    max-width: var(--content-width);
    margin-inline: auto;
    padding-inline: 16px;
    padding: 1rem;
}


/* =========================
   GROUP — TOP TEXT
   ========================= */

.group-top-text {
  width: 100%;
  background: #fff;
}

.group-top-text-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 2rem 0 5rem;
}

.group-top-row {
  display: flex;
}

.group-text {
  max-width: 880px;
}

.group-text-inner {
  display: flex;
  flex-direction: column;
}

.group-text-wysiwyg {
  font-size: 16px;
  line-height: 1.7;
  color: #111827;
}

.group-text-wysiwyg p {
  margin: 0 0 18px;
  font-size: 1.5rem;
}

/* Blue emphasis link inside text (Military Aircraft Group) */
.group-text-wysiwyg a {
  color: #fff;
  font-weight: 700;
  font-size: 1.5rem;
  text-decoration: none;
  text-transform: uppercase;
}

.group-text-wysiwyg a:hover {
  text-decoration: underline;
}

/* =========================
   CTA BUTTON
   ========================= */

.group-top-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-top: 8px;
  padding: 12px 18px;

  background: #000;
  color: #fff;
  text-decoration: none;

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  width: fit-content;

  transition: background-color 0.2s ease, transform 0.2s ease;
}

.group-top-cta::after {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 6px;
    background-image: url(../images/arrow-left-white.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
}




/* SLIDER + SLIDE */
.group-hero .group-hero-slider {
  position: relative;
}
.group-hero .group-hero-slider .group-slide {
  position: relative;
}

/* IMAGE AS BACKGROUND LAYER */
.group-hero .group-hero-slider .group-slide > img {
  width: 100%;
  height: clamp(var(--hero-min-h), 55vw, var(--hero-max-h));
  min-height: 90vh; /* match wrapper height */
  object-fit: cover;
  display: block;
  position: absolute;
}

/* LEGIBILITY OVERLAY (left→right + soft bottom) */
.group-hero .group-hero-slider .group-slide::before,
.group-hero .group-hero-slider .group-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* TEXT LAYER (maps to .group-slide-content) */
.group-hero .group-slide-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: left;
  max-width: var(--content-width);
  margin-inline: auto;
  padding: 24px 16px;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}

/* Align to site gutters & set readable width */
@media (min-width: 1024px) {
  .group-hero .group-slide-content {
    padding-right: 24px;
  }
  .group-hero .group-slide-content > * {
    max-width: min(54ch, calc(var(--content-width) * 0.55));
  }
}

/* TYPOGRAPHY (maps to your h3 + first p) */
.group-hero .group-slide-content h3 {
  margin: 0 0 12px;
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: 0.01em;
  font-size: clamp(28px, 4.6vw, 68px);
  color: #fff;
}
.group-hero .group-slide-content p {
  margin: 0 0 18px;
  line-height: 1.45;
  font-size: clamp(16px, 1.25vw + 0.25rem, 41px);
  color: var(--hero-muted);
}
/* Make the first paragraph (the subtitle) stronger like product page */
.group-hero .group-slide-content p:first-of-type {
  color: #ffffff;
}

/* CTA (maps to your link inside the last <p>) */
.group-hero .group-slide-content a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.9rem 1.25rem;
  background: var(--global-color-blue); /* primary button look */
  color: #ffffff;
  font-weight: 500;
  text-decoration: none;
  line-height: 1;
  font-size: 24px;
}
.group-hero .group-slide-content a:hover {
  /*transform: translateY(-1px);
  background: transparent;
  color:#ffffff;
  border-color: var(--hero-accent); */
}
.group-hero .group-slide-content a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(42, 75, 255, 0.45);
}

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  .group-hero .group-slide-content a {
    transition: none;
  }
}

/* =========================
   News & Updates (2-col)
   ========================= */


.group-news-updates {
  padding: clamp(20px, 3vw, 40px) 0;
  color: var(--ink);
}
.group-news-updates .container {
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: 16px;
}
.group-news-updates .group-news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* featured | list */
  gap: var(--gap);
  align-items: start;
}

/* ========== Featured ========== */
.group-news-updates .group-featured-news {
  background: var(--paper);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.group-news-updates .group-featured-news:hover {
}
.group-featured-news a {
  display: flex;
  color: inherit;
  text-decoration: none;
  flex-direction: column;
}
.group-news-updates .group-featured-news .group-news-thumbnail {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.group-news-updates .group-featured-news .group-news-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.group-news-updates .group-featured-news h3 {
  font-size: clamp(20px, 1.5vw + 0.6rem, 28px);
  line-height: 1.15;
  margin: 18px 18px 20px 0px;
  letter-spacing: 0;
  font-weight: 800;
  padding-right:30%;
}
.group-news-updates .group-featured-news p {
  margin: 0 18px 18px;
  color: var(--content-text);
  font-size: clamp(20px, 0.55vw + 0.65rem, 20px);
  line-height: 1.5;
  margin-left: 0px;
  padding-right:30%;
}

/* ========== Latest list (right column) ========== */
.group-news-updates .group-latest-news {
  display: grid;
  gap: var(--gap);
}
.group-news-updates .group-latest-news .group-news-item {
  background: var(--paper);
  overflow: hidden;
}
.group-news-updates .group-latest-news .group-news-item:hover {
}
.group-news-item a {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.group-news-item a:hover {
}

.group-news-item:nth-child(2) a {
  flex-direction: row-reverse;
}

/* Left side: image */
.group-news-item .group-news-thumbnail {
  flex: 1 1 53%;
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.group-news-item .group-news-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.group-news-item:nth-child(2) {
  padding: 28px 18px 28px 0px;
  border-top:1px solid #e7e2e2;
  border-bottom:1px solid #e7e2e2;
}

/* Date badge */
.group-news-item .group-news-date-badge,
.group-featured-news .group-news-date-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 48px;
  height: 48px;
  background: var(--global-color-blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: 600;
}

.group-news-item .group-news-date-badge .day,
.group-featured-news .group-news-date-badge .day {
  font-size: 1.6rem;
  line-height: 1;
  transform: translateY(4px);
}

.group-news-item .group-news-date-badge .month,
.group-featured-news .group-news-date-badge .month {
  font-size: 0.8rem;
  font-weight: 400;
}

/* Right side: text */
.group-news-item .group-news-item-content {
  flex: 1 1 50%;
  background: #fff;
  padding: 0px 18px 16px 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.group-news-item:nth-child(2) .group-news-item-content {
  padding: 0px 18px 16px 0px;
}

/* If you add .news-category spans inside the content */
.group-news-item .group-news-item-content .news-category,
.group-featured-news .news-category {
  color: var(--global-color-blue);
  font-weight: 600;
}

.group-featured-news .news-category {
  padding-top:18px;
}

.group-news-item .group-news-item-content h4 {
  margin: 0 0 8px;
  font-size: clamp(16px, 1vw + 0.5rem, 20px);
  line-height: 1.25;
  font-weight: 800;
}
.group-news-item .group-news-item-content p {
  margin: 0;
  font-size: clamp(16px, 0.55vw + 0.65rem, 16px);
  color: #000;
  line-height: 1.25;
}

/* Responsive: stack on small screens */
@media (max-width: 640px) {
  .group-news-item a {
    flex-direction: column;
  }
  .group-news-item .group-news-thumbnail,
  .group-news-item .group-news-item-content {
    flex: 1 1 100%;
  }
}

/* === QUICK FACTS ABOUT IAI === */
.group-quick-facts,
.group-solutions-section,
.group-vision-values {
  color: #000;
  padding: clamp(40px, 6vw, 90px) 0;
  overflow: hidden;
  position: relative;
  --gutter: max(0px, calc((100vw - var(--content-width)) / 2));
}

.group-solutions-section {
  padding: 0;
}

.group-quick-facts .container,
.group-solutions-section .container,
.group-vision-values .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--bar-gap);
  flex-wrap: nowrap;
  margin-left: var(--gutter);
  margin-right: 0;
  width: calc(100% - var(--gutter));
  max-width: none;
  flex-direction: column;
}

/* Header section */
.group-facts-header {
  text-align: left;
  margin-bottom: clamp(30px, 5vw, 60px);
}
.group-facts-header h3,
.group-solutions-section h3 {
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 800;
  line-height: 1.1;
  color: #2a4bff;
  margin: 0 0 8px;
}
.group-facts-header p,
.group-solutions-section p {
  margin: 6px 0;
  color: #000;
  font-size: clamp(14px, 1vw + 0.25rem, 18px);
  letter-spacing: 0.01em;
}
.group-facts-header a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #2a4bff;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  padding: 0.9rem 1.4rem;
  border-radius: 0px;
  margin-top: 20px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.group-facts-header a:hover {
  color: #fff;
}

.group-facts-header a::after {
  content: "+";
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1;
}

/* World map */
.group-facts-map {
  margin-top: 0px;
  text-align: left;
}
.group-facts-map img {
  width: 100%;
  max-width: 560px;
  height: auto;
  opacity: 0.85;
  filter: drop-shadow(0 0 6px rgba(42, 75, 255, 0.4));
}

/* Main fact highlight */
.group-main-fact-wrapper {
  display: flex;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
  align-items: center;
}

/* MAIN FACT */
.group-main-fact {
  display: flex;
  gap: 4px;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 500;
  color: #000;
  flex-direction: column;
  justify-content: center;
  padding: 0;
  margin: 0;
  border-right: 2px dotted var(--global-color-blue);
  padding-right: 3rem;
  width: 560px;
  min-width: 560px;
  max-width: 560px;
}

.group-main-fact-num {
  text-align: center;
  margin: 0;
  padding: 0;
}

.group-main-fact .num {
  font-size: clamp(28px, 17vw, 18rem);
  line-height: 1;
}
.group-main-fact .label {
  font-size: 0.5em;
  text-transform: uppercase;
  color: #000;
}
.group-main-fact .sufix {
  font-size: clamp(18px, 1.2vw + 0.4rem, 22px);
  font-weight: 500;
  color: #000;
  margin-left: 12px;
  line-height: 1.3;
  margin: 4px 0 0 12px;
  line-height: 1.2;
}

/* Facts list grid */
.group-facts-list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 5rem;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0 !important;
}

.group-fact-item {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 240px;
  padding: 0 0 0 5rem;
  margin: 0;
}

.group-fact-item:hover {
  /*background: rgba(42,75,255,0.12);
  transform: translateY(-2px); */
}
.group-fact-item .num {
  display: inline-block;
  font-size: clamp(28px, 7vw, 8rem);
  font-weight: 500;
  color: #000;
  line-height: 1;
}
.group-fact-item .label {
  display: inline-block;
  font-size: clamp(28px, 5vw, 3rem);
  font-weight: 600;
  text-transform: uppercase;
  margin-left: 4px;
  color: #000;
}
.group-fact-item .text {
  margin-top: -1px;
  font-size: clamp(14px, 1vw + 0.2rem, 17px);
  line-height: 1.3;
  color: #000;
  text-align: left;
}

/* MAP – remove extra spacing */
.group-facts-map img {
  display: block;
  margin: 0;
  padding: 0;
  object-fit: contain;
}

/* Responsive quick facts */
@media (max-width: 960px) {
  .group-facts-list {
    gap: 18px;
  }
  .group-fact-item {
    flex: 1 1 calc(50% - 12px);
  }
}
@media (max-width: 640px) {
  .group-main-fact {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
  .group-facts-list {
    flex-direction: column;
    gap: 10px;
    margin-top: 0 !important;
  }
  .group-fact-item {
    flex: 1 1 100%;
  }
  .group-facts-map img {
    max-width: 100%;
  }
}




/* ==========================
   Core Divisions (ACF)
   ========================== */

.core-divisions{
  max-width: var(--content-width);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 56px) 16px;
}

.core-divisions-inner{
  max-width: 880px; /* keeps the text column similar to screenshot */
}

.core-divisions-title{
  margin: 0 0 18px;
  color: var(--global-color-blue);
  font-size: 4rem;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: .2px;
}

.core-divisions-content{
  color: #111827;
  font-size: 16px;
  line-height: 1.55;
}

/* Division headings inside the WYSIWYG */
.core-divisions-content :where(h2,h3,h4){
  margin: 26px 0 6px;
  font-weight: 500;
  letter-spacing: .1px;
  line-height: 1.2;
  font-size: 3rem;
  margin-top: 4rem;
}

/* First heading should sit closer to the title */
.core-divisions-content :where(h2,h3,h4):first-child{
  
}

.core-divisions-content p{
  margin: 0 0 10px;
  max-width: 72ch;
  color: #1f2937;
  font-size: 1.5rem;
}


/* =============  VISION & VALUES  ============= */
.group-vision-content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  width: 100%;
  gap: 0px;
  z-index: 2;
}
.group-vision-values {
  --vv-text: #e9f0ff;
  --vv-muted: #a9b7e6;
  --vv-accent: var(--global-color-blue, #2a4bff);

  position: relative;
  isolation: isolate;
  color: var(--vv-text);
  background: #030816;
  overflow: clip;
  min-height: clamp(1120px, 74vh, 880px);
}

.group-vision-values .container {
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: 16px;
}

/* Background image fills the section */
.group-vision-values .group-vision-bg,
.group-vision-values .group-vision-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display:flex;
}
.group-vision-values .group-vision-bg img {
  object-fit: cover;
  object-position: 50% 55%;
}

/* Dark Overlay */
.group-vision-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.65) 40%,
    rgba(0, 0, 0, 0.75) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Subtle vignette + blue line overlay */
.group-vision-values::before,
.group-vision-values::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.group-vision-values::before {
  background: radial-gradient(
      120% 100% at 15% 0%,
      rgba(3, 8, 22, 0.85) 0%,
      rgba(3, 8, 22, 0.55) 35%,
      rgba(3, 8, 22, 0.25) 60%,
      rgba(3, 8, 22, 0) 100%
    ),
    linear-gradient(180deg, rgba(3, 8, 22, 0.55) 0%, rgba(3, 8, 22, 0) 40%);
}
.group-vision-values::after {
  background: linear-gradient(
    90deg,
    rgba(42, 75, 255, 0),
    rgba(42, 75, 255, 0.25) 25%,
    rgba(42, 75, 255, 0) 70%
  );
  top: auto;
  height: 1px;
  transform: translateY(-1px);
  bottom: clamp(84px, 12vh, 140px);
  opacity: 0.6;
}

/* Content wrapper */
.group-vision-values .group-vision-text {
}

/* Left column text */
.group-vision-values .group-vision-text > h3 {
  grid-column: 1;
  align-self: center;
  max-width: 46ch;
  margin: 0;
  font-size: clamp(28px, 2.6vw, 63px);
  line-height: 1.1;
  letter-spacing: 0.01em;
  font-weight: 500;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.35);
  color: var(--global-color-blue);
  margin-bottom: 20px;
}
.group-vision-values .group-vision-text > p {
  grid-column: 1;
  align-self: center;
  max-width: 46ch;
  margin: 0;
  font-size: clamp(28px, 2.6vw, 22px);
  line-height: 1.1;
  letter-spacing: 0.01em;
  font-weight: 400;
  color:#ffffff;
}

.group-vision-values .group-vision-text > p.sub-title {
  font-weight: 500;
  margin-bottom: 2rem;
}

.group-vision-values .group-vision-text a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #2a4bff;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  padding: 0.9rem 1.4rem;
  border-radius: 0px;
  margin-top: 20px;
  transition: background 0.2s ease, transform 0.2s ease;
  font-size: clamp(17px, 2.6vw, 14px);
}
.group-vision-values .group-vision-text > p br {
  content: "";
}

/* Optional subline */
.group-vision-values .group-vision-text .sub {
  display: block;
  margin-top: 0.75rem;
  font-size: clamp(16px, 1.25vw, 18px);
  font-weight: 500;
  color: var(--vv-muted);
  letter-spacing: 0.01em;
}

/* Accordion placeholder (right column) */
.group-vision-accordion {
}

/* CTA style (if used) */
.group-vision-values .group-vv-cta {
  margin-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--vv-accent);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(42, 75, 255, 0.35);
  transition: transform 0.12s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
.group-vision-values .group-vv-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 38px rgba(42, 75, 255, 0.45);
  opacity: 0.96;
}

.group-values-list {
  width: 100%;
}

.group-value-item {
  border-bottom: 1px solid #1c48f0;
}

.group-value-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  text-transform: uppercase;
}

.group-value-toggle:hover,
.group-value-toggle:focus {
  background:none;
}

.group-value-toggle .icon {
  display: inline-block;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  font-size: 16px;
}

.group-value-toggle .icon::before {
  content: "";
  display: inline-block;
  width: 50px;
  height: 50px;
  mask: url('data:image/svg+xml;utf8,<svg fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><polyline points="6 9 12 15 18 9"/></svg>') no-repeat center;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg fill="none" stroke="currentColor" stroke-width="1" stroke-linecap="round" stroke-linejoin="round" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><polyline points="6 9 12 15 18 9"/></svg>') no-repeat center;
  background-color: #8796B2;
}

/* =========================
   GROUP — TOP CONTENT
   ========================= */

/* =========================================================
   GROUP TOP CONTENT — same gutter technique as .overview-highlights
   ========================================================= */

.group-top-content-top {
background:#26282f
}

.group-top-content-top,
.group-top-content-bottom{
  --gutter: max(0px, calc((100vw - var(--content-width)) / 2));
}

/* Make the inner start at content grid (left gutter),
   and stretch all the way to the right edge of the viewport */
.group-top-content-top .group-top-content-inner.container,
.group-top-content-bottom .group-top-content-inner.container{
  margin-left: var(--gutter);
  margin-right: 0;
  width: calc(100% - var(--gutter));
  max-width: none;
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  align-items: stretch;
}

/* 2 equal columns (like your overview-highlights > div > div rule) */
.group-top-content-top .group-top-content-inner.container > div {

  min-width: 0; /* prevents overflow from long text */
}

.group-top-content-bottom .group-top-content-inner.container > div{
  width: 50%;
  min-width: 0; /* prevents overflow from long text */
}

/* ---------- TOP ROW PANELS ---------- */
.group-about{
  background:#26282f;
  color:#fff;
  display:flex;
  width: 100%;
}
.group-about-inner{
  padding: 3rem 2rem 3rem 0;
  max-width: 800px;
}

.group-top-media{
  background:#000;
  overflow:hidden;
}
.group-top-media-img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:60% 50%;
}

/* Give the row some presence (optional, tune) */
.group-top-content-top .group-top-content-inner.container{
  min-height: 420px;
  padding-inline: 0px;
}

/* ---------- BOTTOM ROW PANELS ---------- */
.group-capabilities{
  background:#fff;
  color:#111;
  padding: 4rem 0px;
}
.group-solutions{
  background: var(--global-color-blue);
  color:#fff;
  padding: clamp(28px, 4vw, 56px);
}

.group-top-content-bottom .group-top-content-inner.container{
  min-height: 360px;
  padding-inline:0px;
}

/* Titles */
.group-top-title{
  margin:0 0 16px;
  font-size: 2rem;
  font-weight:700;
  line-height:1.2;
  color:inherit;
}
.group-top-title--blue{ color:var(--global-color-blue);font-size: 3rem; }
.group-top-title--white{ color:#fff; }

/* About text */
.group-top-wysiwyg{
  font-size: 1.5rem;
  line-height:1.6;
  color:rgba(255,255,255,.88);
}
.group-top-wysiwyg p{ margin:0 0 12px; }
.group-top-wysiwyg p:last-child{ margin-bottom:0; }

/* Bullets */
.group-bullets{
  list-style:none;
  margin:16px 0 0;
  padding:0;
}
.group-bullets li{
  position:relative;
  padding-left:18px;
  margin:0 0 18px;
  font-size:1.5rem;
  line-height:1.65;
}
.group-bullets li::before{
  content:"";
  position:absolute;
  left:0;
  top:.62em;
  width:5px;
  height:5px;
  border-radius:50%;
  background: currentColor;
  opacity:.9;
}
.group-bullets--white li{ color:#fff; }
.group-bullets li:last-child{ margin-bottom:0; }

/* ---------- Responsive ---------- */
@media (max-width: 900px){
  .group-top-content-top .group-top-content-inner.container,
  .group-top-content-bottom .group-top-content-inner.container{
    margin-left: 0;
    width: 100%;
    flex-wrap: wrap;
  }

  .group-top-content-top .group-top-content-inner.container > div,
  .group-top-content-bottom .group-top-content-inner.container > div{
    width: 100%;
  }

  .group-top-media{
    height: 280px;
  }

  .group-about-inner{
    max-width:none;
  }
}





/* =========================
   GROUP — WHY CHOOSE
   ========================= */

.group-why{
  background:#fff;
  padding: 4rem 0;
}



.group-why-title{
  margin: 0 0 10px;
  font-size: 2.6rem;
  font-weight: 700;
  color: #000;
}

.group-why-intro{
  margin: 0 0 3rem;
  font-size: 1.5rem;
  line-height: 1.65;
  color: #000;
  font-weight: 600;
}

.group-why-list{
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
}

.group-why-item{
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  margin: 14px 0;
  font-size: 1.5rem;
  line-height: 1.6;
  color: #000;
  align-items: center;
}

.group-why-item p{
	margin:0;
}
.group-why-item::before{
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 6px;
    background-image: url(../images/blue-tick-round.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
	align-items: center;
}


/* Responsive */
@media (max-width: 900px) {
  .group-top-row {
    grid-template-columns: 1fr;
  }
  .group-about-inner {
    max-width: none;
  }
  .group-top-media {
    min-height: 260px;
  }
  .group-bottom-row {
    grid-template-columns: 1fr;
  }
  .group-capabilities {
    border-left: 0;
    border-right: 0;
    border-top: 1px solid #e6e9f2;
  }
}


/* =========================
   GROUP — VIDEO SECTION
   ========================= */

.group-video-section{
  width: 100%;
  background: #fff;
  padding: 24px 0 48px;
}

.site-content .group-video-section .group-video-inner{
  max-width: calc(var(--content-width) - 30%);
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
}

/* Small label top-left */
.group-video-label{
  position: absolute;
  top: 12px;
  left: 28px;
  z-index: 3;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  pointer-events: none;
}

/* 16:9 responsive iframe wrapper */
.group-video-frame{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}

/* iframe itself */
.group-video-frame iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Subtle cinematic dark overlay (optional, like screenshot) */
.group-video-frame::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.1) 30%,
    rgba(0,0,0,0) 60%
  );
  pointer-events: none;
}

/* Mobile tweaks */
@media (max-width: 768px){
  .group-video-label{
    left: 20px;
    top: 10px;
    font-size: 11px;
  }
}


/* === MP4 HERO VIDEO SUPPORT (non-invasive) === */

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0; /* same layer as hero image */
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* critical */
  display: block;
}

.hero-video {
  opacity: 1;
  transition: opacity 120ms linear;
}
.hero-video.is-fading {
  opacity: 0.001; /* not 0, keeps some decoders happy */
}

/* Mobile/Desktop video visibility */
.hero-video-mobile {
  display: block;
}

.hero-video-desktop {
  display: none;
}

@media (min-width: 768px) {
  .hero-video-mobile {
    display: none;
  }
  
  .hero-video-desktop {
    display: block;
  }
}


/* =========================
   Vision & Mission
   ========================= */

.group-vm {
  width: 100%;
  background: #fff;
}

.site-content .group-vm .group-vm-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  margin-inline: 0px auto;
  padding-inline: 0px;  
  
}

.group-vm-media {
  position: relative;
  min-height: 420px;
}

.group-vm-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.group-vm-card {
  background: #fff;
  padding: 56px 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.group-vm-title {
  margin: 0 0 18px;
  font-size: clamp(28px, 2.2vw, 44px);
  line-height: 1.1;
  font-weight: 700;
  color: #111;
}

.group-vm-text {
  max-width: 560px;
  font-size: 16px;
  line-height: 1.7;
  color: #2b2f36;
}

.group-vm-text p {
  margin: 0 0 14px;
  font-size: 1.5rem;
}

/* =========================
   Partner with Us
   ========================= */

/* =========================================================
   GROUP PARTNER — gutter-based full-bleed section
   Same logic as .overview-highlights
   ========================================================= */

.group-partner{
  --max-content: min(var(--content-width), 1300px);
  --gutter: max(0px, calc((100vw - var(--max-content)) / 2));

  background: var(--global-color-blue);
  color: #fff;
}

/* Inner aligns to content grid on the left,
   stretches to the right viewport edge */
.group-partner-inner.container{
  margin-left: var(--gutter);
  margin-right: 0;
  width: calc(100% - var(--gutter));
  max-width: none;
  background: var(--global-color-blue);
  display: flex;
  align-items: center;
  gap: clamp(32px, 5vw, 64px);
  padding: clamp(36px, 5vw, 64px) 0;
}

/* ---------- Globe ---------- */
.group-partner-globe{
  flex: 0 0 260px;
  height: 260px;
  background: url("../images/globe-white.svg")
    center / contain no-repeat;
}

/* ---------- Content box ---------- */
.group-partner-content{
  flex: 1;
  max-width: 1000px;
  padding: clamp(24px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Typography */
.group-partner-title {
    margin: 0;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
}

.group-partner-text{
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,.9);
  max-width: 760px;
}

.group-partner-text p{
  margin: 0 0 12px;
}
.group-partner-text p:last-child{
  margin-bottom: 0;
  font-size: 1.5rem;
}

/* CTA button */
.group-partner-btn{
  align-self: flex-start;
  margin-top: 8px;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 10px 16px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;

  background: #fff;
  color: var(--global-color-blue);
  text-decoration: none;
}



.group-partner-btn::after {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 6px;
    background-image: url(../images/arrow-left-blue.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
}

.fcc-children {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.site-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #2a4bff;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    padding: 0.3rem 1.4rem;
    border-radius: 0px;
    margin-top: 20px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.site-link:hover {
	color: #fff;
	
}	

.child-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 1.4rem;
    border-radius: 0;
    background: rgba(255, 255, 255, 1);
    color: #2a4bff;
    font-weight: 500;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 700;
    transition: background 0.2s ease;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px){
  .group-partner-inner.container{
    margin-left: 0;
    width: 100%;
    padding-inline: 24px;

    flex-direction: column;
    align-items: flex-start;
  }

  .group-partner-globe{
    width: 180px;
    height: 180px;
  }

  .group-partner-content{
    max-width: none;
    width: 100%;
  }
}


/* =========================
   Company Codes
   ========================= */

.group-codes {
  width: 100%;
  background: #fff;
}

.group-codes-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 54px 16px 64px;
}

.group-codes-title
 {
    text-align: center;
    margin: 0 0 30px;
    font-size: 3rem;
    font-weight: 700;
    color: #000;
}

.group-codes-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
}

.group-codes-item {
  text-align: center;
  border-left: 1px solid var(--global-color-blue);
}

.group-codes-item:first-child {
  border-left: 0;
}

.group-codes-label {
    display: block;
    margin-bottom: 6px;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.group-codes-value {
    display: block;
    font-size: 1.7rem;
    font-weight: 700;
    color: #111;
}

/* =========================
   Responsive
   ========================= */

@media (max-width: 1024px) {

  /* Vision/Mission becomes stacked */
  .group-vm-inner {
    grid-template-columns: 1fr;
  }

  .group-vm-media {
    min-height: 320px;
  }

  .group-vm-card {
    padding: 40px 20px;
  }

  /* Partner becomes stacked */
  .group-partner-inner {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 48px 16px;
  }

  .group-partner-globe {
    width: 220px;
    height: 220px;
  }

  /* Codes go to 2 columns */
  .group-codes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .group-codes-item {
    border-left: 0;
    border-top: 1px solid rgba(2, 6, 23, 0.1);
  }

  .group-codes-item:nth-child(1),
  .group-codes-item:nth-child(2) {
    border-top: 0;
  }
}

@media (max-width: 520px) {

  /* Codes go to 1 column */
  .group-codes-grid {
    grid-template-columns: 1fr;
  }

  .group-codes-item:nth-child(2) {
    border-top: 1px solid rgba(2, 6, 23, 0.1);
  }
}


@media (min-width: 1280px) and (max-width: 1600px) and (min-resolution: 140dpi) and (min-aspect-ratio: 16 / 10) {
    .product-hero .hero-text {
       padding-top: 14rem;
    }
    .product-hero .hero-title {
       font-size: 3rem;
	}
	
	.product-hero .hero-subtitle p
	{
		font-size: 1.8rem;	
	 }	 
	
	#breadcrumbs {
		    margin-bottom: 0.5rem;
	}
	
	.group-about-inner
	 {
		padding: 3rem 2rem 3rem 2rem;
	}	
	
   .group-codes-value {
      font-size: 1.2rem;
	}	
	
  .group-top-wysiwyg, .group-bullets li, .group-why-item, .group-vm-text p, .group-partner-text p
    {
    font-size: 1rem;	
	}	 
	
	.group-top-text-inner {
		padding: 1rem 0 5rem;
	}	
	
}


/* =========================
   Responsive
   ========================= */

@media (max-width: 768px) {


	.group-about-inner
	{
		    padding-inline: 16px;
	}


	  .site-content .group-vm .group-vm-inner {
			display: flex;
			flex-direction: column;
	  }

	  .group-top-text-inner {
		padding: 40px 16px 36px;
	  }

	  .group-text {
		max-width: 100%;
	  }

	  .group-text-wysiwyg {
		font-size: 15px;
	  }
  
	.product-hero .hero-text {
		
	}	
  
	 .product-hero .hero-subtitle p {
		font-size: 1.5rem;
	 }
	 
	.product-hero .hero-title {
		font-size: 3rem;
	}  
  
	 .group-codes-title, .group-partner-title, .group-vm-title, .group-why-title, .group-top-title
	 {
		font-size: 2.5rem;
		line-height: 3rem;
	} 
	
	
	.group-why-item {
		align-items: baseline;
	}	
  
  
}