

:root {
  --clr-accent-400: #ffd808;
  --clr-accent-100: hsl(13, 100%, 96%);

  --clr-text-100: white;
  --clr-secondary-100: #f9f9f9;

  --clr-primary-400: hsl(228, 39%, 23%);

  --clr-neutral-100: hsl(232, 12%, 13%);
  --clr-neutral-900: hsl(0 0% 0%);

  --ff-primary: "Be Vietnam Pro", sans-serif;
  --ff-secondary: "Saira", serif;

  --ff-body: var(--ff-primary);
  --ff-heading: var(--ff-primary);

  --fw-regular: 400;
  --fw-semi-bold: 500;
  --fw-bold: 700;

  --fs-300: 0.8125rem;
  --fs-400: 0.875rem;
  --fs-500: 0.9375rem;
  --fs-600: 1rem;
  --fs-650: 1.25rem;
  --fs-700: 1.5rem;
  --fs-800: 2.5rem;
  --fs-900: 3.5rem;

  --fs-body: var(--fs-400);
  --fs-primary-heading: var(--fs-800);
  --fs-secondary-heading: var(--fs-700);
  --fs-nav: var(--fs-500);
  --fs-button: var(--fs-300);
}

@media (min-width: 50em) {
  :root {
    --fs-body: var(--fs-500);
    --fs-primary-heading: var(--fs-900);
    --fs-secondary-heading: var(--fs-800);

    --fs-nav: var(--fs-300);
  }
}

/* https://piccalil.li/blog/a-modern-css-reset */

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
* {
  margin: 0;
  padding: 0;
  font: inherit;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role="list"],
ol[role="list"] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

html,
body {
  height: 100vh;
  overflow-x: hidden;
  max-width: 100%;
}

/* Set core body defaults */
body {
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture,
svg {
  max-width: 100%;
  display: block;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@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;
  }
}

/* Utility classes */

.text-primary-400 {
  color: var(--clr-primary-400);
}

.text-accent-400 {
  color: var(--clr-accent-400);
}

.text-accent-100 {
  color: var(--clr-accent-100);
}

.text-neutral-100 {
  color: var(--clr-neutral-100);
}

.text-neutral-900 {
  color: var(--clr-neutral-900);
}

.bg-primary-400 {
  background-color: var(--clr-primary-400);
}

.bg-accent-400 {
  background-color: var(--clr-accent-400);
}

.bg-accent-100 {
  background-color: var(--clr-accent-100);
}

.bg-neutral-100 {
  background-color: var(--clr-neutral-100);
}

.bg-neutral-900 {
  background-color: var(--clr-neutral-900);
}

.fw-bold {
  font-weight: var(--fw-bold);
}

.fw-semi-bold {
  font-weight: var(--fw-semi-bold);
}

.fw-regular {
  font-weight: var(--fw-regular);
}

.fs-primary-heading {
  font-size: var(--fs-primary-heading);
}

.fs-secondary-heading {
  font-size: var(--fs-secondary-heading);
}

.fs-300 {
  font-size: var(--fs-300);
}

.fs-400 {
  font-size: var(--fs-400);
}

.fs-500 {
  font-size: var(--fs-500);
}

.fs-600 {
  font-size: var(--fs-600);
}

.fs-700 {
  font-size: var(--fs-700);
}

.fs-800 {
  font-size: var(--fs-800);
}

.fs-900 {
  font-size: var(--fs-900);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: white;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.navbar__row {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ff-primary {
  font-family: var(--ff-primary);
}

.ff-secondary {
  font-family: var(--ff-secondary);
}

.container {
  width: 80%;
  max-width: 1000px;
  margin: 0 auto;
}

.navbar__logo {
  transition: transform 0.3s ease;
  filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.1));
}

.navbar__logo:hover {
  transform: scale(1.05);
}

.navbar__upper {
  display: flex;
  width: 100%;
  margin: 0 auto;
  align-items: center;
  position: relative;
  padding: 10px 0;
}

/* Hide hamburger by default */
.navbar__hamburger {
  display: none;
  cursor: pointer;
  z-index: 101;
  transition: all 0.3s ease;
}

.navbar__hamburger:hover {
  transform: scale(1.1);
}

.navbar__hamburger i {
  transition: transform 0.3s ease;
}

.navbar__hamburger:active i {
  transform: rotate(90deg);
}

.navbar__contact-list {
  display: flex;
  justify-content: space-between;
  padding: 1.3rem 0;
  margin-left: 15em;

}

.navbar__contact-item {
  display: flex;
  /* Make the contact item a flex container */
  justify-content: flex-end;
  margin: 0 1rem;
}

.navbar__contact-content {
  display: flex;
  flex-direction: column;
  /* Stack the title and text vertically */
  padding-left: 0.5rem;
}

.navbar__contact-content a {
  text-decoration: none;
  color: var(--clr-primary-400);

}

.navbar__contact-title {
  font-weight: bold;
  font-family: var(--ff-secondary);
  /* Optional: Style the title */
}

.navbar__contact-text {
  color: #666;
  /* Optional: Style the text */
  font-family: var(--ff-secondary);
}

.navbar__icon-item {
  color: var(--clr-accent-400);
  font-size: 1.5rem;
}

.navbar__nav {
  display: flex;
  width: 100%;
  margin: 0 auto;
  align-items: center;
  background-color: black;
}

.navbar__nav-list {
  display: flex;
  width: 95%;
  justify-content: start;
  align-items: center;
  padding: 1rem 0;
  background-color: var(--clr-neutral-900);
}

.navbar__nav-item+.navbar__nav-item {
  margin-left: 0.6rem;
}

.navbar__nav-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: all 0.3s ease;
  position: relative;
}

.navbar__nav-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--clr-accent-400);
  transition: width 0.3s ease;
}

.navbar__nav-item:hover::before {
  width: 80%;
}

.navbar__nav-item:hover {
  background: rgba(255, 216, 8, 0.1);
}

.navbar__nav-link {
  text-decoration: none;
  padding-left: .5rem;
  color: white;
  font-family: var(--ff-secondary);
  transition: color 0.3s ease;
}

.navbar__nav-item:hover .navbar__nav-link {
  color: var(--clr-accent-400);
}

.navbar__nav-item:hover .navbar__nav-icon {
  color: var(--clr-accent-400);
}

.navbar__button {
  background: linear-gradient(135deg, var(--clr-accent-400), #ffa500);
  color: var(--clr-neutral-100);
  width: 30%;
  padding: 1rem 0;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(255, 216, 8, 0.3);
}

.navbar__button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.navbar__button:hover::before {
  width: 300px;
  height: 300px;
}

.navbar__button:hover {
  box-shadow: 0 6px 20px rgba(255, 216, 8, 0.5);
}

.navbar__button-link {
  text-decoration: none;
  color: var(--clr-neutral-100);
  position: relative;
  z-index: 1;
  font-family: var(--ff-secondary);
}

.navbar__nav-icon {
  color: white;
  transition: all 0.3s ease;
}

main {
  position: relative;
  display: flex;
  flex-direction: column;
}

.intro__container {
  display: flex;
  width: 100%;
  align-items: center;
  padding: 0;
  min-height: 100vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), url("/images/section-01.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: var(--clr-accent-100);
  position: relative;
  overflow: hidden;
}

.intro__container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at bottom right, rgba(255, 216, 8, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.intro__content {
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s ease-out;
  max-width: 1000px;
}

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

.intro__title {
  background-color: var(--clr-text-100);
  color: var(--clr-neutral-900);
  padding: 15px 25px;
  text-align: start;
  display: inline-block;
  margin-bottom: 10px;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.3);
  animation: slideInLeft 0.8s ease-out 0.3s both;
  position: relative;
  overflow: hidden;
}

.intro__title::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 216, 8, 0.3), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0%, 100% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.intro__title-2 {
  background-color: var(--clr-neutral-900);
  color: var(--clr-accent-400);
  text-align: start;
  padding: 15px 25px;
  display: inline-block;
  box-shadow: 5px 5px 20px rgba(255, 216, 8, 0.4);
  animation: slideInRight 0.8s ease-out 0.6s both;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.intro__button {
  margin-top: 3rem;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.9s both;
}

.intro__text {
  margin-top: 2.5rem;
  color: white;
  font-size: 1.3rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease-out 0.7s both;
  max-width: 600px;
}

.intro__button-link {
  text-decoration: none;
  color: var(--clr-neutral-100);
  padding: 18px 35px;
  background: linear-gradient(135deg, var(--clr-accent-400), #ffa500);
  margin-top: 0;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 25px rgba(255, 216, 8, 0.4);
  position: relative;
  overflow: hidden;
}

.intro__button-link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.intro__button-link:hover::before {
  width: 300px;
  height: 300px;
}

.intro__button-link:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 216, 8, 0.6);
}

/* Scroll Down Indicator */
.intro__container::after {
  content: '\f063';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--clr-accent-400);
  font-size: 2rem;
  animation: bounce 2s infinite;
  cursor: pointer;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Base Styles */

.services {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 70px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 216, 8, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: pulse 8s ease-in-out infinite;
}

.services__container {
  display: flex;
  max-width: 1680px;
  width: 100%;
  gap: 40px;
  position: relative;
  z-index: 1;
}

/* Columns */
.services__column--left {
  text-align: center;
  /* Center align the heading and image */
  width: 30%;
}

.services__column--right {
  display: flex;
  flex-direction: column;
  width: 70%;
}

/* Rows */
.services__row {
  display: flex;
  align-items: center;
  height: 50%;
  padding: 0 2em;
}

.services__image {
  max-width: 100%;
  /* Ensure images don't overflow */
  height: 50px;
  border-radius: 15px;
}

/* Cards */

.statistics {
  background: linear-gradient(135deg, var(--clr-accent-400) 0%, #ffa500 100%);
  position: relative;
  padding: 44px 0;
  overflow: hidden;
}

.statistics::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

.stats-section {
  width: 100%;
  max-width: 1000px;
  padding: 12px 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.stats-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.stat {
  flex: 1;
  min-width: 160px;
  padding: 8px 20px;
  transition: transform 0.3s ease;
}

.stat:hover {
  transform: translateY(-6px);
}

.number {
  font-size: 2.6rem;
  font-weight: bold;
  color: var(--clr-neutral-900);
  font-family: var(--ff-secondary);
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.15);
  display: block;
  margin-bottom: 6px;
}

.label {
  font-size: 0.88rem;
  color: var(--clr-neutral-900);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.services__column {
  flex: 1;
}

.services__column--left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.services__heading {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 30px;
  color: var(--clr-neutral-900);
  font-family: var(--ff-secondary);
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.services__heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--clr-accent-400), #ffa500);
  border-radius: 2px;
}

.services__image {
  max-width: 100%;
  height: auto;
}

.services__column--right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.services__card {
  background: white;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border-top: 4px solid transparent;
}

.services__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 216, 8, 0.1), transparent);
  transition: left 0.6s ease;
}

.services__card:hover::before {
  left: 100%;
}

.services__card:hover {
  transform: translateY(-10px) scale(1.02);
  background-color: white;
  border-top-color: var(--clr-accent-400);
  box-shadow: 0 20px 40px rgba(255, 216, 8, 0.3);
}

.services__icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  display: inline-block;
  transition: transform 0.4s ease;
  filter: grayscale(0);
}

.services__card:hover .services__icon {
  transform: scale(1.2) rotate(10deg);
}

.services__title {
  font-size: 1.5rem;
  font-weight: var(--fw-bold);
  margin-bottom: 15px;
  font-family: var(--ff-secondary);
  color: var(--clr-neutral-900);
  transition: color 0.3s ease;
}

.services__card:hover .services__title {
  color: var(--clr-neutral-900);
}

.services__description {
  font-size: 1rem;
  color: #666;
  font-family: var(--ff-secondary);
  line-height: 1.6;
}

.services__card a {
  text-decoration: none;
  color: inherit;
  display: block;
  padding: 10px;
}



.footer {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: white;
  padding: 60px 0 20px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="80" height="80" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="footer-pattern" width="80" height="80" patternUnits="userSpaceOnUse"><circle cx="40" cy="40" r="1" fill="rgba(255,216,8,0.05)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23footer-pattern)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

.footer__container {
  width: 95%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer__top {
  display: flex;
  align-items: start;
  border-bottom: 2px solid rgba(255, 216, 8, 0.3);
  padding: 60px 0 40px;
  gap: 30px;
}

.footer__column {
  min-width: 250px;
}

.footer__logo-iso {
  margin-top: 60px;
  transition: transform 0.3s ease;
}

.footer__logo-iso:hover {
  transform: scale(1.05);
}

.footer__column--logo {
  display: flex;
  flex-direction: column;
  align-items: start;
  width: 20%;
}

.footer__column--logo img:first-child {
  transition: transform 0.3s ease;
}

.footer__column--logo img:first-child:hover {
  transform: scale(1.05);
}

.footer__column--company {
  text-align: center;
  width: 10%;
}

.footer__column--support {
  width: 10%;
}

.footer__column--newsletter {
  width: 60%;
  padding: 0 30px;
}

.footer__column img {
  display: block;
  margin-bottom: 10px;
  max-width: 180px;
}

.footer__heading {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--clr-accent-400);
  font-family: var(--ff-secondary);
  position: relative;
  padding-bottom: 10px;
}

.footer__heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--clr-accent-400);
}

.footer__column--text {
  margin: 20px 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  font-family: var(--ff-secondary);
}

.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__list-item {
  margin-bottom: 12px;
  font-family: var(--ff-secondary);
  transition: transform 0.3s ease;
}

.footer__list-item:hover {
  transform: translateX(5px);
}

.footer__list-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer__list-item a:hover {
  color: var(--clr-accent-400);
}

.footer__form input {
  padding: 14px 18px;
  width: 60%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  margin-right: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-family: var(--ff-secondary);
  transition: all 0.3s ease;
}

.footer__form input:focus {
  outline: none;
  border-color: var(--clr-accent-400);
  background: rgba(255, 255, 255, 0.15);
}

.footer__form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.footer__form button {
  display: block;
  padding: 14px 30px;
  margin-top: 20px;
  width: 60%;
  border: none;
  background: linear-gradient(135deg, var(--clr-accent-400), #ffa500);
  color: var(--clr-neutral-900);
  cursor: pointer;
  border-radius: 30px;
  font-weight: bold;
  font-family: var(--ff-secondary);
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 216, 8, 0.3);
}

.footer__form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 216, 8, 0.5);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 2px solid rgba(255, 216, 8, 0.3);
  gap: 20px;
}

.footer__social-icons {
  display: flex;
  gap: 15px;
}

.footer__social-icons a {
  color: white;
  font-size: 1.5rem;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.footer__social-icons a:hover {
  background: linear-gradient(135deg, var(--clr-accent-400), #ffa500);
  color: var(--clr-neutral-900);
  transform: translateY(-5px) rotate(10deg);
}

.footer__legal {
  font-family: var(--ff-secondary);
}

.footer__legal a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer__legal a:hover {
  color: var(--clr-accent-400);
}

.footer__credits {
  font-family: var(--ff-secondary);
  color: rgba(255, 255, 255, 0.7);
}

button .footer__form--button {
  background-color: var(--clr-accent-400);
}

.fab {
  color: var(--clr-accent-400);
}

.clients-carousel {
  text-align: center;
  padding: 44px 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
  position: relative;
}

.clients-carousel::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 216, 8, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.clients-carousel h3 {
  font-size: 1.3rem;
  margin-bottom: 24px;
  color: var(--clr-neutral-900);
  font-family: var(--ff-secondary);
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.clients-carousel h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--clr-accent-400), #ffa500);
  border-radius: 2px;
}

.carousel {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.carousel img {
  max-width: 150px;
  height: auto;
  margin: 0 15px;
  transition: all 0.4s ease;
  filter: grayscale(100%) opacity(0.7);
  padding: 15px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.carousel img:hover {
  transform: scale(1.15) translateY(-5px);
  filter: grayscale(0%) opacity(1);
  box-shadow: 0 10px 30px rgba(255, 216, 8, 0.3);
}

/* ==========================================================================
   MODAL SYSTEM — Premium redesign
   ========================================================================== */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13,27,62,0.72);
  justify-content: center;
  align-items: flex-start;
  padding: 40px 16px;
  z-index: 10000;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  overflow-y: auto;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(-20px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-content {
  background: #ffffff;
  border-radius: 16px;
  width: 100%;
  max-width: 680px;
  margin: auto;
  position: relative;
  box-shadow: 0 32px 80px rgba(13,27,62,0.3);
  animation: modalIn 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
  overflow: hidden;
}

/* Header */
.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  background: #0d1b3e;
  gap: 16px;
}
.modal__header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.modal__header-icon {
  width: 40px;
  height: 40px;
  background: var(--clr-accent-400);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: #0d1b3e;
  flex-shrink: 0;
}
.modal__eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin: 0 0 2px;
  font-family: var(--ff-secondary);
}
.modal__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}
.modal-close {
  background: rgba(255,255,255,0.08);
  border: none;
  color: rgba(255,255,255,0.55);
  width: 34px;
  height: 34px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.modal-close:hover {
  background: rgba(255,255,255,0.18);
  color: #ffffff;
}

/* Body */
.modal__body {
  padding: 28px 28px 32px;
}

/* Success state */
.modal__success {
  text-align: center;
  padding: 40px 20px;
}
.modal__success i {
  font-size: 2.8rem;
  color: #22c55e;
  display: block;
  margin-bottom: 14px;
}
.modal__success h4 {
  font-size: 1.2rem;
  color: #0d1b3e;
  margin: 0 0 8px;
  font-family: var(--ff-secondary);
}
.modal__success p {
  font-size: 0.88rem;
  color: rgba(13,27,62,0.52);
  font-family: var(--ff-secondary);
}

/* Form layout */
.modal__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.modal__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.modal__field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.modal__field--full {
  grid-column: 1 / -1;
}
.modal__label {
  font-size: 0.76rem;
  font-weight: 600;
  color: #0d1b3e;
  letter-spacing: 0.02em;
}
.modal__req { color: var(--clr-accent-400); }

.modal__input,
.modal__select,
.modal__textarea {
  width: 100%;
  padding: 10px 13px;
  border: 1.5px solid rgba(13,27,62,0.14);
  border-radius: 8px;
  font-size: 0.88rem;
  font-family: var(--ff-secondary);
  color: #0d1b3e;
  background: #f5f7fb;
  transition: border-color 0.18s, background 0.18s, box-shadow 0.18s;
  outline: none;
  box-sizing: border-box;
}
.modal__input:focus,
.modal__select:focus,
.modal__textarea:focus {
  border-color: #0d1b3e;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(13,27,62,0.07);
}
.modal__select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%230d1b3e' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 34px;
  cursor: pointer;
}
.modal__textarea {
  min-height: 88px;
  resize: vertical;
}

