:root {
  --primary: #721953;
  --secondary: #53275c;
  --accent: #341e4a;
  --dark: #1d2350;
  --light-bg: #f4f5fa;
  --soft-bg: #f6f4fb;
}

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--dark);
  background-color: var(--light-bg);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

main {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

section {
  position: relative;
  width: 100%;
  max-width: 100%;
}

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

section {
  position: relative;
}

.section-padding {
  padding: 5rem 0;
}

.section-label {
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-size: 0.72rem;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.section-heading {
  font-weight: 700;
  color: var(--dark);
  margin: 1rem 0 0.4rem;
}

.section-subheading {
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(29, 35, 80, 0.78);
  margin-bottom: 1.5rem;
}

.btn-primary.nb-cta {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  border-radius: 999px;
  padding: 0.75rem 1.9rem;
  font-weight: 600;
  box-shadow: 0 18px 38px rgba(114, 25, 83, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary.nb-cta:hover,
.btn-primary.nb-cta:focus {
  background: var(--secondary);
  border-color: var(--secondary);
  box-shadow: 0 22px 48px rgba(83, 39, 92, 0.26);
  transform: translateY(-2px);
}

.btn-outline-primary.nb-cta {
  border-radius: 999px;
  padding: 0.75rem 1.9rem;
  font-weight: 600;
  color: var(--primary);
  border-color: rgba(114, 25, 83, 0.4);
  background: transparent;
  transition: all 0.2s ease;
}

.btn-outline-primary.nb-cta:hover,
.btn-outline-primary.nb-cta:focus {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 18px 38px rgba(114, 25, 83, 0.18);
}

.about-hero {
  position: relative;
  padding: 6rem 0;
  background: radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.14), transparent 42%),
    radial-gradient(circle at 82% 14%, rgba(255, 255, 255, 0.1), transparent 45%),
    linear-gradient(135deg, #221d5a 0%, #401a5d 52%, #721953 100%);
  color: #ffffff;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 12, 30, 0.18), transparent 60%);
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.2;
  background: rgba(255, 255, 255, 0.18);
  filter: blur(0.1px);
}

.hero-shape-1 {
  width: 260px;
  height: 260px;
  bottom: -120px;
  left: 4%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.35), transparent 60%);
}

.hero-shape-2 {
  width: 340px;
  height: 340px;
  top: -140px;
  right: -120px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.22), transparent 60%);
}

.about-hero .container {
  position: relative;
  z-index: 2;
}

.hero-badge {
  background-color: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  letter-spacing: 0.2em;
}

.about-hero h1 {
  color: #ffffff;
}

.about-hero p {
  color: rgba(255, 255, 255, 0.78);
}

.about-hero .hero-preamble {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.hero-preamble .preamble-item {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  padding: 0.85rem 1.1rem;
  backdrop-filter: blur(6px);
}

.preamble-item i {
  font-size: 1.1rem;
  margin-top: 0.15rem;
}

.metrics-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 1.8rem;
  padding: 2.2rem 2rem;
  backdrop-filter: blur(12px);
  display: grid;
  gap: 1.25rem;
}

.metric {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.metric:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.metric-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 1.4rem;
}

.metric-value {
  display: block;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.05;
  color: #ffffff;
}

.metric-label {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 0.15rem;
}

.philosophy-section p,
.method-section p {
  color: rgba(29, 35, 80, 0.72);
}

.philosophy-intro {
  position: relative;
  z-index: 1;
}

.philosophy-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(114, 25, 83, 0.1);
  color: var(--accent);
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  margin-top: 1.4rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.philosophy-badge i {
  font-size: 1.1rem;
  color: var(--primary);
}

.philosophy-panel {
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.95), rgba(246, 244, 251, 0.92));
  border-radius: 2rem;
  padding: 2.4rem 2.6rem;
  box-shadow: 0 26px 56px rgba(29, 35, 80, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
}

.philosophy-panel p {
  margin-bottom: 1.2rem;
}

.philosophy-points {
  display: grid;
  gap: 1.2rem;
  margin-top: 1.6rem;
}

