/*!
Theme Name: Custom Theme
Theme URI: 
Author: Vernacular
Author URI: https://vernacular.com.sg
Description: Custom NRP Theme
Version: 1.0
*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  line-height: 1.6;
  color: #343a40;
  background-color: #fff;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul,
ol {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
html {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

body {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #343a40;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6,
p, a, span, li, button, input, textarea, select,
blockquote, cite, label {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: #343a40;
}

h1 {
  font-size: 2.5rem;
  font-weight: 900;
}

h2 {
  font-size: 2rem;
  font-weight: 700;
}

h3 {
  font-size: 1.75rem;
  font-weight: 500;
}

h4 {
  font-size: 1.5rem;
  font-weight: 500;
}

h5 {
  font-size: 1.25rem;
  font-weight: 400;
}

h6 {
  font-size: 1rem;
  font-weight: 400;
}

p {
  margin-bottom: 1rem;
  font-weight: 400;
}

a {
  color: #EA0029;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  font-weight: 500;
}
a:hover {
  color: rgb(183, 0, 32.0641025641);
  text-decoration: underline;
}

blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  border-left: 4px solid #EA0029;
  background-color: #f8f9fa;
  font-style: italic;
  font-weight: 300;
}

code {
  font-family: monospace;
  background-color: #f8f9fa;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-weight: 400;
}

pre {
  margin: 1rem 0;
  padding: 1rem;
  background-color: #f8f9fa;
  border-radius: 4px;
  overflow-x: auto;
}
pre code {
  background-color: transparent;
  padding: 0;
}

.text-thin {
  font-weight: 100;
}

.text-light {
  font-weight: 300;
}

.text-regular {
  font-weight: 400;
}

.text-medium {
  font-weight: 500;
}

.text-bold {
  font-weight: 700;
}

.text-black {
  font-weight: 900;
}

@keyframes slideInFromLeft {
  0% {
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideInFromRight {
  0% {
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes slideUp {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.animate-slide-left, body.home .hero-section .hero-tagline {
  animation: slideInFromLeft 0.8s ease-out forwards;
  opacity: 0;
}
.animate-slide-right, body.home .hero-section .hero-body-text {
  animation: slideInFromRight 0.8s ease-out forwards;
  opacity: 0;
}
.animate-fade {
  animation: fadeIn 0.8s ease-out forwards;
  opacity: 0;
}
.animate-slide-up {
  animation: slideUp 0.8s ease-out forwards;
  opacity: 0;
}
.animate-delay-1, body.home .hero-section .hero-body-text {
  animation-delay: 0.2s;
}
.animate-delay-2 {
  animation-delay: 0.4s;
}
.animate-delay-3 {
  animation-delay: 0.6s;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem;
}

.nrp-logo {
  height: 56px;
  width: auto;
  display: block;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  z-index: 1000;
}
.menu-toggle .screen-reader-text {
  display: none;
}

.hamburger {
  display: block;
  position: relative;
  width: 24px;
  height: 2px;
  background: #393e41;
  transition: all 0.3s ease-in-out;
}
.hamburger::before, .hamburger::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background: #393e41;
  transition: all 0.3s ease-in-out;
}
.hamburger::before {
  transform: translateY(-8px);
}
.hamburger::after {
  transform: translateY(8px);
}

.menu-toggle[aria-expanded=true] .hamburger {
  background: transparent;
}
.menu-toggle[aria-expanded=true] .hamburger::before {
  transform: rotate(45deg);
}
.menu-toggle[aria-expanded=true] .hamburger::after {
  transform: rotate(-45deg);
}

.main-navigation {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

@media (min-width: 1180px) {
  #primary-menu.menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  #primary-menu.menu li a {
    color: #393e41;
    font-size: 1rem;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.2s;
  }
  #primary-menu.menu li a:hover {
    color: #d7263d;
  }
  .header-social {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .mobile-social {
    display: none;
  }
  .social-icon svg {
    display: block;
    width: 24px;
    height: 24px;
    fill: red;
    transition: fill 0.2s;
  }
  .social-icon:hover svg {
    fill: #d7263d !important;
  }
  /* Dropdown styles for multi-level navigation */
  /* Support for third-level dropdowns */
}
@media (min-width: 1180px) and (max-width: 1024px) {
  .nav-container {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }
  .main-navigation {
    justify-content: flex-start;
    width: 100%;
  }
  #primary-menu.menu {
    gap: 1.25rem;
  }
  .header-social {
    margin-top: 1rem;
  }
}
@media (min-width: 1180px) {
  #primary-menu.menu li {
    position: relative;
  }
  #primary-menu.menu li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-radius: 0 0 6px 6px;
    padding: 0.5rem 0;
    z-index: 1000;
  }
  #primary-menu.menu li:hover > ul,
  #primary-menu.menu li:focus-within > ul {
    display: block;
  }
  #primary-menu.menu li ul li {
    width: 100%;
  }
  #primary-menu.menu li ul li a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #393e41;
    font-size: 1rem;
    font-weight: 400;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
  }
  #primary-menu.menu li ul li a:hover {
    background: #f5f5f5;
    color: #d7263d;
  }
  #primary-menu.menu li ul li ul {
    left: 100%;
    top: 0;
    border-radius: 0 6px 6px 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  }
  #primary-menu.menu li ul li:hover > ul,
  #primary-menu.menu li ul li:focus-within > ul {
    display: block;
  }
}
/* Mobile Navigation Styles */
@media (max-width: 1179px) {
  .menu-toggle {
    display: block;
    margin-left: auto;
  }
  .main-navigation {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #fff;
    padding: 4rem 2rem 2rem;
    transition: right 0.3s ease-in-out;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    justify-content: flex-start;
  }
  .main-navigation.toggled {
    right: 0;
  }
  ul.sub-menu {
    box-shadow: none !important;
  }
  /* Flatten all menu items to same level */
  #primary-menu.menu,
  #primary-menu.menu ul,
  #primary-menu.menu ul ul {
    display: flex !important;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    position: static !important;
    width: 100%;
    box-shadow: none;
    background: none;
    border-radius: 0;
  }
  #primary-menu.menu li,
  #primary-menu.menu ul li,
  #primary-menu.menu ul ul li {
    width: 100%;
    position: static !important;
    margin: 0;
    padding: 0;
  }
  /* Override all menu item styles */
  #primary-menu.menu li a,
  #primary-menu.menu ul li a,
  #primary-menu.menu ul ul li a {
    display: block;
    padding: 0.2rem 0 !important;
    font-size: 1rem !important;
    color: #393e41 !important;
    font-weight: 400 !important;
    text-decoration: none !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
    transition: color 0.2s;
    background: none !important;
    white-space: normal !important;
  }
  #primary-menu.menu li a:hover,
  #primary-menu.menu ul li a:hover,
  #primary-menu.menu ul ul li a:hover {
    color: #d7263d !important;
    background: none !important;
  }
  /* Override any existing dropdown styles */
  #primary-menu.menu li:hover > ul,
  #primary-menu.menu li:focus-within > ul,
  #primary-menu.menu li ul li:hover > ul,
  #primary-menu.menu li ul li:focus-within > ul {
    display: flex !important;
    position: static !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  /* Remove any special styling for submenu items */
  #primary-menu.menu li ul li a,
  #primary-menu.menu li ul li ul li a {
    padding: 0.2rem 0 !important;
    font-size: 1rem !important;
    color: #393e41 !important;
    background: none !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
  }
  /* Hide desktop social icons */
  .header-social {
    display: none;
  }
  /* Show mobile social icons */
  .mobile-social {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    gap: 1.5rem;
  }
  .mobile-social .social-icon img {
    width: 24px;
    height: 24px;
  }
  /* Overlay when menu is open */
  .menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
  }
  .menu-overlay.active {
    display: block;
  }
}
html, body {
  height: 100%;
  min-height: 100%;
}