/* Consent */
.modal__consent { margin-top: 2px; }
.modal__consent-label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  cursor: pointer;
}
.modal__consent-label input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: #0d1b3e;
  width: 15px;
  height: 15px;
}
.modal__consent-label span {
  font-size: 0.76rem;
  color: rgba(13,27,62,0.5);
  line-height: 1.55;
  font-family: var(--ff-secondary);
}
.modal__consent-label a { color: #0d1b3e; text-decoration: underline; }

/* Submit */
.modal__submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 26px;
  background: #0d1b3e;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  font-family: var(--ff-secondary);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  align-self: flex-start;
  margin-top: 6px;
}
.modal__submit:hover {
  background: var(--clr-accent-400);
  color: #0d1b3e;
}
.modal__submit:disabled {
  background: #c0c8d8;
  color: rgba(13,27,62,0.4);
  cursor: not-allowed;
}

/* Responsive */
@media (max-width: 560px) {
  .modal { padding: 16px; }
  .modal__header { padding: 18px 20px; }
  .modal__body { padding: 20px; }
  .modal__row { grid-template-columns: 1fr; }
  .modal__submit { width: 100%; justify-content: center; }
}

/* Carousel featured works  */

.featured-works {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
  position: relative;
  overflow: hidden;
}

.featured-works::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="fw-dots" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1.5" fill="rgba(255,216,8,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23fw-dots)"/></svg>');
  opacity: 0.5;
  pointer-events: none;
}

.featured-works h1 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.featured-works span {
  color: var(--clr-accent-400);
  position: relative;
}

.featured-works span::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--clr-accent-400);
  border-radius: 2px;
}

.works-carousel {
  max-width: 90%;
  margin: 0 auto;
  padding: 20px 0;
  position: relative;
  z-index: 1;
}

.works-carousel .slick-track {
  display: flex;
  align-items: center;
}

.works-carousel__item {
  text-align: center;
  padding: 15px;
  transition: transform 0.3s ease;
}

.works-carousel__item:hover {
  transform: scale(1.05);
}

.works-carousel__item img {
  width: 100%;
  max-width: 350px;
  height: 235px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  border: 3px solid transparent;
}

.works-carousel__item:hover img {
  border-color: var(--clr-accent-400);
  box-shadow: 0 15px 40px rgba(255, 216, 8, 0.4);
  transform: translateY(-5px);
}

.works-carousel__title {
  font-size: 1.3rem;
  font-weight: bold;
  margin-top: 15px;
  color: white;
  font-family: var(--ff-secondary);
}

.works-carousel__subtext {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 5px;
  font-family: var(--ff-secondary);
}

.slick-dots li button:before {
  color: var(--clr-accent-400) !important;
}

.slick-dots li.slick-active button:before {
  color: var(--clr-accent-400) !important;
}


.quote__section {
  background: linear-gradient(135deg, var(--clr-accent-400) 0%, #ffa500 100%);
  position: relative;
  padding: 60px 0;
  overflow: hidden;
}

.quote__section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.1) 0%, transparent 70%);
  animation: rotate 30s linear infinite;
}

.quote__section-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  position: relative;
  z-index: 1;
  gap: 40px;
  flex-wrap: wrap;
}

.quote__section-text {
  flex: 1;
  min-width: 300px;
  animation: fadeInLeft 0.8s ease-out;
}

.quote__section-button {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 0.8s ease-out;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.quote__button-link {
  background-color: var(--clr-neutral-900);
  color: white;
  text-align: center;
  text-decoration: none;
  padding: 20px 45px;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.quote__button-link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.quote__button-link:hover::before {
  width: 300px;
  height: 300px;
}

.quote__button-link:hover {
  background-color: white;
  color: var(--clr-neutral-900);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/*--- Testimonials ---*/



/*--- Media Queries ---*/

@media (max-width: 450px) {

  /* Hide the full nav menu initially */
  .navbar__nav {
    display: none;
  }

  .navbar__row {
    position: relative;
  }

  .fs-primary-heading {
    font-size: 2rem;
  }

  .fs-secondary-heading {
    font-size: 1.5rem;
  }

  .fs-700 {
    font-size: 1.2rem;
  }

  .fs-800 {
    font-size: 1.5rem;
  }

  .fs-900 {
    font-size: 2rem;
  }

  .container {
    width: 100%;
  }

  .intro__content {
    padding: 0 20px;
    max-width: 100%;
  }

  .intro__container {
    min-height: 100vh;
    background-attachment: scroll;
  }

  .intro__title,
  .intro__title-2 {
    font-size: 1.8rem;
    padding: 10px 20px;
    width: 100%;
    display: block;
  }

  .intro__text {
    font-size: 1rem;
    max-width: 100%;
  }

  .intro__button {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .intro__button-link {
    width: 100%;
    padding: 15px 25px;
    text-align: center;
  }

  .intro__container::after {
    font-size: 1.5rem;
    bottom: 20px;
  }

  .services {
    padding: 50px 15px;
  }

  .services__heading {
    font-size: 1.8rem;
  }

  .services__icon {
    font-size: 2.5rem;
  }

  .services__title {
    font-size: 1.2rem;
  }

  .featured-works {
    padding: 50px 15px;
  }

  .featured-works h1 {
    font-size: 2rem;
  }

  .works-carousel__item img {
    height: auto;
  }

  .stats-container {
    flex-direction: column;
    gap: 20px;
  }

  .number {
    font-size: 3rem;
  }

  .label {
    font-size: 1rem;
  }

  .clients-carousel h3 {
    font-size: 2rem;
  }

  .carousel {
    flex-wrap: wrap;
  }

  .carousel img {
    max-width: 120px;
    margin: 10px;
  }

  .quote__section-container {
    flex-direction: column;
    text-align: center;
  }

  .quote__section-text {
    width: 100%;
    min-width: auto;
  }

  .quote__section-button {
    width: 100%;
  }

  .quote__button-link {
    width: 100%;
    display: block;
  }

  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .navbar__upper {
    display: block;
    /* Change from flex to block */
    text-align: center;
    padding: 10px;
  }

  .navbar__contact-list,
  .navbar__upper-content {
    display: none;
  }

  .navbar__hamburger {
    display: block;
    position: absolute;
    right: 10px;
    /* adjust spacing as needed */
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--clr-accent-400);
    /* yellow background */
    color: var(--clr-neutral-900);
    /* black text */
    padding: 8px;
    border-radius: 4px;
    cursor: pointer;
  }

  /* When nav is active, show it as a vertical dropdown */
  .navbar__nav.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--clr-accent-400);
    /* yellow background */
    z-index: 10;
    opacity: 0.8;
  }

  .navbar__nav-list {
    flex-direction: column;
    align-items: start;
    padding: 1rem 0;
  }

  .navbar__nav-icon {
    margin-right: 0.5rem;
    /* Adjust this value as needed */
  }

  .navbar__nav-item {
    margin: 5px 0;
  }

  .navbar__nav-link {
    color: white;
    /* black text */
    font-size: 1rem;
    padding: 0.5rem 0;
  }


  .services__container {
    display: block;
    width: 100%;
    gap: 40px;
  }

  .services__column--left {
    text-align: center;
    width: 100%;
  }

  .services__card {
    margin-bottom: 1rem;
  }

  .services__image {
    display: none;
  }

  .services__column--right {
    display: block;
    width: 100%;
  }

  .featured-works {
    display: none;
  }

  .stats-container {
    display: block;
    text-align: center;
  }

  .stat {
    padding: 10px 0;
  }

  .quote__section-container {
    padding: 10px 20px;
  }

  .footer__top {
    display: block;
    padding: 0 10px;
    width: 100%;
  }

  .footer__column--company {
    width: 100%;
    text-align: justify;

  }

  .footer__column--support {
    width: 100%;
    text-align: start;
  }

  .footer__column--newsletter {
    width: 100%;
    text-align: start;
    padding: 0;
  }

  .footer__bottom {
    width: 100%;
    text-align: start;
    font-size: var(--fs-300);
    padding: 10px 10px;

  }

  .footer__form input {
    width: 100%;
  }

  .footer__form button {
    width: 30%;
  }

  .footer__heading {
    font-size: var(--fs-600);
  }

  .footer__list-item {
    font-size: var(--fs-400);
  }

  .modal-content {
    padding: 30px 20px;
    max-width: 95%;
  }

  .modal form {
    display: block;
    gap: 15px;
  }

  .modal form input,
  .modal form select,
  .modal form textarea {
    margin: 10px 0;
    padding: 12px 15px;
  }

  .modal button {
    width: 100%;
    margin-top: 10px;
  }

  .modal__form-title {
    font-size: 1.5rem;
  }

  .carousel {
    margin: 0 auto;
  }

  .service__consultancy {
    width: 100%;
    text-align: center;
    border: 2px solid red;
    padding: 0 10px;
  }
  .consultancy__timelines {
    display: block;
    width: 100%;
  }

  .service__technology {
    width: 100%;
    text-align: center;
  }
  .technology__info {
    display: flex;
    width: 100%;
  }
  .technology__card {
    display: block;
    width: 100%;
  }
  .technology__heading {
    font-size: 1.5rem;
  }

  .technology__description {
    font-size: 0.9rem;
  }

  .technology__card {
    padding: 10px;
  }
}


@media (max-width: 600px) {
  /* --- Navbar adjustments --- */
  /* Show only the logo in the upper nav and hide contact info */

  .fs-primary-heading {
    font-size: 2rem;
  }

  .fs-secondary-heading {
    font-size: 1.5rem;
  }

  .fs-700 {
    font-size: 1.2rem;
  }

  .fs-800 {
    font-size: 1.5rem;
  }

  .fs-900 {
    font-size: 2rem;
  }

  .container {
    width: 100%;
  }

  .intro__content {
    padding: 0 20px;
    max-width: 100%;
  }

  .intro__container {
    background-attachment: scroll;
  }

  .intro__title,
  .intro__title-2 {
    font-size: 1.9rem;
    padding: 12px 20px;
    width: 100%;
  }

  .intro__text {
    font-size: 1.05rem;
  }

  .intro__button {
    flex-direction: column;
    gap: 15px;
  }

  .intro__button-link {
    width: 100%;
    text-align: center;
  }

  .services {
    padding: 50px 15px;
  }

  .featured-works h1 {
    font-size: 2rem;
  }

  .clients-carousel h3 {
    font-size: 2rem;
  }

  .quote__section-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .quote__section-text {
    width: 100%;
  }

  .quote__button-link {
    display: block;
    width: 100%;
  }

  .navbar__upper {
    display: block;
    /* Change from flex to block */
    text-align: center;
    padding: 10px;
  }

  .navbar__button {
    display: none;
  }

  .navbar__contact-list {
    display: none;
  }

  .navbar__upper-content {
    display: none;
  }

  .services__container {
    display: block;
    width: 100%;
    gap: 40px;
  }

  .services__column--left {
    text-align: center;
    width: 100%;
  }

  .services__image {
    display: none;
  }

  .services__column--right {
    width: 100%;
  }

  .featured-works {
    display: none;
  }

  .stats-container {
    display: block;
    text-align: center;
  }

  .stat {
    padding: 10px 0;
  }

  .quote__section-container {
    padding: 10px 20px;
  }

  .footer__top {
    display: block;
    padding: 0 10px;
    width: 100%;
  }

  .footer__column--company {
    width: 100%;
    text-align: justify;

  }

  .footer__column--support {
    width: 100%;
    text-align: start;
  }

  .footer__column--newsletter {
    width: 100%;
    text-align: start;
    padding: 0;
  }

  .footer__bottom {
    width: 100%;
    text-align: start;
    font-size: var(--fs-300);
    padding: 10px 10px;

  }

  .footer__form input {
    width: 100%;
  }

  .footer__form button {
    width: 30%;
  }

  .footer__heading {
    font-size: var(--fs-600);
  }

  .footer__list-item {
    font-size: var(--fs-400);
  }

  .modal-content {
    padding: 30px 20px;
    max-width: 95%;
  }

  .modal form {
    display: block;
    gap: 15px;
  }

  .modal form input,
  .modal form select,
  .modal form textarea {
    margin: 10px 0;
    padding: 12px 15px;
  }

  .modal button {
    width: 100%;
    margin-top: 10px;
  }

  .modal__form-title {
    font-size: 1.5rem;
  }

  .carousel {
    margin: 0 auto;
  }
  .mission-vision__row {
    flex-direction: column;
  }
  .mission,
  .vision {
    flex: 1 1 100%;
    margin-bottom: 20px;
  }
  
  /* About page mobile adjustments */
  .about__container {
    flex-direction: column;
    gap: 30px;
  }
  
  .about__content,
  .about__image {
    width: 100%;
  }
  
  .about__heading {
    font-size: 2rem;
  }
  
  .journey__container {
    padding: 40px 15px;
  }
  
  .journey__heading {
    font-size: 2rem;
  }
  
  .timeline::before {
    left: 30px;
  }
  
  .timeline-item {
    flex-direction: column !important;
    margin-bottom: 40px;
  }
  
  .timeline-labels,
  .timeline-content {
    width: 100%;
    margin: 0 0 0 60px;
    text-align: left;
  }
  
  .timeline-labels.right {
    text-align: left;
  }
  
  .timeline-icon {
    left: 30px;
    transform: translateX(0);
  }
  
  .timeline-year {
    margin-left: 0;
  }
  
  .timeline-year::before {
    width: 70px;
    height: 70px;
    left: 30px;
  }
  
  .year-label {
    font-size: 1.3rem;
    line-height: 70px;
    text-align: left;
    margin-left: 30px;
  }
  
  .what-we-do__row {
    flex-direction: column;
    gap: 30px;
  }
  
  .what-we-do__heading {
    font-size: 2rem;
  }
  
  .mission__title,
  .vision__title {
    font-size: 1.5rem;
  }
  
  .values__heading {
    font-size: 2rem;
  }
  
  .values__alpha {
    font-size: 3.5rem;
  }
  .technology__content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Left Column: Title and Description */
  .technology__info {
    max-width: 100%;
    padding: 0 10px;
  }

  /* Right Column: Cards Grid */
  .technology__cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 100%;
    padding: 0 10px;
  }

}