.philosophy-points .point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.philosophy-points .icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(114, 25, 83, 0.12);
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

.philosophy-points h4 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent);
}

.philosophy-points p {
  margin: 0;
  color: rgba(29, 35, 80, 0.65);
}

.method-section {
  background: linear-gradient(135deg, #1d2350 0%, #341e4a 42%, #721953 100%);
  color: #ffffff;
}

.method-section .section-heading,
.method-section .section-subheading,
.method-section p {
  color: rgba(255, 255, 255, 0.88);
}

.method-section .section-label {
  color: rgba(255, 255, 255, 0.75);
}

.method-section .btn-outline-primary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.6);
  background: transparent;
}

.method-section .btn-outline-primary:hover,
.method-section .btn-outline-primary:focus {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--primary);
  box-shadow: 0 18px 38px rgba(255, 255, 255, 0.2);
}

.values-section .value-card {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 2.1rem 2rem;
  box-shadow: 0 22px 48px rgba(29, 35, 80, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform: translateY(24px);
  opacity: 0;
}

.values-section .value-card.show {
  transform: translateY(0);
  opacity: 1;
}

.values-section .value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 58px rgba(29, 35, 80, 0.16);
}

.value-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(114, 25, 83, 0.12);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.realisations-intro {
  background: var(--soft-bg);
}

.portfolio-cta-card {
  background: #ffffff;
  border-radius: 1.8rem;
  padding: 2.4rem 2.2rem;
  box-shadow: 0 26px 64px rgba(29, 35, 80, 0.12);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease, box-shadow 0.3s ease;
}

.portfolio-cta-card.show {
  transform: translateY(0);
  opacity: 1;
}

.portfolio-form {
  margin-top: 1.6rem;
  display: grid;
  gap: 1rem;
}

.portfolio-form .input-group {
  border: 1px solid rgba(52, 30, 74, 0.22);
  border-radius: 999px;
  overflow: hidden;
  background: #faf9fd;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.portfolio-form .input-group:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(114, 25, 83, 0.16);
}

.portfolio-form .input-group-text {
  background: transparent;
  border: none;
  color: rgba(29, 35, 80, 0.5);
  padding-left: 1.4rem;
}

.portfolio-form .form-control {
  border: none;
  background: transparent;
  padding: 0.8rem 1.4rem 0.8rem 0.4rem;
  font-size: 0.95rem;
  color: var(--dark);
}

.portfolio-form .form-control:focus {
  outline: none;
  box-shadow: none;
}

.sectors-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sector-card {
  background: #ffffff;
  border-radius: 1.6rem;
  padding: 1.8rem 1.6rem;
  box-shadow: 0 22px 48px rgba(29, 35, 80, 0.12);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform: translateY(24px);
  opacity: 0;
  position: relative;
  overflow: hidden;
}

.sector-card.show {
  transform: translateY(0);
  opacity: 1;
}

.sector-card::after {
  content: '';
  position: absolute;
  inset: auto -40% -60% -40%;
  height: 60%;
  background: radial-gradient(circle, rgba(114, 25, 83, 0.12), transparent 70%);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

.sector-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 64px rgba(29, 35, 80, 0.16);
}

.sector-card:hover::after {
  transform: translateY(-10%);
  opacity: 1;
}

