/* ========== Base ========== */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #0f172a;
  background: radial-gradient(circle at top left, #f9fafb 0, #f1f5f9 40%, #e5f3ff 100%);
}

/* CSS variables for theme (logo + accent colours) */
:root {
  --gt-navy: #193B66;
  --gt-aqua: #A1D8D6;
  --gt-teal: #1E5873;
  --gt-steel: #4A7C92;

  /* Extra vibrant accents (Colorcon-style) */
  --gt-gold: #fbbf24;
  --gt-coral: #fb7185;
  --gt-plum: #7c3aed;
  --gt-mint: #22c55e;

  --gt-radius-xl: 1.5rem;
}

/* Brand colours helpers */
.text-navy { color: var(--gt-navy); }
.bg-navy { background-color: var(--gt-navy); }
.bg-aqua { background-color: var(--gt-aqua); }

/* Shared shadows */
.shadow-soft {
  box-shadow: 0 16px 40px -18px rgba(2, 12, 27, 0.2);
}
.shadow-glow {
  box-shadow: 0 18px 55px -16px rgba(25, 59, 102, 0.5);
}

/* Reveal animation for sections */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: all 0.7s cubic-bezier(.2,.65,.2,1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Active nav state */
.nav-link-active {
  color: var(--gt-navy);
  font-weight: 700;
  position: relative;
}
.nav-link-active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gt-aqua), var(--gt-gold));
}

/* Keep hero stats text from overflowing */
.hero-stat-value-small {
  font-size: 1.05rem;
  line-height: 1.2rem;
  word-break: break-word;
}

/* ========== HERO / GLOBAL SECTIONS ========== */

/* Colourful hero background overlay */
.hero-shell {
  position: relative;
  overflow: hidden;
}

.hero-shell::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 0% 0%, rgba(161, 216, 214, 0.35), transparent 55%),
    radial-gradient(circle at 100% 10%, rgba(124, 58, 237, 0.22), transparent 55%),
    radial-gradient(circle at 50% 100%, rgba(251, 191, 36, 0.20), transparent 60%);
  opacity: 0.9;
  z-index: -1;
}

/* Panel style for hero card */
.hero-panel {
  border-radius: var(--gt-radius-xl);
  background: linear-gradient(145deg, #ffffff, #f9fafb);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 24px 60px -26px rgba(15, 23, 42, 0.55);
}

/* Section colourful band */
.section-band {
  border-radius: 1.5rem;
  background: linear-gradient(135deg, #0f172a, var(--gt-navy), var(--gt-teal));
  color: #e5f3ff;
}

/* Colourful chips / pills */
.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pill-badge--aqua {
  background: rgba(161, 216, 214, 0.18);
  color: var(--gt-teal);
}
.pill-badge--gold {
  background: rgba(251, 191, 36, 0.16);
  color: #92400e;
}
.pill-badge--coral {
  background: rgba(251, 113, 133, 0.16);
  color: #9f1239;
}

/* Feature cards with colourful border accents */
.feature-card {
  position: relative;
  border-radius: 1.25rem;
  padding: 1.5rem;
  background: linear-gradient(145deg, #ffffff, #f9fafb);
  border: 1px solid #e2e8f0;
  box-shadow: 0 18px 45px -24px rgba(15, 23, 42, 0.3);
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset-inline: -30%;
  top: -40%;
  height: 60%;
  background: radial-gradient(circle at 10% 0%, rgba(161, 216, 214, .4), transparent 55%);
  opacity: 0.75;
  z-index: 0;
}

.feature-card__body {
  position: relative;
  z-index: 1;
}

/* Gradient border card variant */
.feature-card--gradient-border {
  border: 1px solid transparent;
  background:
    linear-gradient(#ffffff, #f9fafb) padding-box,
    linear-gradient(135deg, var(--gt-aqua), var(--gt-plum)) border-box;
}

/* Buttons (for non-Tailwind areas) */
.btn-primary-gradient {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  background-image: linear-gradient(135deg, var(--gt-aqua), var(--gt-gold));
  color: #0f172a;
  border: none;
  box-shadow: 0 12px 30px -18px rgba(15, 23, 42, 0.7);
  transition: transform 0.16s ease, box-shadow 0.16s ease, background-position 0.25s ease;
  background-size: 150% 150%;
}

.btn-primary-gradient:hover {
  transform: translateY(-1px);
  background-position: 100% 0;
  box-shadow: 0 18px 45px -20px rgba(15, 23, 42, 0.9);
}

.btn-outline-soft {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.8);
  color: var(--gt-navy);
  transition: background 0.16s ease, color 0.16s ease, transform 0.16s ease;
}

.btn-outline-soft:hover {
  background: rgba(15, 23, 42, 0.9);
  color: #f9fafb;
  transform: translateY(-1px);
}

/* Statistic counters */
.hero-counter {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gt-navy);
}

/* Tiny label above counters */
.hero-counter-label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}

/* Section titles */
.section-title-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #64748b;
  font-weight: 600;
}