@media (max-width: 900px) {
  /* --- Navbar adjustments --- */
  /* Show only the logo in the upper nav and hide contact info */

  .fs-primary-heading {
    font-size: 2rem;
  }

  .fs-secondary-heading {
    font-size: 1.5rem;
  }

  .fs-700 {
    font-size: 1.2rem;
  }

  .fs-800 {
    font-size: 1.5rem;
  }

  .fs-900 {
    font-size: 2rem;
  }

  .container {
    width: 100%;
  }

  .intro__content {
    padding: 0 20px;
  }

  .navbar__upper {
    display: block;
    /* Change from flex to block */
    text-align: center;
    padding: 10px;
  }

  .featured-works {
    display: none;
  }

  .navbar__contact-list {
    display: none;
  }

  .navbar__upper-content {
    display: none;
  }

  .services__container {
    display: block;
    width: 100%;
    gap: 40px;
  }

  .services__column--left {
    text-align: center;
    width: 100%;
  }

  .services__image {
    display: none;
  }

  .services__column--right {
    width: 100%;
  }
  .services__header-title {
    font-size: var(--fs-800);
  }

  .services__header-content h1 {
    font-size: 2rem;
  }

  .services__header-content p {
    width: 80%;
    font-size: var(--fs-400);
  }

  .services__cards-container {
    padding: 40px 20px;
  }

  .training__heading {
    font-size: 2rem;
  }

  .training__tabs {
    gap: 10px;
  }

  .training__tab {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .consultancy__heading {
    font-size: 2rem;
  }

  .consultancy__timelines.horizontal {
    flex-direction: column;
    gap: 20px;
  }

  .timelines-arrow {
    display: none;
  }

  .services__overview {
    padding: 40px 15px;
  }

  .consultancy__process {
    padding: 40px 0;
  }

  .process__step {
    grid-template-columns: 50px 1fr;
    gap: 15px;
    margin-bottom: 30px;
  }

  .process__number {
    font-size: 2rem;
    line-height: 50px;
  }

  .process__connector {
    left: 25px;
  }

  .process__content {
    padding: 20px;
  }

  .process__title {
    font-size: 1.3rem;
  }

  .technology__content {
    flex-direction: column;
  }

  .technology__info,
  .technology__cards {
    max-width: 100%;
  }

  .technology__heading {
    font-size: 2rem;
  }

  .stat {
    padding: 10px 0;
  }

  .quote__section-container {
    padding: 10px 20px;
  }

  .footer__column--newsletter {
    display: none;
  }
}


/* --- Global Layout Adjustments --- */
/* General Styles */
.journey__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  font-family: var(--ff-secondary);
  background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.journey__container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1.5" fill="rgba(255,216,8,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
  opacity: 0.5;
  pointer-events: none;
}

.journey__heading {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 60px;
  color: white;
  font-weight: bold;
  position: relative;
  z-index: 1;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.journey__heading::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, var(--clr-accent-400), #ffa500);
  border-radius: 2px;
}

.journey__content {
  padding: 40px 0;
  position: relative;
  z-index: 1;
}

.timeline {
  position: relative;
  padding: 60px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, 
    var(--clr-accent-400) 0%, 
    #ffa500 25%, 
    var(--clr-accent-400) 50%, 
    #ffa500 75%, 
    var(--clr-accent-400) 100%);
  transform: translateX(-50%);
  box-shadow: 0 0 20px rgba(255, 216, 8, 0.5);
}

/* Timeline Items */
.timeline-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
  position: relative;
  opacity: 0;
  animation: fadeInTimeline 0.8s ease-out forwards;
}

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

.timeline-item:nth-child(1) { animation-delay: 0.2s; }
.timeline-item:nth-child(2) { animation-delay: 0.4s; }
.timeline-item:nth-child(3) { animation-delay: 0.6s; }
.timeline-item:nth-child(4) { animation-delay: 0.8s; }

/* Reverse order for alternate timeline items */
.timeline-item.reverse {
  flex-direction: row-reverse;
}

.timeline-labels {
  width: 40%;
  padding: 15px;
  text-align: right;
}

.timeline-labels.right {
  text-align: left;
}

.timeline-content {
  width: 40%;
  font-size: var(--fs-400);
  padding: 30px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
  backdrop-filter: blur(10px);
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 216, 8, 0.3);
}

.timeline-content::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 216, 8, 0.1) 0%, transparent 70%);
  transform: scale(0);
  transition: transform 0.6s ease;
}

.timeline-content:hover::before {
  transform: scale(1);
}

.timeline-content:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(255, 216, 8, 0.4);
  border-color: var(--clr-accent-400);
}

.timeline-content.left {
  margin-right: 5%;
}

.timeline-content.right {
  margin-left: 5%;
}

.timeline-icon {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--clr-accent-400), #ffa500);
  border: 4px solid white;
  border-radius: 50%;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  z-index: 2;
  box-shadow: 0 8px 25px rgba(255, 216, 8, 0.5);
  transition: all 0.3s ease;
}

.timeline-icon:hover {
  transform: translateX(-50%) scale(1.15) rotate(10deg);
  box-shadow: 0 12px 35px rgba(255, 216, 8, 0.7);
}

.timeline-icon i {
  color: var(--clr-neutral-900);
  font-size: 1.5rem;
}

/* Year Labels */
.timeline-year {
  text-align: center;
  margin: 40px 0;
  position: relative;
  z-index: 2;
}

.timeline-year::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--clr-accent-400), #ffa500);
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 10px 30px rgba(255, 216, 8, 0.5);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
  }
}

.year-label {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--clr-neutral-900);
  position: relative;
  z-index: 2;
  line-height: 90px;
  font-family: var(--ff-secondary);
  text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.3);
}

/* Labels */
.label-big {
  font-size: 1.4rem;
  font-family: var(--ff-secondary);
  color: white;
  font-weight: bold;
  margin-bottom: 8px;
}

.label-small {
  font-size: var(--fs-400);
  font-family: var(--ff-secondary);
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
}

/* Timeline Start and End */
.timeline-start,
.timeline-end {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: white;
  margin: 20px 0;
}

.description {
  margin-top: 10px;
  line-height: 1.6;
}

.description p {
  color: #555;
}

.title {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--clr-neutral-900);
  margin-bottom: 10px;
  font-family: var(--ff-secondary);
}


/* About Page */
.about__section {
  background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.about__section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 216, 8, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(30%, -30%);
}

.about__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.about__heading {
  margin-bottom: 25px;
  font-family: var(--ff-secondary);
  color: var(--clr-neutral-900);
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.about__heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--clr-accent-400), #ffa500);
  border-radius: 2px;
}

.about__text {
  line-height: 1.8;
  font-family: var(--ff-secondary);
  font-size: 1.1rem;
  color: #555;
}

.about__content {
  width: 55%;
  padding: 20px 0;
  text-align: justify;
  animation: slideInLeft 0.8s ease-out;
}

.about__image {
  width: 45%;
  padding: 20px;
  text-align: center;
  animation: slideInRight 0.8s ease-out;
}

.about__image img {
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about__image img:hover {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 20px 50px rgba(255, 216, 8, 0.3);
}

/* What we do */
.what-we-do {
  padding: 80px 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
  position: relative;
  overflow: hidden;
}

.what-we-do::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 216, 8, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-30%, 30%);
}

.what-we-do__row {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.what-we-do__image {
  flex: 1;
  max-width: 500px;
  animation: slideInLeft 0.8s ease-out;
}

.what-we-do__image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  border: 5px solid white;
}

.what-we-do__image img:hover {
  transform: scale(1.05) translateY(-10px);
  box-shadow: 0 25px 60px rgba(255, 216, 8, 0.4);
}

.what-we-do__content {
  flex: 1;
  text-align: justify;
  animation: slideInRight 0.8s ease-out;
}

.what-we-do__heading {
  font-size: 2.8rem;
  color: var(--clr-neutral-900);
  margin-bottom: 30px;
  font-family: var(--ff-secondary);
  font-weight: bold;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.what-we-do__heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--clr-accent-400), #ffa500);
  border-radius: 2px;
}

.what-we-do__text {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
  font-family: var(--ff-secondary);
}

/* Mission and vision */

.mission-vision {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  position: relative;
  overflow: hidden;
}

.mission-vision::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="80" height="80" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="mv-pattern" width="80" height="80" patternUnits="userSpaceOnUse"><path d="M 0 40 L 40 0 L 80 40 L 40 80 Z" fill="none" stroke="rgba(255,216,8,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23mv-pattern)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

.mission-vision__row {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* Mission & Vision common styles */
.mission,
.vision {
  flex: 1 1 45%;
  min-width: 300px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
  backdrop-filter: blur(10px);
  padding: 40px 35px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.mission::before,
.vision::before {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: radial-gradient(circle, rgba(255, 216, 8, 0.1) 0%, transparent 70%);
  transform: rotate(45deg);
  transition: all 0.6s ease;
}

.mission:hover::before,
.vision:hover::before {
  top: -50%;
  left: -50%;
}

.mission:hover,
.vision:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 60px rgba(255, 216, 8, 0.4);
  border-color: var(--clr-accent-400);
}

.mission__header,
.vision__header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 3px solid var(--clr-accent-400);
  position: relative;
  z-index: 1;
}

.mission__icon,
.vision__icon {
  font-size: 2.5rem;
  margin-right: 15px;
  transition: transform 0.3s ease;
}

.mission:hover .mission__icon,
.vision:hover .vision__icon {
  transform: scale(1.2) rotate(10deg);
}

.mission__title,
.vision__title {
  font-size: 2rem;
  color: var(--clr-neutral-900);
  margin: 0;
  font-family: var(--ff-secondary);
  font-weight: bold;
}

.mission__text,
.vision__text {
  text-align: justify;
  font-size: 1.05rem;
  color: #555;
  line-height: 1.8;
  font-family: var(--ff-secondary);
  position: relative;
  z-index: 1;
}

/* Values */

.values__section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.values__section::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 216, 8, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(30%, -50%);
}

.values__container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Title row: aligned left */
.values__heading {
  text-align: center;
  margin-bottom: 60px;
  color: var(--clr-neutral-900);
  font-weight: bold;
  position: relative;
  display: inline-block;
  width: 100%;
}

.values__heading::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, var(--clr-accent-400), #ffa500);
  border-radius: 2px;
}

/* Second row: 4 columns */
.values__row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.values__col {
  flex: 1 1 22%;
  min-width: 220px;
  text-align: left;
  background: white;
  padding: 35px 25px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border-top: 5px solid transparent;
}

.values__col::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 216, 8, 0.1), transparent);
  transition: left 0.6s ease;
}

.values__col:hover::before {
  left: 100%;
}

.values__col:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 50px rgba(255, 216, 8, 0.3);
  border-top-color: var(--clr-accent-400);
}

/* Make the letter in h1 large */
.values__col h1 {
  font-size: 5rem;
  margin: 0 0 15px;
  transition: all 0.3s ease;
}

.values__col:hover h1 {
  transform: scale(1.1) rotate(-5deg);
}

/* Title below letter */
.values__title {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 15px;
  color: var(--clr-neutral-900);
  font-family: var(--ff-secondary);
}

/* Description paragraph */
.values__desc {
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
  color: #666;
  font-family: var(--ff-secondary);
}

.values__alpha {
  color: var(--clr-accent-400);
  font-size: 5rem;
  font-weight: 700;
  font-family: var(--ff-secondary);
  line-height: 1;
  text-shadow: 2px 2px 8px rgba(255, 216, 8, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .values__row {
    flex-direction: column;
  }
  .values__col {
    flex: 1 1 100%;
  }
}


/* Services Page */

/* services header content */

.services__header {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("/images/service_header.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.services__header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 216, 8, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
  pointer-events: none;
}

.services__header-content {
  padding: 5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s ease-out;
}

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

.services__header-content h1 {
  font-size: 3.5rem;
  color: white;
  font-weight: bold;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.services__header-content p {
  font-size: var(--fs-600);
  color: white;
  margin-top: 1rem;
  width: 50%;
  line-height: 1.8;
  text-align: center;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* Services Overview - Simplified Tiles */
.services__overview {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.service__tile {
  background: white;
  padding: 40px 25px;
  border-radius: 15px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid transparent;
}

.service__tile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 216, 8, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service__tile:hover::before {
  opacity: 1;
}

.service__tile:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(255, 216, 8, 0.3);
  border-bottom-color: var(--clr-accent-400);
}

.service__tile-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  transition: transform 0.4s ease;
}

.service__tile:hover .service__tile-icon {
  transform: scale(1.15) rotate(-5deg);
}

.service__tile-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--clr-neutral-900);
  margin-bottom: 10px;
  font-family: var(--ff-secondary);
}

.service__tile-desc {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 20px;
  font-family: var(--ff-secondary);
}

.service__tile-arrow {
  margin-top: auto;
  color: var(--clr-accent-400);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.service__tile:hover .service__tile-arrow {
  transform: translateY(5px);
  color: var(--clr-neutral-900);
}

/* Responsive */
@media (max-width: 900px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .services__grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .service__tile {
    padding: 30px 20px;
  }
}

/* service training section*/
.service__training {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  position: relative;
}

/* Heading */
.training__heading {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: var(--clr-neutral-900);
  font-family: var(--ff-secondary);
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.training__heading::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--clr-accent-400), #ffa500);
  border-radius: 2px;
}

/* Tab Buttons */
.training__tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.training__tab {
  padding: 12px 30px;
  background: white;
  border: 2px solid transparent;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--ff-secondary);
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.training__tab::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: var(--clr-accent-400);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
  z-index: 0;
}

.training__tab:hover::before,
.training__tab.active::before {
  width: 300px;
  height: 300px;
}

.training__tab span {
  position: relative;
  z-index: 1;
}

.training__tab:hover,
.training__tab.active {
  border-color: var(--clr-accent-400);
  color: var(--clr-neutral-900);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 216, 8, 0.3);
}

.training__tab:focus {
  outline: 2px solid var(--clr-accent-400);
  outline-offset: 2px;
}

/* Tab Content */
.training__category {
  display: none;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  animation: fadeIn 0.5s ease-in;
}

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

.training__category.active {
  display: flex;
}

/* Course Card */
.training__course-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  flex: 1 1 calc(33.33% - 30px);
  min-width: 280px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border-left: 5px solid transparent;
}

.training__course-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: var(--clr-accent-400);
  opacity: 0.1;
  border-radius: 50%;
  transform: translate(40%, -40%);
  transition: all 0.4s ease;
}

.training__course-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(255, 216, 8, 0.3);
  border-left-color: var(--clr-accent-400);
}

.training__course-card:hover::before {
  transform: translate(0%, 0%) scale(3);
  opacity: 0.15;
}

.training__course-icon {
  font-size: 3rem;
  margin-bottom: 10px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.training__course-card:hover .training__course-icon {
  transform: scale(1.1) rotate(-5deg);
}

.training__course-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--clr-neutral-900);
  font-family: var(--ff-secondary);
}

.training__course-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #666;
  font-family: var(--ff-secondary);
}


/* Consultancy Section */
.service__consultancy {
  padding: 80px 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
  position: relative;
}

.service__consultancy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--clr-accent-400), #ffa500, var(--clr-accent-400));
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Part 1: Scope of Work */
.consultancy__scope {
  text-align: center;
  margin-bottom: 60px;
  padding: 0 20px;
}
.consultancy__heading {
  font-size: 3rem;
  color: var(--clr-neutral-900);
  margin-bottom: 15px;
  text-align: left;
  font-family: var(--ff-secondary);
  font-weight: bold;
  position: relative;
  display: inline-block;
}

.consultancy__heading::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--clr-accent-400), #ffa500);
  border-radius: 2px;
}

.consultancy__subtext {
  font-size: 1.2rem;
  color: #666;
  text-align: left;
  font-family: var(--ff-secondary);
  font-style: italic;
  margin-top: 20px;
}

/* Modern Process Flow */
.consultancy__process {
  position: relative;
  padding: 60px 0;
  max-width: 1000px;
  margin: 0 auto;
}

.process__step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 30px;
  margin-bottom: 40px;
  position: relative;
  opacity: 0;
  animation: fadeInLeft 0.6s ease-out forwards;
}

.process__step:nth-child(1) { animation-delay: 0.1s; }
.process__step:nth-child(2) { animation-delay: 0.2s; }
.process__step:nth-child(3) { animation-delay: 0.3s; }
.process__step:nth-child(4) { animation-delay: 0.4s; }
.process__step:nth-child(5) { animation-delay: 0.5s; }

.process__number {
  font-size: 3rem;
  font-weight: bold;
  color: var(--clr-accent-400);
  font-family: var(--ff-secondary);
  text-align: center;
  line-height: 80px;
  position: relative;
}

.process__number::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border: 3px solid var(--clr-accent-400);
  border-radius: 50%;
  opacity: 0.3;
}

.process__content {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border-left: 5px solid transparent;
}

.process__content::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 216, 8, 0.1), transparent);
  transition: left 0.6s ease;
}

.process__step:hover .process__content::before {
  left: 100%;
}

.process__step:hover .process__content {
  transform: translateX(10px);
  box-shadow: 0 15px 40px rgba(255, 216, 8, 0.3);
  border-left-color: var(--clr-accent-400);
}

.process__icon {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--clr-accent-400), #ffa500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(255, 216, 8, 0.3);
}

.process__icon i {
  font-size: 1.5rem;
  color: var(--clr-neutral-900);
}

.process__title {
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--clr-neutral-900);
  margin-bottom: 10px;
  font-family: var(--ff-secondary);
}

.process__desc {
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
  font-family: var(--ff-secondary);
}

.process__connector {
  position: absolute;
  left: 40px;
  top: 100px;
  width: 3px;
  height: calc(100% + 20px);
  background: linear-gradient(180deg, var(--clr-accent-400), #ffa500);
  opacity: 0.3;
}

.process__step:last-child .process__connector {
  display: none;
}

/* Responsive for Process Flow */
@media (max-width: 768px) {
  .process__step {
    grid-template-columns: 60px 1fr;
    gap: 20px;
  }

  .process__number {
    font-size: 2rem;
    line-height: 60px;
  }

  .process__number::after {
    width: 50px;
    height: 50px;
  }

  .process__connector {
    left: 30px;
  }
}

/* Scroll Reveal Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Add smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Page Loader */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
}

