/* General Overrides */
.training-for-organisations-new,
.partner-pricing-new,
.closed-cohorts-new,
.aim-access-new,
.tailored-learning-solutions-new,
.tailored-learning-solutions-new,
.public-sector,
#subnav {
    background-color: #f4f4f4;
}
.training-for-organisations-new  .footer-top,
.partner-pricing-new  .footer-top,
.closed-cohorts-new  .footer-top,
.aim-access-new  .footer-top,
.public-sector .footer-top,
.tailored-learning-solutions-new .footer-top,
.node-type-course .footer-top,
{
        background-color: #ffffff !important;
}
.training-for-organisations-new .white a {
    color: #00c0bc;
}
.training-for-organisations-new .white a:hover,
.training-for-organisations-new .white a:focus {
    color: #333333;
}
/* Gradient Icons */
.icon-gradient {
  background: linear-gradient(135deg, #00c0af, #0000cc, #00c0af);
  background-size: 200% 200%;
  animation: gradientShift 4s ease-in-out infinite;
}
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.link-animate {
  text-decoration: none;
  position: relative;
}
.link-animate::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: currentColor;
  transition: width 0.3s ease;
}
.link-animate:hover::after {
  width: 100%;
}
.link-animate .arrow {
  display: inline-block;
  margin-left: 4px;
  transition: transform 0.3s ease;
}
.link-animate:hover .arrow {
  transform: translateX(4px);
}
/* Logo Grid */
.logo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 7.5px;
    /* border: 1px solid #e0e0e0; */
    border-radius: 10px;
    overflow: hidden;
    background-color: #f4f4f4;
}
@media (max-width: 768px) {
  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  background-color: #ffffff;
  filter: grayscale(100%);
  opacity: 0.75;
  transition: filter 0.4s ease;
  cursor: default;
}
.logo-item:hover {
  filter: grayscale(0%);
}
.logo-item img {
  width: 150px;
  height: 50px;
  object-fit: contain;
}
/* Nav Pills */
.nav-pills .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.15);
}
.nav-pills .nav-link .text {
  position: relative;
  padding-bottom: 2px;
}
.nav-pills .nav-link .text::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: currentColor;
  transition: width 0.3s ease;
}
.nav-pills .nav-link:hover .text::after {
  width: 100%;
}
/* Stats Grid */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin: 0 auto;
}
}
@media (max-width: 900px) {
  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .stat-grid {
    grid-template-columns: 1fr;
  }
}
.stat-card {
  font-size: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #00c0af, #0000cc);
  border-radius: 10px;
  padding: 2em 1.5em;
  aspect-ratio: unset;
  text-align: center;
}
.stat-value {
  display: flex;
  align-items: baseline;
  line-height: 1;
  margin-bottom: 0.75em;
}
.stat-number {
  font-size: 3.25em;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.05em;
}
.stat-symbol {
  font-size: 1.75em;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  margin-left: 0.25em;
}
.stat-label {
  font-size: 0.9em;
  color: rgba(255,255,255,0.85);
  max-width: 200px;
  line-height: 1.6;
  margin-bottom: 0.75em;
}
.stat-source {
  font-size: 0.7em;
  color: rgba(255,255,255,0.5);
  font-style: italic;
}
/* Stat Grid 2x2 */
.stat-grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (max-width: 600px) {
  .stat-grid-2x2 {
    grid-template-columns: 1fr;
  }
}
.stat-grid-2x2 .stat-card {
  font-size: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 2px solid #00c0af;
  border-radius: 10px;
  padding: 2em 1.5em;
  text-align: center;
}
.stat-grid-2x2 .stat-value {
  display: flex;
  align-items: baseline;
  line-height: 1;
  margin-bottom: 0.75em;
}
.stat-grid-2x2 .stat-number {
  font-size: 3.25em;
  font-weight: 700;
  color: #00c0af;
  letter-spacing: -0.05em;
}
.stat-grid-2x2 .stat-symbol {
  font-size: 1.75em;
  font-weight: 400;
  color: #00c0af;
  margin-left: 0.15em;
}
.stat-grid-2x2 .stat-label {
  font-size: 0.8em;
  color: #555;
  max-width: 240px;
  line-height: 1.6;
}
/* Comparison Table */
.solution-item .comparison-table {
  font-size: 16px;
  width: 100%;
  border-collapse: collapse !important;
}
.solution-item .comparison-table thead th {
  background: #00c0af !important;
  color: #ffffff !important;
  font-family: IBM Plex Sans, sans-serif !important;
  font-weight: 500 !important;
  padding: 1em 1.25em;
  text-align: center !important;
  border: none !important;
}
.solution-item .comparison-table .group-header th {
  background-color: #d9d9d9! important;
  color: #333333 !important;
  font-family: IBM Plex Sans, sans-serif !important;
  font-weight: 500 !important;
  font-size: 1em;
  text-transform: none !important;
  letter-spacing: 0.08em;
  padding: 0.6em 1.25em;
  border: none !important;
  border-top: 2px solid #e0e0e0 !important;
  text-align: center !important;
}
.solution-item .comparison-table tbody tr td,
.solution-item .comparison-table tbody tr th {
  padding: 0.85em 1.25em;
  border: none !important;
  border-bottom: 1px solid #f0f0f0 !important;
  vertical-align: middle;
}
.solution-item .comparison-table tbody tr th {
  font-weight: 500;
  color: #555 !important;
  white-space: nowrap;
  background: transparent !important;
}
.solution-item .comparison-table tbody tr td {
  text-align: center !important;
  color: #00c0af !important;
  font-size: 1.1em;
  font-weight: 700;
  background: transparent !important;
}
.solution-item .comparison-table tbody tr td.empty {
  color: #e0e0e0 !important;
}
.table-cta-strip {
  display: flex;
  border-top: 2px solid #00c0af;
  margin-top: 0;
}
.table-cta-strip .cta-spacer {
  flex: 0 0 220px;
}
.table-cta-strip .cta-cell {
  flex: 1;
  text-align: center;
  padding: 1rem 1.25rem;
}
tr:nth-of-type(odd) {
    background: #e8e8e8 !important;
}
/* Simple Comparison Table */
.simple-compare-table {
  width: 100%;
  border-collapse: collapse !important;
  font-size: 16px;
}
.simple-compare-table thead th {
  background: #00c0af !important;
  color: #ffffff !important;
  font-weight: 500;
  padding: 0.75em 1.25em;
  text-align: left !important;
  border: none !important;
  width: 50%;
}
.simple-compare-table tbody td {
  padding: 0.75em 1.25em;
  border: none !important;
  border-bottom: 1px solid #f0f0f0 !important;
  vertical-align: top;
  color: #555 !important;
  line-height: 1.6;
  background: transparent !important;
}
.simple-compare-table tbody tr:last-child td {
  border-bottom: none !important;
}
.simple-compare-table tbody tr:nth-child(odd) td {
  background-color: #fafafa !important;
}
/* CTA Links */
.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #00c0af;
  text-decoration: none;
  font-size: 0.875em;
  font-weight: 500;
  position: relative;
  padding-bottom: 2px;
}
.cta-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: currentColor;
  transition: width 0.3s ease;
}
.cta-link:hover::after {
  width: 100%;
}
.cta-link .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}
.cta-link:hover .arrow {
  transform: translateX(4px);
}
/* Stacked Copy Blocks */
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.copy-block {
  padding: 2.5rem 0;
  border-bottom: 1px solid #f0f0f0;
}
.copy-block:last-child {
  border-bottom: none;
}
.copy-icon-wrap {
  background: linear-gradient(135deg, #00c0af, #0000cc);
  background-size: 200% 200%;
  animation: gradientShift 4s ease-in-out infinite;
  padding: 15px;
  border-radius: 10px;
  width: 200px;
  height: 200px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.copy-icon-wrap .material-icons-outlined {
  font-size: 40px;
  color: #ffffff;
}
.copy-block h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.25;
}
.copy-block p {
  color: #555;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.copy-block p:last-child {
  margin-bottom: 0;
}
.copy-block strong {
  color: #00c0af;
  font-weight: 500;
}
.training-for-organisations-new .footer-top .block-title h2,
.partner-pricing-new .footer-top .block-title h2,
.closed-cohorts-new .footer-top .block-title h2,
.aim-access-new .footer-top .block-title h2,
.tailored-learning-solutions-new .footer-top .block-title h2,
.public-sector .footer-top .block-title h2 {
    font-size: 40px;
    font-weight: 600;
    position: relative;
    text-transform: none;
}
/* Explore Table Nav */
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.explore-intro p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.explore-intro strong {
  color: #00c0af;
  font-weight: 500;
}
.options-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 900px) {
  .options-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .options-grid {
    grid-template-columns: 1fr;
  }
}
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.explore-intro p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.explore-intro strong {
  color: #00c0af;
  font-weight: 500;
}
.options-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 900px) {
  .options-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .options-grid {
    grid-template-columns: 1fr;
  }
}
/* Option Card */
.option-card {
  font-size: 18px;
  border: 0.5px solid #e0e0e0;
  border-radius: 10px;
  padding: 1.5em;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}
}
.option-card:hover {
  border-color: #00c0af;
  box-shadow: 0 4px 16px rgba(0,192,175,0.1);
}
.option-card-icon {
  background: linear-gradient(135deg, #00c0af, #0000cc);
  background-size: 200% 200%;
  animation: gradientShift 4s ease-in-out infinite;
  padding: 10px;
  border-radius: 8px;
  width: 100px;
  height: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1em;
}
.option-card-icon .material-icons-outlined {
  font-size: 50px;
  color: #ffffff;
}
.option-card h3 {
  font-size: 1em;
  font-weight: 600;
  margin-bottom: 0.5em;
  color: #333;
}
.option-card p {
  font-size: 0.875em;
  color: #666;
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 1em;
}
.option-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #00c0af;
  text-decoration: none;
  font-size: 0.875em;
  font-weight: 500;
  position: relative;
  padding-bottom: 2px;
  margin-top: auto;
}
.option-card .card-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: currentColor;
  transition: width 0.3s ease;
}
.option-card .card-link:hover::after {
  width: 100%;
}
.option-card .card-link .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}
.option-card .card-link:hover .arrow {
  transform: translateX(4px);
}
.explore-outro {
  color: #555;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.explore-outro strong {
  color: #00c0af;
  font-weight: 500;
}
/* TLS Cards */
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.tailored-section {
  background-color: #f5f5f5;
  padding: 3rem 0;
}
.tailored-section h2 {
  margin-bottom: 0.5rem;
}
.tailored-section .section-intro {
  color: #555;
  margin-bottom: 2rem;
}
.tailored-card {
  font-size: 16px;
  background: #ffffff;
  border: 0.5px solid #e0e0e0;
  border-radius: 10px;
  padding: 1.5em;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  text-align:left;
}
.tailored-card:hover {
  border-color: #00c0af;
  box-shadow: 0 4px 16px rgba(0,192,175,0.1);
}
.tailored-card-icon {
  background: linear-gradient(135deg, #00c0af, #0000cc);
  background-size: 200% 200%;
  animation: gradientShift 4s ease-in-out infinite;
  padding: 12px;
  border-radius: 10px;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1em;
}
.tailored-card-icon .material-icons-outlined {
  font-size: 28px;
  color: #ffffff;
}
.tailored-card .step-number {
  font-size: 0.75em;
  font-weight: 600;
  color: #00c0af;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.25em;
}
.tailored-card h3 {
  font-size: 1.1em;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5em;
}
.tailored-card p {
  font-size: 0.875em;
  color: #666;
  line-height: 1.7;
  margin-bottom: 0;
}
.tailored-outro {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e0e0e0;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.8;
}
.tailored-section .row {
  display: flex !important;
  flex-wrap: wrap !important;
}

.tailored-section .col-12 {
  display: flex !important;
}
/* Campus Grid */
.campus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  justify-content: center;
}
@media (max-width: 600px) {
  .campus-grid {
    grid-template-columns: 1fr;
  }
}
.campus-card {
  border: 0.5px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.campus-card:hover {
  border-color: #00c0af;
  box-shadow: 0 4px 16px rgba(0,192,175,0.1);
}
.campus-card iframe {
  width: 100%;
  height: 200px;
  border: none;
  display: block;
}
.campus-card-body {
  font-size: 16px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.campus-card-body h3 {
  font-size: 1em;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.25em;
}
.campus-card-body p {
  font-size: 0.875em;
  color: #666;
  line-height: 1.5;
  margin-bottom: 0.75em;
  flex-grow: 1;
}
.campus-card-body .card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #00c0af;
  text-decoration: none;
  font-size: 0.875em;
  font-weight: 500;
  position: relative;
  padding-bottom: 2px;
}
.campus-card-body .card-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: currentColor;
  transition: width 0.3s ease;
}
.campus-card-body .card-link:hover::after {
  width: 100%;
}
.campus-card-body .card-link .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}
.campus-card-body .card-link:hover .arrow {
  transform: translateX(4px);
}