/* ============================================================
   Armtronix â€” main stylesheet
   NOTE: Google Fonts moved to <link> in header.php (parallel
   loading + font-display:swap). Do not re-add @import here.
   ============================================================ */

   *, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Visually hide content but keep it accessible to screen readers */
  .visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
  }
  
  /* Accessible focus ring â€” keyboard only, doesn't affect mouse users */
  :focus-visible {
    outline: 2px solid #0eb68b;
    outline-offset: 2px;
    border-radius: 4px;
  }
  
  /* Honour reduced-motion: kill long transitions / animations */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.001ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.001ms !important;
      scroll-behavior: auto !important;
    }
    [data-aos] { opacity: 1 !important; transform: none !important; }
  }
  
  /* When AOS is disabled (reduced-motion path) ensure content is visible */
  .aos-disabled [data-aos] {
    opacity: 1 !important;
    transform: none !important;
  }
  
  /* Performance: defer rasterisation of below-the-fold sections */
  .case-study-section,
  .explore-section,
  .power-banner-section,
  .industries-section,
  .arm-core-division-section,
  .arm-leadership-section,
  .arm-global-section,
  .arm-team-section,
  .linkedup-connect-section,
  .linkedup-thesis-section,
  .armtronix-footer {
    content-visibility: auto;
    contain-intrinsic-size: 1px 600px;
  }
  .service-content {
    padding: 0 10px 20px;
  }
  :root {
    --primary: #0eb68b;
    --white: #ffffff;
    --black: #000;
  }
  
  body {
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
  }
  section {
      overflow: hidden;
  }
  ul {
    margin: 0px;
    padding: 0px;
  }
  
  ul li {
    list-style: none;
  }
  
  a {
    text-decoration: none;
  }
  
  h2 {
    font-size: 30px;
    font-weight: 600;
  }
  /* ===============================
     STICKY HEADER
  ================================= */
  .main-header {
    position: fixed !important;
    top: 0;
    left: 0;
    z-index: 9999;
    transition: all 0.4s ease;
    background: #0000006e;
  }
  
  /* ===============================
     NAVBAR
  ================================= */
  .navbar {
    padding: 8px 0;
  }
  
  /* ===============================
     NAV LINKS
  ================================= */
  .navbar-nav {
    gap: 10px;
  }
  
  .navbar .nav-link {
    position: relative;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.35s ease;
    border-radius: 50px;
    overflow: hidden;
  }
  
  /* Hover Effect */
  .navbar .nav-link:hover {
    color: #0d6efd;
    transform: translateY(-2px);
  }
  
  /* Active Link */
  .navbar .nav-link.active {
    color: #0d6efd;
  }
  
  /* Animated Underline */
  .navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 4px;
    width: 0;
    height: 2px;
    background: #0c9b77;
    transition: all 0.35s ease;
    transform: translateX(-50%);
  }
  
  .navbar .nav-link:hover::after,
  .navbar .nav-link.active::after {
    width: 60%;
  }
  
  /* ===============================
     LOGO
  ================================= */
  .navbar-brand img {
    max-height: 55px;
  }
  
  /* ===============================
     MOBILE NAVBAR
  ================================= */
  @media (max-width: 991px) {
  
    .navbar-collapse {
      margin-top: 15px;
      padding: 20px;
      border-radius: 20px;
      background: #0b1220;
    }
  
    .navbar-nav {
      gap: 5px;
    }
  
    .navbar .nav-link {
      padding: 12px 15px !important;
    }
  
    .navbar-toggler {
      border: none;
      box-shadow: none !important;
    }
  }
  .main-header {
    width: 100%;
    z-index: 99;
  }
  
  .logo-text {
    color: rgb(255, 255, 255);
    font-size: 22px;
    font-weight: 700;
  }
  
  .navbar-nav {
    gap: 20px;
  }
  
  .nav-link {
    color: rgb(255, 255, 255) !important;
    font-size: 16px;
    font-weight: 400;
    transition: 0.3s;
  }
  
  .nav-link:hover {
    color: var(--primary);
  }
  
  .menu-dot {
    width: 22px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
  }
  @media (min-width: 992px) {
  
    .navbar .nav-item.dropdown {
      position: relative;
    }
  
    .navbar .nav-item.dropdown .dropdown-menu {
      display: block;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: all 0.3s ease;
      margin-top: 0;
      pointer-events: none;
    }
  
    .navbar .nav-item.dropdown:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      pointer-events: auto;
    }
  
  }
  .menu-dot span {
    width: 4px;
    height: 4px;
    background: rgb(255, 255, 255);
    border-radius: 50%;
  }
  
  .signin-btn {
    background: var(--primary);
    color: rgb(255, 255, 255);
    padding: 10px 26px;
    border-radius: 40px;
    font-weight: 500;
  }
  
  .hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 150px 0px 140px;
  }
  
  .hero-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    inset: 0px;
    filter: brightness(0.3);
  }
  .custom-dropdown li  {}
  .custom-dropdown {
      background: #000000b0;
  }
  .custom-dropdown li a:hover {
    color: white;
      background: #000000ed;
  }
  .custom-dropdown li a {
      color: white;
      padding: 9px 30px;
  }
  .hero-overlay {
    position: absolute;
    inset: 0px;
    background: rgba(0, 7, 20, 0.72);
  }
  
  .hero-content {
    position: relative;
    z-index: 3;
    max-width: 760px;
  }
  
  .hero-small {
    color: rgb(255, 255, 255);
    font-size: 18px;
    margin-bottom: 18px;
    letter-spacing: 2px;
  }
  
  .hero-content h1 {
    font-size: 50px;
    line-height: 1.1;
    color: rgb(255, 255, 255);
    font-weight: 600;
    margin-bottom: 30px;
  }
  
  .hero-para {
    color: rgb(255 255 255);
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 40px;
  }
  
  .hero-btns {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .theme-btn {
    padding: 16px 28px;
    border-radius: 60px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-weight: 500;
    transition: 0.4s;
  }
  
  .theme-btn span {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .green-btn {
    background: var(--primary);
    color: rgb(255, 255, 255);
  }
  
  .white-btn {
    background: rgb(255, 255, 255) !important;
    color: rgb(17, 17, 17) !important;
  }
  
  .theme-btn:hover {
    transform: translateY(-5px);
  }
  
  .circle-left, .circle-right {
    position: absolute;
    width: 550px;
    height: 550px;
    border: 12px solid rgba(0, 255, 255, 0.4);
    border-radius: 50%;
    z-index: 1;
  }
  
  .circle-left {
    left: -250px;
    top: 80px;
  }
  
  .circle-right {
    right: -250px;
    top: 80px;
  }
  
  .service-boxes {
    position: absolute;
    bottom: 30px;
    width: 100%;
    z-index: 10;
  }
  
  .service-card {
    background: rgba(0, 0, 0, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 28px;
    min-height: 150px;
    backdrop-filter: blur(10px);
    transition: 0.4s;
    cursor: pointer;
  }
  
  .service-card:hover {
    transform: translateY(-8px);
    border-color: rgb(14, 182, 139);
  }
  
  .active-card {
    background: rgb(14, 182, 139);
  }
  
  .icon {
    font-size: 34px;
    color: rgb(255, 255, 255);
    margin-bottom: 22px;
  }
  
  .service-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
  
  .service-flex h4 {
    color: rgb(255, 255, 255);
    font-size: 20px;
    line-height: 1.5;
    margin: 0px;
    font-weight: 500;
  }
  
  .service-flex span {
    color: rgb(255, 255, 255);
    font-size: 26px;
    flex-shrink: 0;
  }
  
  .main-services {
    padding: 80px 0px 0;
    overflow: hidden;
  }
  
  .service-top {
    margin-bottom: 60px;
  }
  
  .service-heading h2 {
    line-height: 1.2;
    color: rgb(17, 17, 17);
    margin-bottom: 10px;
  }
  
  
  .service-navigation {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
  }
  
  .service-prev, .service-next {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1px solid rgb(221, 221, 221);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.4s;
    background: rgb(255, 255, 255);
  }
  
  .service-prev svg, .service-next svg {
    width: 22px;
    height: 22px;
  }
  
  .service-next {
    border-color: rgb(255, 77, 103);
    color: rgb(255, 77, 103);
  }
  
  .service-prev:hover, .service-next:hover {
    transform: translateY(-5px);
  }
  
  .serviceSwiper {
    overflow: visible;
  }
  
  .main-service-card {
    background: rgb(255, 255, 255);
    border-radius: 18px;
    padding: 18px;
    transition: 0.5s;
    overflow: hidden;
    height: 100%;
  }
  
  .service-card-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
  }
  
  .service-card-top p {
    margin: 0px;
    font-size: 17px;
    font-weight: 500;
    color: rgb(102, 102, 102);
  }
  
  .service-icon {
    font-size: 22px;
  }
  
  .service-image {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
  }
  
  .service-image img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    transition: 0.5s;
  }
  
  .main-service-card:hover img {
    transform: scale(1.08);
  }
  
  .service-content h3 {
    font-size: 22px;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 18px;
    color: rgb(17, 17, 17);
  }
  
  .service-content p {
    font-size: 14px;
    line-height: 1.8;
    color: rgb(102, 102, 102);
  }
  
  .active-slide {
    width: 520px !important;
  }
  
  .active-card {
    background: rgb(12, 155, 119);
  }
  
  .active-card .service-card-top p, .active-card .service-content h3, .active-card .service-content p, .active-card .service-icon {
    color: rgb(255, 255, 255);
  }
  
  .serviceSwiper .swiper-slide {
    width: 340px;
    transition: 0.5s;
  }
  
  .serviceSwiper .swiper-slide {
    width: 440px;
    transition: 0.5s;
  }
  
  .serviceSwiper .swiper-slide.active-slide {
    width: 520px !important;
  }
  
  .main-service-card {
    background: rgb(255, 255, 255);
    border-radius: 18px;
    padding: 18px;
    transition: 0.5s;
    overflow: hidden;
    height: 100%;
  }
  
  .main-service-card.active-card {
    background: rgb(12, 155, 119);
  }
  
  .main-service-card.active-card .service-card-top p, .main-service-card.active-card .service-content h3, .main-service-card.active-card .service-content p, .main-service-card.active-card .service-icon {
    color: rgb(255, 255, 255);
  }
  
  .service-image img {
    width: 100%;
    height: 290px;
    object-fit: cover;
    transition: 0.5s;
  }
  
  .main-service-card:hover img {
    transform: scale(1.08);
  }
  
  .about-section {
    padding: 80px 0px;
    overflow: hidden;
  }
  
  .about-small-title p {
    font-size: 18px;
    font-weight: 500;
    color: rgb(17, 17, 17);
  }
  
  .about-heading {
    margin-bottom: 60px;
  }
  
  .about-heading h2 {
  }
  
  .about-heading h2 span {
    color: rgb(143, 136, 136);
    line-height: 53px;
  }
  
  .about-row {
    row-gap: 30px;
  }
  
  .about-image {
    border-radius: 22px;
    overflow: hidden;
    position: relative;
  }
  
  .about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: 0.6s;
  }
  
  .about-image:hover img {
    transform: scale(1.08);
  }
  
  .about-content {
    padding-left: 30px;
  }
  
  .about-star {
    margin-bottom: 35px;
  }
  
  .about-content p {
    font-size: 16px;
    line-height: 1.6;
    color: rgb(34, 34, 34);
    margin-bottom: 13px;
  }
  
  .about-btn {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 18px;
    background: rgb(12, 155, 119);
    color: rgb(255, 255, 255);
    padding: 7px 7px 7px 30px;
    border-radius: 60px;
    font-size: 16px;
    font-weight: 500;
    transition: 0.4s;
  }
  
  .about-btn span {
    width: 42px;
    height: 42px;
    background: rgb(0 0 0);
    color: rgb(17, 17, 17);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .about-btn:hover {
    transform: translateY(-5px);
    color: rgb(255, 255, 255);
  }
  
  .why-choose-section {
    padding: 70px 0px;
    background: rgb(245, 245, 245);
    overflow: hidden;
  }
  
  .small-title {
    font-size: 17px;
    color: rgb(17, 17, 17);
    margin-bottom: 15px;
  }
  
  .why-left-sticky h2 {
    width: 70%;
    line-height: 1.2;
    color: rgb(17, 17, 17);
    margin-bottom: 45px;
  }
  
  .why-image-box {
    position: sticky;
    top: 100px;
    border-radius: 12px;
    overflow: hidden;
    height: 320px;
  }
  
  .why-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
  }
  
  .why-image-box::after {
    content: "";
    position: absolute;
    inset: 0px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  }
  
  .why-image-box h3 {
    position: absolute;
    left: 25px;
    bottom: 25px;
    color: rgb(255, 255, 255);
    z-index: 2;
    font-size: 16px;
  }
  
  .feature-list {
    position: relative;
    padding-left: 80px;
  }
  
  .feature-list::before {
    content: "";
    position: absolute;
    left: 42px;
    top: 0px;
    width: 2px;
    height: 100%;
    background: rgb(221 221 221 / 42%);
  }
  
  .feature-item {
    position: relative;
    display: flex;
    gap: 30px;
    padding-bottom: 65px;
    cursor: pointer;
    transition: 0.4s;
  }
  
  .feature-item:last-child {
    padding-bottom: 0px;
  }
  
  .feature-number {
    position: relative;
    min-width: 35px;
    font-size: 21px;
    color: rgb(153, 153, 153);
    font-weight: 500;
  }
  
  .feature-number::after {
    content: "";
    position: absolute;
    top: 10px;
    right: -16px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgb(245, 245, 245);
    border: 2px solid rgb(221, 221, 221);
    z-index: 2;
  }
  
  .feature-content h4 {
    font-size: 22px;
    line-height: 1.3;
    color: rgb(68, 68, 68);
    font-weight: 500;
    transition: 0.4s;
  }
  
  .feature-content p {
    margin-top: 12px;
    font-size: 18px;
    color: rgb(119, 119, 119);
    line-height: 1.7;
  }
  
  .feature-item.active .feature-content h4 {
    color: rgb(17, 17, 17);
    font-weight: 700;
  }
  
  .feature-item.active .feature-number {
    color: rgb(17, 17, 17);
  }
  
  .feature-item.active .feature-number::after {
    background: rgb(12, 155, 119);
    border-color: rgb(12, 155, 119);
  }
  
  .case-study-section {
    padding: 60px 0px;
    overflow: hidden;
  }
  
  .case-study-top {
    margin-bottom: 60px;
  }
  
  .case-study-heading h2 {
    line-height: 1.2;
    font-weight: 700;
    color: rgb(17, 17, 17);
    margin-bottom: 12px;
  }
  
  .case-study-heading p {
    font-size: 15px;
    line-height: 1.8;
    color: rgb(68, 68, 68);
    max-width: 640px;
  }
  
  .view-case-btn {
    display: flex;
    justify-content: flex-end;
    padding-top: 15px;
  }
  
  .view-case-btn a {
    font-size: 16px;
    font-weight: 500;
    color: rgb(12, 155, 119);
    transition: 0.4s;
  }
  
  .view-case-btn a:hover {
    letter-spacing: 1px;
  }
  
  .case-study-card {
    transition: 0.5s;
  }
  
  .case-image {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
  }
  
  .case-image img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    transition: 0.6s;
  }
  
  .case-study-card:hover img {
    transform: scale(1.08);
  }
  
  .case-content {
    padding: 0px 15px;
  }
  
  .case-content h3 {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 600;
    color: rgb(17, 17, 17);
    margin-bottom: 8px;
  }
  
  .case-content p {
    font-size: 16px;
    line-height: 1.8;
    color: rgb(85, 85, 85);
    margin-bottom: 28px;
  }
  
  .explore-btn {
    font-size: 16px;
    font-weight: 500;
    color: rgb(12, 155, 119);
    transition: 0.4s;
  }
  
  .explore-btn:hover {
    letter-spacing: 1px;
    color: rgb(12, 155, 119);
  }
  
  .explore-section {
    padding: 80px 0px;
    background: rgb(245, 245, 245);
  }
  
  .explore-top {
    max-width: 850px;
    margin: 0px auto 60px;
  }
  
  .explore-top h2 {
    font-weight: 600;
    color: rgb(17, 17, 17);
    margin-bottom: 10px;
  }
  
  .explore-top p {
    font-size: 15px;
    line-height: 1.8;
    color: rgb(85, 85, 85);
  }
  
  .explore-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    overflow: hidden;
  }
  
  .explore-image {
    height: 450px;
    overflow: hidden;
    position: relative;
  }
  
  .explore-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
  }
  
  .explore-image:hover img {
    transform: scale(1.05);
  }
  
  .explore-bottom {
    padding: 45px 20px 0px;
  }
  
  .explore-content h3 {
    font-size: 24px;
    line-height: 1.4;
    font-weight: 600;
    color: rgb(15, 139, 109);
    margin-bottom: 8px;
  }
  
  .explore-content p {
    font-size: 15px;
    line-height: 1.7;
    color: rgb(68, 68, 68);
    max-width: 830px;
  }
  
  .explore-btn {
    padding-top: 10px;
  }
  
  .explore-btn a {
    font-size: 16px;
    color: rgb(17, 17, 17);
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
  }
  
  .explore-btn a:hover {
    color: rgb(15, 139, 109);
  }
  
  .infra-slider-section {
    padding: 70px 0px;
    background: rgb(243, 243, 243);
    overflow: hidden;
  }
  
  .infraSwiper {
    width: 100%;
    overflow: visible;
    padding: 0px 80px;
  }
  
  .infraSwiper .swiper-slide {
    width: 85%;
    transition: 0.5s;
  }
  
  .infra-slide {
    position: relative;
    height: 520px;
    border-radius: 40px;
    overflow: hidden;
  }
  
  .infra-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .overlay {
    position: absolute;
    inset: 0px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.45) 45%, rgba(0, 0, 0, 0.15) 100%);
  }
  
  .infra-content {
    position: absolute;
    top: 50%;
    left: 80px;
    transform: translateY(-50%);
    max-width: 850px;
    z-index: 2;
  }
  
  .infra-content h2 {
    font-size: 42px;
    line-height: 1.15;
    color: rgb(255, 255, 255);
    margin-bottom: 25px;
    letter-spacing: -2px;
  }
  
  .infra-content p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
  }
  
  .infra-btn {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 8px 18px;
    border-radius: 60px;
    background: rgb(255, 255, 255);
    color: rgb(10, 140, 111);
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    transition: 0.4s;
  }
  
  .infra-btn span {
    width: 42px;
    height: 42px;
    background: rgb(10, 140, 111);
    color: rgb(255, 255, 255);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .infra-btn:hover {
    transform: translateY(-4px);
  }
  
  .infra-prev, .infra-next {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    cursor: pointer;
    font-size: 32px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 30px;
  }
  
  .infra-prev {
    left: 30px;
  }
  
  .infra-next {
    right: 30px;
  }
  
  .infraSwiper .swiper-slide-prev, .infraSwiper .swiper-slide-next {
    opacity: 0.55;
    transform: scale(0.92);
  }
  
  .infraSwiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
  }
  
  .power-banner-section {
    padding-top: 20px;
    background: rgb(245, 245, 245);
  }
  
  .power-banner {
    position: relative;
    height: 370px;
    overflow: hidden;
  }
  
  .power-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .banner-overlay {
    position: absolute;
    inset: 0px;
    background: rgba(0, 0, 0, 0.58);
  }
  
  .banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 70%;
    max-width: 1000px;
    padding: 0px 20px;
    z-index: 2;
  }
  
  .banner-content h2 {
    width: 70%;
    line-height: 1.2;
    color: rgb(255, 255, 255);
    font-weight: 600;
    margin-bottom: 30px;
    margin: 0 auto 20px;
  }
  
  .banner-content p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    width: 82%;
    margin: 0 auto 30px;
  }
  
  .banner-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 40px;
    border-radius: 50px;
    border: 1px solid rgb(0, 166, 125);
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 16px;
    transition: 0.4s;
  }
  
  .banner-btn:hover {
    background: rgb(0, 166, 125);
    color: rgb(255, 255, 255);
  }
  
  .industries-section {
    padding: 70px 0px 60px;
    background: rgb(245, 245, 245);
  }
  
  .industries-top {
    max-width: 700px;
    margin: 0px auto 40px;
  }
  
  .industries-top h2 {
    margin-bottom: 8px;
  }
  
  .industries-top p {
    font-size: 16px;
    line-height: 1.7;
    color: rgb(68, 68, 68);
  }
  
  .industry-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
    justify-content: center;
  }
  
  .industry-card {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(230, 230, 230);
    border-radius: 14px;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.4s;
    min-height: 55px;
  }
  
  .industry-card span {
    font-size: 18px;
  }
  
  .industry-card h4 {
    font-size: 14px;
    line-height: 1.5;
    color: rgb(17, 17, 17);
    margin: 0px;
    font-weight: 500;
  }
  
  .industry-card:hover {
    transform: translateY(-5px);
    border-color: rgb(0, 166, 125);
    box-shadow: rgba(0, 0, 0, 0.06) 0px 15px 35px;
  }
  
  .industry-card:nth-child(7) {
    grid-column: 3 / 4;
  }
  
  .industry-card:nth-child(8) {
    grid-column: 4 / 5;
  }
  
  
  
  .ux-project-hero {
    background-image: url("../images/serviceback.webp");
    position: relative;
    overflow: hidden;
    padding: 190px 0px 0px;
    background-size: cover;
    background-position: revert;
  }
  
  .ux-breadcrumb-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    margin-bottom: 90px;
  }
  
  .ux-breadcrumb-wrap a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    font-size: 15px;
  }
  
  .ux-breadcrumb-wrap span {
    color: rgba(255, 255, 255, 0.25);
  }
  
  .ux-breadcrumb-wrap p {
    margin: 0px;
    color: rgb(210, 255, 51);
    font-size: 15px;
  }
  
  .ux-project-content {
    position: relative;
    z-index: 2;
  }
  
  .ux-project-title {
    font-size: 40px;
    color: rgb(255, 255, 255);
    margin-bottom: 8px;
  }
  
  .ux-project-subtitle {
    font-size: 16px;
    width: 50%;
    color: rgba(255, 255, 255, 0.88);
    margin: 0px auto;
  }
  
  .ux-joined-box {
    position: absolute;
    right: 8%;
    bottom: 50px;
    display: flex;
    align-items: center;
    gap: 18px;
    z-index: 2;
  }
  
  .ux-avatar-group {
    display: flex;
  }
  
  .ux-avatar-group img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgb(255, 255, 255);
    margin-left: -14px;
  }
  
  .ux-avatar-group img:first-child {
    margin-left: 0px;
  }
  
  .ux-joined-box p {
    margin: 0px;
    color: rgb(255, 255, 255);
    font-size: 16px;
    line-height: 1.55;
    font-weight: 400;
  }
  
  .ux-deliver-section {
    background: rgb(247, 247, 247);
    padding: 30px 0px 110px;
  }
  
  .ux-deliver-section h2 {
    margin: 0px 0px 30px;
  }
  
  .ux-deliver-list {
    border: 1px solid rgb(228, 228, 228);
    border-radius: 10px;
    padding: 16px 18px;
    margin-bottom: 16px;
    font-size: 15px;
    color: rgb(17, 17, 17);
    background: rgb(255, 255, 255);
    transition: 0.3s;
  }
  
  .ux-deliver-list span {
    margin-right: 7px;
    font-size: 14px;
  }
  
  .ux-deliver-list.active, .ux-deliver-list:hover {
    background: rgb(237, 243, 220);
    border-color: rgb(184, 219, 47);
  }
  
  .ux-snapshot-box {
    background: rgb(183, 229, 47);
    padding: 48px;
    border-radius: 22px;
  }
  
  .ux-snapshot-box small {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 1px;
    color: rgb(17, 17, 17);
  }
  
  .ux-snapshot-box hr {
    margin: 17px 0px 22px;
    border-color: rgba(0, 0, 0, 0.2);
  }
  
  .ux-mini-title {
    font-size: 13px;
    font-weight: 700;
    color: rgb(92, 106, 26);
    margin-top: 30px !important;
  }
  
  .ux-snapshot-box h4 {
    font-size: 19px;
    line-height: 1.4;
    font-weight: 700;
    color: rgb(17, 17, 17);
    margin-top: 7px;
  }
  
  .ux-snapshot-box h2 {
    font-size: 48px;
    font-weight: 800;
    color: rgb(17, 17, 17);
    margin: 18px 0px 10px;
  }
  
  .ux-snapshot-box p {
    font-size: 21px;
    line-height: 1.5;
    color: rgb(17, 17, 17);
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    margin-top: 21px !important;
  }

  /* ---- Interactive "What We Deliver" tabs ---- */
  .ux-deliver-list {
    cursor: pointer;
    user-select: none;
  }
  .ux-deliver-list:focus-visible {
    outline: 2px solid rgb(140, 170, 30);
    outline-offset: 2px;
  }

  .ux-snapshot-media {
    width: 76px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 18px;
    margin-bottom: 24px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  }
  .ux-snapshot-img {
    width: 46px;
    height: 46px;
    object-fit: contain;
  }

  .ux-snapshot-box {
    transition: 0.3s ease;
  }
  .ux-snapshot-box.is-swapping {
    animation: ux-snap-fade 0.35s ease;
  }
  @keyframes ux-snap-fade {
    from { opacity: 0.35; transform: translateY(8px); }
    to   { opacity: 1;    transform: translateY(0); }
  }
  @media (prefers-reduced-motion: reduce) {
    .ux-snapshot-box.is-swapping { animation: none; }
  }
  
  .ux-growth-section {
    position: relative;
    overflow: hidden;
    margin: 40px auto 0px;
    background: rgba(25, 25, 25, 0.86);
    border-radius: 0px;
  }
  
  .ux-growth-glow {
    position: absolute;
    width: 280px;
    height: 280px;
    left: -90px;
    bottom: -80px;
    border-radius: 50%;
    background: rgb(183, 229, 47);
    filter: blur(140px);
    opacity: 0.18;
  }
  
  .ux-growth-label {
    color: rgb(255, 255, 255);
    font-size: 16px;
    display: block;
    margin-bottom: 28px;
  }
  
  .ux-growth-title {
    color: rgb(255, 255, 255);
    font-size: 30px;
    line-height: 1.15;
    font-weight: 500;
    margin-bottom: 8px;
  }
  
  .ux-growth-subtitle {
    color: rgb(255, 255, 255);
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 30px;
  }
  
  .ux-growth-small {
    color: rgb(215, 215, 215);
    font-size: 16px;
    margin-bottom: 19px;
  }
  
  .ux-growth-list {
    padding: 0px;
    margin: 0px;
    list-style: none;
  }
  
  .ux-growth-list li {
    color: rgb(255, 255, 255);
    font-size: 16px;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
  }
  
  .ux-growth-list li::before {
    content: ".";
    position: absolute;
    left: 0px;
    top: 0px;
    color: rgb(183, 229, 47);
    font-weight: 700;
  }
  
  .ux-growth-bottom {
    margin-top: 11px;
    color: rgb(128, 125, 125);
    font-size: 17px;
    line-height: 1.5;
    font-weight: 500;
  }
  
  .ux-growth-image-box {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 12px;
    background: rgb(11, 14, 14);
  }
  
  .ux-growth-image-box img {
    width: 100%;
    border-radius: 3px;
    display: block;
    object-fit: cover;
    height: 410px;
  }
  
  .linkedup-contact-section {
    background: url("/assets/images/Future.webp") 50% center / cover no-repeat;
    padding: 140px 0px 90px;
  }
  
  .linkedup-contact-subtitle {
    color: rgb(255, 255, 255);
    font-size: 16px;
    font-weight: 500;
  }
  
  .linkedup-contact-title {
    color: rgb(255, 255, 255);
    line-height: 1.3;
    font-weight: 400;
  }
  
  .linkedup-contact-info-card {
    color: rgb(255, 255, 255);
    z-index: 2;
    background: rgb(6, 134, 103);
    border-radius: 24px;
    min-height: 100%;
    padding: 45px 35px;
    position: relative;
  }
  
  .linkedup-contact-info-card h3 {
    margin-bottom: 18px;
    font-size: 30px;
    font-weight: 600;
  }
  
  .linkedup-contact-info-card p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    font-size: 15px;
    line-height: 1.8;
  }
  
  .linkedup-contact-info-item {
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 28px;
    display: flex;
  }
  .linkedup-contact-info-item a {
    color: white;
  }
  
  a {}
  
  a {}
  .linkedup-contact-icon {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    justify-content: center;
    align-items: center;
    width: 46px;
    min-width: 46px;
    height: 46px;
    display: flex;
    color: white;
  }
  
  .linkedup-contact-info-item span {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 6px;
    font-size: 14px;
    display: block;
  }
  
  .linkedup-contact-info-item h6 {
    margin: 0px;
    font-size: 16px;
    line-height: 1.7;
  }
  
  .linkedup-contact-divider {
    border-top: 1px dashed rgba(255, 255, 255, 0.4);
    width: 100%;
    height: 1px;
    margin: 25px 0px;
  }
  
  .linkedup-contact-form-wrapper {
    background: rgb(255, 255, 255);
    border-radius: 24px;
    padding: 45px 45px 40px 40px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 60px;
  }
  
  .linkedup-contact-form-wrapper h3 {
    color: rgb(34, 34, 34);
    margin-bottom: 35px;
    font-size: 30px;
    font-weight: 600;
  }
  
  .linkedup-contact-input, .linkedup-contact-textarea {
    border: 1px solid rgb(217, 217, 217);
    border-radius: 50px;
    height: 58px;
    padding: 15px 22px;
    font-size: 15px;
    box-shadow: none !important;
  }
  
  .linkedup-contact-textarea {
    resize: none;
    border-radius: 20px;
    height: auto;
  }
  
  .linkedup-contact-input:focus, .linkedup-contact-textarea:focus {
    border-color: rgb(77, 92, 255);
  }
  
  .linkedup-contact-btn {
    background: rgb(6, 134, 103);
    color: rgb(255, 255, 255);
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    border-radius: 50px;
    padding: 14px 35px;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
  }
  
  .ux-hero-actions {
    gap: 20px;
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 80px;
  }
  .ux-btn-secondary span {
        background: #068667;
    padding: 12px 17px;
    border-radius: 42px;
    margin: 0px 0px 0px 10px;
  }
  .ux-btn-secondary {
    padding: 0px 5px 0px 20px;
    color: #000000;
    font-weight: 400;
    font-size: 16px;
    border-radius: 50px;
    border: 1px solid grey;
    background: rgb(255 255 255) !important;
    display: flex;
    align-items: center;
  }
  
  .ux-btn-primary {
    padding: 15px 5px 14px 20px;
    color: white;
    font-weight: 400;
    font-size: 16px;
    border-radius: 50px;
    background: rgb(6, 134, 103) !important;
  }
  
  .ux-btn-primary span {
    background: black;
    padding: 15px 17px;
    border-radius: 42px;
    margin: 0px 0px 0px 10px;
  }
  
  .linkedup-contact-btn:hover {
    transform: translateY(-2px);
  }
  
  .linkedup-connect-section {
    padding: 80px 0px;
  }
  
  .linkedup-connect-heading {
    margin-bottom: 40px;
  }
  
  .linkedup-connect-heading span {
    color: rgb(17, 17, 17);
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
  }
  
  .linkedup-connect-heading h2 {
    color: rgb(29, 29, 29);
    margin: 0px;
    font-size: 26px;
    font-weight: 600;
    line-height: 1.3;
  }
  
  .linkedup-connect-heading h2 br {
    display: block;
  }
  
  .linkedup-connect-card {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(236, 236, 236);
    border-radius: 22px;
    height: 100%;
    padding: 35px 28px;
    transition: 0.3s;
  }
  
  .linkedup-connect-card:hover {
    transform: translateY(-5px);
    box-shadow: rgba(0, 0, 0, 0.06) 0px 15px 40px;
  }
  
  .linkedup-connect-icon {
    border: 1px solid rgb(236, 236, 236);
    border-radius: 14px;
    justify-content: center;
    align-items: center;
    width: 58px;
    height: 58px;
    margin-bottom: 28px;
    display: flex;
  }
  
  .linkedup-connect-icon img {
    width: 24px;
  }
  
  .linkedup-connect-card h4 {
    color: rgb(31, 31, 31);
    word-break: break-word;
    margin-bottom: 14px;
    font-size: 24px;
    font-weight: 600;
  }
  
  .linkedup-connect-card p {
    color: rgb(102, 102, 102);
    margin: 0px;
    font-size: 15px;
    line-height: 1.7;
  }
  
  .linkedup-thesis-section {
    padding: 80px 0px;
    overflow: hidden;
  }
  .arm-about-hero:before {
         content: "";
    position: absolute;
    background: #000000b5;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
  }
  .arm-about-hero {
    position: relative;
    width: 100%;
    background: url("../images/about.webp") center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  
  .arm-about-content {
    position: relative;
    z-index: 2;
    max-width: 980px;
    margin: 0px auto;
    text-align: center;
    padding: 140px 15px 100px;
  }
  
  .arm-about-subtitle {
    display: inline-block;
    color: rgb(255, 255, 255);
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
  }
  
  .arm-about-content h1 {
    color: rgb(255, 255, 255);
    font-size: 38px;
    line-height: 1.4;
    font-weight: 500;
    margin-bottom: 20px;
  }
  
  .arm-about-content h1 span {
    display: block;
  }
  
  .arm-about-content p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
    line-height: 1.4;
    font-weight: 400;
    max-width: 850px;
    margin: 0px auto;
  }
  
  .arm-engineered-section {
    padding: 70px 0px;
  }
  
  .arm-engineered-content {
    padding-right: 40px;
  }
  
  .arm-engineered-subtitle {
    display: inline-block;
    color: rgb(0, 145, 110);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  .arm-engineered-content h2 {
    color: rgb(17, 17, 17);
    margin-bottom: 10px;
  }
  
  .arm-engineered-content h2 span {
    display: block;
  }
  
  .arm-engineered-content p {
    font-size: 14px;
    line-height: 1.8;
    color: rgb(85, 96, 112);
    margin-bottom: 18px;
  }
  
  .arm-engineered-points {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 40px;
    flex-wrap: wrap;
  }
  
  .arm-point-item {
    font-size: 16px;
    color: rgb(34, 34, 34);
    font-weight: 500;
  }
  
  .arm-engineered-images {
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 30px;
  }
  
  .arm-image-small {
    width: 42%;
  }
  
  .arm-image-large {
    width: 58%;
  }
  
  .arm-engineered-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0px;
  }
  
  .arm-mission-row {
    margin-top: 30px;
  }
  
  .arm-mission-card {
    background: linear-gradient(135deg, rgb(25, 181, 140), rgb(27, 179, 230));
    border-radius: 24px;
    padding: 35px;
    height: 100%;
    color: rgb(255, 255, 255);
  }
  
  .arm-vision-card {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(231, 231, 231);
    border-radius: 24px;
    padding: 45px;
    height: 100%;
  }
  
  .arm-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 30px;
  }
  
  .arm-card-icon.blue {
    border: 1px solid rgb(215, 215, 215);
    color: rgb(41, 98, 255);
  }
  
  .arm-mission-card h3, .arm-vision-card h3 {
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 11px;
  }
  
  .arm-mission-card p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
  }
  
  .arm-vision-card p {
    font-size: 15px;
    line-height: 1.6;
    color: rgb(85, 85, 85);
    margin: 0;
  }
  
  .arm-core-division-section {
    padding: 80px 0px;
    background: #FBFBFB;
  }
  
  .arm-core-heading {
    margin-bottom: 30px;
  }
  
  .arm-core-heading h2 {
  }
  
  .arm-division-card {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(236, 227, 227);
    border-radius: 14px;
    padding: 30px 20px;
    height: 100%;
    transition: 0.3s;
  }
  
  .arm-division-card.active {
    background: rgb(0, 140, 103);
    border-color: rgb(0, 140, 103);
  }
  
  .arm-division-icon {
    width: 62px;
    height: 62px;
    border-radius: 16px;
    border: 1px solid rgb(31, 163, 129);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(0, 140, 103);
  margin-bottom: 25px;
  }
  
  .arm-division-icon.white {
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: rgb(255, 255, 255);
  }
  
  .arm-division-card h3 {
    font-size: 24px;
    line-height: 1.2;
    font-weight: 600;
    color: rgb(17, 17, 17);
    margin-bottom: 35px;
  }
  
  .arm-division-card h3 span {
    display: block;
  }
  
  .arm-division-card p {
    font-size: 14px;
    line-height: 1.6;
    color: rgb(51, 51, 51);
  }
  
  .arm-division-card.active h3, .arm-division-card.active p {
    color: rgb(255, 255, 255);
  }
  
  .arm-leadership-section {
    position: relative;
    padding: 50px 0px;
    background: rgb(2, 2, 2);
    overflow: hidden;
  }
  
  .arm-leadership-section::before {
    content: "";
    position: absolute;
    left: -200px;
    top: 50%;
    transform: translateY(-50%);
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(0, 255, 163, 0.35) 0%, transparent 70%);
    z-index: 0;
  }
  
  .arm-leadership-section::after {
    content: "";
    position: absolute;
    right: -200px;
    top: 50%;
    transform: translateY(-50%);
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(0, 255, 163, 0.35) 0%, transparent 70%);
    z-index: 0;
  }
  
  .arm-leadership-section .container {
    position: relative;
    z-index: 2;
  }
  
  .arm-leadership-subtitle {
    display: inline-block;
    color: rgb(255, 255, 255);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
  }
  
  .arm-leadership-content h2 {
    color: rgb(255, 255, 255);
    margin-bottom: 25px;
    max-width: 580px;
  }
  
  .arm-leadership-content h2 span {
    display: block;
  }
  
  .arm-leadership-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.9;
    margin-bottom: 10px;
    max-width: 700px;
  }
  
  .arm-leadership-image {
    position: relative;
  }
  
  .arm-leadership-image img {
    width: 100%;
    border-radius: 0px;
    object-fit: cover;
  }
  
  .arm-global-section {
    padding: 0px;
  }
  
  .arm-global-heading {
    max-width: 850px;
    margin: 0px auto 30px;
  }
  
  .arm-global-card {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(228, 228, 228);
    border-radius: 28px;
    padding: 35px;
    height: 100%;
    transition: 0.4s;
  }
  
  .arm-global-card:hover {
    transform: translateY(-6px);
  }
  
  .arm-global-card.active-card {
    background: linear-gradient(135deg, rgb(101, 88, 255) 0%, rgb(46, 169, 255) 100%);
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
  }
  
  .arm-global-card.active-card h3, .arm-global-card.active-card p {
    color: rgb(255, 255, 255);
  }
  
  .arm-global-icon {
    width: 70px;
    height: 70px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
    background: rgba(255, 255, 255, 0.08);
  }
  
  .arm-global-card:not(.active-card) .arm-global-icon {
    border: 1px solid rgb(221, 221, 221);
    background: rgb(250, 250, 250);
  }
  
  .arm-global-icon img {
    width: 34px;
  }
  
  .arm-global-card h3 {
    font-size: 21px;
    line-height: 1.3;
    font-weight: 400;
    color: rgb(26, 26, 26);
    margin-bottom: 8px;
  }
  
  .arm-global-card p {
    font-size: 15px;
    line-height: 1.6;
    color: rgb(85, 85, 85);
    margin-bottom: 0px;
  }
  
  .arm-team-section {
    padding: 80px 0px;
  }
  
  .arm-team-heading {
    margin-bottom: 30px;
  }
  
  .arm-team-heading h2 {
  }
  
  .col-lg-2-4 {
    width: 20%;
  }
  
  .arm-team-card {
    background: rgb(248, 248, 248);
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    transition: 0.4s;
    padding: 10px;
  }
  
  .arm-team-card:hover {
    transform: translateY(-8px);
  }
  
  .arm-team-image {
    background: rgb(255, 255, 255);
    /* padding: 25px 20px 0px; */
    text-align: center;
    border-radius: 16px;
  }
  
  .arm-team-image img {
    width: 100%;
    object-fit: contain;
    height: 300px;
    border-radius: 10px;
  }
  
  .arm-team-content {
    padding: 21px;
  }
  
  .arm-team-content h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    color: rgb(23, 23, 23);
    margin-bottom: 6px;
  }
  
  .arm-team-content span {
    display: inline-block;
    font-size: 17px;
    font-weight: 500;
    color: rgb(0, 163, 108);
    margin-bottom: 8px;
  }
  
  .arm-team-content p {
    font-size: 16px;
    line-height: 1.7;
    color: rgb(68, 68, 68);
    margin-bottom: 0px;
    width: 100%;
  }
  
  .ux-project-hero {
    background: url("../images/serviceback.webp");
  }
  
  .ux-approach-section {
    background: rgb(247, 247, 247);
    padding: 110px 0px;
  }
  
  .ux-about-section .ux-section-label {
    width: 100%;
  }
  
  .ux-label {
    font-size: 16px;
    color: rgb(17, 17, 17);
    display: block;
    margin-bottom: 18px;
  }
  
  .ux-section-desc {
    font-size: 19px;
    line-height: 1.4;
    color: rgb(17, 17, 17);
    max-width: 620px;
    margin-left: auto;
  }
  
  .ux-card {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(231, 231, 231);
    border-radius: 22px;
    padding: 28px 24px;
    height: 100%;
    transition: 0.4s;
  }
  
  .ux-card:hover {
    transform: translateY(-8px);
    box-shadow: rgba(0, 0, 0, 0.08) 0px 20px 40px;
  }
  
  .ux-card-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
  }
  
  .ux-icon {
    font-size: 28px;
    color: rgb(198, 191, 191);
    text-align: end;
  }
  
  .ux-num {
    font-size: 13px;
    color: rgb(17, 17, 17);
  }
  
  .ux-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: rgb(17, 17, 17);
    margin-bottom: 10px;
  }
  
  .ux-card p {
    font-size: 13px;
    line-height: 1.8;
    color: rgb(109, 114, 128);
    margin: 0px;
  }
  
  .connect-section {
    background: rgb(251, 251, 251);
    text-align: center;
    padding: 80px 0px 40px;
  }
  
  .connect-section h2 {
    font-size: 30px;
    margin-bottom: 10px;
    color: black;
  }
  
  .subtitle {
    color: rgb(102, 102, 102);
    font-size: 16px;
    max-width: 600px;
    margin: 0px auto 40px;
  }
  
  .connect-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0px 0px 30px;
  }
  
  .flow-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 40px 10px 10px;
    border: 1.5px solid var(--primary);
    background: rgb(255, 255, 255);
    font-size: 14px;
    color: black;
    font-weight: 600;
    box-shadow: rgba(233, 233, 233, 0.25) 15px 20px 45px;
    border-radius: 100px;
  }
   .flow-item .icon img {
           width: 13px;
   }
  .flow-item .icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid rgb(183, 243, 77);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    position: relative;
    margin: 0px;
  }
  
  .arrow {
    color: rgb(183, 243, 77);
    font-size: 20px;
    margin: 0px 5px;
  }
  
  .arm-faq-section{
    padding: 80px 0;
    background: #ffffff;
    position:relative;
    overflow:hidden;
  }
  
  .arm-faq-section::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(0,153,255,0.08);
    filter:blur(120px);
    top:-120px;
    left:-120px;
    border-radius:50%;
  }
  
  .arm-faq-section::after{
    content:"";
    position:absolute;
    width:400px;
    height:400px;
    background:rgba(0,217,166,0.08);
    filter:blur(120px);
    bottom:-100px;
    right:-100px;
    border-radius:50%;
  }
  
  .arm-faq-heading{
    max-width:750px;
    margin:auto;
    margin-bottom:70px;
    position:relative;
    z-index:2;
  }
  
  .arm-faq-subtitle{
    display:inline-block;
    padding:10px 22px;
    border:1px solid rgba(0,0,0,0.08);
    border-radius:50px;
    color:#00a884;
    font-size:14px;
    font-weight:600;
    margin-bottom:22px;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,0.04);
  }
  
  .arm-faq-heading h2{
    font-size:56px;
    line-height:1.2;
    color:#111827;
    font-weight:700;
    margin-bottom:22px;
  }
  
  .arm-faq-heading h2 span{
    color:#00a884;
  }
  
  .arm-faq-heading p{
    color:#6b7280;
    font-size:17px;
    line-height:1.8;
  }
  
  .arm-faq-accordion{
    position:relative;
    z-index:2;
  }
  
  .arm-faq-accordion .accordion-item{
    background:#fff;
    border:none;
    margin-bottom:24px;
    border-radius:24px !important;
    overflow:hidden;
    box-shadow:0 12px 40px rgba(0,0,0,0.06);
    transition:0.4s ease;
  }
  
  .arm-faq-accordion .accordion-item:hover{
    transform:translateY(-5px);
    box-shadow:0 20px 50px rgba(0,0,0,0.1);
  }
  
  .arm-faq-accordion .accordion-button{
    background:#fff;
    color:#111827;
    font-size:18px;
    font-weight:600;
    padding:28px 30px;
    box-shadow:none;
    border:none;
  }
  
  .arm-faq-accordion .accordion-button.collapsed{
    background:#fff;
  }
  
  .arm-faq-accordion .accordion-button:not(.collapsed){
    background:linear-gradient(90deg,#00a88410,#0099ff10);
    color:#00a884;
  }
  
  .arm-faq-accordion .accordion-button::after{
    filter:none;
  }
  
  .arm-faq-accordion .accordion-body{
    padding:0 30px 30px;
    color:#6b7280;
    font-size:16px;
    line-height:1.9;
    background:#fff;
  }
  .creative-service-card:hover .service-image img{
    transform: scale(1.08);
  }
  
  .service-content span{
    color: #0c9b77;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
  }
  
  .service-content h3{
    color: #111827 !important;
    font-size: 22px;
    margin-bottom: 6px;
  }
  
  .service-content p{
    color: #6b7280 !important;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
  }
  
  .service-content a{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #111827;
    text-decoration: none;
    font-weight: 600;
    transition: 0.4s ease;
  }
  
  .service-content a i{
    transition: 0.4s ease;
  }
  
  .service-content a:hover{
    color: #0077ff;
  }
  
  .service-content a:hover i{
    transform: translateX(5px);
  }
  
  .active-card{
    background: linear-gradient(
        180deg,
        rgba(0,119,255,0.10),
        rgba(255,255,255,0.9)
    );
    border-color: #0077ff;
  }
  .arm-image-large img {
    height: 400px;
  }
  
  
  /* ================================
     MAIN SERVICES - WHITE THEME
  ================================ */
  
  .main-services {
    background: #ffffff;
    position: relative;
    overflow: hidden;
  }
  
  .service-heading {
    max-width: 850px;
    margin: auto;
  }
  
  .service-tag {
    display: inline-block;
    padding: 8px 18px;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 100px;
    color: #0f766e;
    background: #f4f8f7;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 18px;
    font-weight: 600;
  }
  
  .service-heading h2 {
    color: #111827;
    margin-bottom: 20px;
  }
  
  .service-heading p {
    color: #6b7280;
    font-size: 17px;
    line-height: 1.8;
  }
  
  /* ================================
     ZIG ZAG LAYOUT
  ================================ */
  
  .zigzag-service {
    padding: 90px 0;
    border-bottom: 1px solid #ececec;
  }
  
  .zigzag-content {
    position: relative;
    padding-right: 30px;
  }
  
  .service-number {
    font-size: 90px;
    font-weight: 800;
    color: rgba(15, 23, 42, 0.05);
    line-height: 1;
    display: block;
    margin-bottom: 20px;
  }
  
  .service-label {
    color: #0f766e;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 14px;
  }
  
  .zigzag-content h3 {
    color: #111827;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .zigzag-content p {
    color: #6b7280;
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 35px;
    max-width: 550px;
  }
  
  /* ================================
     CTA BUTTON
  ================================ */
  
  .service-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 28px;
    border-radius: 60px;
    background: #111827;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s ease;
  }
  
  .service-btn i {
    transition: transform 0.4s ease;
  }
  
  .service-btn:hover {
    background: #0f766e;
    color: #fff;
    transform: translateY(-4px);
  }
  
  .service-btn:hover i {
    transform: translateX(5px);
  }
  
  /* ================================
     IMAGE
  ================================ */
  
  .zigzag-image {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 18px 50px rgba(0,0,0,0.08);
  }
  
  .zigzag-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 28px;
    transition: transform 0.7s ease;
  }
  
  .zigzag-image:hover img {
    transform: scale(1.05);
  }
  
  /* Soft Overlay */
  
  .zigzag-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(0,0,0,0.08),
      rgba(0,0,0,0)
    );
    border-radius: 28px;
  }
  
  /* ================================
     RESPONSIVE
  ================================ */
  
  @media (max-width: 991px) {
  
    .zigzag-service {
      padding: 70px 0;
    }
  
    .service-heading h2 {
      font-size: 40px;
    }
  
    .zigzag-content {
      padding-right: 0;
      text-align: center;
    }
  
    .zigzag-content p {
      margin: auto auto 30px;
    }
  
    .zigzag-image img {
      height: 420px;
    }
  
    .service-number {
      font-size: 70px;
    }
  
    .zigzag-content h3 {
      font-size: 34px;
    }
  
  }
  
  @media (max-width: 767px) {
  
    .main-services {
      padding: 70px 0;
    }
  
    .service-heading h2 {
      font-size: 32px;
    }
  
    .service-heading p {
      font-size: 15px;
    }
  
    .zigzag-service {
      padding: 55px 0;
    }
  
    .zigzag-image img {
      height: 300px;
    }
  
    .service-number {
      font-size: 56px;
    }
  
    .zigzag-content h3 {
      font-size: 28px;
    }
  
    .zigzag-content p {
      font-size: 15px;
      line-height: 1.8;
    }
  
    .service-btn {
      padding: 13px 22px;
      font-size: 14px;
    }
  
  }
  
  
  .creative-service-card {
    position: relative;
    height: 100%;
    padding: 8px;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgb(219 219 219 / 47%);
    backdrop-filter: blur(18px);
    transition: all 0.45s ease;
    z-index: 1;
  }
  
  /* Glow Effect */
  .creative-service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      135deg,
      rgba(0,140,255,0.15),
      rgba(0,255,180,0.05),
      transparent
    );
    opacity: 0;
    transition: 0.5s;
    z-index: -1;
  }
  
  /* Border Animation */
  .creative-service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 8px;
    padding: 1px;
    background: linear-gradient(
      135deg,
      rgba(0,140,255,0.6),
      rgba(0,255,180,0.3),
      transparent
    );
    -webkit-mask: 
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: 0.5s;
  }
  
  /* Hover */
  .creative-service-card:hover,
  .creative-service-card.active-card {
    transform: translateY(-12px);
    /* background: rgba(255,255,255,0.07); */
    box-shadow: 0 25px 60px rgb(0 0 0 / 2%);
  }
  
  .creative-service-card:hover::before,
  .creative-service-card:hover::after,
  .creative-service-card.active-card::before,
  .creative-service-card.active-card::after {
    opacity: 1;
  }
  
  /* ================================
     IMAGE
  ================================ */
  .service-image {
    width: 100%;
    height: 190px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 24px;
    position: relative;
  }
  
  .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
  }
  
  .creative-service-card:hover .service-image img {
    transform: scale(1.08);
  }
  
  /* Overlay */
  .service-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(0,0,0,0.4),
      transparent
    );
    z-index: 1;
  }
  
  
  
  /* ================================
     BUTTON
  ================================ */
  .service-content a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #000000;
    font-weight: 400;
    font-size: 15px;
    transition: 0.4s ease;
  }
  
  .service-content a i {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s ease;
  }
  
  /* ================================
     RESPONSIVE
  ================================ */
  @media (max-width: 991px) {
    .service-heading h2 {
      font-size: 42px;
    }
  
    .service-content h3 {
      font-size: 28px;
    }
  }
  
  @media (max-width: 767px) {
    .service-heading h2 {
      font-size: 34px;
    }
  
    .service-heading p {
      font-size: 15px;
    }
  
    .creative-service-card {
      padding: 22px;
    }
  
    .service-image {
      height: 200px;
    }
  }
  
  #scrollTopBtn{
      position: fixed;
      right: 25px;
      bottom: 25px;
      width: 55px;
      height: 55px;
      border: none;
      outline: none;
      border-radius: 50%;
         background: linear-gradient(135deg, #0c9b77, #035c45);
      color: #fff;
      font-size: 18px;
      cursor: pointer;
      z-index: 9999;
  
      display: flex;
      align-items: center;
      justify-content: center;
  
      opacity: 0;
      visibility: hidden;
  
      transform: translateY(30px);
      transition: all 0.4s ease;
  
      box-shadow: 0 10px 30px rgba(0,210,255,0.35);
  }
  
  /* Show Button */
  #scrollTopBtn.show{
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
  }
  
  /* Hover */
  #scrollTopBtn:hover{
      transform: translateY(-6px);
      box-shadow: 0 15px 40px rgba(0,210,255,0.45);
  }
  
  /* icon animation */
  #scrollTopBtn i{
      transition: 0.4s;
  }
  
  #scrollTopBtn:hover i{
      transform: translateY(-3px);
  }
  
  /* Mobile */
  @media(max-width:767px){
  
      #scrollTopBtn{
          width: 48px;
          height: 48px;
          right: 18px;
          bottom: 18px;
          font-size: 16px;
      }
  
  }
  
  .armtronix-footer{
      /*background:#020607;*/
      background-image: radial-gradient(#02372b, #170c0c);
      color:#d7d7d7;
      padding-top:80px;
      overflow:hidden;
      font-family:sans-serif;
  }
  
  .armtronix-footer .container{
      max-width:1320px;
  }
  
  .footer-brand h4{
      color:#fff;
      margin:0;
      font-size:34px;
      font-weight:700;
  }
  
  .footer-contact{
      border-top:1px solid rgba(255,255,255,0.08);
      padding-top:22px;
  }
  
  .footer-contact h6,
  .social-area h6{
      color: #0c9b77;
      font-size:14px;
      letter-spacing: 0px;
      margin-bottom: 14px;
      font-weight:700;
  }
  
  .footer-contact p{
      color:#d7d7d7;
      line-height:1.8;
      font-size: 16px;
  }
  
  .armtronix-footer h5{
      color: #0c9b77;
      font-size: 14px;
      letter-spacing: 1px;
      margin-bottom:28px;
      font-weight:700;
  }
  
  .footer-links{
      padding:0;
      margin:0;
      list-style:none;
  }
  
  .footer-links li{
      margin-bottom:18px;
  }
  
  .footer-links a{
      color:#d5d5d5;
      text-decoration:none;
      font-size: 16px;
      transition:.3s;
  }
  
  .footer-links a:hover{
      color:#00b7c2;
      padding-left:5px;
  }
  
  .small-text{
      margin-bottom:25px;
  }
  
  .subscribe-form input{
      width:100%;
      height:58px;
      background:transparent;
      border:1px solid rgba(255,255,255,0.15);
      padding:0 18px;
      color:#fff;
      border-radius:6px;
      margin-bottom:14px;
      outline:none;
  }
  
  .subscribe-form button{
      width:100%;
      height: 50px;
      border:none;
      background: #0c9b77;
      color:#fff;
      font-size: 16px;
      font-weight: 500;
      border-radius: 3px;
      transition:.3s;
  }
  
  .subscribe-form button:hover{
      background: #077b5e;
  }
  
  .social-area{
      margin-top:40px;
  }
  
  .social-icons{
      display:flex;
      gap:16px;
  }
  .social-icons a i {
    font-size: 19px;
  }
  .social-icons a{
      width: 52px;
      height:52px;
      border-radius:50%;
      border:1px solid rgba(255,255,255,0.12);
      display:flex;
      align-items:center;
      justify-content:center;
      color:#fff;
      text-decoration:none;
      font-size:22px;
      transition:.3s;
  }
  
  .social-icons a:hover{
      background: #0c9b77;
      border-color: #0c9b77;
      color: #ffffff;
  }
  
  .footer-bottom{
      margin-top:70px;
      border-top:1px solid rgba(255,255,255,0.08);
      padding:26px 0;
  }
  
  .bottom-wrap{
      display:flex;
      align-items:center;
      justify-content:space-between;
      flex-wrap:wrap;
      gap:20px;
  }
  
  .bottom-wrap p{
      margin:0;
      color:#8b8b8b;
      font-size: 15px;
  }
  
  .bottom-links{
      display:flex;
      gap:35px;
  }
  
  .bottom-links a{
      color:#8b8b8b;
      text-decoration:none;
      transition:.3s;
  }
  
  .bottom-links a:hover{
      color:#00b7c2;
  }
  
  .top-btn{
      color:#fff;
      text-decoration:none;
      font-weight:700;
      display:flex;
      align-items:center;
      gap:10px;
  }
  
  .top-btn i{
      width:38px;
      height:38px;
      border:1px solid rgba(255,255,255,0.2);
      border-radius:50%;
      display:flex;
      align-items:center;
      justify-content:center;
  }
  
  
  .industries-section{
      position: relative;
      padding: 80px 0;
      background: #f7f9fc;
      overflow: hidden;
  }
  
  
  
  
  /* GRID */
  .industry-grid{
      display: grid;
      grid-template-columns: repeat(4,1fr);
      gap: 30px;
  }
  
  /* CARD */
  .industry-card{
      position: relative;
      padding: 10px 10px;
      border-radius: 10px;
      background: #ffffff;
      border: 1px solid #e5e7eb;
      text-align: center;
      overflow: hidden;
      transition: all 0.5s ease;
      box-shadow: 0 10px 30px rgba(15,23,42,0.05);
  }
  
  
  
  
  /* IMAGE */
  .industry-image img {}
  .industry-image{
      width: 65px;
      height: 65px;
      min-width: 65px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #f1f5f9;
      border-radius: 4px;
      position: relative;
      z-index: 2;
      transition: 0.4s;
  }
  
  .industry-image img{
      width: 40px;
      transition: 0.5s ease;
  }
  
  .industry-card:hover .industry-image{
      background: rgba(0,210,255,0.08);
  }
  
  .industry-card:hover .industry-image img{
      transform: scale(1.1) rotate(-5deg);
  }
  
  /* TEXT */
  .industry-card h4{
      color: #0f172a;
      font-size: 16px;
      font-weight: 400;
      line-height: 1.5;
      position: relative;
      text-align: left;
      z-index: 2;
  }
  
  /* RESPONSIVE */
  @media(max-width:1199px){
  
      .industry-grid{
          grid-template-columns: repeat(3,1fr);
      }
  
  }
  
  @media(max-width:991px){
  
      .industry-grid{
          grid-template-columns: repeat(2,1fr);
      }
  
      .industries-top h2{
          font-size: 40px;
      }
  
  }
  
  @media(max-width:767px){
  
      .industry-grid{
          grid-template-columns: 1fr;
      }
  
      .industries-top h2{
          font-size: 32px;
      }
  
      .industry-card{
          padding: 32px 22px;
      }
  
  }
  /* ============ INDUSTRIES AUTO-SCROLLING CAROUSEL ============ */
  .industries-carousel{
      position: relative;
      width: 100%;
      overflow: hidden;
      padding: 16px 0;
      -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
              mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  }

  .industries-track{
      display: flex;
      flex-wrap: nowrap;
      gap: 18px;
      width: max-content;
      will-change: transform;
      animation: industries-marquee 40s linear infinite;
  }

  /* Left -> Right movement (two identical halves = seamless loop) */
  @keyframes industries-marquee{
      from{ transform: translateX(-50%); }
      to  { transform: translateX(0); }
  }

  /* Pause when the user hovers, for readability */
  .industries-carousel:hover .industries-track{
      animation-play-state: paused;
  }

  /* Card sizing inside the moving track */
  .industries-track .industry-card{
      flex: 0 0 auto;
      width: 250px;
      min-height: 78px;
  }

  @media(max-width:767px){
      .industries-track .industry-card{ width: 215px; }
      .industries-track{ animation-duration: 28s; }
  }

  /* Respect reduced-motion preferences */
  @media(prefers-reduced-motion: reduce){
      .industries-track{ animation: none; flex-wrap: wrap; width: 100%; justify-content: center; }
      .industries-carousel{ -webkit-mask-image: none; mask-image: none; }
  }

  .footer-contact-info a{
    color: #fff;
    text-decoration: none;
    transition: 0.3s ease;
  }
  
  .footer-contact-info a:hover{
    color: #00bfff;
  }
  
  .footer-contact-info i{
    font-size: 15px;
  }
  .main-header.scrolled{
    background: #000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  }
  
  /* ============================================================
     PERF/A11Y ADDITIONS (kept additive â€” design preserved)
     ============================================================ */
  
  /* Improve contrast for footer secondary text (was #8b8b8b on dark â€” borderline AA) */
  .bottom-wrap p,
  .bottom-links a {
    color: #c2c2c2;
  }
  
  /* Larger tap targets on small screens (Lighthouse requires 24x24+ logical px) */
  @media (max-width: 991px) {
    .navbar .nav-link {
      padding: 14px 18px !important;
      min-height: 44px;
      display: flex;
      align-items: center;
    }
    .footer-links a,
    .bottom-links a,
    .social-icons a,
    .footer-contact-info a {
      display: inline-flex;
      align-items: center;
      min-height: 32px;
    }
    .social-icons a {
      min-width: 44px;
      min-height: 44px;
    }
  }
  
  /* Mobile: drop expensive blurs / heavy shadows so paint stays cheap */
  @media (max-width: 767px) {
    .creative-service-card,
    .service-card,
    .arm-faq-section::before,
    .arm-faq-section::after,
    .ux-growth-glow {
      backdrop-filter: none !important;
      -webkit-backdrop-filter: none !important;
      filter: none !important;
    }
    .creative-service-card { background: rgba(255,255,255,0.92); }
    .service-card { background: rgba(0,0,0,0.85); }
  
    .industry-card:hover,
    .linkedup-connect-card:hover,
    .arm-faq-accordion .accordion-item:hover,
    .ux-card:hover {
      box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    }
  }
  
  /* Promote the hero video to its own layer for smoother paint, avoid CLS */
  .hero-video {
    will-change: transform;
    transform: translateZ(0);
    background: #000;
  }
  
  /* Avoid CLS: reserve aspect for swiper cards images */
  .case-image,
  .about-image,
  .service-image,
  .explore-image,
  .power-banner {
    background: #f1f5f9;
  }
  
  /* Visible focus on key interactive elements (matches design colour) */
  .nav-link:focus-visible,
  .about-btn:focus-visible,
  .banner-btn:focus-visible,
  .service-btn:focus-visible,
  .ux-btn-primary:focus-visible,
  .ux-btn-secondary:focus-visible,
  .linkedup-contact-btn:focus-visible,
  .footer-links a:focus-visible,
  .bottom-links a:focus-visible,
  .social-icons a:focus-visible,
  #scrollTopBtn:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
  }
  