.loader-spinner {
  width: 60px;
  height: 60px;
  border: 5px solid rgba(255, 216, 8, 0.2);
  border-top: 5px solid var(--clr-accent-400);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loader-text {
  color: white;
  font-size: 1.2rem;
  font-family: var(--ff-secondary);
  font-weight: 500;
  animation: pulse 1.5s ease-in-out infinite;
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: #0e0e1a;
  color: var(--clr-accent-400);
  border: 1px solid rgba(255,216,8,0.35);
  border-radius: 2px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  z-index: 999;
}

.scroll-to-top.show {
  display: flex;
  animation: fadeInUp 0.3s ease-out;
}

.scroll-to-top:hover {
  background: var(--clr-accent-400);
  color: #000;
  border-color: var(--clr-accent-400);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,216,8,0.25);
}

.scroll-to-top:active {
  transform: translateY(0);
}

/* Hide arrows if timeline items are evenly spaced (only show between items if needed) */
.consultancy__timelines.horizontal .timelines-arrow {
  display: block;
}

/* Alternatively, you can include arrows inline if you prefer */
/* Uncomment below if you want arrows not as separate flex items
.timeline-arrow {
  margin: 0 10px;
}
*/

/* Part 2: ISO Standards Section */
.consultancy__iso {
  margin-top: 80px;
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.03) 0%, rgba(255, 216, 8, 0.05) 100%);
  border-radius: 15px;
}
.consultancy__iso-heading {
  font-size: 2.5rem;
  color: var(--clr-neutral-900);
  margin-bottom: 15px;
  text-align: left;
  font-family: var(--ff-secondary);
  font-weight: bold;
  position: relative;
  display: inline-block;
}

.consultancy__iso-heading::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--clr-accent-400), #ffa500);
  border-radius: 2px;
}

.consultancy__iso-subtext {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 40px;
  text-align: left;
  font-family: var(--ff-secondary);
  line-height: 1.6;
}
.consultancy__iso-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}
.consultancy__iso-item {
  background: white;
  padding: 30px;
  border-radius: 12px;
  width: calc(25% - 25px);
  min-width: 240px;
  text-align: left;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border-left: 5px solid transparent;
}

.consultancy__iso-item::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 216, 8, 0.1) 0%, transparent 70%);
  transform: scale(0);
  transition: transform 0.5s ease;
}

.consultancy__iso-item:hover::before {
  transform: scale(1);
}

.consultancy__iso-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(255, 216, 8, 0.3);
  border-left-color: var(--clr-accent-400);
}

.consultancy__iso-item i {
  font-size: 2.5rem;
  color: var(--clr-accent-400);
  margin-bottom: 15px;
  display: block;
  transition: transform 0.3s ease;
}

.consultancy__iso-item:hover i {
  transform: scale(1.2) rotate(10deg);
}

.consultancy__iso-title {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 10px;
  display: block;
  color: var(--clr-neutral-900);
  font-family: var(--ff-secondary);
}
.consultancy__iso-desc {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  font-family: var(--ff-secondary);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .consultancy__iso-item {
    width: calc(50% - 20px);
  }
  .consultancy__timelines.horizontal {
    flex-wrap: wrap;
  }
  .timelines-item {
    margin: 10px 0;
  }
}
@media (max-width: 480px) {
  .consultancy__iso-item {
    width: 100%;
  }
}


/* Technology Section - Dashboard Showcase */
.service__technology {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
  position: relative;
  overflow: hidden;
}

.service__technology::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="tech-grid" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="2" fill="rgba(255,216,8,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23tech-grid)"/></svg>');
  opacity: 0.5;
  pointer-events: none;
}

.technology__showcase {
  position: relative;
  z-index: 1;
}

.technology__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.technology__heading {
  font-size: 3rem;
  color: white;
  margin-bottom: 20px;
  font-family: var(--ff-secondary);
  font-weight: bold;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.technology__description {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  font-family: var(--ff-secondary);
}

.technology__dashboard {
  max-width: 1200px;
  margin: 0 auto 50px;
}

.dashboard__mockup {
  background: white;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.dashboard__mockup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border-radius: 20px 20px 0 0;
  display: flex;
  align-items: center;
  padding: 0 15px;
}

.dashboard__placeholder {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  min-height: 500px;
  border-radius: 10px;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
}

.dashboard__icon {
  font-size: 5rem;
  color: var(--clr-accent-400);
  margin-bottom: 20px;
  opacity: 0.5;
}

.dashboard__text {
  font-size: 1.5rem;
  color: #666;
  font-family: var(--ff-secondary);
  font-weight: bold;
  margin-bottom: 40px;
}

.dashboard__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 600px;
}

.dashboard__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.dashboard__feature:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 15px rgba(255, 216, 8, 0.2);
}

.dashboard__feature i {
  color: var(--clr-accent-400);
  font-size: 1.2rem;
}

.dashboard__feature span {
  color: #555;
  font-family: var(--ff-secondary);
  font-weight: 500;
}

.technology__cta {
  text-align: center;
  padding: 40px 20px;
}

.technology__cta-title {
  font-size: 1.8rem;
  color: white;
  margin-bottom: 25px;
  font-family: var(--ff-secondary);
  font-weight: bold;
}

.technology__cta-button {
  display: inline-block;
  padding: 16px 45px;
  background: linear-gradient(135deg, var(--clr-accent-400), #ffa500);
  color: var(--clr-neutral-900);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 30px;
  font-family: var(--ff-secondary);
  box-shadow: 0 8px 25px rgba(255, 216, 8, 0.4);
  transition: all 0.3s ease;
}

.technology__cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(255, 216, 8, 0.6);
  background: white;
  color: var(--clr-neutral-900);
}

/* Responsive for Technology Section */
@media (max-width: 768px) {
  .technology__heading {
    font-size: 2rem;
  }

  .dashboard__features {
    grid-template-columns: 1fr;
  }

  .dashboard__placeholder {
    min-height: 400px;
    padding: 30px 20px;
  }

  .dashboard__icon {
    font-size: 3.5rem;
  }

  .dashboard__text {
    font-size: 1.2rem;
  }
}

/* Supply Section */
.service__supply {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
}

.supply__header {
  text-align: center;
  margin-bottom: 60px;
  padding: 0 20px;
}

.supply__heading {
  font-size: 3rem;
  color: var(--clr-neutral-900);
  margin-bottom: 20px;
  font-family: var(--ff-secondary);
  font-weight: bold;
  position: relative;
  display: inline-block;
}

.supply__heading::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, var(--clr-accent-400), #ffa500);
  border-radius: 2px;
}

.supply__subtext {
  font-size: 1.2rem;
  color: #666;
  margin-top: 25px;
  line-height: 1.8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.supply__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.supply__item {
  background: white;
  padding: 35px 30px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border-top: 4px solid transparent;
}

.supply__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 216, 8, 0.1), transparent);
  transition: left 0.6s ease;
}

.supply__item:hover::before {
  left: 100%;
}

.supply__item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(255, 216, 8, 0.3);
  border-top-color: var(--clr-accent-400);
}

.supply__icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.supply__item:hover .supply__icon {
  transform: scale(1.15) rotate(-5deg);
}

.supply__item-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--clr-neutral-900);
  margin-bottom: 20px;
  font-family: var(--ff-secondary);
}

.supply__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.supply__list li {
  font-size: 1rem;
  color: #666;
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
  line-height: 1.6;
  font-family: var(--ff-secondary);
}

.supply__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--clr-accent-400);
  font-weight: bold;
  font-size: 1.2rem;
}

.supply__cta {
  text-align: center;
  padding: 50px 30px;
  background: linear-gradient(135deg, var(--clr-neutral-900) 0%, #2c2c2c 100%);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.supply__cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 216, 8, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.supply__cta-text {
  font-size: 1.8rem;
  color: white;
  margin-bottom: 25px;
  font-weight: 600;
  font-family: var(--ff-secondary);
  position: relative;
  z-index: 1;
}

.supply__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--clr-accent-400);
  color: var(--clr-neutral-900);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: bold;
  font-family: var(--ff-secondary);
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 216, 8, 0.3);
  position: relative;
  z-index: 1;
}

.supply__cta-button:hover {
  background: white;
  color: var(--clr-neutral-900);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 216, 8, 0.5);
}

/* Responsive adjustments for supply section */
@media (max-width: 768px) {
  .supply__heading {
    font-size: 2rem;
  }

  .supply__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .supply__cta-text {
    font-size: 1.3rem;
  }

  .supply__cta-button {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

/* Team Page */

/* Team Header Section */
.team__header {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
  overflow: hidden;
}

.team__header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="team-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="2" fill="rgba(255,216,8,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23team-pattern)"/></svg>');
  opacity: 0.5;
  pointer-events: none;
}

.team__header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(255, 216, 8, 0.1) 0%, transparent 50%);
}

.team__header-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 20px;
  animation: fadeInUp 0.8s ease-out;
}

.team__header-title {
  font-size: 3.5rem;
  color: white;
  font-weight: bold;
  margin-bottom: 20px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  font-family: var(--ff-secondary);
}

.team__header-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--ff-secondary);
  letter-spacing: 1px;
}

/* Team Members Section */
.team__members {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
}

.team__intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.team__intro-heading {
  font-size: 2.5rem;
  color: var(--clr-neutral-900);
  margin-bottom: 20px;
  font-weight: bold;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.team__intro-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--clr-accent-400), #ffa500);
  border-radius: 2px;
}

.team__intro-text {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Team Card Styling */
.team__card {
  perspective: 1000px;
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

.team__card:nth-child(1) { animation-delay: 0.2s; }
.team__card:nth-child(2) { animation-delay: 0.4s; }
.team__card:nth-child(3) { animation-delay: 0.6s; }

.team__card-inner {
  position: relative;
  width: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.team__card-front {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
}

.team__card:hover .team__card-front {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(255, 216, 8, 0.3);
}

.team__image-container {
  position: relative;
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.team__image-placeholder {
  font-size: 8rem;
  color: rgba(255, 255, 255, 0.3);
  transition: all 0.4s ease;
}

.team__card:hover .team__image-placeholder {
  transform: scale(1.1);
  color: rgba(255, 255, 255, 0.5);
}

.team__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--clr-accent-400);
  color: var(--clr-neutral-900);
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(255, 216, 8, 0.4);
  font-family: var(--ff-secondary);
}

.team__info {
  padding: 30px 25px;
  text-align: center;
}

.team__name {
  font-size: 1.8rem;
  color: var(--clr-neutral-900);
  margin-bottom: 10px;
  font-weight: bold;
  font-family: var(--ff-secondary);
}

.team__position {
  font-size: 1rem;
  color: #666;
  margin-bottom: 20px;
  font-family: var(--ff-secondary);
  font-weight: 500;
}

.team__divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-accent-400), #ffa500);
  margin: 20px auto;
  border-radius: 2px;
}

.team__bio {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
  font-family: var(--ff-secondary);
}

.team__social {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.team__social-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-neutral-900);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.team__social-link:hover {
  background: linear-gradient(135deg, var(--clr-accent-400), #ffa500);
  color: white;
  transform: translateY(-5px) rotate(10deg);
  box-shadow: 0 8px 20px rgba(255, 216, 8, 0.4);
}

/* Team CTA Section */
.team__cta {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  position: relative;
  overflow: hidden;
}

.team__cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 216, 8, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

.team__cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.team__cta-heading {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 20px;
  font-weight: bold;
  font-family: var(--ff-secondary);
}

.team__cta-text {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 35px;
  line-height: 1.8;
  font-family: var(--ff-secondary);
}

.team__cta-button {
  display: inline-block;
  padding: 16px 45px;
  background: var(--clr-accent-400);
  color: var(--clr-neutral-900);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 216, 8, 0.3);
  font-family: var(--ff-secondary);
}

.team__cta-button:hover {
  background: white;
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(255, 216, 8, 0.5);
}

/* Responsive Design for Team Page */
@media (max-width: 768px) {
  .team__header-title {
    font-size: 2.2rem;
  }

  .team__header-subtitle {
    font-size: 1rem;
  }

  .team__intro-heading {
    font-size: 2rem;
  }

  .team__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .team__image-container {
    height: 250px;
  }

  .team__image-placeholder {
    font-size: 6rem;
  }

  .team__name {
    font-size: 1.5rem;
  }

  .team__cta-heading {
    font-size: 2rem;
  }

  .team__cta-text {
    font-size: 1rem;
  }
}

/* Projects Page */

/* Projects Header */
.projects__header {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  overflow: hidden;
}

.projects__header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="proj-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="2" fill="rgba(255,216,8,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23proj-pattern)"/></svg>');
  opacity: 0.5;
  pointer-events: none;
}

.projects__header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at bottom left, rgba(255, 216, 8, 0.1) 0%, transparent 50%);
}

.projects__header-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 20px;
  animation: fadeInUp 0.8s ease-out;
}

.projects__header-title {
  font-size: 3.5rem;
  color: white;
  font-weight: bold;
  margin-bottom: 20px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  font-family: var(--ff-secondary);
}

.projects__header-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--ff-secondary);
  letter-spacing: 1px;
}

/* Projects Stats Section */
.projects__stats {
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--clr-accent-400) 0%, #ffa500 100%);
  position: relative;
  overflow: hidden;
}

.projects__stats::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 25s linear infinite;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.stats__item {
  text-align: center;
  padding: 30px 20px;
  transition: transform 0.3s ease;
}

.stats__item:hover {
  transform: translateY(-10px);
}

.stats__number {
  font-size: 3.5rem;
  font-weight: bold;
  color: var(--clr-neutral-900);
  font-family: var(--ff-secondary);
  margin-bottom: 10px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
}

.stats__label {
  font-size: 1.1rem;
  color: var(--clr-neutral-900);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--ff-secondary);
}

/* Filter Section */
.projects__filter {
  padding: 50px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.filter__buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.filter__btn {
  padding: 12px 30px;
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--ff-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.filter__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 216, 8, 0.2);
  border-color: var(--clr-accent-400);
}

.filter__btn.active {
  background: linear-gradient(135deg, var(--clr-accent-400), #ffa500);
  color: var(--clr-neutral-900);
  border-color: var(--clr-accent-400);
  box-shadow: 0 6px 20px rgba(255, 216, 8, 0.3);
}

/* Projects Showcase */
.projects__showcase {
  padding: 60px 20px 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.projects__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 35px;
  max-width: 1200px;
  margin: 0 auto;
}

.project__card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  opacity: 1;
}

.project__card.hidden {
  display: none;
}

.project__card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 50px rgba(255, 216, 8, 0.3);
}

.project__image {
  position: relative;
  height: 250px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Different gradients for each category */
.project__card[data-category="training"] .project__image {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.project__card[data-category="consultancy"] .project__image {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.project__card[data-category="technology"] .project__image {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.project__card[data-category="supply"] .project__image {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.project__image-placeholder {
  font-size: 6rem;
  color: rgba(255, 255, 255, 0.3);
  transition: all 0.4s ease;
}

.project__card:hover .project__image-placeholder {
  transform: scale(1.2);
  color: rgba(255, 255, 255, 0.5);
}

.project__category-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--clr-accent-400), #ffa500);
  color: var(--clr-neutral-900);
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 0.85rem;
  box-shadow: 0 4px 15px rgba(255, 216, 8, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.project__content {
  padding: 30px;
}

.project__title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--clr-neutral-900);
  margin-bottom: 15px;
  font-family: var(--ff-secondary);
  line-height: 1.3;
}

.project__client {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 15px;
  font-family: var(--ff-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.project__client i {
  color: var(--clr-accent-400);
}

.project__description {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
  font-family: var(--ff-secondary);
}

.project__achievements {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 20px;
  border-top: 2px solid #f0f0f0;
}

.achievement__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #555;
  font-family: var(--ff-secondary);
  transition: transform 0.3s ease;
}

.achievement__item:hover {
  transform: translateX(5px);
}

.achievement__item i {
  color: var(--clr-accent-400);
  font-size: 1rem;
  flex-shrink: 0;
}

.achievement__item span {
  font-weight: 500;
}

/* Projects CTA */
.projects__cta {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
  position: relative;
  overflow: hidden;
}

.projects__cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 216, 8, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

.projects__cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.projects__cta-heading {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 20px;
  font-weight: bold;
  font-family: var(--ff-secondary);
}

.projects__cta-text {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 35px;
  line-height: 1.8;
  font-family: var(--ff-secondary);
}

.projects__cta-button {
  display: inline-block;
  padding: 16px 45px;
  background: linear-gradient(135deg, var(--clr-accent-400), #ffa500);
  color: var(--clr-neutral-900);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 216, 8, 0.3);
  font-family: var(--ff-secondary);
}

.projects__cta-button:hover {
  background: white;
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(255, 216, 8, 0.5);
}

/* Responsive for Projects Page */
@media (max-width: 900px) {
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .projects__grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 600px) {
  .projects__header-title {
    font-size: 2.2rem;
  }

  .projects__header-subtitle {
    font-size: 1rem;
  }

  .stats__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stats__number {
    font-size: 3rem;
  }

  .filter__buttons {
    gap: 10px;
  }

  .filter__btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .projects__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .project__image {
    height: 200px;
  }

  .project__image-placeholder {
    font-size: 4rem;
  }

  .project__title {
    font-size: 1.3rem;
  }

  .projects__cta-heading {
    font-size: 2rem;
  }

  .projects__cta-text {
    font-size: 1rem;
  }
}

/* ===================================================
   HERO — Split Panel
   =================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  background: #0e0e1a;
  overflow: hidden;
}

.hero__split {
  display: grid;
  grid-template-columns: 58% 42%;
  min-height: 100vh;
}

/* Left text panel */
.hero__left {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 64px 80px;
  border-right: 1px solid rgba(255,216,8,0.1);
}

.hero__left::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--clr-accent-400), transparent);
}

.hero__badges {
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
  animation: fadeInUp 0.6s ease-out both;
}

.hero__badge {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  font-family: var(--ff-secondary);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 5px 12px;
}

.hero__title {
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero__title em {
  font-style: normal;
  color: var(--clr-accent-400);
  display: block;
}

.hero__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.78;
  max-width: 460px;
  margin-bottom: 40px;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

.hero__btn {
  display: inline-block;
  padding: 13px 28px;
  font-size: 0.82rem;
  font-weight: 700;
  font-family: var(--ff-secondary);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.hero__btn--primary {
  background: var(--clr-accent-400);
  color: #000;
}

.hero__btn--primary:hover {
  background: #ffe54d;
  transform: translateY(-2px);
}

.hero__btn--outline {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.18);
}

.hero__btn--outline:hover {
  border-color: var(--clr-accent-400);
  color: var(--clr-accent-400);
  transform: translateY(-2px);
}

/* Stats strip */
.hero__stats {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.07);
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero__stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}

/* Right image panel */
.hero__right {
  position: relative;
  overflow: hidden;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 14s ease;
}

.hero:hover .hero__img {
  transform: scale(1.05);
}

.hero__right-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #0e0e1a 0%, rgba(14,14,26,0.15) 35%, transparent 100%);
}