.section-title-main {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--gt-navy);
}

/* Steps row style (bottom of home page) */
.steps-ribbon {
  border-radius: 1.25rem;
  background: linear-gradient(90deg, var(--gt-aqua), #e0f2fe, #fee2e2);
  border: 1px solid rgba(148, 163, 184, 0.25);
}

/* Footer subtle gradient */
footer {
  background: linear-gradient(180deg, #ffffff 0, #f8fafc 40%, #e5e7eb 100%);
}
/* -------------------------------------
   PRODUCT SECTION FIXED COLOURFUL BACKGROUND
--------------------------------------*/
/* ------------------------------------------------------
   PRODUCT SECTION – SMALLER IMAGES + HOVER EFFECTS
------------------------------------------------------ */

.product-section {
  padding: 70px 0;
  background:
    linear-gradient(180deg, #648dec 0%, #385986 40%, #193b66 130%);
}
.product-section .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* Smaller product images */
.product-img-grid {
  display: grid;
  grid-template-columns: repeat(2, 180px);
  gap: 20px;
}

.product-img-grid .product-thumb {
  width: 180px;
  height: 180px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #d9e3f0;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

/* Hover effect */
.product-img-grid .product-thumb:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 10px 22px rgba(15, 76, 129, 0.20);
  border-color: #bcd6f5;
}

.product-img-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Right-side text spacing */
.product-section h2 {
  font-size: 26px;
  line-height: 1.3;
  color: #e0f3ff;
  font-weight: 800;
}

.product-section p {
  font-size: 14px;
  color: #ccdde7;
  line-height: 1.7;
}

.product-section ul li {
  margin-bottom: 6px;
  font-size: 14px;
  color: #f0f0f0 !important;
}

@media (max-width: 900px) {
  .product-section .inner {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .product-img-grid {
    grid-template-columns: repeat(4, 70px);
  }

  .product-img-grid .product-thumb {
    width: 70px;
    height: 70px;
    border-radius: 14px;
  }
}


.bg-gradient-to-b{
  background-color: #193B66;
  padding-bottom: 1rem;
  padding-top: 5rem;
}

/* SECTION PADDING */
.section-padding {
  padding-top: 60px;
  padding-bottom: 60px;
}

/* KEY SERVICE LINES SECTION */
.services-section {
  padding: 72px 0;
  background: #ffffff;
  font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.services-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.services-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.services-title {
  font-size: 28px;
  line-height: 1.25;
  font-weight: 800;
  color: #193b66;
  margin-bottom: 8px;
}

.services-subtitle {
  font-size: 15px;
  line-height: 1.7;
  color: #44566c;
  max-width: 640px;
}

.services-link {
  font-size: 13px;
  font-weight: 600;
  color: #0aa6ce;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.services-link:hover {
  text-decoration: underline;
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* Card */
.service-card {
  background: #f7f9fc;
  border-radius: 20px;
  padding: 22px 20px 24px;
  border: 1px solid #e2e8f4;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 32px rgba(15, 76, 129, 0.18);
  border-color: #c4d3f1;
}

/* Card content */
.service-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  background: #e7f4ff;
  color: #0b73b8;
  margin-bottom: 10px;
}

.service-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #193b66;
  margin-bottom: 8px;
}

.service-card-text {
  font-size: 13px;
  line-height: 1.6;
  color: #4a5c73;
  margin-bottom: 12px;
}

/* Bullet list */
.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-list li {
  position: relative;
  padding-left: 16px;
  font-size: 13px;
  line-height: 1.5;
  color: #4a5c73;
  margin-bottom: 4px;
}

.service-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #0aa6ce;
  font-weight: 700;
}

/* Text Colors */
.service-card h3 {
  color: #193b66; /* your brand blue */
  font-size: 1rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.service-card p {
  color: #44566c;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* HOVER EFFECT */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 80, 160, 0.18);
  border-color: #c6d4ea;
}

/* Optional soft highlight on hover */
.service-card:hover h3 {
  color: #0aa6ce;
}


/* --- QbD Section --- */
.qbd-section {
  padding: 2rem 0;
  background: linear-gradient(to bottom, #f7f9fc, #f3f6fb);
  font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.qbd-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

/* Heading + text */
.qbd-kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  font-weight: 600;
  color: #0aa6ce;
  margin-bottom: 10px;
}

.qbd-title {
  font-size: 30px;
  line-height: 1.25;
  font-weight: 800;
  color: #193b66;
  margin-bottom: 16px;
}

.qbd-lead {
  font-size: 15px;
  line-height: 1.7;
  color: #44566c;
  max-width: 800px;
  margin: 0 auto;
}

.qbd-lead + .qbd-lead {
  margin-top: 8px;
}

/* Cards grid */
.qbd-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  text-align: left;
}

@media (max-width: 1024px) {
  .qbd-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .qbd-grid {
    grid-template-columns: 1fr;
  }
}

/* Individual card */
.qbd-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 18px 20px;
  border: 1px solid #e1e7f3;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.qbd-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(15, 76, 129, 0.18);
  border-color: #c4d3f1;
}

/* Card text */
.qbd-card-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #8a9bb5;
  margin-bottom: 4px;
}

.qbd-card-title {
  font-size: 15px;
  font-weight: 700;
  color: #193b66;
  margin-bottom: 6px;
}

.qbd-card-text {
  font-size: 13px;
  line-height: 1.6;
  color: #4a5c73;
}
/* --------------------------------------------
   COLORFUL FEATURE CARDS (MODERN UI)
--------------------------------------------- */
.colorful-cards-section {
  padding: 72px 0;
  background: #ffffff;
}

.colorful-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

@media(max-width: 960px) {
  .colorful-cards {
    grid-template-columns: 1fr;
  }
}

/* CARD BASE */
.color-card {
  padding: 32px 26px;
  border-radius: 22px;
  background: #ffffff;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
  border: none;
  position: relative;
  overflow: hidden;
  transition: all .35s ease;
}

/* Hover Lift + Glow */
.color-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 34px rgba(0,0,0,0.18);
}

/* Gradient overlays — 3 different color themes */
.card-blue {
  background: linear-gradient(135deg, #1f3b73 0%, #275db8 100%);
}

.card-green {
  background: linear-gradient(135deg, #0f8f6f 0%, #19c39b 100%);
}

.card-purple {
  background: linear-gradient(135deg, #5a2ab3 0%, #8e4dff 100%);
}

/* TEXT */
.color-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #ffffff;
}

.color-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #eaf1ff;
}

/* "Learn more" link */
.color-card a {
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  margin-top: 14px;
  display: inline-block;
  text-decoration: none;
}

.color-card a:hover {
  text-decoration: underline;
}