.sector-icon {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sector-icon .glyph {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  color: #ffffff;
  background: linear-gradient(135deg, #721953, #53275c);
  box-shadow: 0 10px 18px rgba(114, 25, 83, 0.25);
}

.sector-card[data-accent='rose'] .glyph,
.sector-card[data-accent='violet'] .glyph,
.sector-card[data-accent='indigo'] .glyph,
.sector-card[data-accent='cyan'] .glyph,
.sector-card[data-accent='magenta'] .glyph,
.sector-card[data-accent='teal'] .glyph,
.sector-card[data-accent='amber'] .glyph,
.sector-card[data-accent='navy'] .glyph,
.sector-card[data-accent='orange'] .glyph,
.sector-card[data-accent='pink'] .glyph {
  background: linear-gradient(135deg, #721953, #53275c);
  box-shadow: 0 10px 18px rgba(114, 25, 83, 0.25);
}

.sector-icon .tag {
  font-weight: 600;
  letter-spacing: 0.14em;
  font-size: 0.68rem;
  text-transform: uppercase;
  color: rgba(52, 30, 74, 0.6);
}

.sector-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0;
}

.sector-card p {
  margin: 0;
  color: rgba(29, 35, 80, 0.68);
  font-size: 0.95rem;
  line-height: 1.5;
}

.sectors-grid .sector-card:nth-child(n + 5) {
  grid-column: span 2;
}

.clients-section {
  background: linear-gradient(135deg, #1e214d 0%, #401a5d 52%, #6c1c53 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}

.clients-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(114, 25, 83, 0.15), transparent 45%);
  pointer-events: none;
}

.clients-section .container {
  position: relative;
  z-index: 1;
}

.clients-section .section-label {
  color: rgba(255, 255, 255, 0.6);
}

.clients-section .section-heading {
  color: #fff;
}

.clients-intro {
  max-width: 670px;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.clients-marquee {
  position: relative;
  overflow: hidden;
  margin-top: 3rem;
  border-radius: 1.6rem;
  padding: 1.75rem 0;
}

.clients-marquee .marquee-track {
  display: flex;
  gap: 2.8rem;
  min-width: max-content;
  animation: marquee 28s linear infinite;
  width: auto;
}

.client-logo {
  flex: 0 0 auto;
  min-width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.84rem;
  backdrop-filter: blur(6px);
  box-shadow: 0 16px 40px rgba(17, 20, 50, 0.32);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.client-logo:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.38);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.clients-section .btn {
  background-color: #fff;
  border-color: #fff;
  color: var(--primary);
  border-radius: 0.8rem;
  padding: 0.85rem 2.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.clients-section .btn:hover {
  background-color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.9);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.testimonials-section {
  background: var(--light-bg);
}

.testimonial-scroller {
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  gap: 1.6rem;
  padding: 0 2rem 2rem;
  animation: testimonial-marquee 28s linear infinite;
}

.testimonial-card {
  flex: 0 0 320px;
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 2rem 2.1rem;
  box-shadow: 0 18px 44px rgba(29, 35, 80, 0.12);
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.testimonial-card p {
  margin: 0;
  color: rgba(29, 35, 80, 0.72);
  font-style: italic;
}

.testimonial-card .author {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.testimonial-card .name {
  font-weight: 700;
  color: var(--accent);
}

.testimonial-card .role {
  font-size: 0.85rem;
  color: rgba(29, 35, 80, 0.6);
}

@keyframes testimonial-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.cta-panel {
  background: linear-gradient(135deg, #221d5a 0%, #401a5d 52%, #721953 100%);
  border-radius: 2rem;
  padding: 3.4rem 2rem;
  box-shadow: 0 28px 68px rgba(17, 20, 50, 0.28);
  color: #ffffff;
}

.cta-panel .section-heading {
  color: #ffffff;
}

.cta-panel p {
  max-width: 720px;
  margin: 1rem auto 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.cta-panel .nb-cta {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--primary);
  box-shadow: 0 20px 44px rgba(255, 255, 255, 0.18);
}

.cta-panel .nb-cta:hover {
  background: rgba(255, 255, 255, 0.92);
  color: var(--accent);
}

.reveal,
.values-section .value-card,
.portfolio-cta-card,
.sector-card {
  opacity: 0;
  transform: translateY(24px);
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.reveal.show,
.values-section .value-card.show,
.portfolio-cta-card.show,
.sector-card.show {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.reveal-left.show,
.reveal-right.show {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (max-width: 1199.98px) {
  .testimonial-card {
    flex: 0 0 280px;
  }

  .sectors-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sectors-grid .sector-card:nth-child(n + 5) {
    grid-column: auto;
  }
}

@media (max-width: 991.98px) {
  html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .container {
    width: 100%;
    max-width: 100%;
  }

  .about-hero {
    text-align: center;
    width: 100%;
    max-width: 100%;
  }

  .hero-preamble {
    text-align: left;
  }

  .metrics-card {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 100%;
  }

  .clients-marquee {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .clients-marquee::before,
  .clients-marquee::after {
    width: 80px;
  }

  .testimonial-scroller {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .testimonial-track {
    animation-duration: 34s;
  }

  .testimonial-card {
    flex: 0 0 240px;
  }

  .sectors-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 767.98px) {
  html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .container {
    width: 100%;
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section-padding {
    padding: 4rem 0;
  }

  .about-hero {
    padding: 5rem 0;
    width: 100%;
    max-width: 100%;
  }

  .metrics-card {
    padding: 2rem 1.8rem;
    width: 100%;
    max-width: 100%;
  }

  .portfolio-cta-card {
    padding: 2.1rem 1.8rem;
    width: 100%;
    max-width: 100%;
  }

  .client-logo {
    min-width: 160px;
    padding: 0.85rem 1.2rem;
    font-size: 0.78rem;
  }

  .clients-marquee {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .clients-marquee .marquee-track {
    gap: 2rem;
  }

  .testimonial-scroller {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .testimonial-track {
    animation-duration: 34s;
    padding: 0 1.5rem 2rem;
  }

  .testimonial-card {
    flex: 0 0 280px;
    padding: 1.8rem 1.5rem;
  }

  .sectors-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
    width: 100%;
    max-width: 100%;
  }

  .cta-panel {
    padding: 3rem 1.8rem;
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 575.98px) {
  /* Global width constraints for mobile */
  html {
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }

  body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
    position: relative;
  }

  main, section {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  .container,
  .container-fluid {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  [class*="col-"] {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .section-padding {
    padding: 3rem 0;
  }

  .about-hero {
    padding: 4rem 0;
  }

  .about-hero h1 {
    font-size: 1.75rem;
  }

  .about-hero .lead {
    font-size: 1rem;
  }

  .metrics-card {
    padding: 1.5rem 1.2rem;
  }

  .philosophy-panel {
    padding: 1.8rem 1.5rem;
  }

  .portfolio-cta-card {
    padding: 1.8rem 1.5rem;
  }

  .portfolio-form .input-group {
    border-radius: 1.1rem;
  }

  .portfolio-form .input-group-text {
    padding-left: 1rem;
  }

  .portfolio-form .form-control {
    padding-right: 1rem;
  }

  .sectors-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .client-logo {
    min-width: 150px;
    padding: 0.75rem 1rem;
    font-size: 0.75rem;
  }

  .clients-marquee {
    padding: 1.25rem 0;
  }

  .clients-marquee .marquee-track {
    gap: 1.5rem;
  }

  .testimonial-track {
    padding: 0 1rem 1.5rem;
  }

  .testimonial-card {
    flex: 0 0 280px;
    padding: 1.5rem 1.2rem;
  }

  .cta-panel {
    padding: 2.5rem 1.5rem;
    border-radius: 1.5rem;
  }

  .cta-panel .section-heading {
    font-size: 1.5rem;
  }

  .cta-panel .lead {
    font-size: 1rem;
  }

  .clients-marquee img {
    height: 48px;
  }

  /* Specific fixes for problematic elements */
  .about-hero .container,
  .philosophy-section .container,
  .method-section .container,
  .values-section .container,
  .realisations-intro .container,
  .sectors-section .container,
  .clients-section .container,
  .testimonials-section .container,
  .final-cta .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .hero-shape-1,
  .hero-shape-2 {
    max-width: 100%;
  }

  .philosophy-panel,
  .metrics-card,
  .portfolio-cta-card,
  .value-card,
  .sector-card,
  .testimonial-card,
  .cta-panel {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Prevent any element from causing horizontal overflow */
  .about-hero,
  .philosophy-section,
  .method-section,
  .values-section,
  .realisations-intro,
  .sectors-section,
  .clients-section,
  .testimonials-section,
  .final-cta {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }
}