/* Mobile */
@media (max-width: 900px) {
  .hero__split {
    grid-template-columns: 1fr;
    grid-template-rows: auto 40vh;
  }

  .hero__left {
    padding: 100px 24px 48px;
    border-right: none;
  }

  .hero__left::before {
    top: 0;
    bottom: auto;
    left: 24px;
    right: 24px;
    width: auto;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--clr-accent-400), transparent);
  }

  .hero__title {
    font-size: clamp(2.4rem, 8vw, 3.2rem);
    line-height: 1;
  }

  .hero__stats {
    gap: 24px;
  }

  .hero__right-overlay {
    background: linear-gradient(to bottom, #0e0e1a 0%, transparent 40%);
  }
}

/* ===================================================
   NAVBAR REDESIGN — Single Dark Bar
   =================================================== */

.navbar {
  background: #0e0e1a !important;
  border-bottom: 1px solid rgba(255,216,8,0.12);
  box-shadow: none;
}

.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.5) !important;
  border-bottom-color: rgba(255,216,8,0.28);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 32px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.navbar__brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.navbar__logo {
  height: 48px !important;
  width: auto !important;
  object-fit: contain;
  filter: none !important;
  display: block;
}

.navbar__logo:hover {
  transform: none !important;
  opacity: 0.85;
}

.navbar__row {
  display: contents;
}

.navbar__upper,
.navbar__upper-content,
.navbar__contact-list {
  display: none !important;
}

.navbar__nav {
  display: flex !important;
  align-items: center !important;
  background: none !important;
  background-color: transparent !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
}

.navbar__nav-list {
  display: flex !important;
  align-items: center !important;
  padding: 0 !important;
  background: none !important;
  background-color: transparent !important;
  width: auto !important;
}

.navbar__nav-item {
  padding: 0 !important;
  background: none !important;
  border-radius: 0 !important;
}

.navbar__nav-item::before {
  display: none !important;
}

.navbar__nav-item + .navbar__nav-item {
  margin-left: 0 !important;
}

.navbar__nav-item:hover {
  background: none !important;
}

.navbar__nav-link {
  display: block;
  padding: 8px 13px !important;
  font-size: 0.88rem !important;
  font-family: var(--ff-secondary);
  color: rgba(13,27,62,0.62) !important;
  text-decoration: none;
  letter-spacing: 0.03em;
  position: relative;
  transition: color 0.2s ease;
}

.navbar__nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 13px;
  right: 13px;
  height: 2px;
  background: var(--clr-accent-400);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.navbar__nav-item:hover .navbar__nav-link {
  color: #0d1b3e !important;
}

.navbar__nav-item:hover .navbar__nav-link::after {
  transform: scaleX(1);
}

.navbar__nav-icon {
  display: none !important;
}

.navbar__cta {
  display: inline-block;
  margin-left: 20px;
  padding: 9px 22px;
  background: var(--clr-accent-400);
  color: #000 !important;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: var(--ff-secondary);
  text-decoration: none;
  letter-spacing: 0.04em;
  border-radius: 2px;
  transition: background 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.navbar__cta:hover {
  background: #ffe54d;
  transform: translateY(-1px);
}

.navbar__button {
  display: none !important;
}

.navbar__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 1.3rem;
  line-height: 1;
  transition: color 0.2s ease;
}

.navbar__hamburger:hover {
  color: var(--clr-accent-400);
  transform: none !important;
}

.navbar__hamburger i {
  transition: none !important;
}

@media (max-width: 900px) {
  .navbar__inner {
    padding: 0 20px;
    position: relative;
  }

  .navbar__hamburger {
    display: block;
  }

  .navbar__nav {
    display: none !important;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column !important;
    align-items: stretch !important;
    background: #ffffff !important;
    border-top: 1px solid rgba(13,27,62,0.08);
    box-shadow: 0 8px 24px rgba(13,27,62,0.1);
    padding: 8px 0 20px !important;
    z-index: 999;
  }

  .navbar__nav.active {
    display: flex !important;
  }

  .navbar__nav-list {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .navbar__nav-link {
    padding: 13px 24px !important;
    font-size: 0.95rem !important;
    color: rgba(13,27,62,0.7) !important;
    border-bottom: 1px solid rgba(13,27,62,0.06) !important;
  }

  .navbar__nav-link::after {
    display: none !important;
  }

  .navbar__cta {
    margin: 16px 24px 4px !important;
    text-align: center;
    display: block !important;
  }
}

/* ===================================================
   FOOTER REDESIGN
   =================================================== */

.footer {
  background: #0e0e1a !important;
  padding: 72px 0 0 !important;
}

.footer::before {
  display: none !important;
}

.footer__container {
  max-width: 1280px !important;
  width: 90% !important;
}

.footer__top {
  display: grid !important;
  grid-template-columns: 1.6fr 1fr 1fr 1.8fr !important;
  gap: 48px !important;
  padding: 0 0 56px !important;
  border-bottom: 1px solid rgba(255,216,8,0.15) !important;
  flex-wrap: unset;
  align-items: start;
}

.footer__column {
  min-width: unset !important;
}

.footer__column--brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__brand-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  align-self: flex-start;
}

.footer__brand-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  font-family: var(--ff-secondary);
  line-height: 1.7;
  max-width: 280px;
}

.footer__logo-iso {
  max-width: 80px !important;
  margin-top: 4px !important;
}

.footer__heading {
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: var(--clr-accent-400) !important;
  margin-bottom: 20px !important;
  padding-bottom: 0 !important;
}

.footer__heading::after {
  display: none !important;
}

.footer__list-item {
  margin-bottom: 10px !important;
}

.footer__list-item a {
  font-size: 0.9rem !important;
  color: rgba(255,255,255,0.55) !important;
}

.footer__list-item:hover {
  transform: none !important;
}

.footer__list-item a:hover {
  color: #fff !important;
}

.footer__column--text {
  font-size: 0.88rem !important;
  color: rgba(255,255,255,0.5) !important;
  margin: 0 0 18px !important;
}

.footer__form--row {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.footer__form--input {
  flex: 1;
  padding: 10px 14px !important;
  background: rgba(255,255,255,0.07) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 2px !important;
  color: white !important;
  font-family: var(--ff-secondary);
  font-size: 0.85rem;
  width: auto !important;
  margin: 0 !important;
}

.footer__form--input:focus {
  outline: none;
  border-color: rgba(255,216,8,0.5) !important;
}

.footer__form--input::placeholder {
  color: rgba(255,255,255,0.35);
}

.footer__form--button {
  padding: 10px 18px !important;
  background: var(--clr-accent-400) !important;
  color: #000 !important;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-family: var(--ff-secondary);
  font-size: 0.82rem;
  border-radius: 2px !important;
  transition: background 0.2s ease;
  margin: 0 !important;
  width: auto !important;
  display: inline-block !important;
  box-shadow: none !important;
}

.footer__form--button:hover {
  background: #ffe54d !important;
  transform: none !important;
  box-shadow: none !important;
}

.footer__contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-family: var(--ff-secondary);
  transition: color 0.2s ease;
}

.footer__contact-item:hover {
  color: #fff;
}

.footer__contact-item i {
  color: var(--clr-accent-400);
  font-size: 0.9rem;
  width: 14px;
}

.footer__bottom {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 24px 0 !important;
  margin-top: 0 !important;
  border-top: 1px solid rgba(255,255,255,0.07) !important;
}

.footer__social-icons a {
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.08);
  width: 38px !important;
  height: 38px !important;
  font-size: 1.1rem !important;
}

.footer__social-icons a:hover {
  background: var(--clr-accent-400) !important;
  color: #000 !important;
  transform: translateY(-2px) !important;
}

.footer__credits {
  font-size: 0.82rem !important;
  color: rgba(255,255,255,0.35) !important;
}

.footer__legal a {
  font-size: 0.82rem !important;
  color: rgba(255,255,255,0.35) !important;
}

.footer__legal a:hover {
  color: rgba(255,255,255,0.7) !important;
}

.fab {
  color: inherit !important;
}

@media (max-width: 900px) {
  .footer__top {
    grid-template-columns: 1fr 1fr !important;
    gap: 32px !important;
  }
}

@media (max-width: 600px) {
  .footer__top {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .footer__bottom {
    flex-direction: column !important;
    text-align: center !important;
    gap: 12px !important;
    padding: 20px 0 !important;
  }
}

/* ===================================================
   WHAT WE DO — Bento Grid (Home Page)
   =================================================== */

.wwd {
  background: #0e0e1a;
  padding: 80px 0;
}

.wwd__header {
  max-width: 1200px;
  margin: 0 auto 48px;
  padding: 0 24px;
}

.wwd__eyebrow {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-accent-400);
  font-family: var(--ff-secondary);
  margin-bottom: 12px;
}

.wwd__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  font-family: var(--ff-secondary);
  line-height: 1.1;
}

.wwd__grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 6px;
}

.wwd__panel {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #1a1a2e;
}

.wwd__panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease;
  z-index: 0;
}

.wwd__panel:hover::before {
  transform: scale(1.08);
}

.wwd__panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.3) 55%, rgba(0,0,0,0.08) 100%);
  z-index: 1;
}

.wwd__panel--tall {
  grid-row: span 2;
}

.wwd__panel--wide {
  grid-column: span 2;
}

.wwd__panel-inner {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  z-index: 2;
}

.wwd__tag {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-accent-400);
  font-family: var(--ff-secondary);
  margin-bottom: 8px;
}

.wwd__panel-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  font-family: var(--ff-secondary);
  line-height: 1.2;
  margin-bottom: 0;
}

.wwd__panel-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.72);
  font-family: var(--ff-secondary);
  line-height: 1.65;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin-top 0.4s ease;
  margin-top: 0;
}

.wwd__panel:hover .wwd__panel-desc {
  max-height: 100px;
  margin-top: 10px;
}

.wwd__bar {
  width: 0;
  height: 2px;
  background: var(--clr-accent-400);
  margin-top: 12px;
  transition: width 0.4s ease;
}

.wwd__panel:hover .wwd__bar {
  width: 36px;
}

@media (max-width: 768px) {
  .wwd__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    padding: 0 16px;
  }
  .wwd__panel {
    height: 240px;
  }
  .wwd__panel--tall,
  .wwd__panel--wide {
    grid-row: span 1;
    grid-column: span 1;
  }
}

/* ===================================================
   FEATURED WORKS — Sandwich Grid (Home Page)
   =================================================== */

.fw {
  background: #0e0e1a;
  padding: 80px 0;
}

.fw__header {
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 0 24px;
}

.fw__title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #fff;
}

.fw__title span {
  color: var(--clr-accent-400);
}

.fw__grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 360px 200px;
  gap: 6px;
}

.fw__panel {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.fw__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  z-index: 0;
}

.fw__panel:hover .fw__img {
  transform: scale(1.08);
}

.fw__panel--strip {
  grid-column: span 2;
}

.fw__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, transparent 100%);
  z-index: 1;
}

.fw__panel--strip .fw__overlay {
  top: 0;
  right: auto;
  bottom: 0;
  width: 280px;
  padding: 0 28px;
  background: linear-gradient(to right, rgba(0,0,0,0.88) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fw__cat {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-accent-400);
  font-family: var(--ff-secondary);
  margin-bottom: 6px;
}

.fw__name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  font-family: var(--ff-secondary);
  line-height: 1.2;
}

.fw__sub {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.62);
  font-family: var(--ff-secondary);
  margin-top: 5px;
}

@media (max-width: 768px) {
  .fw__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    padding: 0 16px;
  }
  .fw__panel {
    height: 220px;
  }
  .fw__panel--strip {
    grid-column: span 1;
  }
  .fw__panel--strip .fw__overlay {
    width: 180px;
  }
}

/* ===================================================
   BACKGROUND CONSISTENCY — Home Page
   =================================================== */

.clients-carousel {
  background: #0e0e1a !important;
  background-image: none !important;
}

.clients-carousel h3 {
  color: #fff !important;
}

.clients-carousel h3::after {
  background: linear-gradient(90deg, var(--clr-accent-400), #ffa500) !important;
}

.quote__section {
  background: #1a1a2e !important;
}

.quote__section-text {
  color: #fff !important;
}

.quote__button-link {
  background-color: var(--clr-accent-400) !important;
  color: #000 !important;
  box-shadow: 0 8px 25px rgba(255, 216, 8, 0.25) !important;
}

/* ===================================================
   MISSION & VISION — Reduce Height
   =================================================== */

.mission-vision {
  padding: 52px 20px !important;
}

.mission,
.vision {
  padding: 28px 28px !important;
}

.mission__title,
.vision__title {
  font-size: 1.25rem !important;
}

/* ===================================================
   MISSION & VISION — Split Image Panels (About Page)
   =================================================== */

.mv {
  background: #0e0e1a;
}

.mv__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 440px;
}

.mv__panel {
  position: relative;
  overflow: hidden;
  padding: 64px 48px;
}

.mv__panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease;
  z-index: 0;
}

.mv__panel:hover::before {
  transform: scale(1.05);
}

.mv__panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 26, 0.82);
  z-index: 1;
}

.mv__inner {
  position: relative;
  z-index: 2;
  max-width: 480px;
}

.mv__eyebrow {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-accent-400);
  font-family: var(--ff-secondary);
  margin-bottom: 16px;
}

.mv__heading {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 28px;
  position: relative;
  padding-bottom: 20px;
}

.mv__heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--clr-accent-400);
}

.mv__text {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.78;
}

@media (max-width: 768px) {
  .mv__grid {
    grid-template-columns: 1fr;
  }
  .mv__panel {
    padding: 48px 24px;
  }
}

/* ===================================================
   JOURNEY — Editorial List (About Page)
   =================================================== */

.journey {
  background: #0e0e1a;
  padding: 80px 0;
}

.journey__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.journey__title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 56px;
  position: relative;
  padding-bottom: 18px;
}

.journey__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: var(--clr-accent-400);
}

.journey__list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-left: 2px solid rgba(255,216,8,0.25);
  padding-left: 32px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.journey__item {
  display: flex;
  gap: 24px;
  position: relative;
}

.journey__item::before {
  content: '';
  position: absolute;
  left: -39px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--clr-accent-400);
  border: 2px solid #0e0e1a;
  box-shadow: 0 0 0 3px rgba(255,216,8,0.3);
}

.journey__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 64px;
}

.journey__year {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--clr-accent-400);
  font-family: var(--ff-secondary);
  font-weight: 700;
}

.journey__icon {
  color: rgba(255,255,255,0.35);
  font-size: 1.1rem;
}

.journey__body {
  flex: 1;
}

.journey__tag {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #0e0e1a;
  background: var(--clr-accent-400);
  padding: 2px 8px;
  border-radius: 2px;
  font-family: var(--ff-secondary);
  margin-bottom: 10px;
}

.journey__name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  font-family: var(--ff-secondary);
  margin-bottom: 8px;
  line-height: 1.2;
}

.journey__desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  font-family: var(--ff-secondary);
  line-height: 1.7;
}

/* ===================================================
   ABOUT VALUES — 2×2 Bento (About Page)
   =================================================== */

.about-values {
  background: #0e0e1a;
  padding: 80px 0;
}

.av__header {
  max-width: 1200px;
  margin: 0 auto 48px;
  padding: 0 24px;
}

.av__title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #fff;
}

.av__grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 320px 320px;
  gap: 6px;
}

.av__panel {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.av__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  z-index: 0;
}

.av__panel:hover .av__img {
  transform: scale(1.06);
}

.av__panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.1) 100%);
  z-index: 1;
}

.av__inner {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  z-index: 2;
}

