:root {
    --brand-gold: #eabc73;
    --brand-navy: #080059;
    --text-dark: #222;
    --light-bg: #fffef9;
    --soft-bg: #fff6e6;
  }
  
  * {
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
  }
  
  body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    color: var(--text-dark);
    background: var(--light-bg);
  }
  
  .site-navbar {
    padding: 1rem 0;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
  }
  
  .site-navbar.scrolled {
    background: rgba(8, 0, 89, 0.9);
    box-shadow: 0 8px 24px rgba(8, 0, 89, 0.28);
  }
  
  .navbar-brand,
  .footer-brand {
    padding: 0;
    line-height: 0;
  }

  .site-logo {
    height: 42px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: invert(1) hue-rotate(180deg);
  }

  .footer-brand .site-logo {
    height: 48px;
  }
  
  .nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    position: relative;
    border-radius: 999px;
    padding: 0.45rem 0.9rem !important;
    transition: color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
  }
  
  .nav-link::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 6px;
    width: auto;
    height: 2px;
    background: var(--brand-gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
  }
  
  .nav-link:hover::after,
  .nav-link.active::after {
    transform: scaleX(1);
  }
  
  .nav-link:hover {
    color: #fff;
    background: rgba(234, 188, 115, 0.16);
  }
  
  .nav-link.active {
    color: var(--brand-navy);
    background: linear-gradient(120deg, #f3cf92, var(--brand-gold));
    box-shadow: 0 8px 20px rgba(234, 188, 115, 0.38);
  }
  
  .hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    --hero-fade-ms: 1400ms;
    --hero-fade-opacity-ease: cubic-bezier(0.45, 0.05, 0.55, 0.95);
    --hero-fade-transform-ease: cubic-bezier(0.22, 1, 0.36, 1);
  }
  
  .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0;
    transform: scale(1.08);
    pointer-events: none;
    background-size: cover;
    background-position: center;
    backface-visibility: hidden;
    will-change: opacity, transform;
    transition:
      opacity var(--hero-fade-ms) var(--hero-fade-opacity-ease),
      transform calc(var(--hero-fade-ms) * 1.35) var(--hero-fade-transform-ease);
  }
  
  .hero-bg.is-active {
    z-index: 1;
    opacity: 1;
    transform: scale(1);
  }
  
  @media (prefers-reduced-motion: reduce) {
    .hero-section {
      --hero-fade-ms: 280ms;
    }
  
    .hero-bg {
      transform: scale(1);
    }
  
    .hero-bg.is-active {
      transform: scale(1);
    }
  }
  
  .hero-bg-1 {
    background-image: url("https://www.park.edu/wp-content/uploads/2025/04/Construction-Management-Park-University-min.png?auto=format&fit=crop&w=1920&q=80");
  }
  
  .hero-bg-2 {
    background-image: url("https://static.vecteezy.com/system/resources/previews/024/095/841/non_2x/safety-construction-worker-hat-isolated-on-blurred-industry-background-generative-ai-free-photo.jpg?auto=format&fit=crop&w=1920&q=80");
  }
  
  .hero-bg-3 {
    background-image: url("https://images.unsplash.com/photo-1650551182991-b07558247564?q=80&w=1173&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D?auto=format&fit=crop&w=1920&q=80");
  }
  
  .hero-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(120deg, rgba(8, 0, 89, 0.6), rgba(8, 0, 89, 0.25)); */
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
  }
  
  .hero-tagline {
    color: var(--brand-gold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.85rem;
  }
  
  .hero-title {
    font-size: clamp(2rem, 4vw, 3.8rem);
    font-weight: 800;
    line-height: 1.2;
  }
  
  .rotating-line {
    display: block;
    margin-top: 0.35rem;
    line-height: 1.2;
  }
  
  .rotating-line .rotating-word,
  .rotating-line .typing-cursor {
    vertical-align: baseline;
  }
  
  .rotating-word {
    display: inline;
    color: var(--brand-gold);
    margin-left: 0;
    transition: opacity 0.25s ease, transform 0.25s ease, filter 0.25s ease;
  }
  
  .typing-cursor {
    display: inline-block;
    width: 3px;
    height: 0.92em;
    margin-left: 5px;
    background-color: var(--brand-gold);
    box-shadow: 0 0 12px rgba(234, 188, 115, 0.65);
    animation: typing-cursor-blink 1s step-end infinite;
  }
  
  @keyframes typing-cursor-blink {
    0%,
    49% {
      opacity: 1;
    }
  
    50%,
    100% {
      opacity: 0;
    }
  }
  
  .rotating-word.is-visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
  
  .rotating-word.is-hidden {
    opacity: 0;
    transform: translateY(12px);
    filter: blur(2px);
  }
  
  .hero-subtitle {
    max-width: 62ch;
    color: rgba(255, 255, 255, 0.9);
  }
  
  .hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    max-width: 760px;
  }
  
  .hero-highlight-item {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 150px;
    padding: 0.7rem 0.95rem;
    border-radius: 0.8rem;
    border: 1px solid rgba(234, 188, 115, 0.5);
    background: rgba(4, 12, 74, 0.72);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(3px);
    overflow: hidden;
  }
  
  .hero-highlight-item::after {
    content: "";
    position: absolute;
    top: -40%;
    bottom: -40%;
    width: 36%;
    left: -45%;
    background: linear-gradient(
      110deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.1) 35%,
      rgba(255, 255, 255, 0.72) 50%,
      rgba(255, 255, 255, 0.1) 65%,
      rgba(255, 255, 255, 0) 100%
    );
    transform: translateX(0) rotate(8deg);
    opacity: 0;
    animation: heroHighlightShine 4.8s ease-in-out infinite;
  }
  
  .hero-highlight-item:nth-child(2)::after {
    animation-delay: 0.6s;
  }
  
  .hero-highlight-item:nth-child(3)::after {
    animation-delay: 1.2s;
  }
  
  .hero-highlight-value {
    color: var(--brand-gold);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.1;
  }
  
  .hero-highlight-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    letter-spacing: 0.02em;
    margin-top: 0.18rem;
  }
  
  @keyframes heroHighlightShine {
    0%,
    70% {
      left: -45%;
      opacity: 0;
    }
  
    76% {
      opacity: 0.9;
    }
  
    95% {
      left: 120%;
      opacity: 0.35;
    }
  
    100% {
      left: 120%;
      opacity: 0;
    }
  }
  
  .btn-hero {
    border: none;
    border-radius: 50px;
    padding: 0.75rem 1.6rem;
    color: var(--brand-navy);
    font-weight: 600;
    background: var(--brand-gold);
  }
  
  .btn-hero:hover {
    color: var(--brand-navy);
    background: #ffbc52;
    transform: translateY(-1px);
  }
  
  .services-ticker-section {
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(8, 0, 89, 0.08);
    border-bottom: 1px solid rgba(8, 0, 89, 0.08);
    background: linear-gradient(90deg, rgba(8, 0, 89, 0.95), rgba(22, 12, 114, 0.95));
    --ticker-group-gap: 1.15rem;
  }
  
  .services-ticker-track {
    display: flex;
    width: max-content;
    animation: servicesTickerMove var(--ticker-duration, 22s) linear infinite;
    will-change: transform;
    --ticker-shift: 50%;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
  }
  
  .services-ticker-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
    min-width: max-content;
    padding: 0.85rem 0;
    margin-right: var(--ticker-group-gap);
  }
  
  .services-ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 999px;
    border: 1px solid rgba(234, 188, 115, 0.45);
    background: rgba(234, 188, 115, 0.12);
    padding: 0.48rem 0.95rem;
  }
  
  .services-ticker-item i {
    color: var(--brand-gold);
    font-size: 0.9rem;
  }
  
  @keyframes servicesTickerMove {
    from {
      transform: translate3d(0, 0, 0);
    }
  
    to {
      transform: translate3d(calc(var(--ticker-shift, 50%) * -1), 0, 0);
    }
  }
  
  .section-pad {
    padding: clamp(3rem, 7vw, 5.5rem) 0;
  }
  
  .section-soft {
    background: var(--soft-bg);
  }
  
  .about-us-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--light-bg) 0%, var(--soft-bg) 42%, var(--light-bg) 100%);
    border-top: 1px solid rgba(8, 0, 89, 0.06);
  }
  
  .about-us-inner {
    z-index: 1;
  }
  
  .about-us-decor {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(72px);
    opacity: 0.42;
    animation: aboutDecorFloat 16s ease-in-out infinite;
  }
  
  .about-us-decor--1 {
    width: min(380px, 70vw);
    height: min(380px, 70vw);
    top: -8%;
    right: -6%;
    background: radial-gradient(circle at 30% 30%, rgba(234, 188, 115, 0.75), transparent 68%);
  }
  
  .about-us-decor--2 {
    width: min(300px, 55vw);
    height: min(300px, 55vw);
    bottom: 5%;
    left: -8%;
    background: radial-gradient(circle at 50% 50%, rgba(8, 0, 89, 0.35), transparent 70%);
    animation-delay: -8s;
  }
  
  @keyframes aboutDecorFloat {
    0%,
    100% {
      transform: translate(0, 0) scale(1);
    }
  
    50% {
      transform: translate(-12px, 18px) scale(1.06);
    }
  }
  
  .about-reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }
  
  @keyframes aboutRevealIn {
    from {
      opacity: 0;
      transform: translate3d(0, 36px, 0);
      filter: blur(5px);
    }
  
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
      filter: blur(0);
    }
  }
  
  #about.is-inview .about-reveal {
    animation: aboutRevealIn 0.92s cubic-bezier(0.22, 1, 0.36, 1) both;
  }
  
  .about-reveal-delay-1 {
    animation-delay: 0.08s;
  }
  
  .about-reveal-delay-2 {
    animation-delay: 0.16s;
  }
  
  .about-reveal-delay-3 {
    animation-delay: 0.24s;
  }
  
  .about-reveal-delay-4 {
    animation-delay: 0.32s;
  }
  
  .about-reveal-delay-5 {
    animation-delay: 0.4s;
  }
  
  .about-reveal-delay-6 {
    animation-delay: 0.48s;
  }
  
  .section-kicker {
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.65rem;
  }
  
  .section-kicker-inner {
    display: inline-block;
    padding: 0.35rem 1rem;
    color: var(--brand-navy);
    background: linear-gradient(135deg, rgba(234, 188, 115, 0.35), rgba(234, 188, 115, 0.08));
    border: 1px solid rgba(234, 188, 115, 0.55);
    border-radius: 999px;
    box-shadow: 0 4px 20px rgba(8, 0, 89, 0.06);
    position: relative;
    overflow: hidden;
  }
  
  .section-kicker-inner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, transparent 35%, rgba(255, 255, 255, 0.55) 50%, transparent 65%);
    transform: translateX(-120%);
    animation: aboutKickerShine 3.5s ease-in-out infinite paused;
  }
  
  #about.is-inview .section-kicker-inner::after {
    animation-play-state: running;
  }
  
  @keyframes aboutKickerShine {
    0%,
    40% {
      transform: translateX(-120%);
    }
  
    55%,
    100% {
      transform: translateX(120%);
    }
  }
  
  .section-title {
    color: var(--brand-navy);
    font-weight: 800;
    font-size: clamp(1.65rem, 3.2vw, 2.35rem);
    line-height: 1.25;
    margin-bottom: 1rem;
  }
  
  .about-title-accent {
    color: var(--brand-gold);
  }
  
  #about.is-inview .about-title-accent {
    background: linear-gradient(105deg, var(--brand-navy) 0%, #2a1f8a 40%, var(--brand-gold) 85%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: aboutTitleGradient 6s ease-in-out infinite;
  }
  
  @keyframes aboutTitleGradient {
    0%,
    100% {
      background-position: 0% 50%;
    }
  
    50% {
      background-position: 100% 50%;
    }
  }
  
  .section-lead {
    color: rgba(34, 34, 34, 0.78);
    font-size: 1.05rem;
    line-height: 1.65;
    max-width: 52ch;
    margin-left: auto;
    margin-right: auto;
  }
  
  .about-us-card {
    position: relative;
    background: #fff;
    border-radius: 0.9rem;
    padding: clamp(1.25rem, 3vw, 1.75rem);
    border: 1px solid rgba(8, 0, 89, 0.08);
    box-shadow: 0 12px 30px rgba(8, 0, 89, 0.09);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
    overflow: hidden;
  }
  
  .about-us-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--brand-gold), rgba(234, 188, 115, 0.35));
    border-radius: 0 0 4px 4px;
    transition: height 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  }
  
  #about.is-inview .about-us-card::before {
    height: 100%;
    transition-delay: 0.35s;
  }
  
  .about-us-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 22px 40px rgba(8, 0, 89, 0.14);
  }
  
  .about-us-card-title {
    color: var(--brand-navy);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--brand-gold);
    display: inline-block;
  }
  
  .about-us-card p {
    color: rgba(34, 34, 34, 0.82);
    line-height: 1.65;
  }
  
  .about-us-visual {
    position: relative;
    border-radius: 0.9rem;
    overflow: hidden;
    border: 1px solid rgba(8, 0, 89, 0.1);
    box-shadow: 0 16px 40px rgba(8, 0, 89, 0.14);
    background: var(--brand-navy);
  }
  
  .about-us-visual::after {
    content: "";
    position: absolute;
    inset: -20% -40%;
    background: linear-gradient(105deg, transparent 42%, rgba(255, 255, 255, 0.22) 50%, transparent 58%);
    transform: translateX(-100%) rotate(6deg);
    pointer-events: none;
    z-index: 2;
    opacity: 0;
  }
  
  #about.is-inview .about-us-visual::after {
    animation: aboutImageShine 1.35s cubic-bezier(0.22, 1, 0.36, 1) 0.45s forwards;
  }
  
  @keyframes aboutImageShine {
    0% {
      opacity: 0;
      transform: translateX(-100%) rotate(6deg);
    }
  
    15% {
      opacity: 1;
    }
  
    100% {
      opacity: 0;
      transform: translateX(100%) rotate(6deg);
    }
  }
  
  .about-us-img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    object-position: center;
    transform: scale(1);
  }
  
  @keyframes aboutImgZoomIn {
    from {
      transform: scale(1.1);
    }
  
    to {
      transform: scale(1);
    }
  }
  
  #about.is-inview .about-us-img {
    animation: aboutImgZoomIn 1.15s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.2s;
  }
  
  .about-us-visual-badge {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    left: auto;
    max-width: calc(100% - 2rem);
    z-index: 3;
    background: linear-gradient(125deg, #f3cf92, var(--brand-gold));
    color: var(--brand-navy);
    border-radius: 0.75rem;
    padding: 0.85rem 1.1rem;
    box-shadow: 0 10px 28px rgba(8, 0, 89, 0.22);
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
  }
  
  #about.is-inview .about-us-visual-badge {
    animation: aboutBadgeFloat 3.8s ease-in-out infinite;
    animation-delay: 0.6s;
  }
  
  @keyframes aboutBadgeFloat {
    0%,
    100% {
      transform: translateY(0);
    }
  
    50% {
      transform: translateY(-8px);
    }
  }
  
  .about-us-badge-value {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
  }
  
  .about-us-badge-label {
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.3;
    opacity: 0.95;
  }
  
  .about-stat-card {
    position: relative;
    background: #fff;
    border-radius: 0.9rem;
    padding: 1.35rem 1.25rem;
    border: 1px solid rgba(8, 0, 89, 0.08);
    box-shadow: 0 12px 30px rgba(8, 0, 89, 0.09);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
    height: 100%;
    overflow: hidden;
  }
  
  .about-stat-num {
    position: absolute;
    top: 0.65rem;
    right: 0.85rem;
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(8, 0, 89, 0.06);
    letter-spacing: -0.04em;
    transition: color 0.35s ease, transform 0.35s ease;
  }
  
  #about.is-inview .about-stat-card:hover .about-stat-num {
    color: rgba(234, 188, 115, 0.45);
    transform: scale(1.05);
  }
  
  .about-stat-card::before {
    content: "";
    display: block;
    width: 2.5rem;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--brand-gold), rgba(234, 188, 115, 0.45));
    margin-bottom: 1rem;
    transform-origin: left;
    transform: scaleX(1);
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  }
  
  #about.is-inview .about-stat-card.about-reveal-delay-4::before {
    animation: aboutStatBar 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.55s;
  }
  
  #about.is-inview .about-stat-card.about-reveal-delay-5::before {
    animation: aboutStatBar 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.62s;
  }
  
  #about.is-inview .about-stat-card.about-reveal-delay-6::before {
    animation: aboutStatBar 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.69s;
  }
  
  @keyframes aboutStatBar {
    from {
      transform: scaleX(0.22);
    }
  
    to {
      transform: scaleX(1);
    }
  }
  
  .about-stat-card:hover::before {
    transform: scaleX(1.15);
  }
  
  .about-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 42px rgba(8, 0, 89, 0.16);
    border-color: rgba(234, 188, 115, 0.35);
  }
  
  .about-stat-title {
    color: var(--brand-navy);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.65rem;
    position: relative;
    z-index: 1;
  }
  
  .about-stat-card p {
    color: rgba(34, 34, 34, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
  }
  
  .our-work-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #f6f2e7 0%, #fff8ec 45%, #f7f2e7 100%);
    border-top: 1px solid rgba(8, 0, 89, 0.06);
  }
  
  .work-carousel {
    position: relative;
    height: clamp(300px, 45vw, 460px);
    margin-top: clamp(1.2rem, 3vw, 2rem);
    perspective: 1200px;
  }
  
  .work-card {
    position: absolute;
    top: 0;
    left: 50%;
    width: min(38vw, 440px);
    height: 100%;
    cursor: pointer;
    border-radius: 1.1rem;
    overflow: hidden;
    background: #0f1230;
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 20px 50px rgba(8, 0, 89, 0.22);
    transition:
      left 1s cubic-bezier(0.22, 1, 0.36, 1),
      transform 1s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.9s ease,
      filter 0.9s ease,
      box-shadow 0.9s ease;
  }
  
  .work-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(8, 0, 89, 0.08), rgba(8, 0, 89, 0.55) 72%);
    z-index: 1;
  }
  
  .work-card-img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center center;
    transform: scale(1.02);
    transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  }
  
  .work-card-overlay {
    position: absolute;
    inset: auto 0 0;
    z-index: 2;
    padding: 1.25rem 1.2rem;
    color: #fff;
    background: linear-gradient(180deg, rgba(8, 0, 89, 0) 0%, rgba(8, 0, 89, 0.78) 65%, rgba(8, 0, 89, 0.94) 100%);
  }
  
  .work-card-overlay h3 {
    margin: 0 0 0.4rem;
    font-size: 1.25rem;
    font-weight: 700;
  }
  
  .work-card-overlay p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92);
  }
  
  .work-card.slot-left {
    left: 22%;
    transform: translateX(-50%) scale(0.84);
    opacity: 1;
    z-index: 2;
    filter: saturate(0.88);
  }
  
  .work-card.slot-center {
    left: 50%;
    transform: translateX(-50%) scale(1.12);
    opacity: 1;
    z-index: 4;
    box-shadow: 0 28px 58px rgba(8, 0, 89, 0.3);
  }
  
  .work-card.slot-center .work-card-img {
    transform: scale(1.08);
  }
  
  .work-card.slot-right {
    left: 78%;
    transform: translateX(-50%) scale(0.84);
    opacity: 1;
    z-index: 2;
    filter: saturate(0.88);
  }
  
  .work-card.slot-far-left {
    left: 6%;
    transform: translateX(-50%) scale(0.74);
    opacity: 0.58;
    z-index: 1;
    filter: saturate(0.74);
  }
  
  .work-card.slot-far-right {
    left: 94%;
    transform: translateX(-50%) scale(0.74);
    opacity: 0.58;
    z-index: 1;
    filter: saturate(0.74);
  }
  
  .work-card.slot-off-right {
    left: 114%;
    transform: translateX(-50%) scale(0.72);
    opacity: 0;
    z-index: 1;
    filter: blur(2px);
  }
  
  .work-card.slot-off-left {
    left: -14%;
    transform: translateX(-50%) scale(0.72);
    opacity: 0;
    z-index: 1;
    filter: blur(2px);
  }
  
  .projects-section {
    position: relative;
    background: linear-gradient(180deg, #fffefb 0%, #fff8ee 52%, #fffefb 100%);
    border-top: 1px solid rgba(8, 0, 89, 0.08);
    border-bottom: 1px solid rgba(8, 0, 89, 0.08);
  }
  
  .project-card {
    position: relative;
    overflow: hidden;
    border-radius: 1.05rem;
    min-height: clamp(210px, 24vw, 280px);
    max-height: clamp(210px, 24vw, 280px);
    border: 1px solid rgba(8, 0, 89, 0.12);
    box-shadow: 0 16px 34px rgba(8, 0, 89, 0.14);
    background: #0c0a4b;
    transform: translateY(0);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
  }
  
  .project-card-wide {
    min-height: clamp(230px, 27vw, 320px);
  }
  
  .project-card-img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease;
  }
  
  .project-card::after {
    content: "";
    position: absolute;
    inset: 0;
    /* background: linear-gradient(170deg, rgba(8, 0, 89, 0.06), rgba(8, 0, 89, 0.72)); */
    pointer-events: none;
  }
  
  .project-card-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    color: #fff;
    padding: 1rem 0.95rem 0.95rem;
    background: linear-gradient(180deg, rgba(8, 0, 89, 0), rgba(8, 0, 89, 0.88));
    transform: translateY(54%);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  }
  
  .project-card-overlay h3 {
    margin: 0 0 0.75rem;
    font-size: 1.02rem;
    font-weight: 700;
  }
  
  .project-card-overlay p {
    margin: 0.18rem 0;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }
  
  .project-card-overlay i {
    color: var(--brand-gold);
    font-size: 0.78rem;
  }
  
  .project-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 26px 45px rgba(8, 0, 89, 0.22);
  }
  
  .project-card:hover .project-card-img {
    transform: scale(1.08);
    filter: saturate(1.08);
  }
  
  .project-card:hover .project-card-overlay {
    transform: translateY(0);
  }
  
  .projects-cta-btn {
    min-width: 225px;
    box-shadow: 0 14px 30px rgba(8, 0, 89, 0.22);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  
  .projects-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(8, 0, 89, 0.28);
  }
  
  .partners-section {
    position: relative;
    background: linear-gradient(180deg, #fff9ef 0%, #ffffff 45%, #fff9ef 100%);
    border-top: 1px solid rgba(8, 0, 89, 0.08);
  }
  
  .partners-slider-viewport {
    position: relative;
    overflow: hidden;
    padding: 0.3rem 0;
  }
  
  .partners-track {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
  }
  
  .partner-logo-card {
    flex: 0 0 calc((100% - 1.8rem) / 5);
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.45rem;
  }
  
  .partner-logo-card img {
    width: auto;
    height: 46px;
    max-width: 94%;
    object-fit: contain;
    opacity: 0.95;
  }
  
  @media (prefers-reduced-motion: reduce) {
    html {
      scroll-behavior: auto;
    }
  
    .about-us-decor {
      animation: none;
      opacity: 0.22;
    }
  
    .about-reveal,
    #about.is-inview .about-reveal {
      animation: none;
      opacity: 1;
      transform: none;
      filter: none;
    }
  
    .section-kicker-inner::after {
      animation: none !important;
    }
  
    .about-title-accent,
    #about.is-inview .about-title-accent {
      animation: none;
      background: none;
      -webkit-background-clip: unset;
      background-clip: unset;
      color: var(--brand-gold);
    }
  
    #about.is-inview .about-us-visual::after {
      animation: none !important;
    }
  
    #about.is-inview .about-us-img {
      animation: none;
      transform: scale(1);
    }
  
    #about.is-inview .about-us-visual-badge {
      animation: none !important;
    }
  
    .about-us-card::before,
    #about.is-inview .about-us-card::before {
      height: 100%;
      transition: none;
    }
  
    .about-stat-card::before,
    #about.is-inview .about-stat-card.about-reveal-delay-4::before,
    #about.is-inview .about-stat-card.about-reveal-delay-5::before,
    #about.is-inview .about-stat-card.about-reveal-delay-6::before {
      animation: none;
      transform: scaleX(1);
      transition: none;
    }
  
    .work-card,
    .work-card-img {
      transition: none;
    }
  
    .services-ticker-track {
      animation: none;
    }
  
    .partners-track {
      transition: none;
    }
  }
  
  .service-card {
    background: #fff;
    border-radius: 0.9rem;
    padding: 1.4rem;
    border: 1px solid rgba(8, 0, 89, 0.08);
    box-shadow: 0 12px 30px rgba(8, 0, 89, 0.09);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  
  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 34px rgba(8, 0, 89, 0.14);
  }
  
  .service-card h3 {
    color: var(--brand-navy);
    font-size: 1.2rem;
    font-weight: 700;
  }
  
  .about-box {
    background: #fff;
    border-left: 4px solid var(--brand-gold);
    border-radius: 0.75rem;
    padding: 1.2rem;
    box-shadow: 0 10px 26px rgba(8, 0, 89, 0.1);
  }
  
  .site-footer {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 16% 10%, rgba(234, 188, 115, 0.15), transparent 42%),
      radial-gradient(circle at 85% 88%, rgba(234, 188, 115, 0.12), transparent 38%),
      linear-gradient(115deg, #050039 0%, #080059 46%, #140a75 100%);
    color: #fff;
    padding: clamp(2.6rem, 6.5vw, 4.4rem) 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .footer-brand {
    display: inline-block;
  }
  
  .footer-text {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    max-width: 44ch;
    font-size: 0.97rem;
  }
  
  .footer-title {
    font-size: 1.02rem;
    color: #fff;
    margin: 0 0 0.95rem;
    font-weight: 700;
  }
  
  .footer-links,
  .footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.62rem;
  }
  
  .footer-links a,
  .footer-contact li {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.93rem;
    text-decoration: none;
  }
  
  .footer-links a {
    transition: color 0.2s ease, transform 0.2s ease;
  }
  
  .footer-links a:hover {
    color: var(--brand-gold);
    transform: translateX(2px);
  }
  
  .footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    line-height: 1.5;
  }
  
  .footer-contact i {
    margin-top: 0.12rem;
    color: var(--brand-gold);
    width: 0.95rem;
  }
  
  .footer-socials {
    display: flex;
    gap: 0.5rem;
  }
  
  .footer-socials a {
    width: 2.05rem;
    height: 2.05rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 1px solid rgba(234, 188, 115, 0.45);
    background: rgba(234, 188, 115, 0.15);
    transition: transform 0.22s ease, background-color 0.22s ease, color 0.22s ease;

    text-decoration: none;
  }
  
  .footer-socials a:hover {
    transform: translateY(-2px);
    background: var(--brand-gold);
    color: var(--brand-navy);
  }
  
  .footer-bottom {
    margin-top: clamp(1.8rem, 4.5vw, 2.6rem);
    padding-top: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.86rem;
  }
  
  @media (max-width: 991.98px) {
    .site-navbar {
      background: rgba(8, 0, 89, 0.86);
    }
  
    .navbar-collapse {
      margin-top: 0.7rem;
      padding: 0.65rem;
      border-radius: 0.65rem;
      background: rgba(8, 0, 89, 0.95);
    }
  
    .nav-link {
      margin-bottom: 0.25rem;
    }
  
    .hero-highlight-item {
      min-width: 145px;
    }
  
    .work-carousel {
      height: 300px;
    }
  
    .work-card {
      width: min(54vw, 360px);
    }
  
    .work-card.slot-left {
      left: 25%;
    }
  
    .work-card.slot-right {
      left: 75%;
    }
  
    .work-card.slot-far-left {
      left: -8%;
      transform: translateX(-50%) scale(0.66);
      opacity: 0;
    }
  
    .work-card.slot-far-right {
      left: 108%;
      transform: translateX(-50%) scale(0.66);
      opacity: 0;
    }
  
    .services-ticker-item {
      font-size: 0.84rem;
      padding: 0.42rem 0.8rem;
    }
  
    .partner-logo-card {
      flex-basis: calc((100% - 0.9rem) / 3);
      min-height: 66px;
    }
  
    .partner-logo-card img {
      height: 40px;
    }
  
    .site-footer {
      padding-top: 2.5rem;
    }
  }
  
  @media (max-width: 575.98px) {
    .hero-highlights {
      gap: 0.55rem;
    }
  
    .hero-highlight-item {
      flex: 1 1 100%;
      min-width: 0;
    }
  
    .work-carousel {
      height: 260px;
      margin-top: 0.8rem;
    }
  
    .work-card {
      width: min(70vw, 260px);
      height: 100%;
    }
  
    .work-card.slot-left {
      left: 18%;
      transform: translateX(-50%) scale(0.72);
      opacity: 1;
    }
  
    .work-card.slot-center {
      left: 50%;
      transform: translateX(-50%) scale(1.03);
      opacity: 1;
    }
  
    .work-card.slot-right {
      left: 82%;
      transform: translateX(-50%) scale(0.72);
      opacity: 1;
    }
  
    .work-card.slot-far-left {
      left: -26%;
      transform: translateX(-50%) scale(0.62);
      opacity: 0;
    }
  
    .work-card.slot-far-right {
      left: 126%;
      transform: translateX(-50%) scale(0.62);
      opacity: 0;
    }
  
    .work-card.slot-off-right {
      left: 125%;
      transform: translateX(-50%) scale(0.66);
      opacity: 0;
    }
  
    .work-card.slot-off-left {
      left: -25%;
      transform: translateX(-50%) scale(0.66);
      opacity: 0;
    }
  
    .work-card-overlay {
      padding: 0.9rem 0.85rem;
    }
  
    .work-card-overlay h3 {
      font-size: 0.95rem;
      margin-bottom: 0.25rem;
    }
  
    .work-card-overlay p {
      font-size: 0.78rem;
      line-height: 1.4;
    }
  
    .project-card {
      min-height: 220px;
    }
  
    .project-card-wide {
      min-height: 220px;
    }
  
    .project-card-overlay {
      transform: translateY(0);
      padding: 0.9rem 0.85rem 0.8rem;
    }
  
    .project-card-overlay h3 {
      font-size: 0.96rem;
    }
  
    .project-card-overlay p {
      font-size: 0.78rem;
    }
  
    .projects-cta-btn {
      min-width: 0;
      width: 100%;
    }
  
    .partners-track {
      gap: 0.45rem;
    }
  
    .partner-logo-card {
      flex-basis: calc((100% - 0.45rem) / 2);
      min-height: 62px;
      padding: 0.4rem 0.45rem;
    }
  
    .partner-logo-card img {
      height: 34px;
      max-width: 94%;
    }
  
    .footer-brand .site-logo {
      height: 40px;
    }
  
    .footer-bottom {
      text-align: center;
    }
  }
  
  /* About page styles */
  .about-page-header {
    position: relative;
    min-height: 70vh;
    overflow: hidden;
  }
  
  .about-page-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1920&q=80");
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
  }
  
  .about-page-hero-overlay {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(120deg, rgba(8, 0, 89, 0.76), rgba(8, 0, 89, 0.3)),
      radial-gradient(circle at 20% 22%, rgba(234, 188, 115, 0.32), transparent 44%);
  }
  
  .about-page-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
  }
  
  .about-page-title {
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    line-height: 1.18;
    font-weight: 800;
  }
  
  .about-page-subtitle {
    max-width: 64ch;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1rem, 2vw, 1.16rem);
  }
  
  .min-vh-70 {
    min-height: 70vh;
  }
  
  .about-page-intro-section {
    background: linear-gradient(180deg, #fffef9 0%, #fff8ec 100%);
  }
  
  .ceo-message-section {
    background: linear-gradient(180deg, #fffefb 0%, #fff9ee 100%);
  }
  
  .ceo-frame-wrap {
    position: relative;
    max-width: 390px;
    margin: 0 auto;
  }
  
  .ceo-frame-glow {
    position: absolute;
    inset: -10px;
    border-radius: 1.3rem;
    background: linear-gradient(135deg, rgba(234, 188, 115, 0.9), rgba(8, 0, 89, 0.88), rgba(234, 188, 115, 0.9));
    background-size: 220% 220%;
    filter: blur(8px);
    opacity: 0.85;
    animation: ceoFrameGlow 5s ease-in-out infinite;
  }
  
  .ceo-frame {
    position: relative;
    margin: 0;
    padding: 0.55rem;
    border-radius: 1.2rem;
    background: linear-gradient(130deg, rgba(255, 255, 255, 0.96), rgba(245, 240, 255, 0.96));
    box-shadow: 0 20px 42px rgba(8, 0, 89, 0.2);
    overflow: hidden;
  }
  
  .ceo-image {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center;
    border-radius: 0.85rem;
  }
  
  .ceo-message-card {
    /* background: #fff; */
    /* border: 1px solid rgba(8, 0, 89, 0.09); */
    border-radius: 1rem;
    /* box-shadow: 0 14px 30px rgba(8, 0, 89, 0.1); */
    padding: clamp(1.2rem, 3vw, 2rem);
  }
  
  .ceo-message-card h2 {
    color: var(--brand-navy);
    margin: 0 0 0.9rem;
    font-size: clamp(1.4rem, 2.6vw, 2rem);
  }
  
  .ceo-message-card p {
    color: rgba(34, 34, 34, 0.84);
    line-height: 1.72;
    margin-bottom: 0.88rem;
  }
  
  .ceo-signature {
    color: var(--brand-navy);
    font-weight: 600;
  }
  
  @keyframes ceoFrameGlow {
    0%,
    100% {
      background-position: 0% 50%;
      opacity: 0.7;
    }
  
    50% {
      background-position: 100% 50%;
      opacity: 1;
    }
  }
  
  .about-page-panel {
    background: #fff;
    border-radius: 1rem;
    border: 1px solid rgba(8, 0, 89, 0.08);
    box-shadow: 0 16px 32px rgba(8, 0, 89, 0.1);
    padding: clamp(1.25rem, 3vw, 2rem);
  }
  
  .about-page-panel h2 {
    margin: 0 0 0.9rem;
    font-size: clamp(1.3rem, 2.2vw, 1.7rem);
    color: var(--brand-navy);
  }
  
  .about-page-panel p {
    color: rgba(34, 34, 34, 0.84);
    line-height: 1.7;
  }
  
  .about-page-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
  }
  
  .about-page-list li {
    display: flex;
    gap: 0.55rem;
    color: rgba(34, 34, 34, 0.86);
    line-height: 1.55;
  }
  
  .about-page-list i {
    color: var(--brand-gold);
    margin-top: 0.13rem;
  }
  
  .about-page-metrics-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(140deg, rgba(8, 0, 89, 0.98), rgba(23, 12, 111, 0.95));
  }
  
  .metrics-orb {
    position: absolute;
    width: min(240px, 36vw);
    height: min(240px, 36vw);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(234, 188, 115, 0.9), rgba(234, 188, 115, 0.24));
    top: -60px;
    right: -30px;
    filter: blur(1px);
  }
  
  .metrics-ring {
    position: absolute;
    width: min(380px, 55vw);
    height: min(380px, 55vw);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    left: -120px;
    bottom: -210px;
  }
  
  .metrics-ring--alt {
    width: min(170px, 28vw);
    height: min(170px, 28vw);
    left: auto;
    right: 14%;
    bottom: 30px;
    border-color: rgba(234, 188, 115, 0.35);
  }
  
  .about-metric-card {
    position: relative;
    height: 100%;
    border-radius: 1rem;
    padding: 1.22rem 0.95rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 18px 34px rgba(4, 2, 44, 0.28);
    backdrop-filter: blur(4px);
    text-align: center;
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
  }
  
  .about-metric-card::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(234, 188, 115, 0.35), var(--brand-gold), rgba(234, 188, 115, 0.35));
  }
  
  .about-metric-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 38px rgba(4, 2, 44, 0.35);
  }
  
  .about-metric-value {
    display: block;
    color: var(--brand-gold);
    font-size: clamp(1.35rem, 3.2vw, 2rem);
    font-weight: 800;
  }
  
  .about-metric-label {
    display: block;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.9rem;
    margin-top: 0.18rem;
  }
  
  .about-page-cta-section {
    background: linear-gradient(180deg, #fff8ec 0%, #fffef9 100%);
  }
  
  .about-page-cta-box {
    border-radius: 1.1rem;
    padding: clamp(1.5rem, 4vw, 2.7rem);
    background: linear-gradient(130deg, rgba(8, 0, 89, 0.95), rgba(23, 12, 111, 0.95));
    color: #fff;
    box-shadow: 0 20px 40px rgba(8, 0, 89, 0.2);
  }
  
  .about-page-cta-box h2 {
    margin: 0 0 0.75rem;
    font-size: clamp(1.4rem, 3.4vw, 2.1rem);
  }
  
  .about-page-cta-box p {
    color: rgba(255, 255, 255, 0.88);
    max-width: 58ch;
    margin-left: auto;
    margin-right: auto;
  }
  
  .testimonials-section {
    background: linear-gradient(180deg, #fffefb 0%, #f7f3ff 100%);
    border-top: 1px solid rgba(8, 0, 89, 0.08);
  }
  
  .testimonial-intro-card {
    background: #fff;
    border: 1px solid rgba(8, 0, 89, 0.09);
    border-radius: 1rem;
    padding: clamp(1.2rem, 3vw, 2rem);
    box-shadow: 0 14px 32px rgba(8, 0, 89, 0.1);
  }
  
  .testimonial-intro-card h2 {
    color: var(--brand-navy);
    font-size: clamp(1.35rem, 2.8vw, 2rem);
    margin: 0 0 0.75rem;
  }
  
  .testimonial-intro-card p {
    color: rgba(34, 34, 34, 0.84);
    line-height: 1.7;
  }
  
  .testimonial-values {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin: 0.95rem 0 1.1rem;
  }
  
  .testimonial-values span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border-radius: 999px;
    background: rgba(8, 0, 89, 0.06);
    border: 1px solid rgba(8, 0, 89, 0.12);
    color: rgba(8, 0, 89, 0.92);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.35rem 0.68rem;
  }
  
  .testimonial-values i {
    color: var(--brand-gold);
  }
  
  .testimonial-counters {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.6rem;
  }
  
  .testimonial-counter-item {
    text-align: center;
    border-radius: 0.72rem;
    padding: 0.7rem 0.4rem;
    background: linear-gradient(140deg, rgba(8, 0, 89, 0.94), rgba(16, 8, 92, 0.92));
    border: 1px solid rgba(234, 188, 115, 0.42);
  }
  
  .testimonial-counter-item .value-counter {
    display: block;
    color: var(--brand-gold);
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1;
  }
  
  .testimonial-counter-item small {
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.74rem;
  }
  
  .testimonial-card {
    position: relative;
    background: #fff;
    border-radius: 1rem;
    border: 1px solid rgba(8, 0, 89, 0.1);
    box-shadow: 0 14px 30px rgba(8, 0, 89, 0.11);
    padding: 1.1rem 1rem;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
  }
  
  .testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 36px rgba(8, 0, 89, 0.16);
  }
  
  .testimonial-quote-icon {
    position: absolute;
    top: -11px;
    right: 14px;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(130deg, var(--brand-gold), #f4d8a6);
    color: var(--brand-navy);
    box-shadow: 0 6px 16px rgba(8, 0, 89, 0.18);
  }
  
  .testimonial-card p {
    margin: 0 0 0.75rem;
    color: rgba(34, 34, 34, 0.85);
    line-height: 1.66;
  }
  
  .testimonial-meta {
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
  }
  
  .testimonial-meta strong {
    color: var(--brand-navy);
    font-size: 0.95rem;
  }
  
  .testimonial-meta span {
    color: rgba(34, 34, 34, 0.68);
    font-size: 0.8rem;
  }
  
  .testimonial-visual {
    position: relative;
    min-height: 175px;
    border-radius: 1rem;
    border: 1px solid rgba(8, 0, 89, 0.12);
    background: linear-gradient(140deg, rgba(8, 0, 89, 0.95), rgba(23, 12, 111, 0.9));
    box-shadow: 0 14px 32px rgba(8, 0, 89, 0.18);
    overflow: hidden;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 1rem;
  }
  
  .testimonial-visual strong {
    font-size: 1.02rem;
    position: relative;
    z-index: 2;
  }
  
  .testimonial-visual small {
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.8rem;
    margin-top: 0.25rem;
    position: relative;
    z-index: 2;
  }
  
  .testimonial-orb {
    position: absolute;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(234, 188, 115, 0.9), rgba(234, 188, 115, 0.25));
    top: -24px;
    right: -12px;
    filter: blur(1px);
  }
  
  .testimonial-ring {
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.16);
    left: -38px;
    bottom: -120px;
  }
  
  .testimonial-ring--alt {
    width: 120px;
    height: 120px;
    left: auto;
    right: 24px;
    bottom: 34px;
    border-color: rgba(234, 188, 115, 0.36);
  }
  
  .ux-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  }
  
  .ux-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .ux-reveal-delay-1 {
    transition-delay: 0.06s;
  }
  
  .ux-reveal-delay-2 {
    transition-delay: 0.12s;
  }
  
  .ux-reveal-delay-3 {
    transition-delay: 0.18s;
  }
  
  .feedback-deck {
    position: relative;
    height: clamp(320px, 42vw, 420px);
    perspective: 1200px;
  }
  
  .feedback-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    align-items: start;
  }
  
  .feedback-grid .feedback-card {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    min-height: 230px;
    aspect-ratio: auto;
    transform: none;
    opacity: 1;
    filter: none;
  }
  
  .feedback-grid .feedback-card:nth-child(3) {
    grid-column: 1 / -1;
    width: min(82%, 420px);
    margin: 0 auto;
  }
  
  .feedback-card {
    position: absolute;
    left: 50%;
    top: 0;
    width: min(380px, 78vw);
    aspect-ratio: 1 / 1;
    padding: 1.05rem 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(8, 0, 89, 0.12);
    background: #fff;
    box-shadow: 0 16px 34px rgba(8, 0, 89, 0.14);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition:
      transform 860ms cubic-bezier(0.2, 0.9, 0.22, 1.08),
      opacity 640ms ease,
      filter 640ms ease;
    will-change: transform, opacity;
    transform-origin: center top;
  }
  
  .feedback-card p {
    margin: 0.6rem 0 0.7rem;
    color: rgba(34, 34, 34, 0.85);
    line-height: 1.6;
    font-size: 0.92rem;
  }
  
  .feedback-quote {
    color: var(--brand-gold);
    font-size: 1.2rem;
  }
  
  .feedback-meta strong {
    display: block;
    color: var(--brand-navy);
    font-size: 0.95rem;
  }
  
  .feedback-meta span {
    display: block;
    color: rgba(34, 34, 34, 0.68);
    font-size: 0.8rem;
    margin-top: 0.08rem;
  }
  
  .feedback-card.slot-front {
    transform: translateX(-50%) translateY(0) scale(1) rotateX(0deg);
    z-index: 5;
    opacity: 1;
  }
  
  .feedback-card.slot-next {
    transform: translateX(-50%) translateY(18px) scale(0.94) rotateX(-4deg);
    z-index: 4;
    opacity: 0.92;
  }
  
  .feedback-card.slot-third {
    transform: translateX(-50%) translateY(34px) scale(0.88) rotateX(-6deg);
    z-index: 3;
    opacity: 0.78;
  }
  
  .feedback-card.slot-fourth {
    transform: translateX(-50%) translateY(48px) scale(0.82) rotateX(-8deg);
    z-index: 2;
    opacity: 0.58;
  }
  
  .feedback-card.slot-hidden {
    transform: translateX(-50%) translateY(62px) scale(0.76) rotateX(-10deg);
    z-index: 1;
    opacity: 0;
    filter: blur(0.4px);
    pointer-events: none;
  }
  
  .feedback-card.is-fading {
    opacity: 0.04 !important;
    transform: translateX(-50%) translateY(-4px) scale(0.97) rotateX(2deg);
  }
  
  .feedback-card.is-revealing {
    animation: feedbackReveal 320ms ease both;
  }
  
  @keyframes feedbackReveal {
    0% {
      opacity: 0.25;
    }
    100% {
      opacity: 1;
    }
  }
  
  @media (max-width: 991.98px) {
    .about-page-title {
      font-size: clamp(1.8rem, 5vw, 2.8rem);
    }
  
    .ceo-frame-wrap {
      max-width: 340px;
    }
  
    .testimonial-counters {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }
  
  @media (max-width: 575.98px) {
    .about-page-header {
      min-height: 62vh;
    }
  
    .min-vh-70 {
      min-height: 62vh;
    }
  
    .about-page-panel,
    .about-page-cta-box {
      border-radius: 0.85rem;
    }
  
    .ceo-frame-wrap {
      max-width: 300px;
    }
  
    .ceo-message-card {
      padding: 1rem 0.95rem;
    }
  
    .testimonial-counters {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  
    .testimonial-counter-item:last-child {
      grid-column: span 2;
    }
  
    .testimonial-visual {
      min-height: 150px;
    }
  
    .feedback-deck {
      height: 360px;
    }
  
    .feedback-grid {
      grid-template-columns: 1fr;
    }
  
    .feedback-grid .feedback-card:nth-child(3) {
      grid-column: auto;
      width: 100%;
    }
  
    .feedback-card {
      width: min(88vw, 350px);
      padding: 0.92rem 0.88rem;
    }
  
    .feedback-card p {
      font-size: 0.86rem;
    }
  
    .metrics-orb {
      top: -42px;
      right: -36px;
    }
  
    .metrics-ring {
      left: -140px;
      bottom: -230px;
    }
  
    .metrics-ring--alt {
      right: 8%;
      bottom: 16px;
    }
  }
  
  @media (prefers-reduced-motion: reduce) {
    .ux-reveal {
      opacity: 1;
      transform: none;
      transition: none;
    }
  
    .feedback-card {
      transition: none;
    }
  }
  
  .services-page-header {
    position: relative;
    min-height: 68vh;
    overflow: hidden;
    background: linear-gradient(130deg, rgba(8, 0, 89, 0.96), rgba(22, 10, 106, 0.9));
  }
  
  .services-page-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url("https://static.vecteezy.com/system/resources/thumbnails/028/642/325/small/professional-engineer-in-protective-helmet-and-blueprints-paper-at-house-building-construction-site-photo.jpg");
    background-size: cover;
    background-position: center;
    opacity: 0.3;
  }
  
  .services-page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(8, 0, 89, 0.88), rgba(8, 0, 89, 0.4));
  }
  
  .services-page-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
  }
  
  .services-page-title {
    font-size: clamp(1.95rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.2;
  }
  
  .services-page-subtitle {
    max-width: 64ch;
    color: rgba(255, 255, 255, 0.9);
  }
  
  .services-list-section {
    background: linear-gradient(180deg, #fffef9 0%, #fff9ee 100%);
  }
  
  .service-list-card {
    border-radius: 1rem;
    background: #fff;
    border: 1px solid rgba(8, 0, 89, 0.1);
    box-shadow: 0 14px 30px rgba(8, 0, 89, 0.08);
    padding: 1.15rem 1rem;
    transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
  }
  
  .service-list-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 34px rgba(8, 0, 89, 0.13);
    border-color: rgba(234, 188, 115, 0.55);
  }
  
  .service-list-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    background: rgba(234, 188, 115, 0.2);
    color: var(--brand-navy);
    font-size: 1.08rem;
  }
  
  .service-list-card h3 {
    font-size: 1.04rem;
    color: var(--brand-navy);
    font-weight: 700;
    margin-bottom: 0.45rem;
  }
  
  .service-list-card p {
    color: rgba(34, 34, 34, 0.78);
    font-size: 0.92rem;
    line-height: 1.6;
  }
  
  @media (max-width: 575.98px) {
    .services-page-header {
      min-height: 62vh;
    }
  }
  
  .projects-page-header {
    position: relative;
    min-height: 68vh;
    overflow: hidden;
    background: linear-gradient(130deg, rgba(8, 0, 89, 0.96), rgba(20, 10, 112, 0.9));
  }
  
  .projects-page-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url("https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=1920&q=80");
    background-size: cover;
    background-position: center;
    opacity: 0.32;
  }
  
  .projects-page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(8, 0, 89, 0.88), rgba(8, 0, 89, 0.35));
  }
  
  .projects-page-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
  }
  
  .projects-page-title {
    font-size: clamp(1.95rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.2;
  }
  
  .projects-page-subtitle {
    max-width: 62ch;
    color: rgba(255, 255, 255, 0.9);
  }
  
  .projects-list-section {
    background: linear-gradient(180deg, #fffef9 0%, #fff9ee 100%);
  }
  
  .projects-list-grid .project-card {
    height: 300px;
  }
  
  @media (max-width: 575.98px) {
    .projects-page-header {
      min-height: 62vh;
    }
  }
  
  .project-card {
    cursor: pointer;
  }
  
  .project-popup {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
  }
  
  .project-popup.is-open {
    opacity: 1;
    pointer-events: auto;
  }
  
  .project-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 2, 34, 0.64);
    backdrop-filter: blur(5px);
  }
  
  .project-popup-dialog {
    position: relative;
    z-index: 1;
    width: min(920px, 95vw);
    max-height: 90vh;
    overflow: auto;
    border-radius: 1.1rem;
    background: linear-gradient(145deg, #fffefb, #fff7ea);
    border: 1px solid rgba(8, 0, 89, 0.14);
    box-shadow: 0 28px 64px rgba(4, 2, 34, 0.38);
    animation: projectPopupIn 280ms cubic-bezier(0.22, 1, 0.36, 1);
  }
  
  .project-popup-close {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: rgba(8, 0, 89, 0.8);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  
  .project-popup-media-wrap {
    aspect-ratio: 16 / 8;
    background: rgba(8, 0, 89, 0.08);
  }
  
  .project-popup-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .project-popup-content {
    padding: 1.05rem 1rem 1.15rem;
  }
  
  .project-popup-title {
    color: var(--brand-navy);
    font-weight: 700;
    margin-bottom: 0.5rem;
  }
  
  .project-popup-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 0.65rem;
  }
  
  .project-popup-meta-item {
    border-radius: 999px;
    padding: 0.32rem 0.65rem;
    background: rgba(234, 188, 115, 0.22);
    color: var(--brand-navy);
    font-size: 0.78rem;
    font-weight: 600;
  }
  
  .project-popup-description {
    color: rgba(34, 34, 34, 0.82);
    line-height: 1.65;
    font-size: 0.93rem;
  }
  
  body.project-popup-open {
    overflow: hidden;
  }
  
  @keyframes projectPopupIn {
    from {
      transform: translateY(16px) scale(0.98);
      opacity: 0.35;
    }
    to {
      transform: translateY(0) scale(1);
      opacity: 1;
    }
  }
  
  @media (max-width: 575.98px) {
    .project-popup-dialog {
      width: min(96vw, 96vw);
    }
  
    .project-popup-content {
      padding: 0.95rem 0.88rem 1.05rem;
    }
  }
  
  .contact-page-header {
    position: relative;
    min-height: 68vh;
    overflow: hidden;
    background: linear-gradient(130deg, rgba(8, 0, 89, 0.96), rgba(21, 10, 104, 0.9));
  }
  
  .contact-page-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url("https://images.unsplash.com/photo-1423666639041-f56000c27a9a?auto=format&fit=crop&w=1920&q=80");
    background-size: cover;
    background-position: center;
    opacity: 0.28;
  }
  
  .contact-page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(8, 0, 89, 0.88), rgba(8, 0, 89, 0.35));
  }
  
  .contact-page-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
  }
  
  .contact-page-title {
    font-size: clamp(1.95rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.2;
  }
  
  .contact-page-subtitle {
    max-width: 62ch;
    color: rgba(255, 255, 255, 0.9);
  }
  
  .contact-page-section {
    background: linear-gradient(180deg, #fffef9 0%, #fff9ee 100%);
  }
  
  .contact-info-card,
  .contact-map-card {
    border-radius: 1rem;
    background: #fff;
    border: 1px solid rgba(8, 0, 89, 0.1);
    box-shadow: 0 14px 30px rgba(8, 0, 89, 0.08);
    padding: 1.2rem 1.05rem;
  }
  
  .contact-info-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.7rem;
  }
  
  .contact-info-list li {
    display: flex;
    gap: 0.62rem;
    align-items: flex-start;
    color: rgba(34, 34, 34, 0.82);
    font-size: 0.93rem;
  }
  
  .contact-info-list i {
    margin-top: 0.2rem;
    color: var(--brand-navy);
  }
  
  .contact-map-title {
    color: var(--brand-navy);
    font-size: 1.08rem;
    margin-bottom: 0.75rem;
  }
  
  .contact-form-card {
    border-radius: 1rem;
    background: #fff;
    border: 1px solid rgba(8, 0, 89, 0.1);
    box-shadow: 0 14px 30px rgba(8, 0, 89, 0.08);
    padding: 1.2rem 1.05rem;
  }
  
  .contact-form-title {
    color: var(--brand-navy);
    font-size: 1.12rem;
    margin-bottom: 0.85rem;
  }
  
  .contact-form .form-label {
    color: rgba(34, 34, 34, 0.78);
    font-size: 0.83rem;
    font-weight: 600;
  }
  
  .contact-input {
    border-radius: 0.72rem;
    border: 1px solid rgba(8, 0, 89, 0.2);
    box-shadow: none !important;
    font-size: 0.92rem;
    padding: 0.62rem 0.72rem;
  }
  
  .contact-input:focus {
    border-color: rgba(234, 188, 115, 0.8);
    box-shadow: 0 0 0 0.22rem rgba(234, 188, 115, 0.22) !important;
  }
  
  .contact-textarea {
    resize: vertical;
    min-height: 132px;
  }
  
  .contact-submit-btn {
    border: 0;
  }
  
  .contact-map-wrap {
    border-radius: 0.85rem;
    overflow: hidden;
    border: 1px solid rgba(8, 0, 89, 0.13);
    min-height: 360px;
  }
  
  .contact-map-wrap iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 360px;
    border: 0;
  }
  
  @media (max-width: 575.98px) {
    .contact-page-header {
      min-height: 62vh;
    }
  
    .contact-map-wrap,
    .contact-map-wrap iframe {
      min-height: 290px;
    }
  }
  
  .welcome-user {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--brand-navy);
  }