#page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

#content {
  flex: 1 0 auto;
}

.site-footer {
  background: linear-gradient(135deg, #F1F1F1 0%, #c3c3c3 100%);
  color: #000000;
  padding: 2.5rem 0 1.5rem 0;
  font-family: "Inter", sans-serif;
  flex-shrink: 0;
  margin-top: 50px;
}
.site-footer a {
  color: #000000;
}
.site-footer .footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 auto;
  padding: 0 2rem;
  flex-wrap: wrap;
}
.site-footer .footer-sitemap {
  flex: 2;
  min-width: fit-content;
}
.site-footer .footer-sitemap h3 {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
  color: #000000;
  opacity: 0.3;
}
.site-footer .footer-sitemap .footer-links {
  column-count: 3;
  column-gap: 2rem;
  column-width: 180px;
  max-width: 820px;
}
.site-footer .footer-sitemap .footer-links ul {
  break-inside: auto;
  margin: 0 0 1rem 0;
  padding: 0;
  list-style: none;
}
.site-footer .footer-sitemap .footer-links li {
  margin-bottom: 0.5rem;
}
.site-footer .footer-brand {
  flex: 1;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2rem;
}
.site-footer .footer-brand .footer-logo {
  width: 260px;
  margin-bottom: 0;
}
.site-footer .footer-brand .footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.site-footer .footer-brand .footer-social span {
  font-size: 1.1rem;
  font-weight: 500;
  margin-right: 0;
}
.site-footer .footer-brand .footer-social a {
  display: inline-block;
}
.site-footer .footer-brand .footer-social a img {
  width: 20px;
  height: 20px;
  transition: opacity 0.2s;
}
.site-footer .footer-brand .footer-social a:hover img {
  opacity: 0.7;
}
.site-footer .footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.75rem;
  opacity: 0.85;
  padding: 0 20px;
}
.site-footer .footer-bottom a {
  color: #000000;
  text-decoration: none;
  margin: 0 0.25rem;
}
.site-footer .footer-bottom a:hover {
  opacity: 1;
  text-decoration: underline;
}

@media (max-width: 900px) {
  .site-footer .footer-inner {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .site-footer .footer-brand {
    align-items: center;
  }
  .site-footer .footer-links {
    column-count: 1;
  }
}
html {
  scroll-behavior: smooth;
}

.primary-color {
  color: #EA0029;
}

.black-text {
  color: black;
}

p {
  margin: 0 0 0.5rem 0;
}

.margin-top-10 {
  margin-top: 10px;
}

.margin-top-20 {
  margin-top: 20px;
}

.margin-top-30 {
  margin-top: 30px;
}

.content ul li {
  list-style-type: disc;
  margin-left: 18px;
  padding: 0.3rem 0;
}
.content ul li ul li {
  list-style-type: circle;
  margin-left: 18px;
  padding: 0.5rem 0;
}
.content ol li {
  list-style-type: decimal;
  margin-left: 18px;
  padding: 0.5rem 0;
}
.content ol li ul li {
  list-style-type: lower-alpha;
  margin-left: 18px;
  padding: 0.5rem 0;
}

.divider-line {
  width: 100%;
  height: 1px;
  background: #ddd;
  margin: 50px auto;
}

.diagonal-bg {
  clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
  background-color: #EA0029;
  width: max-content;
  padding: 5px 40px;
  color: white;
}

.diagonal-bg-sm, .diagonal-bg-md {
  clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
  background-color: #EA0029;
  width: max-content;
  padding: 2px 14px;
  color: white;
  line-height: 1.2rem;
  font-size: 0.9rem;
}
.diagonal-bg-sm:hover, .diagonal-bg-md:hover {
  background-color: grey;
  color: white;
  text-decoration: none;
}

.diagonal-bg-md {
  padding: 10px 40px;
  font-size: 1.1rem;
  font-weight: 700;
}

#preloader {
  position: fixed;
  z-index: 9999;
  background: #fff;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s;
}

#preloader .spinner {
  width: 48px;
  height: 48px;
  border: 5px solid #eee;
  border-top: 5px solid #c00;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
body.preload-complete #preloader {
  opacity: 0;
  pointer-events: none;
}

main {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 50px;
  width: 100%;
}
@media (max-width: 900px) {
  main {
    padding: 0 20px;
  }
}

h1.page-title {
  margin: 50px auto;
  text-align: center;
  font-weight: 700;
}

h2.section-header {
  font-size: 24px;
  font-weight: 700;
  margin: 50px auto 10px auto;
  text-align: center;
  color: #EA0029;
}

.svg-tooltip {
  position: absolute;
  background: #222;
  color: #fff;
  padding: 8px 14px;
  border-radius: 4px;
  font-size: 15px;
  pointer-events: none;
  white-space: normal;
  max-width: 220px;
  z-index: 1000;
  opacity: 0.95;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: opacity 0.2s;
  word-break: break-word;
}