.av__letter {
  display: block;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--clr-accent-400);
  font-family: var(--ff-secondary);
  line-height: 1;
  margin-bottom: 8px;
  opacity: 0.85;
}

.av__name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  font-family: var(--ff-secondary);
  margin-bottom: 0;
}

.av__desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  font-family: var(--ff-secondary);
  line-height: 1.65;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin-top 0.4s ease;
  margin-top: 0;
}

.av__panel:hover .av__desc {
  max-height: 100px;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .av__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    padding: 0 16px;
  }
  .av__panel {
    height: 280px;
  }
}

/* ===================================================
   LIGHT / PROFESSIONAL THEME
   Replaces the editorial dark aesthetic with a clean,
   navy-and-white palette suited to enterprise clients
   in the HSE / QSHE sector.

   Colour tokens:
     White sections  #ffffff
     Off-white       #f5f7fa
     Deep navy       #0d1b3e   (dark text, dark panels)
     Gold            #ffd808   (accent – unchanged)
   =================================================== */

/* --- Navbar: white bar, navy links --- */
.navbar {
  background: #ffffff !important;
  border-bottom: 1px solid rgba(13,27,62,0.1) !important;
  box-shadow: 0 2px 12px rgba(13,27,62,0.06) !important;
}
.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(13,27,62,0.12) !important;
  border-bottom-color: rgba(13,27,62,0.14) !important;
}
.navbar__hamburger {
  color: #0d1b3e !important;
}
.navbar__hamburger:hover {
  color: var(--clr-accent-400) !important;
}
.navbar__nav-link {
  color: rgba(13,27,62,0.6) !important;
}
.navbar__nav-item:hover .navbar__nav-link {
  color: #0d1b3e !important;
}

@media (max-width: 900px) {
  .navbar__nav {
    background: #ffffff !important;
    border-top: 1px solid rgba(13,27,62,0.08) !important;
  }
  .navbar__nav-link {
    border-bottom: 1px solid rgba(13,27,62,0.06) !important;
    color: rgba(13,27,62,0.7) !important;
  }
}

/* --- Hero: off-white left panel, navy text --- */
.hero {
  background: #f5f7fa !important;
}
.hero__left {
  border-right-color: rgba(13,27,62,0.08) !important;
}
.hero__badge {
  color: rgba(13,27,62,0.45) !important;
  border-color: rgba(13,27,62,0.12) !important;
}
.hero__title {
  color: #0d1b3e !important;
}
.hero__title em {
  color: var(--clr-accent-400) !important;
}
.hero__sub {
  color: rgba(13,27,62,0.55) !important;
}
.hero__btn--outline {
  color: rgba(13,27,62,0.68) !important;
  border-color: rgba(13,27,62,0.18) !important;
}
.hero__btn--outline:hover {
  color: #0d1b3e !important;
  border-color: var(--clr-accent-400) !important;
}
.hero__stats {
  border-top-color: rgba(13,27,62,0.08) !important;
}
.hero__stat-num {
  color: #0d1b3e !important;
}
.hero__stat-label {
  color: rgba(13,27,62,0.4) !important;
}
.hero__right-overlay {
  background: linear-gradient(to right,
    #f5f7fa 0%,
    rgba(245,247,250,0.18) 38%,
    transparent 100%) !important;
}

@media (max-width: 900px) {
  .hero__right-overlay {
    background: linear-gradient(to bottom,
      #f5f7fa 0%, transparent 40%) !important;
  }
}

/* --- What We Do bento (home): white bg, navy title --- */
.wwd {
  background: #ffffff !important;
}
.wwd__title {
  color: #0d1b3e !important;
}
/* Photo panels keep their dark-overlay style — text stays white */

/* --- Featured Works bento (home): off-white bg, navy title --- */
.fw {
  background: #f5f7fa !important;
}
.fw__title {
  color: #0d1b3e !important;
}

/* --- Clients carousel: off-white, navy heading --- */
.clients-carousel {
  background: #f5f7fa !important;
  background-image: none !important;
}
.clients-carousel h3 {
  color: #0d1b3e !important;
}
.clients-carousel h3::after {
  background: var(--clr-accent-400) !important;
}

/* --- Quote / CTA strip: matches statistics gold gradient --- */
.quote__section {
  background: linear-gradient(135deg, var(--clr-accent-400) 0%, #ffa500 100%) !important;
}
.quote__section-text {
  color: #0d1b3e !important;
}
.quote__button-link {
  background-color: #0d1b3e !important;
  color: #ffffff !important;
  box-shadow: 0 8px 25px rgba(13,27,62,0.25) !important;
}

/* --- About page header: white bg --- */
.about__section {
  background: #ffffff !important;
}
.about__heading {
  color: #0d1b3e !important;
}
.about__text {
  color: rgba(13,27,62,0.62) !important;
}

/* --- What We Do text block (about page): off-white --- */
.what-we-do {
  background: #f5f7fa !important;
}
.what-we-do__heading {
  color: #0d1b3e !important;
}
.what-we-do__text {
  color: rgba(13,27,62,0.65) !important;
}

/* --- Original Mission / Vision section (navy) --- */
.mission-vision {
  background: #0d1b3e !important;
}

/* --- Journey timeline (about): white bg, navy text --- */
.journey {
  background: #ffffff !important;
}
.journey__title {
  color: #0d1b3e !important;
}
.journey__list {
  border-left-color: rgba(13,27,62,0.15) !important;
}
.journey__item::before {
  border-color: #ffffff !important;
}
.journey__icon {
  color: rgba(13,27,62,0.22) !important;
}
.journey__name {
  color: #0d1b3e !important;
}
.journey__desc {
  color: rgba(13,27,62,0.58) !important;
}

/* --- About Values bento: off-white bg, navy title --- */
.about-values {
  background: #f5f7fa !important;
}
.av__title {
  color: #0d1b3e !important;
}

/* --- Mission & Vision split panels (about): keep photo overlays --- */
/* .mv panels are photo-based with overlays — no change needed */

/* --- Page hero banners (projects, team, services, gallery) --- */
.projects__header,
.team__header,
.services__header,
.gallery__header {
  background: linear-gradient(135deg, #0d1b3e 0%, #132347 100%) !important;
}

/* --- Team & projects CTA section --- */
.team__cta,
.projects__cta {
  background: linear-gradient(135deg, #0d1b3e 0%, #132347 100%) !important;
}

/* --- Scroll-to-top button: navy --- */
.scroll-to-top {
  background: #0d1b3e !important;
  border-color: rgba(255,216,8,0.3) !important;
  box-shadow: 0 4px 16px rgba(13,27,62,0.3) !important;
}
.scroll-to-top:hover {
  background: var(--clr-accent-400) !important;
  border-color: var(--clr-accent-400) !important;
  color: #000 !important;
}

/* --- Footer: deep navy (professional standard) --- */
.footer {
  background: #0d1b3e !important;
}
.footer__top {
  border-bottom-color: rgba(255,216,8,0.18) !important;
}

/* ===================================================
   NAVBAR v2 — Gold top accent, transparent-hero mode
   =================================================== */

.navbar {
  border-top: 3px solid var(--clr-accent-400) !important;
  transition: background 0.35s ease, box-shadow 0.35s ease, border-bottom-color 0.35s ease !important;
}

/* Transparent state: fixed overlay on hero pages */
.navbar--hero {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent !important;
  border-top-color: transparent !important;
  border-bottom-color: transparent !important;
  box-shadow: none !important;
}
.navbar--hero .navbar__nav-link {
  color: rgba(255,255,255,0.72) !important;
}
.navbar--hero .navbar__nav-item:hover .navbar__nav-link {
  color: #fff !important;
}
.navbar--hero .navbar__hamburger {
  color: rgba(255,255,255,0.82) !important;
}
.navbar--hero .navbar__cta {
  background: var(--clr-accent-400) !important;
  color: #000 !important;
}

/* Scrolled state: snap to solid white */
.navbar--hero.scrolled {
  background: #ffffff !important;
  border-top-color: var(--clr-accent-400) !important;
  border-bottom: 1px solid rgba(13,27,62,0.08) !important;
  box-shadow: 0 2px 20px rgba(13,27,62,0.08) !important;
}
.navbar--hero.scrolled .navbar__nav-link {
  color: rgba(13,27,62,0.6) !important;
}
.navbar--hero.scrolled .navbar__nav-item:hover .navbar__nav-link {
  color: #0d1b3e !important;
}
.navbar--hero.scrolled .navbar__hamburger {
  color: #0d1b3e !important;
}

/* Mobile: transparent hero dropdown uses dark bg */
@media (max-width: 900px) {
  .navbar--hero .navbar__nav {
    background: rgba(13,27,62,0.97) !important;
    border-top-color: rgba(255,255,255,0.08) !important;
  }
  .navbar--hero.scrolled .navbar__nav {
    background: #ffffff !important;
    border-top-color: rgba(13,27,62,0.08) !important;
  }
  .navbar--hero.scrolled .navbar__nav .navbar__nav-link {
    color: rgba(13,27,62,0.7) !important;
  }
}

/* ===================================================
   HERO v2 — Full-bleed cinematic
   =================================================== */

/* Override old split-panel hero entirely */
.hero {
  position: relative !important;
  min-height: calc(100vh - 3px) !important; /* subtract gold top border */
  background: #0d1b3e !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
}

/* Hide old split structure */
.hero__split,
.hero__left,
.hero__right,
.hero__img,
.hero__right-overlay,
.hero__stats,
.hero__badges,
.hero__badge {
  display: none !important;
}

/* Background image */
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  transition: transform 18s ease;
}
.hero:hover .hero__media-img {
  transform: scale(1.04);
}
/* Gradient overlay: heavy navy left, tapers to reveal image on right */
.hero__media-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg,
      rgba(13,27,62,0.95) 0%,
      rgba(13,27,62,0.78) 38%,
      rgba(13,27,62,0.35) 65%,
      rgba(13,27,62,0.08) 100%),
    linear-gradient(to top,
      rgba(13,27,62,0.65) 0%,
      transparent 55%);
}

/* Content over image */
.hero__body {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  width: 90%;
  margin: 0 auto;
  padding: 80px 0 110px;
  gap: 48px;
}

/* Left text block */
.hero__content {
  max-width: 600px;
}

/* Eyebrow */
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.48);
  font-family: var(--ff-secondary);
  margin-bottom: 30px;
  animation: fadeInUp 0.6s ease-out both;
}
.hero__eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--clr-accent-400);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(255,216,8,0.2);
}

/* Headline */
.hero__title {
  font-size: clamp(3.2rem, 5.8vw, 6rem) !important;
  font-weight: 900 !important;
  color: #ffffff !important;
  line-height: 0.93 !important;
  letter-spacing: -0.025em !important;
  margin-bottom: 28px !important;
  animation: fadeInUp 0.6s ease-out 0.1s both;
}
.hero__title em {
  font-style: normal !important;
  color: var(--clr-accent-400) !important;
  display: block !important;
}

/* Sub */
.hero__sub {
  font-size: 1.06rem !important;
  color: rgba(255,255,255,0.55) !important;
  line-height: 1.8 !important;
  max-width: 460px !important;
  margin-bottom: 44px !important;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

/* CTA buttons */
.hero__actions {
  display: flex !important;
  gap: 14px !important;
  flex-wrap: wrap !important;
  margin-bottom: 52px !important;
  animation: fadeInUp 0.6s ease-out 0.3s both;
}
.hero__btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 15px 34px !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  font-family: var(--ff-secondary) !important;
  text-decoration: none !important;
  letter-spacing: 0.09em !important;
  text-transform: uppercase !important;
  transition: all 0.22s ease !important;
  border-radius: 2px !important;
}
.hero__btn--primary {
  background: var(--clr-accent-400) !important;
  color: #000 !important;
  border: none !important;
}
.hero__btn--primary:hover {
  background: #ffe54d !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 30px rgba(255,216,8,0.35) !important;
}
.hero__btn--ghost {
  background: transparent !important;
  color: rgba(255,255,255,0.72) !important;
  border: 1.5px solid rgba(255,255,255,0.2) !important;
}
.hero__btn--ghost:hover {
  border-color: rgba(255,255,255,0.55) !important;
  color: #fff !important;
  transform: translateY(-2px) !important;
}

/* Credentials strip */
.hero__creds {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease-out 0.4s both;
}
.hero__cred {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.73rem;
  font-family: var(--ff-secondary);
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.03em;
}
.hero__cred i {
  color: var(--clr-accent-400);
  font-size: 0.85rem;
}
.hero__cred-divider {
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* Floating glass stats card */
.hero__stats-card {
  flex-shrink: 0;
  background: rgba(255,255,255,0.055);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 185px;
  align-self: center;
  animation: fadeInUp 0.6s ease-out 0.35s both;
}
.hero__stat {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  padding: 28px 36px !important;
  gap: 5px !important;
  border: none !important;
}
.hero__stat-rule {
  height: 1px;
  width: 100%;
  background: rgba(255,255,255,0.07);
}
.hero__stat-num {
  font-size: 2.8rem !important;
  font-weight: 900 !important;
  color: #ffffff !important;
  line-height: 1 !important;
  letter-spacing: -0.02em !important;
}
.hero__stat-label {
  font-size: 0.62rem !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,0.38) !important;
  font-family: var(--ff-secondary) !important;
}

/* Scroll cue */
.hero__scroll-cue {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: fadeInUp 0.6s ease-out 0.7s both;
}
.hero__scroll-mouse {
  width: 22px;
  height: 36px;
  border: 1.5px solid rgba(255,255,255,0.22);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.hero__scroll-wheel {
  width: 3px;
  height: 7px;
  background: var(--clr-accent-400);
  border-radius: 2px;
  animation: scrollWheel 2.2s ease-in-out infinite;
}
@keyframes scrollWheel {
  0%   { transform: translateY(0);    opacity: 1; }
  70%  { transform: translateY(11px); opacity: 0; }
  100% { transform: translateY(0);    opacity: 0; }
}
.hero__scroll-text {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}

/* --- Mobile --- */
@media (max-width: 1024px) {
  .hero__stats-card {
    min-width: 160px;
  }
  .hero__stat {
    padding: 22px 28px !important;
  }
  .hero__stat-num {
    font-size: 2.4rem !important;
  }
}

@media (max-width: 900px) {
  .hero__body {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 72px 0 88px;
  }
  .hero__content {
    max-width: 100%;
  }
  .hero__title {
    font-size: clamp(2.8rem, 10vw, 3.8rem) !important;
  }
  .hero__sub {
    font-size: 0.96rem !important;
    max-width: 100% !important;
  }
  .hero__stats-card {
    flex-direction: row !important;
    width: 100%;
    min-width: unset;
    align-self: stretch;
  }
  .hero__stat {
    flex: 1 !important;
    padding: 18px 12px !important;
  }
  .hero__stat-rule {
    width: 1px !important;
    height: auto !important;
    align-self: stretch;
  }
  .hero__stat-num {
    font-size: 2rem !important;
  }
  .hero__scroll-cue {
    display: none;
  }
  .hero__media-overlay {
    background:
      linear-gradient(to bottom,
        rgba(13,27,62,0.55) 0%,
        rgba(13,27,62,0.4) 100%),
      linear-gradient(to right,
        rgba(13,27,62,0.85) 0%,
        rgba(13,27,62,0.4) 100%);
  }
}

/* ===================================================
   PAGE HERO — Reusable inner-page banner
   Used on: About, Team, Services, Projects, Gallery,
   Contact. Same cinematic language as the home hero
   but shorter (65 vh) and content-focused.
   =================================================== */

.page-hero {
  position: relative;
  min-height: 65vh;
  background: #0d1b3e;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Background image */
.page-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  transition: transform 18s ease;
}
.page-hero:hover .page-hero__img {
  transform: scale(1.04);
}
/* Same gradient language as home hero */
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg,
      rgba(13,27,62,0.94) 0%,
      rgba(13,27,62,0.76) 38%,
      rgba(13,27,62,0.38) 65%,
      rgba(13,27,62,0.1)  100%),
    linear-gradient(to top,
      rgba(13,27,62,0.7) 0%,
      transparent 55%);
}

/* Content row: text left, ISO badge right */
.page-hero__body {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  max-width: 1280px;
  width: 90%;
  margin: 0 auto;
  padding: 140px 0 68px;
  gap: 40px;
}

.page-hero__content {
  max-width: 640px;
}

/* Eyebrow */
.page-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.48);
  font-family: var(--ff-secondary);
  margin-bottom: 22px;
  animation: fadeInUp 0.6s ease-out both;
}
.page-hero__eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--clr-accent-400);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(255,216,8,0.18);
}

/* Page title */
.page-hero__title {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 0.94;
  letter-spacing: -0.022em;
  margin-bottom: 22px;
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

/* Subtitle */
.page-hero__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.78;
  max-width: 500px;
  margin-bottom: 32px;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

/* Credential strip (same as home hero) */
.page-hero__creds {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease-out 0.3s both;
}
.page-hero__cred {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.73rem;
  font-family: var(--ff-secondary);
  color: rgba(255,255,255,0.42);
  letter-spacing: 0.03em;
}
.page-hero__cred i {
  color: var(--clr-accent-400);
  font-size: 0.85rem;
}
.page-hero__cred-divider {
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,0.14);
  flex-shrink: 0;
}

/* ISO badge — floating bottom-right */
.page-hero__iso {
  flex-shrink: 0;
  align-self: flex-end;
  animation: fadeInUp 0.6s ease-out 0.35s both;
}
.page-hero__iso-img {
  height: 88px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.55;
}

/* Mobile */
@media (max-width: 768px) {
  .page-hero {
    min-height: 58vh;
  }
  .page-hero__body {
    flex-direction: column;
    align-items: flex-start;
    padding: 110px 0 52px;
  }
  .page-hero__title {
    font-size: clamp(2.2rem, 9vw, 3rem);
  }
  .page-hero__sub {
    font-size: 0.93rem;
  }
  .page-hero__iso {
    display: none;
  }
}


/* ==========================================================================
   SERVICES PAGE — svc- components
   ========================================================================== */

/* --------------------------------------------------------------------------
   svc-section — shared section wrapper
   -------------------------------------------------------------------------- */
.svc-section {
  padding: 96px 0;
}
.svc-section--light {
  background: #ffffff;
}
.svc-section--offwhite {
  background: #f5f7fa;
}
.svc-section--navy {
  background: #0d1b3e;
}
.svc-section__inner {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}
.svc-section__header {
  max-width: 640px;
  margin-bottom: 64px;
}
.svc-section__eyebrow {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-accent-400);
  font-family: var(--ff-secondary);
  margin-bottom: 14px;
}
.svc-section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #0d1b3e;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  font-family: var(--ff-secondary);
}
.svc-section__sub {
  font-size: 1rem;
  color: rgba(13, 27, 62, 0.58);
  line-height: 1.75;
  font-family: var(--ff-secondary);
}

/* Navy section text overrides */
.svc-section--navy .svc-section__title {
  color: #ffffff;
}
.svc-section--navy .svc-section__sub {
  color: rgba(255, 255, 255, 0.52);
}

/* --------------------------------------------------------------------------
   svc-nav — sticky service navigation strip
   -------------------------------------------------------------------------- */
.svc-nav {
  position: sticky;
  top: 74px;
  z-index: 90;
  background: #ffffff;
  border-bottom: 1px solid rgba(13, 27, 62, 0.1);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.svc-nav::-webkit-scrollbar {
  display: none;
}
.svc-nav__inner {
  display: flex;
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}
.svc-nav__tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px 28px;
  text-decoration: none;
  font-size: 0.82rem;
  font-family: var(--ff-secondary);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(13, 27, 62, 0.55);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.22s ease, border-color 0.22s ease;
}
.svc-nav__tab i {
  font-size: 0.78rem;
  color: var(--clr-accent-400);
  transition: transform 0.22s ease;
}
.svc-nav__tab:hover {
  color: #0d1b3e;
  border-bottom-color: var(--clr-accent-400);
}
.svc-nav__tab:hover i {
  transform: scale(1.15);
}

/* --------------------------------------------------------------------------
   svc-tabs — training tab bar and panels
   -------------------------------------------------------------------------- */
.svc-tabs {
  width: 100%;
}
.svc-tabs__bar {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(13, 27, 62, 0.1);
  overflow-x: auto;
  scrollbar-width: none;
  margin-bottom: 48px;
}
.svc-tabs__bar::-webkit-scrollbar {
  display: none;
}
.svc-tabs__btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 14px 24px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  font-size: 0.85rem;
  font-family: var(--ff-secondary);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(13, 27, 62, 0.5);
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s ease, border-color 0.2s ease;
  margin-bottom: -1px;
}
.svc-tabs__btn i {
  font-size: 0.8rem;
}
.svc-tabs__btn:hover {
  color: #0d1b3e;
}
.svc-tabs__btn.active {
  color: #0d1b3e;
  border-bottom-color: var(--clr-accent-400);
}
.svc-tabs__panel {
  display: none;
}
.svc-tabs__panel.active {
  display: block;
}

/* --------------------------------------------------------------------------
   svc-courses — course card grid
   -------------------------------------------------------------------------- */
.svc-courses {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc-course {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid rgba(13, 27, 62, 0.1);
  border-radius: 12px;
  padding: 28px;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}
.svc-course:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(13, 27, 62, 0.1);
}
.svc-course__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(13, 27, 62, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d1b3e;
  font-size: 1.1rem;
  margin-bottom: 16px;
  transition: background 0.22s ease, color 0.22s ease;
  flex-shrink: 0;
}
.svc-course:hover .svc-course__icon {
  background: var(--clr-accent-400);
  color: #0d1b3e;
}
.svc-course__badge {
  display: inline-block;
  background: var(--clr-accent-400);
  color: #0d1b3e;
  font-size: 0.62rem;
  font-weight: 700;
  font-family: var(--ff-secondary);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
  align-self: flex-start;
}
.svc-course__badge--mid {
  background: rgba(13, 27, 62, 0.08);
  color: #0d1b3e;
}
.svc-course__badge--adv {
  background: #0d1b3e;
  color: #ffffff;
}
.svc-course__badge--pro {
  background: linear-gradient(135deg, #0d1b3e, #1e3a6e);
  color: var(--clr-accent-400);
}
.svc-course__meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: rgba(13, 27, 62, 0.45);
  font-family: var(--ff-secondary);
  margin-bottom: 10px;
}
.svc-course__meta i {
  font-size: 0.72rem;
}
.svc-course__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0d1b3e;
  line-height: 1.25;
  margin-bottom: 10px;
}
.svc-course__desc {
  font-size: 0.88rem;
  color: rgba(13, 27, 62, 0.55);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}
.svc-course__cta {
  display: inline-block;
  font-size: 0.8rem;
  font-family: var(--ff-secondary);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0d1b3e;
  text-decoration: none;
  border-bottom: 2px solid var(--clr-accent-400);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.svc-course__cta:hover {
  color: var(--clr-accent-400);
  border-bottom-color: var(--clr-accent-400);
}

/* --------------------------------------------------------------------------
   svc-pathway — consultancy ISO journey steps
   -------------------------------------------------------------------------- */
.svc-pathway {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 80px;
  position: relative;
}
.svc-pathway__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  position: relative;
}
.svc-pathway__icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--clr-accent-400);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-accent-400);
  font-size: 1.3rem;
  background: transparent;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  transition: background 0.22s ease, color 0.22s ease;
}
.svc-pathway__step:hover .svc-pathway__icon-wrap {
  background: var(--clr-accent-400);
  color: #0d1b3e;
}
.svc-pathway__step--final .svc-pathway__icon-wrap {
  background: var(--clr-accent-400);
  color: #0d1b3e;
}
.svc-pathway__connector {
  position: absolute;
  top: 32px;
  left: calc(50% + 32px);
  right: calc(-50% + 32px);
  height: 2px;
  background: linear-gradient(90deg, var(--clr-accent-400), rgba(255, 216, 8, 0.3));
  z-index: 0;
  width: calc(100% - 64px);
}
.svc-pathway__title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.3;
}
.svc-pathway__desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  max-width: 160px;
}

/* --------------------------------------------------------------------------
   svc-iso — ISO standards grid (inside navy section)
   -------------------------------------------------------------------------- */
.svc-iso__heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 32px;
  padding-bottom: 16px;
  position: relative;
  display: inline-block;
}
.svc-iso__heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: var(--clr-accent-400);
  border-radius: 2px;
}
.svc-iso__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  overflow: hidden;
}
.svc-iso__card {
  background: rgba(255, 255, 255, 0.04);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background 0.22s ease;
}
.svc-iso__card:hover {
  background: rgba(255, 255, 255, 0.09);
}
.svc-iso__num {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--clr-accent-400);
  line-height: 1;
  letter-spacing: -0.02em;
}
.svc-iso__title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}
.svc-iso__desc {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
  flex: 1;
}
.svc-iso__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-family: var(--ff-secondary);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-accent-400);
  text-decoration: none;
  margin-top: 6px;
  transition: gap 0.2s ease;
}
.svc-iso__link:hover {
  gap: 10px;
}

/* --------------------------------------------------------------------------
   svc-tech__grid — technology module grid
   -------------------------------------------------------------------------- */
.svc-tech__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(13, 27, 62, 0.08);
  border: 1px solid rgba(13, 27, 62, 0.08);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 48px;
}
.svc-tech__module {
  background: #ffffff;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.2s ease;
}
.svc-tech__module:hover {
  background: #f5f7fa;
}
.svc-tech__mod-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #0d1b3e;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.1rem;
  transition: background 0.22s ease, color 0.22s ease;
}
.svc-tech__module:hover .svc-tech__mod-icon {
  background: var(--clr-accent-400);
  color: #0d1b3e;
}
.svc-tech__mod-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0d1b3e;
  line-height: 1.3;
}
.svc-tech__mod-desc {
  font-size: 0.83rem;
  color: rgba(13, 27, 62, 0.55);
  line-height: 1.65;
}

/* Technology CTA bar */
.svc-tech__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: #0d1b3e;
  border-radius: 14px;
  padding: 36px 44px;
}
.svc-tech__cta-text h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
  line-height: 1.3;
}
.svc-tech__cta-text p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
}
.svc-tech__cta-btn {
  display: inline-block;
  background: var(--clr-accent-400);
  color: #0d1b3e;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 8px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}
.svc-tech__cta-btn:hover {
  background: #ffe033;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 216, 8, 0.35);
}

/* --------------------------------------------------------------------------
   svc-supply__grid — supply category cards
   -------------------------------------------------------------------------- */
.svc-supply__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.svc-supply__card {
  background: #ffffff;
  border: 1px solid rgba(13, 27, 62, 0.1);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.24s ease, transform 0.24s ease;
}
.svc-supply__card:hover {
  box-shadow: 0 12px 40px rgba(13, 27, 62, 0.1);
  transform: translateY(-3px);
}
.svc-supply__icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #0d1b3e;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-accent-400);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.svc-supply__card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0d1b3e;
  line-height: 1.3;
}
.svc-supply__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.svc-supply__list li {
  font-size: 0.85rem;
  color: rgba(13, 27, 62, 0.62);
  line-height: 1.5;
  padding-left: 18px;
  position: relative;
}
.svc-supply__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--clr-accent-400);
  flex-shrink: 0;
}

/* Supply CTA bar */
.svc-supply__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: #0d1b3e;
  border-radius: 14px;
  padding: 36px 44px;
}
.svc-supply__cta-text h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
  line-height: 1.3;
}
.svc-supply__cta-text p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
}
.svc-supply__cta-btn {
  display: inline-block;
  background: var(--clr-accent-400);
  color: #0d1b3e;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 8px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}
.svc-supply__cta-btn:hover {
  background: #ffe033;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 216, 8, 0.35);
}

/* --------------------------------------------------------------------------
   svc-cta-band — bottom CTA banner
   -------------------------------------------------------------------------- */
.svc-cta-band {
  background: linear-gradient(135deg, #0d1b3e 0%, #162d5e 60%, #0d1b3e 100%);
  padding: 80px 0;
}
.svc-cta-band__inner {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.svc-cta-band__text {
  max-width: 560px;
}
.svc-cta-band__title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.svc-cta-band__sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.7;
}
.svc-cta-band__actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-shrink: 0;
}
.svc-cta-band__btn {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 34px;
  border-radius: 8px;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}
.svc-cta-band__btn--primary {
  background: var(--clr-accent-400);
  color: #0d1b3e;
}
.svc-cta-band__btn--primary:hover {
  background: #ffe033;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 216, 8, 0.35);
}
.svc-cta-band__btn--ghost {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.svc-cta-band__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   Responsive breakpoints
   -------------------------------------------------------------------------- */

/* --- 1024px --- */
@media (max-width: 1024px) {
  .svc-iso__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .svc-tech__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .svc-courses {
    grid-template-columns: repeat(2, 1fr);
  }
  .svc-cta-band__inner {
    gap: 32px;
  }
}

/* --- 768px --- */
@media (max-width: 768px) {
  .svc-section {
    padding: 64px 0;
  }
  .svc-section__header {
    margin-bottom: 40px;
  }

  /* Pathway: switch to vertical timeline */
  .svc-pathway {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 32px;
    gap: 0;
    border-left: 2px solid rgba(255, 216, 8, 0.3);
    margin-bottom: 56px;
  }
  .svc-pathway__step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    padding-bottom: 36px;
    gap: 18px;
    flex: none;
    width: 100%;
  }
  .svc-pathway__icon-wrap {
    width: 48px;
    height: 48px;
    font-size: 1rem;
    flex-shrink: 0;
    margin-bottom: 0;
    position: relative;
    left: -56px;
    margin-right: -30px;
  }
  .svc-pathway__connector {
    display: none;
  }
  .svc-pathway__title {
    font-size: 0.95rem;
  }
  .svc-pathway__desc {
    max-width: none;
  }

  /* Supply: 2 cols */
  .svc-supply__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* CTA bands: stack */
  .svc-tech__cta,
  .svc-supply__cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
  }
  .svc-cta-band__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
  .svc-cta-band__actions {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  .svc-cta-band__btn {
    width: 100%;
    text-align: center;
  }

  /* ISO grid: 2 cols on 768 */
  .svc-iso__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Risk & Env: 2 cols on 768 */
  .svc-risk__grid,
  .svc-env__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .svc-risk__cta,
  .svc-env__cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
  }

  /* Platform split: stack on 768 */
  .svc-platform,
  .svc-supply__intro,
  .svc-env__intro {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  /* Compact grid: 2 cols */
  .svc-tech__grid--compact {
    grid-template-columns: repeat(2, 1fr);
  }
}

/*
   ============================================================
   svc-platform — Technology split layout
   ============================================================
*/
.svc-platform {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 56px;
}
.svc-platform__visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(13,27,62,0.14);
}
.svc-platform__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}
.svc-platform__badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(13,27,62,0.85);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.svc-platform__heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0d1b3e;
  margin: 0 0 14px;
}
.svc-platform__text {
  font-size: 0.95rem;
  color: rgba(13,27,62,0.65);
  line-height: 1.7;
  margin: 0 0 28px;
}
.svc-platform__list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.svc-platform__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: #0d1b3e;
}
.svc-platform__list li i {
  color: #22c55e;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.svc-platform__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0d1b3e;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s;
}
.svc-platform__cta:hover { background: var(--clr-accent-400); color: #0d1b3e; }

/* Compact module grid (no descriptions) */
.svc-tech__grid--compact {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 40px;
  gap: 16px;
}
.svc-tech__grid--compact .svc-tech__module {
  padding: 24px 20px;
  text-align: center;
}
.svc-tech__grid--compact .svc-tech__mod-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
}
.svc-tech__grid--compact .svc-tech__mod-title {
  font-size: 0.85rem;
}