.two-col-layout {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  max-width: 1600px;
  margin: 0 auto;
  padding: 32px 0;
}
@media (max-width: 767px) {
  .two-col-layout {
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }
}
.two-col-layout .sidebar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: sticky;
  top: 20px;
  height: fit-content;
  padding-right: 80px;
}
@media (max-width: 767px) {
  .two-col-layout .sidebar {
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }
}
@media (max-width: 767px) {
  .two-col-layout nav {
    justify-content: center;
    width: max-content;
    margin: 0 auto;
  }
}
.two-col-layout .content {
  flex: 1;
  min-width: 0;
}
.two-col-layout .nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}
.two-col-layout .nav li {
  font-size: 1rem;
  line-height: 1.3rem;
  color: #222;
  margin-bottom: 16px;
  cursor: pointer;
  transition: color 0.2s;
}
.two-col-layout .nav li a {
  color: black;
  text-decoration: none;
  transition: color 0.3s ease, font-weight 0.3s ease;
}
.two-col-layout .nav li a.active {
  color: #EA0029;
  font-weight: 700;
  position: relative;
}
.two-col-layout .nav li a.active::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 16px;
  background-color: #EA0029;
  border-radius: 2px;
}
.two-col-layout .nav li a:hover {
  color: #EA0029;
}
.two-col-layout .card {
  width: 120px;
  height: 120px;
  background: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
}
.two-col-layout .card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #222;
  text-align: center;
}
.two-col-layout .nav ul {
  display: block;
}
.two-col-layout .nav-dropdown {
  display: none;
  width: 100%;
  margin: 0 auto 20px auto;
  font-size: 1.1rem;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: white;
  color: #333;
  min-height: 40px;
  text-align: center;
}
.two-col-layout .nav-dropdown option {
  color: #333;
  background: white;
  padding: 8px;
  display: block;
}
.two-col-layout .nav-dropdown:focus {
  outline: 2px solid #EA0029;
  outline-offset: 2px;
}
@media (max-width: 767px) {
  .two-col-layout .nav-dropdown {
    display: block;
  }
}
@media (max-width: 1024px) {
  .two-col-layout {
    gap: 30px;
  }
  .two-col-layout .sidebar {
    min-width: 120px;
  }
}
@media (max-width: 768px) {
  .two-col-layout {
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
  }
  .two-col-layout .sidebar {
    position: static;
    width: 100%;
    min-width: auto;
    order: 1;
  }
  .two-col-layout .content {
    order: 2;
    width: 100%;
  }
  .two-col-layout .nav ul {
    display: none;
  }
  .two-col-layout .card {
    margin: 16px auto 0 auto;
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 480px) {
  .two-col-layout {
    padding: 16px 0;
  }
  .two-col-layout .card {
    width: 80px;
    height: 80px;
  }
  .two-col-layout .card-title {
    font-size: 1rem;
  }
}

.focus-areas {
  margin-top: 32px;
}
.focus-areas h2 {
  text-align: left;
}
.focus-areas .section-header {
  margin-bottom: 32px;
  font-size: 1.4rem;
  font-weight: 700;
}
.focus-areas .focus-area {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 32px;
}
@media (max-width: 700px) {
  .focus-areas .focus-area {
    flex-direction: column;
    gap: 16px;
  }
}
.focus-areas .focus-area-image img {
  width: 240px;
  height: 140px;
  object-fit: cover;
  display: block;
}
@media (max-width: 700px) {
  .focus-areas .focus-area-image img {
    width: 100%;
    height: auto;
  }
}
.focus-areas .focus-area-content {
  flex: 1;
}
.focus-areas .focus-area-title {
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.focus-areas .focus-area-desc {
  margin-bottom: 10px;
}
.focus-areas .focus-area-divider {
  border: none;
  border-top: 1px solid #c7c7c7;
  margin: 24px 0;
}

.project-highlights {
  margin-top: 32px;
}
.project-highlights h2 {
  text-align: left;
}
.project-highlights ul {
  margin: 0 0 15px 18px;
}
.project-highlights ul li {
  list-style-type: disc;
}
.project-highlights ul li li {
  list-style-type: disc;
}
.project-highlights .section-header {
  margin-bottom: 32px;
  font-size: 1.4rem;
  font-weight: 700;
}
.project-highlights .project-highlight {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 32px;
}
@media (max-width: 700px) {
  .project-highlights .project-highlight {
    flex-direction: column;
    gap: 16px;
  }
}
.project-highlights .project-highlight-image img {
  width: 240px;
  height: 140px;
  object-fit: cover;
  display: block;
}
@media (max-width: 700px) {
  .project-highlights .project-highlight-image img {
    width: 100%;
    height: auto;
  }
}
.project-highlights .project-highlight-content {
  flex: 1;
}
.project-highlights .project-highlight-title {
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.project-highlights .project-highlight-desc {
  margin-bottom: 10px;
}
.project-highlights .project-highlight-collab-label {
  margin-top: 18px;
  margin-bottom: 6px;
}
.project-highlights .project-highlight-collaborators {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 8px;
}
.project-highlights .project-highlight-collaborators .collaborator-logo {
  height: 36px;
  width: auto;
  background: #fff;
  border-radius: 4px;
  padding: 2px 8px;
  object-fit: contain;
  max-width: 120px;
}
.project-highlights .project-highlight-divider {
  border: none;
  border-top: 1px solid #c7c7c7;
  margin: 24px 0;
}

.news {
  margin-bottom: 60px;
}
.news .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.pagination-container {
  margin-top: 40px;
  text-align: center;
}
.pagination-container .page-numbers {
  display: inline-block;
  padding: 8px 14px;
  margin: 0 4px;
  border: 1px solid #ddd;
  border-radius: 4px;
  color: #333;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}
.pagination-container .page-numbers:hover, .pagination-container .page-numbers.current {
  background-color: #EA0029;
  color: white;
  border-color: #EA0029;
}
.pagination-container .page-numbers.current {
  font-weight: bold;
}
.pagination-container .page-numbers.dots {
  border: none;
  padding: 8px 0;
}

@keyframes slideInCardImage {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInCardImageReverse {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInCardDesc {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInCardDescReverse {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInCardMobile {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.industry-cards-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.industry-cards-intro {
  font-size: 1rem;
  margin: 12px 0 48px 0;
  color: #222;
}
.industry-cards-row {
  display: flex;
  flex-direction: column;
  gap: 140px;
  margin-top: 130px;
  margin-bottom: 50px;
}
.industry-cards-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
}
.industry-cards-card-img {
  position: relative;
  z-index: 2;
  margin-right: -130px;
  margin-left: 0;
  margin-top: -90px;
  width: 420px;
  max-width: 40vw;
  min-width: 320px;
  opacity: 0;
  transform: translateX(-100px);
  animation: slideInCardImage 0.8s ease-out forwards;
}
.industry-cards-card-img img {
  width: 480px;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
}
.industry-cards-card-img-wrap {
  filter: drop-shadow(-1px 6px 12px rgba(50, 50, 0, 0.5));
}
.industry-cards-card-desc {
  background: #e30613;
  color: #fff;
  width: 600px;
  clip-path: polygon(6% 0, 100% 0, 94% 100%, 0 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  position: relative;
  z-index: 1;
  padding-top: 30px;
  padding-bottom: 30px;
  opacity: 0;
  transform: translateX(100px);
  animation: slideInCardDesc 0.8s ease-out 0.2s forwards;
}
.industry-cards-card-desc-inner {
  width: 500px;
}
.industry-cards-card-desc-inner--left {
  padding: 0 90px 0 80px;
  text-align: left;
}
.industry-cards-card-desc-inner--right {
  padding: 0 0 0 150px;
  text-align: left;
}
.industry-cards-card-desc h5 {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 0;
  color: #fff;
}
.industry-cards-card.reverse .industry-cards-card-img {
  margin-left: -140px;
  margin-right: 0;
  transform: translateX(100px);
  animation: slideInCardImageReverse 0.8s ease-out forwards;
}
.industry-cards-card.reverse .industry-cards-card-img img {
  clip-path: polygon(0 0, 92% 0, 100% 100%, 8% 100%);
}
.industry-cards-card.reverse .industry-cards-card-desc {
  clip-path: polygon(0 0, 94% 0, 100% 100%, 6% 100%);
  align-items: flex-end;
  text-align: right;
  transform: translateX(-100px);
  animation: slideInCardDescReverse 0.8s ease-out 0.2s forwards;
}
.industry-cards-card-link {
  text-decoration: none;
  display: block;
  width: 100%;
}
.industry-cards-find-out-more {
  font-weight: 900;
  display: block;
}
@media (max-width: 900px) {
  .industry-cards-card {
    flex-direction: column !important;
    align-items: stretch;
    margin-bottom: 40px;
  }
  .industry-cards-card-img, .industry-cards-card-desc {
    clip-path: none !important;
    min-width: unset;
    max-width: 100%;
    width: 100%;
    border-radius: 8px;
    text-align: left;
    align-items: flex-start;
    margin: 0 !important;
    transform: translateY(30px);
    animation: slideInCardMobile 0.8s ease-out forwards;
  }
  .industry-cards-card-img {
    animation-delay: 0s;
  }
  .industry-cards-card-desc {
    animation-delay: 0.2s;
  }
}

body.home .hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1600px;
  margin: 0 auto;
  width: 80%;
}
@media (max-width: 900px) {
  body.home .hero-section {
    flex-direction: column;
    flex-flow: column-reverse;
    padding: 0;
    text-align: center;
    justify-content: center;
    width: 100%;
    padding: 0 20px;
  }
}
body.home .hero-section h1 {
  font-size: 64px;
  line-height: 100%;
  margin-bottom: 30px;
}
@media (max-width: 900px) {
  body.home .hero-section h1 {
    font-size: 48px;
  }
}
body.home .hero-section .hero-content {
  margin-right: -50px;
}
@media (max-width: 900px) {
  body.home .hero-section .hero-content {
    margin: 0 auto;
    text-align: center;
  }
}
body.home .hero-section .hero-body-text {
  font-size: 1.1rem;
  text-align: justify;
}
@media (max-width: 900px) {
  body.home .hero-section .hero-body-text {
    margin: 0 auto;
    text-align: center;
  }
}
body.home .hero-section .hero-animation {
  min-width: 500px;
  max-width: 700px;
}
@media (max-width: 900px) {
  body.home .hero-section .hero-animation {
    min-width: 300px;
    max-width: 400px;
  }
}
body.home h2 {
  margin: 50px auto;
  font-style: italic;
  font-size: 22px;
  font-weight: 300;
}
@media (max-width: 480px) {
  body.home h2 {
    font-size: 18px;
  }
}
body.home .partners {
  max-width: 1600px;
  margin: 80px auto 0 auto;
}
body.home .partners .partner-slider .slick-dots li button:before {
  display: none !important;
  content: none !important;
}
body.home .partners .slick-dots {
  position: relative;
  bottom: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  width: 100%;
}
body.home .partners .slick-dots li {
  margin: 0 5px;
}
body.home .partners .slick-dots li button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(234, 0, 41, 0.3);
  font-size: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
body.home .partners .slick-dots li button:hover {
  background: rgba(234, 0, 41, 0.5);
}
body.home .partners .slick-dots li.slick-active button {
  background: #EA0029;
  transform: scale(1.2);
}
body.home .partners .partner-slider {
  margin: 0 -15px;
  padding-bottom: 30px;
  min-height: 100px;
}
body.home .partners .partner-slider .slick-list, body.home .partners .partner-slider .slick-track {
  display: flex;
  align-items: center;
}
body.home .partners .partner-slider .slick-slide {
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  box-sizing: border-box;
  height: 100%;
}
body.home .partners .partner-slider .partner-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
body.home .partners .partner-slider .partner-slide img {
  max-width: 200px;
  max-height: 150px;
  height: auto;
  width: auto;
  display: block;
  margin: 0 auto;
  transition: opacity 0.3s ease;
}
body.home .partners .partner-slider .partner-slide img:hover {
  opacity: 0.8;
}
body.home .partners .partner-slider .slick-dots {
  display: flex !important;
  justify-content: center;
  align-items: center;
  margin: 60px 0 0;
  padding: 0;
  list-style: none;
  position: static;
}
body.home .partners .partner-slider .slick-dots li {
  margin: 0;
  padding: 0;
}
@media (max-width: 500px) {
  body.home .partners .partner-slider .slick-dots li {
    width: 14px;
  }
}
body.home .partners .partner-slider .slick-dots li button {
  width: 14px;
  height: 3px;
  border: none;
  border-radius: 0;
  background: #b3b3b3;
  font-size: 0;
  cursor: pointer;
  transition: background 0.3s;
  padding: 0;
  outline: none;
  box-shadow: none;
}
@media (max-width: 500px) {
  body.home .partners .partner-slider .slick-dots li button {
    width: 8px;
    height: 2px;
  }
}
body.home .partners .partner-slider .slick-dots li.slick-active button {
  background: #EA0029;
}
body.home .partners .slick-prev,
body.home .partners .slick-next {
  width: 40px;
  height: 40px;
  background: #EA0029;
  border-radius: 50%;
  z-index: 1;
  transition: all 0.3s ease;
}
body.home .partners .slick-prev:hover,
body.home .partners .slick-next:hover {
  background: rgb(183, 0, 32.0641025641);
}
body.home .partners .slick-prev:before,
body.home .partners .slick-next:before {
  font-size: 20px;
  opacity: 1;
}
body.home .achievements {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 50px;
}
@media (max-width: 900px) {
  body.home .achievements {
    padding: 0;
  }
}
body.home .achievements .achievements-list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin: 40px 0;
  flex-wrap: nowrap;
}
body.home .achievements .achievement-item {
  flex: 1 1 0;
  width: 23%;
  max-width: 300px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 900px) {
  body.home .achievements .achievement-item {
    width: 100%;
  }
}
body.home .achievements .achievement-icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 16px;
}
body.home .achievements .achievement-number {
  color: #EA0029;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 8px;
}
body.home .achievements .achievement-description {
  font-size: 16px;
  color: #222;
  line-height: 1.3;
  letter-spacing: 0.02em;
  margin-top: 8px;
  white-space: pre-line;
}
@media (max-width: 600px) {
  body.home .achievements .achievements-list {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
}
body.home .latest-updates {
  margin-top: 90px;
}

body.page-about-us main {
  padding: 0;
  max-width: unset;
}
body.page-about-us .section-header {
  text-align: left;
  margin: 0 0 10px 0;
}
body.page-about-us .section-subheader {
  font-size: 1.2rem;
  font-weight: 300;
  margin: 20px 0 0 0;
}
body.page-about-us h2, body.page-about-us h5 {
  font-weight: 700;
}
body.page-about-us h2 {
  font-size: 36px;
}
body.page-about-us h5 {
  font-size: 20px;
  line-height: 1.8rem;
}
body.page-about-us .who-we-are {
  background-image: url("assets/images/about-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
}
body.page-about-us .who-we-are .who-we-are-content {
  width: 100%;
  align-items: center;
  display: flex;
  justify-content: flex-end;
  flex-wrap: nowrap;
  padding: 50px;
  max-width: 1400px;
}
body.page-about-us .who-we-are .who-we-are-content .text-content {
  max-width: 360px;
  margin-right: 120px;
  color: #fff;
}
body.page-about-us .who-we-are .who-we-are-content .text-content h2, body.page-about-us .who-we-are .who-we-are-content .text-content h5 {
  color: #fff;
  font-weight: 700;
}
body.page-about-us .who-we-are .who-we-are-content .text-content p {
  margin: 15px 0;
}
@media (max-width: 767px) {
  body.page-about-us .who-we-are .who-we-are-content .text-content {
    max-width: 100%;
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  body.page-about-us .who-we-are {
    flex-direction: column;
    background-position: left;
    position: relative;
  }
  body.page-about-us .who-we-are::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
    pointer-events: none;
  }
  body.page-about-us .who-we-are .text-content {
    position: relative;
    z-index: 2;
  }
}
body.page-about-us .what-we-do {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 80px;
  margin: 60px auto;
  padding: 0 50px;
  max-width: 1400px;
}
body.page-about-us .what-we-do .col {
  flex: 1;
  min-width: 0;
}
body.page-about-us .what-we-do .col.col1 {
  flex: 1;
}
body.page-about-us .what-we-do .col.col2 {
  flex: 1;
}
body.page-about-us .what-we-do .col.col2 a {
  color: #222;
}
body.page-about-us .what-we-do .col.col2 a strong {
  color: #EA0029 !important;
}
body.page-about-us .what-we-do .col.col3 {
  flex: 1;
}
body.page-about-us .what-we-do .point {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0;
}
body.page-about-us .what-we-do .point .icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.page-about-us .what-we-do .point .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
body.page-about-us .what-we-do .point .text {
  flex: 1;
  min-width: 0;
}
body.page-about-us .what-we-do .content p {
  margin-bottom: 16px;
}
body.page-about-us .what-we-do .content p:last-child {
  margin-bottom: 0;
}
@media (max-width: 900px) {
  body.page-about-us .what-we-do {
    flex-direction: column;
    gap: 32px;
  }
  body.page-about-us .what-we-do .col {
    width: 100%;
  }
}
@media (max-width: 600px) {
  body.page-about-us .what-we-do {
    margin: 40px 0;
    gap: 24px;
  }
  body.page-about-us .what-we-do .point {
    gap: 12px;
    margin-bottom: 20px;
  }
  body.page-about-us .what-we-do .point .icon {
    width: 40px;
    height: 40px;
  }
}
body.page-about-us .vision {
  text-align: center;
  margin: 60px auto;
  padding: 60px 50px;
  background: linear-gradient(270deg, #F2F2F2 0%, #FBFBFB 100%);
}
body.page-about-us .vision h2 {
  text-align: center;
}
body.page-about-us .vision .text-content p {
  font-weight: 700;
  font-size: 26px;
  line-height: 2.2rem;
  max-width: 640px;
  margin: 0 auto;
}
body.page-about-us .our-mascot {
  padding: 0 50px;
  max-width: 1400px;
  margin: 40px auto;
}
body.page-about-us .our-mascot .our-mascot-content {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 120px;
}
body.page-about-us .our-mascot .our-mascot-content .sparky-image-container {
  display: flex;
  justify-content: flex-start;
}
body.page-about-us .our-mascot .our-mascot-content .sparky-image-container .sparky-image {
  width: 240px;
}
@media (max-width: 800px) {
  body.page-about-us .our-mascot .our-mascot-content {
    flex-direction: column-reverse;
    align-items: center;
    gap: 1rem;
  }
}
body.page-about-us .our-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px auto;
  padding: 0 50px;
  gap: 120px;
  max-width: 1400px;
}
body.page-about-us .our-logo .logo {
  max-width: 400px;
  margin: 30px 0;
  text-align: left;
}
@media (max-width: 800px) {
  body.page-about-us .our-logo {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}
body.page-about-us svg {
  margin-top: 30px;
}
body.page-about-us .our-team {
  text-align: center;
  margin: 60px auto 0 auto;
  padding: 60px 50px;
  background: linear-gradient(270deg, #F2F2F2 0%, #FBFBFB 100%);
}
body.page-about-us .our-team h2 {
  text-align: center;
}
body.page-about-us .our-team .team-list {
  display: flex;
  justify-content: start;
  align-items: flex-start;
  gap: 40px 20px;
  margin: 60px auto 40px auto;
  flex-wrap: wrap;
  max-width: 1400px;
}
body.page-about-us .our-team .team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: calc(25% - 20px);
  text-align: center;
}
@media (max-width: 900px) {
  body.page-about-us .our-team .team-member {
    width: calc(33.333% - 20px);
  }
}
@media (max-width: 680px) {
  body.page-about-us .our-team .team-member {
    width: calc(50% - 20px);
  }
}
@media (max-width: 480px) {
  body.page-about-us .our-team .team-member {
    width: 100%;
  }
}
body.page-about-us .our-team .team-photo {
  width: 100px;
  height: 100px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
body.page-about-us .our-team .team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
body.page-about-us .our-team .team-photo-placeholder {
  width: 100%;
  height: 100%;
}
body.page-about-us .our-team .team-name {
  font-size: 1rem;
  line-height: 1.2rem;
  font-weight: 700;
  color: #393e41;
}
body.page-about-us .our-team .team-title {
  font-size: 1rem;
  line-height: 1.2rem;
  color: #555;
}
body.page-about-us footer {
  margin-top: 0;
}

body.page-industry-and-partnerships .cards-section,
body.page-capability-development .cards-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
body.page-industry-and-partnerships .cards-section-intro,
body.page-capability-development .cards-section-intro {
  font-size: 1rem;
  margin: 12px 0 48px 0;
  color: #222;
}
body.page-industry-and-partnerships .cards-row,
body.page-capability-development .cards-row {
  display: flex;
  flex-direction: column;
  gap: 140px;
  margin-top: 150px;
  margin-bottom: 50px;
}
body.page-industry-and-partnerships .industry-card,
body.page-capability-development .industry-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
}
@media (max-width: 900px) {
  body.page-industry-and-partnerships .industry-card,
  body.page-capability-development .industry-card {
    max-width: 640px;
  }
}
body.page-industry-and-partnerships .industry-card-img,
body.page-capability-development .industry-card-img {
  position: relative;
  z-index: 2;
  margin-right: -130px;
  margin-left: 0;
  margin-top: -100px;
  width: 420px;
  max-width: 40vw;
  min-width: 320px;
}
body.page-industry-and-partnerships .industry-card.reverse .industry-card-img,
body.page-capability-development .industry-card.reverse .industry-card-img {
  margin-left: -140px;
  margin-right: 0;
}
body.page-industry-and-partnerships .industry-card-img img,
body.page-capability-development .industry-card-img img {
  width: 480px;
  height: 260px;
  object-fit: cover;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
}
@media (max-width: 900px) {
  body.page-industry-and-partnerships .industry-card-img img,
  body.page-capability-development .industry-card-img img {
    clip-path: polygon(0 0, 92% 0, 100% 100%, 8% 100%);
    margin: 0 auto;
    text-align: center;
  }
}
body.page-industry-and-partnerships .industry-card.reverse .industry-card-img img,
body.page-capability-development .industry-card.reverse .industry-card-img img {
  clip-path: polygon(0 0, 92% 0, 100% 100%, 8% 100%);
}
@media (max-width: 900px) {
  body.page-industry-and-partnerships .industry-card.reverse .industry-card-img img,
  body.page-capability-development .industry-card.reverse .industry-card-img img {
    clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
  }
}
body.page-industry-and-partnerships .industry-card-img-wrap,
body.page-capability-development .industry-card-img-wrap {
  filter: drop-shadow(-1px 6px 12px rgba(50, 50, 0, 0.5));
}
body.page-industry-and-partnerships .industry-card-desc,
body.page-capability-development .industry-card-desc {
  background: #e30613;
  color: #fff;
  width: 600px;
  height: auto;
  clip-path: polygon(6% 0, 100% 0, 94% 100%, 0 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: left;
  position: relative;
  z-index: 1;
  padding-top: 30px;
  padding-bottom: 30px;
}
body.page-industry-and-partnerships .industry-card-desc-inner,
body.page-capability-development .industry-card-desc-inner {
  width: 550px;
}
body.page-industry-and-partnerships .industry-card-desc-inner--left,
body.page-capability-development .industry-card-desc-inner--left {
  padding: 0 90px 0 80px;
  text-align: left;
}
body.page-industry-and-partnerships .industry-card-desc-inner--right,
body.page-capability-development .industry-card-desc-inner--right {
  padding: 0 0 0 150px;
  text-align: left;
}
body.page-industry-and-partnerships .industry-card.reverse .industry-card-desc,
body.page-capability-development .industry-card.reverse .industry-card-desc {
  clip-path: polygon(0 0, 94% 0, 100% 100%, 6% 100%);
  align-items: flex-end;
  text-align: right;
}
body.page-industry-and-partnerships .industry-card-desc h5,
body.page-capability-development .industry-card-desc h5 {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 5px;
  color: #fff;
}
body.page-industry-and-partnerships .industry-card-desc,
body.page-capability-development .industry-card-desc {
  display: block;
  cursor: pointer;
  font-weight: 400;
}
body.page-industry-and-partnerships .find-out-more,
body.page-capability-development .find-out-more {
  font-weight: 900;
  display: block;
}
body.page-industry-and-partnerships .industry-card-link,
body.page-capability-development .industry-card-link {
  text-decoration: none;
  display: block;
  width: 100%;
}
@media (max-width: 900px) {
  body.page-industry-and-partnerships .cards-row,
  body.page-capability-development .cards-row {
    gap: 40px;
    margin: 0;
    padding: 0;
  }
  body.page-industry-and-partnerships .industry-card, body.page-industry-and-partnerships .industry-card.reverse,
  body.page-capability-development .industry-card,
  body.page-capability-development .industry-card.reverse {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    margin: 0 auto;
  }
  body.page-industry-and-partnerships .industry-card-img,
  body.page-industry-and-partnerships .industry-card-desc,
  body.page-industry-and-partnerships .industry-card.reverse .industry-card-img,
  body.page-industry-and-partnerships .industry-card.reverse .industry-card-desc,
  body.page-capability-development .industry-card-img,
  body.page-capability-development .industry-card-desc,
  body.page-capability-development .industry-card.reverse .industry-card-img,
  body.page-capability-development .industry-card.reverse .industry-card-desc {
    min-width: unset;
    max-width: 100%;
    width: 100%;
    text-align: left;
    align-items: flex-start;
    margin: -15px auto 0 auto;
  }
  body.page-industry-and-partnerships .industry-card-desc,
  body.page-capability-development .industry-card-desc {
    padding: 32px 16px 16px 16px;
  }
  body.page-industry-and-partnerships .industry-card-desc-inner,
  body.page-capability-development .industry-card-desc-inner {
    padding: 0;
    width: 80%;
    margin: 0 auto;
  }
  body.page-industry-and-partnerships .industry-card.reverse,
  body.page-capability-development .industry-card.reverse {
    flex-direction: column-reverse;
  }
}

body.page-robonexus .video {
  margin-top: 24px;
}

body.page-rab .introduction {
  margin-bottom: 30px;
}
body.page-rab .rab-profiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 50px;
  align-items: start;
}
body.page-rab .rab-profiles h2 {
  text-align: left;
  margin: 0;
}
body.page-rab .rab-profiles-column {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
body.page-rab .rab-profile-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  min-height: 120px;
  background: #fff;
  padding: 0 0 0 0;
  box-shadow: none;
  margin-bottom: 0;
}
body.page-rab .rab-profile-image {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.page-rab .rab-profile-image img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  display: block;
}
body.page-rab .rab-profile-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
body.page-rab .rab-profile-name {
  font-weight: 700;
  font-size: 1.1rem;
}
body.page-rab .rab-profile-title {
  color: #222;
  margin-bottom: 8px;
}
@media (max-width: 900px) {
  body.page-rab .rab-profiles {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  body.page-rab .rab-profiles-column {
    gap: 32px;
  }
}

body.single-rab-profile h3 {
  font-size: 1.5rem;
  font-weight: font-weight-bold;
  margin-bottom: 0;
}
body.single-rab-profile .profile-info-container {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}
body.single-rab-profile .profile-info-container .profile-image {
  width: 180px;
  height: 180px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.single-rab-profile .profile-info-container .profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body.page-companies .intro-text {
  font-size: 1rem;
  margin: 0 0 60px 0;
  color: #222;
}
body.page-companies .companies-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
body.page-companies a:hover {
  text-decoration: none;
}
body.page-companies .company-card {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}
body.page-companies .company-logo img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  display: block;
}
body.page-companies .company-info {
  flex: 1;
}
body.page-companies .company-name {
  font-size: 1.1rem;
  margin-bottom: 4px;
}
body.page-companies .company-founded,
body.page-companies .company-specialisation {
  font-size: 1em;
  color: #444;
  margin-bottom: 2px;
}
body.page-companies .company-description {
  margin-top: 8px;
  color: #222;
  font-size: 1em;
}
body.page-companies .pagination {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #eee;
}
body.page-companies .pagination .pagination-info {
  text-align: center;
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 20px;
}
body.page-companies .pagination .pagination-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
body.page-companies .pagination .pagination-controls .pagination-numbers {
  display: flex;
  align-items: center;
  gap: 8px;
}
body.page-companies .pagination .pagination-controls .pagination-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  color: #333;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
  background: #fff;
}
body.page-companies .pagination .pagination-controls .pagination-link:hover {
  background: #f5f5f5;
  border-color: #ccc;
  color: #222;
}
body.page-companies .pagination .pagination-controls .pagination-link.current {
  background: #EA0029;
  border-color: #EA0029;
  color: white;
  font-weight: 600;
}
body.page-companies .pagination .pagination-controls .pagination-link.prev, body.page-companies .pagination .pagination-controls .pagination-link.next {
  min-width: 80px;
  font-weight: 500;
}
body.page-companies .pagination .pagination-controls .pagination-ellipsis {
  color: #666;
  font-weight: 500;
  padding: 0 8px;
}
@media (max-width: 768px) {
  body.page-companies .pagination {
    margin-top: 40px;
    padding-top: 30px;
  }
  body.page-companies .pagination .pagination-controls {
    gap: 12px;
  }
  body.page-companies .pagination .pagination-controls .pagination-numbers {
    gap: 6px;
  }
  body.page-companies .pagination .pagination-controls .pagination-link {
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    font-size: 0.85rem;
  }
  body.page-companies .pagination .pagination-controls .pagination-link.prev, body.page-companies .pagination .pagination-controls .pagination-link.next {
    min-width: 70px;
  }
}
@media (max-width: 480px) {
  body.page-companies .pagination .pagination-controls {
    flex-direction: column;
    gap: 16px;
  }
  body.page-companies .pagination .pagination-controls .pagination-numbers {
    order: 2;
  }
  body.page-companies .pagination .pagination-controls .pagination-link.prev {
    order: 1;
  }
  body.page-companies .pagination .pagination-controls .pagination-link.next {
    order: 3;
  }
}

body.page-robocluster .robocluster-intro-container {
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  padding: 40px 20px;
  border-radius: 15px;
  margin-bottom: 40px;
  box-shadow: 6px 13px 37px -15px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 6px 13px 37px -15px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 6px 13px 37px -15px rgba(0, 0, 0, 0.25);
}
@media (max-width: 680px) {
  body.page-robocluster .robocluster-intro-container {
    max-width: 80%;
    margin: 0 auto;
  }
}
body.page-robocluster .introduction {
  text-align: center;
  margin: 30px auto 60px auto;
  max-width: 1000px;
  font-weight: 700;
  font-size: 1.3rem;
}
@media (max-width: 680px) {
  body.page-robocluster .introduction {
    margin: 0 auto 40px auto;
  }
}
body.page-robocluster .robocluster-flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
@media (max-width: 680px) {
  body.page-robocluster .robocluster-flow {
    flex-direction: column;
    align-items: center;
  }
}
body.page-robocluster .flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 200px;
}
body.page-robocluster .flow-step img {
  width: 120px;
  height: 90px;
  margin-bottom: 12px;
}
body.page-robocluster .flow-label {
  text-align: center;
}
body.page-robocluster .flow-arrow {
  display: flex;
  margin-top: 15px;
}
@media (max-width: 680px) {
  body.page-robocluster .flow-arrow {
    transform: rotate(90deg);
    margin: 0 auto;
  }
}
body.page-robocluster .flow-arrow img {
  width: 80px;
  height: 80px;
}
body.page-robocluster .robocluster-events-btn {
  display: flex;
  justify-content: center;
  margin: 30px 0 0 0;
}
body.page-robocluster .robocluster-domains-title {
  text-align: center;
  margin: 60px 0 60px 0;
  color: #EA0029;
  font-weight: 700;
}
body.page-robocluster .robocluster-sectors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
  justify-items: center;
  margin: 40px 0;
  max-width: 900px;
  margin: 0 auto;
}
body.page-robocluster .sector-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
}
body.page-robocluster .sector-card-icon img {
  width: 240px;
  height: 180px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
  position: relative;
  left: 16px;
}
body.page-robocluster .sector-card-label h5 {
  margin-top: 18px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #e6003c;
}
@media (max-width: 900px) {
  body.page-robocluster .robocluster-sectors {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 600px) {
  body.page-robocluster .robocluster-sectors {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  body.page-robocluster .sector-card {
    width: 90vw;
    max-width: 320px;
    max-height: 320px;
  }
}

.robocluster-content .divider-line {
  margin: 20px 0 30px 0;
}
.robocluster-content .cta {
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 800;
}
.robocluster-content .cta .text {
  margin-bottom: 10px;
}

.page-capability-development .cards-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.page-capability-development .cards-section-intro {
  font-size: 1rem;
  margin: 12px 0 48px 0;
  color: #222;
}
.page-capability-development .cards-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 32px;
  flex-wrap: nowrap;
}
.page-capability-development .card-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 300px;
  max-width: 90vw;
}
.page-capability-development .card-image {
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
.page-capability-development .card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #111;
}
.page-capability-development .card-desc {
  font-size: 1rem;
  color: #111;
  margin-top: 0;
  margin-bottom: 0;
  text-align: center;
  max-width: 90%;
  margin-top: 15px;
}
.page-capability-development .card-desc h5 {
  font-weight: 700;
}
@media (max-width: 600px) {
  .page-capability-development .cards-row {
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }
}

.page-project-highlights .intro {
  margin-bottom: 30px;
}
.page-project-highlights h2 {
  font-size: 1.5rem;
}
.page-project-highlights .tech-domain {
  margin-bottom: 60px;
}
.page-project-highlights .slide-inner {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
.page-project-highlights .slick-slider {
  margin: 25px 0 0 0;
}
.page-project-highlights .slide-image, .page-project-highlights .slide-image-placeholder {
  width: 320px;
  height: 220px;
  background: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 1rem;
  color: #222;
}
.page-project-highlights .slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.page-project-highlights .slide-content {
  flex: 1;
  margin-top: 12px;
  align-items: center;
}
.page-project-highlights .slide-title {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.page-project-highlights .slide-desc {
  font-size: 1rem;
  color: #222;
}
.page-project-highlights .slick-dots {
  display: flex !important;
  gap: 6px;
  justify-content: center;
}
.page-project-highlights .slick-dots li {
  width: 32px;
  height: 4px;
  margin: 0;
  padding: 0;
}
.page-project-highlights .slick-dots button:before {
  display: none;
}
.page-project-highlights .slick-dots .slick-active button {
  background: #e30613;
}
.page-project-highlights .slider-nav {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.page-project-highlights .slider-flex-group {
  display: flex;
  align-items: center;
  gap: 0;
}
.page-project-highlights .slider-flex-group .slick-prev,
.page-project-highlights .slider-flex-group .slick-next {
  background: none;
  border: none;
  color: #222;
  font-size: 28px;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: static !important;
  margin: 0;
  transition: background 0.2s, color 0.2s;
}
.page-project-highlights .slider-flex-group .slick-dots {
  display: flex !important;
  align-items: center;
  margin: 0 16px;
  position: static;
}
.page-project-highlights .slider-flex-group .slick-dots li {
  margin: 0;
}
.page-project-highlights .slider-flex-group .slick-dots li button {
  width: 32px;
  height: 4px;
  border-radius: 2px;
  background: #ccc;
  border: none;
  padding: 0;
  font-size: 0;
  transition: background 0.2s;
}
.page-project-highlights .slider-flex-group .slick-dots li.slick-active button {
  background: #ec1d29;
}
.page-project-highlights .slider-arrow {
  cursor: pointer;
  font-size: 1.5rem;
}
@media (max-width: 700px) {
  .page-project-highlights .slide-inner {
    flex-direction: column;
    gap: 16px;
  }
  .page-project-highlights .slick-dots {
    margin-left: 0;
    justify-content: center;
  }
  .page-project-highlights .slide-image, .page-project-highlights .slide-image-placeholder {
    width: 100%;
    max-width: 320px;
    height: 180px;
  }
}

.page-standards .footer {
  margin-top: 30px;
}
.page-standards .accordion-group {
  margin-top: 32px;
}
.page-standards .intro h5 {
  font-size: 1.1rem;
}
.page-standards .accordion {
  border-bottom: 1px solid #eee;
}
.page-standards .accordion-trigger {
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: #222;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page-standards .accordion-icon {
  transition: transform 0.3s;
}
.page-standards .accordion-trigger[aria-expanded=true] .accordion-icon {
  transform: rotate(180deg);
}
.page-standards .accordion-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
  padding: 0 0;
  visibility: hidden;
}
.page-standards .accordion-content.open {
  max-height: none;
  opacity: 1;
  padding: 16px 0 24px 0;
  visibility: visible;
}
.page-standards .standards-list {
  display: grid;
  gap: 24px;
}
.page-standards .standard-item {
  background: #f8f8f8;
  border-radius: 8px;
  overflow: hidden;
}
.page-standards .standard-link {
  display: block;
  padding: 24px;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.2s;
}
.page-standards .standard-link:hover {
  background: #f0f0f0;
}
.page-standards .standard-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: #e30613;
}
.page-standards .standard-desc {
  font-size: 1rem;
  color: #444;
}
@media (max-width: 768px) {
  .page-standards .accordion-trigger {
    font-size: 1.1rem;
    padding: 16px 0;
  }
  .page-standards .standard-link {
    padding: 20px;
  }
}

.page-tech-vista .featured-image {
  height: 320px;
  margin-bottom: 20px;
}
.page-tech-vista .featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 900px) {
  .page-tech-vista .featured-image {
    height: 240px;
  }
}
@media (max-width: 600px) {
  .page-tech-vista .featured-image {
    height: 180px;
  }
}
.page-tech-vista .tech-vista-content {
  font-size: 1rem;
  color: #222;
}
.page-tech-vista .tech-vista-content p {
  margin-bottom: 1.2em;
}

.page-talent .talent-intro {
  margin: 0 auto;
  text-align: center;
  padding: 40px 0;
}
.page-talent .talent-logo {
  margin-bottom: 32px;
  max-width: 550px;
  margin: 30px auto 60px auto;
}
.page-talent .talent-logo img {
  margin: 0 auto;
}
.page-talent .talent-text {
  color: #222;
}
@media (max-width: 600px) {
  .page-talent .talent-intro {
    padding: 24px 16px;
  }
  .page-talent .talent-text {
    font-size: 1rem;
  }
}

.page-media-and-events .section-header {
  text-align: left;
  margin: 0 0 20px 0;
}
.page-media-and-events .news .news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (max-width: 1024px) {
  .page-media-and-events .news .news-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .page-media-and-events .news .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .page-media-and-events .news .news-grid {
    grid-template-columns: 1fr;
  }
}
.page-media-and-events .news .news-card {
  border: 1px solid #eee;
  background-color: #e5e5e5;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
}
.page-media-and-events .news .news-card .news-content p {
  margin: 0;
  font-size: 1rem;
  color: #333;
}
.page-media-and-events .news .news-card .news-content .news-date {
  display: block;
  margin-top: 16px;
  font-size: 0.9rem;
  color: #666;
}
.page-media-and-events .news .news-card .read-more-btn {
  align-self: flex-start;
  margin-top: 24px;
}
.page-media-and-events .video-gallery {
  margin-top: 60px;
}
.page-media-and-events .video-gallery .video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}
@media (max-width: 800px) {
  .page-media-and-events .video-gallery .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .page-media-and-events .video-gallery .video-grid {
    grid-template-columns: 1fr;
  }
}
.page-media-and-events .video-gallery .video-item {
  background: #f8f9fa;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.page-media-and-events .video-gallery .video-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}
.page-media-and-events .video-gallery .video-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}
.page-media-and-events .video-gallery .video-wrapper iframe,
.page-media-and-events .video-gallery .video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.page-media-and-events .video-pagination-container,
.page-media-and-events .events-pagination-container {
  margin-top: 40px;
  text-align: center;
}
.page-media-and-events .video-pagination-container .page-numbers,
.page-media-and-events .events-pagination-container .page-numbers {
  display: inline-block;
  padding: 8px 14px;
  margin: 0 4px;
  border: 1px solid #ddd;
  border-radius: 4px;
  color: #333;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}
.page-media-and-events .video-pagination-container .page-numbers:hover, .page-media-and-events .video-pagination-container .page-numbers.current,
.page-media-and-events .events-pagination-container .page-numbers:hover,
.page-media-and-events .events-pagination-container .page-numbers.current {
  background-color: #EA0029;
  color: white;
  border-color: #EA0029;
}
.page-media-and-events .video-pagination-container .page-numbers.current,
.page-media-and-events .events-pagination-container .page-numbers.current {
  font-weight: bold;
}
.page-media-and-events .video-pagination-container .page-numbers.dots,
.page-media-and-events .events-pagination-container .page-numbers.dots {
  border: none;
  padding: 8px 0;
}
.page-media-and-events .events {
  margin-top: 60px;
}
.page-media-and-events .events .event-title {
  font-weight: 700;
  font-size: 1.1rem;
}
.page-media-and-events .events .events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 40px;
}
.page-media-and-events .events .event-card {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
.page-media-and-events .events .event-thumbnail {
  flex: 0 0 200px;
  width: 200px;
  height: 140px;
  background-color: #e0e0e0;
}
.page-media-and-events .events .event-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-media-and-events .events .event-content p {
  margin-bottom: 5px;
}
@media (max-width: 992px) {
  .page-media-and-events .events .events-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 576px) {
  .page-media-and-events .events .event-card {
    flex-direction: column;
    text-align: center;
  }
}

.page-privacy-policy ol {
  list-style-type: decimal;
  margin: 20px 0 0 20px;
}
.page-privacy-policy ol ol {
  list-style-type: lower-alpha;
  margin: 0 0 0 20px;
}
.page-privacy-policy li {
  padding: 10px 0 10px 0;
}