/*
   ============================================================
   svc-supply__intro — Supply image split (image on right)
   ============================================================
*/
.svc-supply__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 56px;
  margin-bottom: 48px;
}
.svc-supply__intro-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 56px rgba(13,27,62,0.1);
}
.svc-supply__intro-img img {
  display: block;
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 16px;
}
.svc-supply__intro-text h3 {
  font-size: 1.45rem;
  font-weight: 700;
  color: #0d1b3e;
  margin: 0 0 14px;
}
.svc-supply__intro-text p {
  font-size: 0.95rem;
  color: rgba(13,27,62,0.65);
  line-height: 1.7;
  margin: 0 0 28px;
}
.svc-supply__intro-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0d1b3e;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s;
}
.svc-supply__intro-cta:hover { background: var(--clr-accent-400); color: #0d1b3e; }

/*
   ============================================================
   svc-env__intro — Environmental image split
   ============================================================
*/
.svc-env__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 56px;
  margin-bottom: 48px;
}
.svc-env__intro-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 56px rgba(13,27,62,0.1);
}
.svc-env__intro-img img {
  display: block;
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 16px;
}
.svc-env__intro-text h3 {
  font-size: 1.45rem;
  font-weight: 700;
  color: #0d1b3e;
  margin: 0 0 14px;
}
.svc-env__intro-text p {
  font-size: 0.95rem;
  color: rgba(13,27,62,0.65);
  line-height: 1.7;
  margin: 0 0 28px;
}
.svc-env__intro-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0d1b3e;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s;
}
.svc-env__intro-cta:hover { background: var(--clr-accent-400); color: #0d1b3e; }

/*
   ============================================================
   svc-risk — Risk & Insurance grid
   ============================================================
*/
.svc-risk__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.svc-risk__card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 32px 28px;
  transition: background 0.25s, transform 0.25s;
}
.svc-risk__card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}
.svc-risk__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(255,216,8,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--clr-accent-400);
  margin-bottom: 18px;
}
.svc-risk__title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
}
.svc-risk__desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  margin: 0;
}
.svc-risk__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 36px 40px;
  margin-top: 48px;
  gap: 24px;
}
.svc-risk__cta-text h3 {
  font-size: 1.15rem;
  color: #fff;
  margin: 0 0 6px;
}
.svc-risk__cta-text p {
  color: rgba(255,255,255,0.65);
  margin: 0;
  font-size: 0.9rem;
}
.svc-risk__cta-btn {
  flex-shrink: 0;
  background: var(--clr-accent-400);
  color: #0d1b3e;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.svc-risk__cta-btn:hover { opacity: 0.88; }

/*
   ============================================================
   svc-env — Environmental & Laboratory grid
   ============================================================
*/
.svc-env__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.svc-env__card {
  background: #fff;
  border: 1px solid rgba(13,27,62,0.1);
  border-radius: 12px;
  padding: 32px 28px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.svc-env__card:hover {
  box-shadow: 0 8px 32px rgba(13,27,62,0.1);
  transform: translateY(-4px);
}
.svc-env__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(13,27,62,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #0d1b3e;
  margin-bottom: 18px;
}
.svc-env__title {
  font-size: 1rem;
  font-weight: 700;
  color: #0d1b3e;
  margin: 0 0 10px;
}
.svc-env__desc {
  font-size: 0.9rem;
  color: rgba(13,27,62,0.65);
  line-height: 1.65;
  margin: 0;
}
.svc-env__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #0d1b3e;
  border-radius: 16px;
  padding: 36px 40px;
  margin-top: 48px;
  gap: 24px;
}
.svc-env__cta-text h3 {
  font-size: 1.15rem;
  color: #fff;
  margin: 0 0 6px;
}
.svc-env__cta-text p {
  color: rgba(255,255,255,0.65);
  margin: 0;
  font-size: 0.9rem;
}
.svc-env__cta-btn {
  flex-shrink: 0;
  background: var(--clr-accent-400);
  color: #0d1b3e;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.svc-env__cta-btn:hover { opacity: 0.88; }

/* ISO card general variant */
.svc-iso__card--general .svc-iso__num {
  font-size: 1.4rem;
  line-height: 1;
}

/* --- 480px --- */
@media (max-width: 480px) {
  .svc-courses {
    grid-template-columns: 1fr;
  }
  .svc-supply__grid {
    grid-template-columns: 1fr;
  }
  .svc-tech__grid {
    grid-template-columns: 1fr;
  }
  .svc-iso__grid {
    grid-template-columns: 1fr;
  }
  .svc-risk__grid {
    grid-template-columns: 1fr;
  }
  .svc-env__grid {
    grid-template-columns: 1fr;
  }
  .svc-tech__grid--compact {
    grid-template-columns: repeat(2, 1fr);
  }
  .svc-env__intro-img img,
  .svc-supply__intro-img img {
    height: 240px;
  }
  .svc-nav__tab {
    padding: 14px 18px;
    font-size: 0.75rem;
  }
  .svc-tabs__btn {
    padding: 12px 16px;
    font-size: 0.78rem;
  }
  .svc-cta-band {
    padding: 56px 0;
  }
}


/* ==========================================================================
   proj-* — Projects Page Components
   Appended for projects.html redesign
   ========================================================================== */

/*
   ============================================================
   proj-stats — Impact stats bar (navy background)
   ============================================================
*/
.proj-stats {
  background: #0d1b3e;
  padding: 48px 0;
}
.proj-stats__inner {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.proj-stats__item {
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 24px;
}
.proj-stats__number {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--clr-accent-400);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.proj-stats__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.proj-stats__divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

/*
   ============================================================
   proj-filter — Filter button strip
   ============================================================
*/
.proj-filter {
  background: #fff;
  border-bottom: 1px solid rgba(13, 27, 62, 0.08);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 90;
  box-shadow: 0 2px 12px rgba(13, 27, 62, 0.06);
}
.proj-filter__inner {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 4px;
}
.proj-filter__inner::-webkit-scrollbar { display: none; }
.proj-filter__btn {
  flex-shrink: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(13, 27, 62, 0.55);
  padding: 18px 20px 16px;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  white-space: nowrap;
}
.proj-filter__btn:hover {
  color: #0d1b3e;
}
.proj-filter__btn.active {
  color: #0d1b3e;
  border-bottom-color: var(--clr-accent-400);
  font-weight: 700;
}

/*
   ============================================================
   proj-grid-section + proj-grid — 3-col filterable grid
   ============================================================
*/
.proj-grid-section {
  background: #f4f6fa;
  padding: 72px 0 88px;
}
.proj-grid-wrap {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}
.proj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/*
   ============================================================
   proj-card — Individual project card
   ============================================================
*/
.proj-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(13, 27, 62, 0.07);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  display: flex;
  flex-direction: column;
}
.proj-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(13, 27, 62, 0.14);
}

/* --- Media (image area) --- */
.proj-card__media {
  position: relative;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}
.proj-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.proj-card:hover .proj-card__img {
  transform: scale(1.04);
}
.proj-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 27, 62, 0.72) 0%, rgba(13, 27, 62, 0.12) 55%, transparent 100%);
  pointer-events: none;
}

/* --- Category tag pill (top-left) --- */
.proj-card__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 11px;
  border-radius: 50px;
  line-height: 1;
  z-index: 2;
}
.proj-card__tag--iso {
  background: var(--clr-accent-400);
  color: #0d1b3e;
}
.proj-card__tag--env {
  background: #2ecc71;
  color: #fff;
}
.proj-card__tag--training {
  background: #2196f3;
  color: #fff;
}
.proj-card__tag--compliance {
  background: #8b5cf6;
  color: #fff;
}

/* --- Year badge (top-right) --- */
.proj-card__year {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.7rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.92);
  color: #0d1b3e;
  padding: 5px 10px;
  border-radius: 50px;
  line-height: 1;
  z-index: 2;
  letter-spacing: 0.04em;
  backdrop-filter: blur(4px);
}

/* --- Client logo pill (bottom-left of media) --- */
.proj-card__logo-wrap {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  min-width: 40px;
  min-height: 32px;
}
.proj-card__logo {
  max-height: 28px;
  max-width: 70px;
  object-fit: contain;
  display: block;
}

/* --- Card body --- */
.proj-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.proj-card__sector {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(13, 27, 62, 0.45);
  margin: 0 0 6px;
}
.proj-card__company {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0d1b3e;
  margin: 0 0 10px;
  line-height: 1.3;
}
.proj-card__desc {
  font-size: 0.85rem;
  color: rgba(13, 27, 62, 0.62);
  line-height: 1.65;
  margin: 0 0 16px;
  flex: 1;
}
.proj-card__outcomes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.proj-card__outcome {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.74rem;
  font-weight: 600;
  color: #0d1b3e;
  background: rgba(13, 27, 62, 0.06);
  padding: 5px 10px;
  border-radius: 50px;
  line-height: 1;
}
.proj-card__outcome .fa-check {
  color: var(--clr-accent-400);
  font-size: 0.65rem;
  flex-shrink: 0;
}

/*
   ============================================================
   proj-logos — Client logo strip
   ============================================================
*/
.proj-logos {
  background: #f4f6fa;
  border-top: 1px solid rgba(13, 27, 62, 0.07);
  padding: 56px 0;
}
.proj-logos__inner {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  text-align: center;
}
.proj-logos__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(13, 27, 62, 0.4);
  margin: 0 0 32px;
}
.proj-logos__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px 56px;
}
.proj-logos__item {
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: filter 0.3s ease, opacity 0.3s ease;
}
.proj-logos__item:hover {
  filter: grayscale(0%);
  opacity: 1;
}
.proj-logos__img {
  max-height: 36px;
  max-width: 120px;
  object-fit: contain;
  display: block;
}

/*
   ============================================================
   proj-* Responsive breakpoints
   ============================================================
*/
@media (max-width: 1024px) {
  .proj-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .proj-stats__inner {
    flex-wrap: wrap;
    gap: 0;
  }
  .proj-stats__item {
    flex: 1 1 140px;
  }
  .proj-stats__divider {
    display: none;
  }
  .proj-filter__btn {
    font-size: 0.76rem;
    padding: 16px 14px 14px;
  }
  .proj-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .proj-grid-section {
    padding: 48px 0 64px;
  }
  .proj-logos__grid {
    gap: 28px 40px;
  }
}

@media (max-width: 560px) {
  .proj-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .proj-stats__number {
    font-size: 1.8rem;
  }
  .proj-card__media {
    height: 200px;
  }
  .proj-card__body {
    padding: 20px;
  }
  .proj-logos__grid {
    gap: 24px 32px;
  }
  .proj-logos__img {
    max-height: 28px;
  }
}

/* ===================================================
   CONTACT PAGE — ctc- namespace
   =================================================== */

/* Split container */
.ctc-split {
  display: grid;
  grid-template-columns: 400px 1fr;
  min-height: 680px;
}

/* ---- Left navy panel ---- */
.ctc-panel {
  background: #0d1b3e;
  padding: 64px 44px;
  display: flex;
  flex-direction: column;
}
.ctc-panel__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: sticky;
  top: 100px;
}
.ctc-panel__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-accent-400);
  margin-bottom: 14px;
}
.ctc-panel__heading {
  font-size: 1.65rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.2;
}
.ctc-panel__sub {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin: 0 0 36px;
}

/* Info cards */
.ctc-info-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.ctc-info-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s;
}
a.ctc-info-card:hover {
  background: rgba(255,255,255,0.11);
}
.ctc-info-card__icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: rgba(255,216,8,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-accent-400);
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.ctc-info-card__label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(255,255,255,0.4);
  margin: 0 0 3px;
}
.ctc-info-card__value {
  font-size: 0.86rem;
  color: #fff;
  font-weight: 500;
  margin: 0;
}

/* Social */
.ctc-panel__social {
  display: flex;
  gap: 10px;
  margin-bottom: 36px;
}
.ctc-panel__social-link {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.ctc-panel__social-link:hover {
  background: var(--clr-accent-400);
  color: #0d1b3e;
}

/* ISO badge at bottom of panel */
.ctc-panel__cert {
  margin-top: auto;
  padding-top: 32px;
}
.ctc-panel__iso {
  width: 68px;
  height: auto;
  opacity: 0.75;
}

/* ---- Right form panel ---- */
.ctc-form-panel {
  background: #f5f7fa;
  padding: 64px 56px;
}
.ctc-form-panel__inner {
  max-width: 620px;
}
.ctc-form-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0d1b3e;
  background: rgba(13,27,62,0.07);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.ctc-form-heading {
  font-size: 1.7rem;
  font-weight: 700;
  color: #0d1b3e;
  margin: 0 0 10px;
}
.ctc-form-sub {
  font-size: 0.9rem;
  color: rgba(13,27,62,0.52);
  margin: 0 0 36px;
  line-height: 1.65;
}

/* Success state */
.ctc-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 56px 24px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(13,27,62,0.1);
  box-shadow: 0 8px 32px rgba(13,27,62,0.06);
}
.ctc-success.visible { display: flex; }
.ctc-success__icon {
  font-size: 2.8rem;
  color: #16a34a;
  margin-bottom: 18px;
}
.ctc-success h3 {
  font-size: 1.25rem;
  color: #0d1b3e;
  margin: 0 0 8px;
}
.ctc-success p {
  font-size: 0.9rem;
  color: rgba(13,27,62,0.6);
  margin: 0;
}

/* ---- Form ---- */
.ctc-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.ctc-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.ctc-form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ctc-form__label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0d1b3e;
  letter-spacing: 0.02em;
}
.ctc-form__req {
  color: var(--clr-accent-400);
  font-size: 0.85rem;
}
.ctc-form__input,
.ctc-form__select,
.ctc-form__textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(13,27,62,0.14);
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: var(--ff-secondary);
  color: #0d1b3e;
  background: #fff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}
.ctc-form__input:focus,
.ctc-form__select:focus,
.ctc-form__textarea:focus {
  border-color: #0d1b3e;
  box-shadow: 0 0 0 3px rgba(13,27,62,0.07);
}
.ctc-form__input::placeholder,
.ctc-form__textarea::placeholder {
  color: rgba(13,27,62,0.32);
}
.ctc-form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%230d1b3e' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
  cursor: pointer;
  color: rgba(13,27,62,0.38);
}
.ctc-form__select:valid,
.ctc-form__select option:not([value=""]) {
  color: #0d1b3e;
}
.ctc-form__textarea {
  min-height: 148px;
  resize: vertical;
  line-height: 1.6;
}
.ctc-form__submit {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0d1b3e;
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 15px 36px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
  margin-top: 4px;
}
.ctc-form__submit:hover {
  background: var(--clr-accent-400);
  color: #0d1b3e;
  transform: translateY(-2px);
}
.ctc-form__submit i {
  font-size: 0.8rem;
  transition: transform 0.2s;
}
.ctc-form__submit:hover i {
  transform: translateX(4px);
}

/* ---- Map ---- */
.ctc-map {
  line-height: 0;
  display: block;
}
.ctc-map iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: none;
  filter: grayscale(15%);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .ctc-split {
    grid-template-columns: 340px 1fr;
  }
  .ctc-panel {
    padding: 56px 36px;
  }
  .ctc-form-panel {
    padding: 56px 40px;
  }
}
@media (max-width: 860px) {
  .ctc-split {
    grid-template-columns: 1fr;
  }
  .ctc-panel__inner {
    position: static;
  }
  .ctc-panel {
    padding: 48px 32px;
  }
  .ctc-form-panel {
    padding: 48px 32px;
  }
}
@media (max-width: 560px) {
  .ctc-form__row {
    grid-template-columns: 1fr;
  }
  .ctc-panel,
  .ctc-form-panel {
    padding: 40px 24px;
  }
  .ctc-map iframe {
    height: 280px;
  }
}

/* ===================================================
   NAVBAR--HERO: guarantee white links in transparent state
   Uses :not(.scrolled) for maximum specificity — must stay last.
   =================================================== */
.navbar--hero:not(.scrolled) .navbar__nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
}
.navbar--hero:not(.scrolled) .navbar__nav-item:hover .navbar__nav-link {
  color: #ffffff !important;
}
.navbar--hero:not(.scrolled) .navbar__hamburger {
  color: rgba(255, 255, 255, 0.85) !important;
}

/* ==========================================================================
   MOBILE FIXES — additional responsive polish
   Must come after all other rules to win specificity.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Page hero — small phones (< 480px)
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
  .page-hero {
    min-height: 50vh;
  }
  .page-hero__body {
    padding: 96px 0 36px;
  }
  .page-hero__title {
    font-size: clamp(1.7rem, 7.5vw, 2.2rem);
  }
  .page-hero__sub {
    font-size: 0.86rem;
  }
  /* Hide dividers so credentials wrap cleanly */
  .page-hero__cred-divider {
    display: none;
  }
  .page-hero__creds {
    gap: 10px;
    row-gap: 6px;
  }
}

/* --------------------------------------------------------------------------
   Services svc-nav tabs — keep scrollable, tighten on small phones
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
  .svc-nav__tab {
    padding: 12px 14px;
    font-size: 0.72rem;
    white-space: nowrap;
  }
  .svc-section {
    padding: 56px 0;
  }
  .svc-section__header {
    margin-bottom: 36px;
  }
  .svc-section__title {
    font-size: clamp(1.6rem, 6vw, 2rem);
  }
}

/* --------------------------------------------------------------------------
   Quote / CTA section — text sizing on mobile
   -------------------------------------------------------------------------- */
@media (max-width: 600px) {
  .quote__section {
    padding: 40px 0;
  }
  .quote__section-text h2,
  .quote__section-text .fs-primary-heading {
    font-size: 1.55rem;
    line-height: 1.25;
  }
  .quote__section-text p {
    font-size: 0.9rem;
  }
}

/* --------------------------------------------------------------------------
   Stats section — compact on phones
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
  .stats-section {
    padding: 28px 16px;
  }
  .stats-container {
    flex-direction: column;
    gap: 4px;
  }
  .number {
    font-size: 2.2rem !important;
  }
  .label {
    font-size: 0.82rem;
  }
}

/* --------------------------------------------------------------------------
   Projects — proj-stats wraps to 2×2 on tiny screens
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
  .proj-stats__item {
    flex: 1 1 calc(50% - 16px);
  }
  .proj-filter__btn {
    padding: 10px 12px;
    font-size: 0.73rem;
  }
  .proj-card__img {
    height: 180px;
  }
}

/* --------------------------------------------------------------------------
   Contact page — very small phones
   -------------------------------------------------------------------------- */
@media (max-width: 400px) {
  .ctc-panel,
  .ctc-form-panel {
    padding: 32px 16px;
  }
  .ctc-info-card {
    padding: 14px 16px;
    gap: 12px;
  }
  .ctc-form__submit {
    width: 100%;
    justify-content: center;
  }
}

/* --------------------------------------------------------------------------
   Footer brand column — don't overflow on small phones
   -------------------------------------------------------------------------- */
@media (max-width: 600px) {
  .footer__column--brand {
    width: 100% !important;
  }
  .footer__brand-logo {
    max-width: 140px;
  }
  .footer__bottom {
    padding: 16px 0 !important;
  }
}

/* --------------------------------------------------------------------------
   General — ensure all section inners don't overflow
   -------------------------------------------------------------------------- */
.svc-section__inner,
.proj-stats__inner,
.ctc-split,
.page-hero__body {
  box-sizing: border-box;
}

@media (max-width: 480px) {
  .svc-section__inner {
    width: 92%;
  }
}

/* ==========================================================================
   SCROLL PROGRESS BAR
   ========================================================================== */
#scrollProgress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--clr-accent-400);
  z-index: 10001;
  transition: width 0.08s linear;
  pointer-events: none;
}

