:root {
  --brand-orange: #f86604;
  --brand-orange-dark: #cf4f00;
  --ink-900: #161b22;
  --ink-800: #202733;
  --ink-700: #2b3442;
  --steel-200: #d8dde5;
  --steel-100: #e9edf3;
  --surface: #f7f8fb;
  --surface-alt: #ffffff;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-soft: 0 16px 40px rgba(14, 24, 36, 0.14);
  --shadow-card: 0 10px 30px rgba(13, 20, 31, 0.16);
}

/* Logo hold laser sequence */
body.modern-redesign nav.navbar .container {
  position: relative;
  overflow: visible;
}

body.modern-redesign nav.navbar .navbar-brand {
  position: relative;
  z-index: 2;
}

body.modern-redesign nav.navbar .navbar-brand::before {
  content: "";
  position: absolute;
  inset: -8px -10px;
  border-radius: 14px;
  border: 2px solid rgba(248, 102, 4, 0);
  opacity: 0;
  pointer-events: none;
  background:
    linear-gradient(#f86604 0 0) 0 0 / 0 2px no-repeat,
    linear-gradient(#f86604 0 0) 100% 0 / 2px 0 no-repeat,
    linear-gradient(#f86604 0 0) 100% 100% / 0 2px no-repeat,
    linear-gradient(#f86604 0 0) 0 100% / 2px 0 no-repeat;
  filter: drop-shadow(0 0 9px rgba(248, 102, 4, 0.85));
}

body.modern-redesign nav.navbar .navbar-brand::after {
  content: none;
  position: absolute;
  left: calc(100% + 2px);
  top: 50%;
  width: 14px;
  height: 3px;
  transform: translateY(-50%);
  background: #f86604;
  border-radius: 999px;
  opacity: 0;
  box-shadow: 0 0 0 rgba(248, 102, 4, 0);
  pointer-events: none;
  transition: opacity 0.2s ease, box-shadow 0.2s ease;
}

body.modern-redesign nav.navbar .container::before,
body.modern-redesign nav.navbar .container::after {
  content: "";
  position: absolute;
  top: 50%;
  pointer-events: none;
  opacity: 0;
}

body.modern-redesign nav.navbar .container::before {
  left: var(--laser-start, 140px);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ffd4b7;
  box-shadow: 0 0 14px rgba(248, 102, 4, 0.95), 0 0 26px rgba(248, 102, 4, 0.62);
  transform: translate(-50%, -50%);
  z-index: 2;
}

body.modern-redesign nav.navbar .container::after {
  left: var(--laser-start, 140px);
  width: 0;
  height: 3px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(248, 102, 4, 1) 0%, rgba(248, 102, 4, 0.75) 45%, rgba(248, 102, 4, 0) 100%);
  box-shadow: 0 0 10px rgba(248, 102, 4, 0.88), 0 0 20px rgba(248, 102, 4, 0.38);
  transition: width 1.85s linear, opacity 0.12s ease;
  z-index: 1;
}

body.modern-redesign nav.navbar.logo-border-tracing .navbar-brand::before {
  opacity: 1;
  border-color: rgba(248, 102, 4, 0.32);
  animation: logo-border-trace 0.82s linear forwards;
}

body.modern-redesign nav.navbar.logo-laser-firing .navbar-brand::before,
body.modern-redesign nav.navbar.logo-laser-active .navbar-brand::before {
  opacity: 1;
  border-color: #f86604;
  background-size: 100% 2px, 2px 100%, 100% 2px, 2px 100%;
}

body.modern-redesign nav.navbar.logo-laser-firing .navbar-brand::after,
body.modern-redesign nav.navbar.logo-laser-active .navbar-brand::after {
  opacity: 0;
  box-shadow: none;
}

body.modern-redesign nav.navbar.logo-laser-primed .container::before {
  opacity: 1;
  transform: translateY(-50%) scale(1);
  animation: logo-laser-prime 0.32s ease-in-out infinite;
}

body.modern-redesign nav.navbar.logo-laser-firing .container::after,
body.modern-redesign nav.navbar.logo-laser-active .container::after {
  width: calc(100% - var(--laser-start, 140px) - 32px);
  opacity: 1;
}

body.modern-redesign nav.navbar.logo-laser-firing .container::before {
  opacity: 1;
  animation: logo-laser-head 1.85s linear forwards;
}

body.modern-redesign nav.navbar.logo-laser-active .container::before {
  opacity: 0;
}

body.modern-redesign nav.navbar.logo-laser-active .navbar-brand img {
  transform: scale(1.08);
  filter: drop-shadow(0 0 11px rgba(248, 102, 4, 0.58));
}

body.modern-redesign nav.navbar .navbar-nav .nav-link.logo-laser-hit {
  color: #ffffff;
  background: rgba(248, 102, 4, 0.9);
  border-radius: 999px;
  text-shadow: 0 0 11px rgba(248, 102, 4, 0.85);
}

@keyframes logo-border-trace {
  0% {
    background-size: 0 2px, 2px 0, 0 2px, 2px 0;
  }
  25% {
    background-size: 100% 2px, 2px 0, 0 2px, 2px 0;
  }
  50% {
    background-size: 100% 2px, 2px 100%, 0 2px, 2px 0;
  }
  75% {
    background-size: 100% 2px, 2px 100%, 100% 2px, 2px 0;
  }
  100% {
    background-size: 100% 2px, 2px 100%, 100% 2px, 2px 100%;
  }
}

@keyframes logo-laser-head {
  from {
    left: var(--laser-start, 140px);
  }
  to {
    left: calc(100% - 26px);
  }
}

@keyframes logo-laser-prime {
  0% {
    transform: translate(-50%, -50%) scale(0.82);
    box-shadow: 0 0 8px rgba(248, 102, 4, 0.55), 0 0 14px rgba(248, 102, 4, 0.28);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.18);
    box-shadow: 0 0 16px rgba(248, 102, 4, 0.95), 0 0 30px rgba(248, 102, 4, 0.62);
  }
  100% {
    transform: translate(-50%, -50%) scale(0.94);
    box-shadow: 0 0 10px rgba(248, 102, 4, 0.65), 0 0 20px rgba(248, 102, 4, 0.36);
  }
}

html {
  scroll-behavior: smooth;
}

body.modern-redesign {
  background:
    radial-gradient(circle at 8% 4%, rgba(248, 102, 4, 0.18), transparent 34%),
    radial-gradient(circle at 92% 0%, rgba(66, 88, 116, 0.2), transparent 28%),
    linear-gradient(180deg, #f6f7fa 0%, #edf1f6 100%);
  color: var(--ink-800);
  font-family: "Manrope", "Lato", sans-serif;
}

body.modern-redesign section,
body.modern-redesign footer {
  animation: section-reveal 0.75s ease both;
}

body.modern-redesign .reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  filter: blur(2px);
  transition:
    opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.72s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

body.modern-redesign .reveal.reveal-left {
  transform: translate(-26px, 34px) scale(0.985);
}

body.modern-redesign .reveal.reveal-right {
  transform: translate(26px, 34px) scale(0.985);
}

body.modern-redesign .reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
  filter: blur(0);
}

@keyframes section-reveal {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body.modern-redesign nav.navbar {
  background: rgba(18, 23, 30, 0.86) !important;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.9rem 0;
  transition: background-color 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

body.modern-redesign nav.navbar.is-scrolled {
  background: rgba(14, 19, 26, 0.96) !important;
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 14px 34px rgba(8, 12, 18, 0.34);
}

body.modern-redesign .navbar-brand img {
  height: 50px;
  width: auto;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), filter 0.35s ease;
  transform: scale(1.1);
  transform-origin: left center;
}

body.modern-redesign .navbar-brand:hover img {
  transform: scale(1.18);
  filter: drop-shadow(0 8px 18px rgba(248, 102, 4, 0.42));
}

body.modern-redesign .navbar .nav-link {
  color: #f5f7fb;
  letter-spacing: 0.06em;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 0.62rem 0.85rem;
}

body.modern-redesign .navbar .nav-link:hover:not(.is-active),
body.modern-redesign .navbar .nav-link.is-active {
  color: #ffffff;
  background: rgba(248, 102, 4, 0.9);
  border-radius: 999px;
}

body.modern-redesign .navbar .nav-link:focus {
  outline: none;
}

body.modern-redesign .navbar .nav-link:focus-visible {
  color: #ffffff;
  background: rgba(248, 102, 4, 0.9);
  border-radius: 999px;
}

body.modern-redesign .navbar .navbar-toggler {
  border-color: rgba(248, 102, 4, 0.75);
}

body.modern-redesign .navbar .navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 102, 4, 0.25);
}

body.modern-redesign .navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(248, 102, 4, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

body.modern-redesign .hero-banner {
  max-height: none;
}

body.modern-redesign .hero-banner .carousel-item > div {
  height: clamp(432px, 67vh, 684px) !important;
  max-height: none !important;
  width: 100% !important;
}

body.modern-redesign .hero-banner .centered {
  left: max(38px, 4vw);
  top: 56%;
  right: auto;
  transform: translateY(-50%);
  width: min(820px, 88vw);
  text-align: left;
  gap: 0.9rem;
}

body.modern-redesign .hero-banner .title {
  font-family: "Teko", sans-serif;
  font-size: clamp(2.88rem, 5.76vw, 4.992rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.55);
  margin-bottom: 0.2rem;
}

body.modern-redesign .hero-banner .subtitle {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.536rem, 3.072vw, 2.6624rem);
  line-height: 0.95;
  max-width: none;
  white-space: nowrap;
  margin-top: -0.35rem;
}

body.modern-redesign .hero-banner .hero-rotating-tagline {
  font-family: "Manrope", sans-serif;
  font-size: clamp(0.95rem, 1.45vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 247, 251, 0.92);
  margin-top: -0.15rem;
  min-height: 1.4em;
}

body.modern-redesign .enquire-btn {
  background: linear-gradient(135deg, var(--brand-orange) 0%, #ff8d39 100%);
  border-radius: 999px;
  min-width: 190px;
  padding: 14px 28px;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 12px 24px rgba(248, 102, 4, 0.32);
}

body.modern-redesign .enquire-btn:hover {
  background: linear-gradient(135deg, #ff8d39 0%, var(--brand-orange) 100%);
}

body.modern-redesign .hero-contact-lines {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-top: 0.35rem;
}

body.modern-redesign .hero-contact-line {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: "Manrope", sans-serif;
  font-size: clamp(0.98rem, 1.45vw, 1.12rem);
  font-weight: 700;
  color: #f5f7fb;
  letter-spacing: 0.04em;
}

body.modern-redesign .hero-contact-line.hero-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1rem;
  align-items: center;
}

body.modern-redesign .hero-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: inherit;
  text-decoration: none;
}

body.modern-redesign .hero-social-link:hover {
  color: #ffd9bf;
}

body.modern-redesign .hero-contact-line i {
  color: var(--brand-orange);
  width: 1rem;
  text-align: center;
}

body.modern-redesign .hero-contact-line a {
  color: inherit;
  text-decoration: none;
}

body.modern-redesign .hero-contact-line a:hover {
  color: #ffd9bf;
}

body.modern-redesign .hero-banner .carousel-indicators {
  gap: 0.65rem;
  margin-top: 0.9rem;
}

body.modern-redesign .news-sneakpeek {
  width: min(var(--shell-width), 94vw);
  margin: clamp(14px, 2vw, 24px) auto 0;
}

body.modern-redesign .news-sneakpeek-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(25, 33, 45, 0.95), rgba(14, 20, 29, 0.92));
  box-shadow: 0 14px 28px rgba(7, 11, 16, 0.3);
  padding: 10px 12px;
}

body.modern-redesign .news-sneakpeek-label {
  font-family: "Teko", sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffd2b1;
  background: rgba(248, 102, 4, 0.18);
  border: 1px solid rgba(248, 102, 4, 0.35);
  border-radius: 999px;
  padding: 6px 14px;
  white-space: nowrap;
}

body.modern-redesign .news-sneakpeek-marquee {
  overflow: hidden;
  position: relative;
}

body.modern-redesign .news-sneakpeek-track {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 100%;
  animation: news-marquee-scroll 34s linear infinite;
}

body.modern-redesign .news-sneakpeek-marquee:hover .news-sneakpeek-track {
  animation-play-state: paused;
}

body.modern-redesign .news-sneakpeek-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(9, 14, 21, 0.7);
  color: #f1f6ff;
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

body.modern-redesign .news-sneakpeek-chip:hover {
  background: rgba(248, 102, 4, 0.9);
  border-color: rgba(255, 216, 186, 0.8);
  transform: translateY(-1px);
}

body.modern-redesign .news-sneakpeek-date {
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: rgba(232, 240, 252, 0.78);
}

body.modern-redesign .news-sneakpeek-chip:hover .news-sneakpeek-date {
  color: rgba(255, 245, 232, 0.92);
}

body.modern-redesign .news-sneakpeek-title {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

@keyframes news-marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  body.modern-redesign .news-sneakpeek-inner {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  body.modern-redesign .news-sneakpeek-label {
    justify-self: start;
  }
}

body.modern-redesign #software {
  background: var(--surface-alt);
  border-top: 1px solid #e2e8ef;
  border-bottom: 1px solid #e2e8ef;
  padding: 1.12rem 1rem !important;
}

body.modern-redesign .software .col-12 {
  padding: 0.45rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.modern-redesign .software .col-12 a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.modern-redesign .software img {
  height: 66px;
  max-height: none;
  object-fit: contain;
  background: #fff;
  border: 1px solid #e8ebf1;
  border-radius: 12px;
  padding: 12px 20px;
  box-shadow: 0 8px 24px rgba(20, 32, 46, 0.09);
  display: block;
  margin: 0 auto;
}

body.modern-redesign .tabs-container {
  display: grid;
  grid-template-columns: minmax(260px, 34%) 1fr;
  background: transparent;
  gap: 1.2rem;
  padding: 2.2rem;
}

body.modern-redesign .left-col,
body.modern-redesign .right-col {
  max-width: 100%;
}

body.modern-redesign .left-col {
  background:
    radial-gradient(120% 110% at 16% 10%, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 54%),
    radial-gradient(140% 120% at 85% 100%, rgba(101, 129, 168, 0.24), rgba(101, 129, 168, 0) 60%),
    linear-gradient(160deg, var(--ink-800), #2f3b50);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

body.modern-redesign .column-content {
  width: 100%;
  margin: 0;
  padding: 2rem;
}

body.modern-redesign .section-title {
  font-family: "Teko", sans-serif;
  letter-spacing: 0.08em;
  font-size: clamp(2rem, 3vw, 2.9rem);
  line-height: 1;
}

body.modern-redesign #tabs-nav {
  display: grid;
  gap: 0.55rem;
}

body.modern-redesign #tabs-nav li {
  margin: 0 !important;
}

body.modern-redesign #tabs-nav .active:after {
  display: none;
}

body.modern-redesign .service-tab {
  display: block;
  height: auto;
  background: rgba(173, 190, 214, 0.055);
  border: 1px solid rgba(231, 239, 250, 0.2);
  border-radius: 999px;
  color: #eaf0f9;
  font-family: "Manrope", sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.85rem 1rem;
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -7px 14px rgba(7, 14, 24, 0.16),
    0 4px 9px rgba(5, 10, 18, 0.16),
    0 0 0 1px rgba(255, 255, 255, 0.02);
  position: relative;
  overflow: hidden;
  transform: none;
  transition: box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

body.modern-redesign .service-tab::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.04) 10%, rgba(255, 255, 255, 0) 24%),
    radial-gradient(120% 85% at 16% 4%, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 54%);
  pointer-events: none;
}

body.modern-redesign .service-tab::after {
  content: "";
  position: absolute;
  inset: 1px 1px 2px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.12);
  opacity: 0.7;
  transition: opacity 0.24s ease, border-color 0.24s ease;
  pointer-events: none;
}

body.modern-redesign #tabs-nav li.active .service-tab,
body.modern-redesign .service-tab:hover {
  background:
    linear-gradient(165deg, rgba(255, 214, 168, 0.95) 0%, rgba(255, 139, 34, 0.92) 42%, rgba(214, 88, 6, 0.88) 100%),
    rgba(185, 202, 226, 0.1);
  border-color: rgba(255, 206, 158, 0.98);
  color: #fff;
  transform: none;
  text-shadow: 0 1px 2px rgba(61, 18, 0, 0.44);
  box-shadow:
    inset 0 1px 0 rgba(255, 244, 228, 0.8),
    inset 0 -13px 22px rgba(132, 45, 2, 0.54),
    inset 15px 11px 24px rgba(255, 232, 203, 0.24),
    0 10px 20px rgba(77, 24, 1, 0.5),
    0 0 22px rgba(255, 118, 12, 0.62);
}

body.modern-redesign .service-tab:hover::after,
body.modern-redesign #tabs-nav li.active .service-tab::after {
  border-color: rgba(255, 228, 196, 0.7);
  opacity: 1;
}

body.modern-redesign .right-col {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

body.modern-redesign .tab-content {
  min-height: 416px;
}

body.modern-redesign #services .right-col .tab-content {
  will-change: transform, opacity;
}

body.modern-redesign #services .right-col #flat-dxf-cad.tab-content {
  background-size: contain !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

body.modern-redesign #services .right-col #client-downloads.tab-content {
  background-size: contain !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

body.modern-redesign #services .left-col .services-side-note {
  margin-top: 0.8rem;
  padding: 1.15rem 1rem 1rem;
  border-radius: 12px;
  background: rgba(248, 249, 252, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

body.modern-redesign #services .left-col .services-side-note p {
  margin: 0;
  color: #f5f7fb;
  text-align: justify;
  line-height: 1.6;
  font-size: 0.92rem;
}

body.modern-redesign #services .left-col .services-side-note p + p {
  margin-top: 0.8rem;
}

body.modern-redesign #services .left-col .services-side-logo-wrap {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}

body.modern-redesign #services .left-col .services-side-logo {
  width: clamp(110px, 13vw, 150px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 7px 18px rgba(0, 0, 0, 0.28));
}

body.modern-redesign #services .right-col .tab-content.tab-fly-in {
  animation: services-panel-fly-in 560ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

body.modern-redesign #services .right-col .tab-content.tab-fly-in .tab-content-text {
  animation: services-panel-text-in 460ms cubic-bezier(0.22, 1, 0.36, 1) 90ms both;
}

@keyframes services-panel-fly-in {
  0% {
    opacity: 0;
    transform: translateX(42px) scale(0.985);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes services-panel-text-in {
  0% {
    opacity: 0;
    transform: translateX(26px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.modern-redesign #services .right-col .tab-content.tab-fly-in,
  body.modern-redesign #services .right-col .tab-content.tab-fly-in .tab-content-text {
    animation: none;
  }
}

body.modern-redesign .tab-content-text {
  width: min(720px, 88%);
  border-radius: 14px;
  background: rgba(248, 249, 252, 0.88);
  color: var(--ink-900);
  text-align: justify;
  line-height: 1.75;
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  box-shadow: 0 18px 40px rgba(18, 30, 45, 0.22);
}

body.modern-redesign .portfolio {
  padding-top: 4.8rem !important;
  padding-bottom: 4.8rem !important;
}

body.modern-redesign .portfolio .portfolio-container {
  border-radius: 14px;
  min-height: 220px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-card);
}

body.modern-redesign .portfolio .column-content-container {
  display: flex;
  align-items: flex-end;
  background: transparent;
  color: #fff;
  height: 100%;
  padding: 0;
}

body.modern-redesign .portfolio a:hover > .portfolio-container .column-content-container {
  display: flex;
}

body.modern-redesign .portfolio .column-content-wrapper {
  display: block;
  height: auto;
  width: 100%;
  justify-content: flex-end;
  align-items: flex-start;
  text-align: left;
  gap: 0.15rem;
  padding: 0.34rem 0.56rem 0.38rem;
  width: fit-content;
  max-width: calc(100% - 1rem);
  margin: 0 0 0.5rem 0.5rem;
  border-radius: 9px;
  background: var(--orange);
  border-top: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.28s ease, transform 0.28s ease;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85);
}

body.modern-redesign .about-us {
  background: linear-gradient(145deg, #2a3341 0%, #151b25 100%);
  display: block !important;
  position: relative;
  min-height: clamp(480px, 52vw, 720px);
  overflow: hidden;
}

body.modern-redesign .about-us .about-stage {
  position: absolute;
  inset: 0;
  background-size: cover !important;
  background-position: center top !important;
  background-repeat: no-repeat !important;
}

body.modern-redesign .about-us .left-col {
  position: absolute;
  inset: 0 auto 0 0;
  width: min(46%, 680px);
  background: transparent;
  box-shadow: none;
  display: flex;
  align-items: flex-start;
  padding: clamp(1.2rem, 2.3vw, 2rem);
  z-index: 2;
}

body.modern-redesign .about-us .column-content {
  max-width: 100%;
  width: 100%;
  background: rgba(11, 20, 32, 0.56);
  border: 1px solid rgba(189, 205, 226, 0.24);
  border-radius: 18px;
  padding: clamp(1rem, 2vw, 1.45rem);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 10px 24px rgba(6, 11, 18, 0.28);
}

body.modern-redesign .about-us .section-text {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

body.modern-redesign .about-us .section-title {
  margin-bottom: 0.45rem;
}

body.modern-redesign .about-us .py-5 {
  padding-top: 0.4rem !important;
  padding-bottom: 0 !important;
}

body.modern-redesign .about-team-module {
  margin-top: 1.25rem;
  position: static;
}

body.modern-redesign .about-team-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(248, 102, 4, 0.94), rgba(255, 157, 74, 0.94));
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 14px 28px rgba(248, 102, 4, 0.24);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

body.modern-redesign .about-team-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(248, 102, 4, 0.3);
  filter: saturate(1.06);
}

html.about-team-modal-open,
body.about-team-modal-open,
body.modern-redesign.about-team-modal-open {
  overflow: hidden;
}

body.modern-redesign .about-team-modal[hidden] {
  display: none !important;
}

body.modern-redesign .about-team-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  overflow-y: auto;
}

body.modern-redesign .about-team-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 12, 20, 0.68);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

body.modern-redesign .about-team-panel {
  position: relative;
  width: min(1320px, 98vw);
  max-height: calc(100vh - 3rem);
  overflow: auto;
  margin: 0;
  padding: 0;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transform: translateY(26px) scale(0.985);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.22s ease;
}

body.modern-redesign .about-team-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

body.modern-redesign .about-team-panel > .column-content {
  margin: 0;
  padding: clamp(0.85rem, 1.2vw, 1.1rem);
}

body.modern-redesign .about-team-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.35rem;
}

body.modern-redesign .about-team-kicker {
  font-family: "Manrope", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 176, 118, 0.92);
  margin-bottom: 0.25rem;
}

body.modern-redesign .about-team-panel h4 {
  font-family: "Teko", sans-serif;
  font-size: clamp(1.7rem, 2.4vw, 2.35rem);
  line-height: 0.98;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin: 0;
  color: #f5f7fb;
}

body.modern-redesign .about-team-close {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.65rem;
  line-height: 1;
}

body.modern-redesign .about-team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  padding-inline: 0.55rem;
  align-content: start;
}

body.modern-redesign .about-team-card {
  display: grid;
  grid-template-columns: 130px 1fr;
  grid-template-areas:
    "photo ."
    "photo name"
    "photo role"
    "photo desc"
    "photo .";
  grid-template-rows: 1fr auto auto auto 1fr;
  column-gap: 0.95rem;
  row-gap: 0.16rem;
  justify-content: center;
  align-items: start;
  align-content: stretch;
  min-height: 184px;
  padding: 0.75rem 1rem;
  border-radius: 18px;
  background: #1a2433;
  border: 1px solid rgba(141, 164, 193, 0.35);
  text-align: left;
}

body.modern-redesign .about-team-card:last-child {
  grid-column: 1 / -1;
  width: calc((100% - 0.8rem) / 2);
  max-width: none;
  justify-self: center;
}

body.modern-redesign .about-team-photo-wrap {
  grid-area: photo;
  width: 130px;
  height: 130px;
  margin: 0;
  justify-self: center;
  align-self: center;
  padding: 4px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 151, 80, 0.95), rgba(248, 102, 4, 0.95));
  transform: none;
  transform-origin: center;
}

body.modern-redesign .about-team-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

body.modern-redesign .about-team-role {
  grid-area: role;
  justify-self: start;
  text-align: left;
  font-family: "Manrope", sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffbe8e;
  margin-bottom: 0;
}

body.modern-redesign .about-team-card h5 {
  grid-area: name;
  justify-self: start;
  text-align: left;
  font-family: "Teko", sans-serif;
  font-size: clamp(1.25rem, 1.45vw, 1.55rem);
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #f8fbff;
  margin: 0 0 0.25rem;
}

body.modern-redesign .about-team-card p {
  grid-area: desc;
  justify-self: stretch;
  text-align: justify;
  max-width: none;
  width: 100%;
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: #eef4ff;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body.modern-redesign .about-us .section-text p,
body.modern-redesign .choose-lydor .section-text p {
  font-family: "Manrope", sans-serif;
  text-align: justify;
  line-height: 1.8;
  font-size: 1rem;
}

body.modern-redesign .choose-lydor {
  background: linear-gradient(120deg, var(--brand-orange-dark) 0%, var(--brand-orange) 52%, #ff9550 100%);
}

body.modern-redesign .choose-lydor .section-text h4 {
  font-size: clamp(1.7rem, 3.1vw, 2.35rem);
  line-height: 1.1;
  margin: 1.3rem 0;
}

body.modern-redesign footer.footer-bg {
  background-size: cover !important;
  background-position: center !important;
  padding: 0 0 30px;
}

body.modern-redesign footer .contact-column,
body.modern-redesign footer .footer-details-container {
  max-width: 100%;
}

body.modern-redesign footer.footer-bg.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: auto !important;
  margin-right: auto !important;
  --bs-gutter-x: 0;
}

body.modern-redesign #choose {
  display: none;
}

body.modern-redesign .contact-layout {
  width: min(1100px, 94vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: stretch;
  padding: clamp(0.85rem, 1.62vw, 1.15rem);
}

body.modern-redesign .contact-side-tile {
  background: linear-gradient(130deg, var(--brand-orange-dark) 0%, var(--brand-orange) 45%, #ff8f45 100%);
  border-radius: 18px;
  color: #fff;
  padding: clamp(0.94rem, 1.62vw, 1.36rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.76rem;
  height: 100%;
  max-width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 16px 34px rgba(11, 19, 29, 0.28);
}

body.modern-redesign #contact.contact-side-tile {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

body.modern-redesign .contact-story {
  background: rgba(8, 14, 22, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: clamp(0.76rem, 1.27vw, 1.02rem);
}

body.modern-redesign .contact-cta {
  background: rgba(12, 18, 28, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: clamp(0.76rem, 1.27vw, 1.02rem);
  font-size: 80%;
}

body.modern-redesign .contact-side-tile .section-title {
  margin: 0.8rem 0 0.25rem;
}

body.modern-redesign .contact-side-tile p {
  margin: 0;
  font-size: clamp(0.86rem, 1vw, 0.98rem);
  line-height: 1.65;
  text-align: justify;
  max-width: 84ch;
}

body.modern-redesign .contact-side-tile h4 {
  margin: 0.64rem 0 0.72rem;
  font-family: "Teko", sans-serif;
  font-size: clamp(1.35rem, 2.1vw, 2.2rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: left;
}

body.modern-redesign .contact-direct-links {
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
  margin-top: 0.42rem;
  align-items: center;
}

body.modern-redesign .contact-direct-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  color: #fff;
  text-decoration: none;
  font-family: "Manrope", sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.3;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.39rem 0.53rem;
}

body.modern-redesign .contact-direct-link:hover {
  color: #ffe0c7;
  background: rgba(255, 255, 255, 0.16);
}

body.modern-redesign .contact-direct-link iconify-icon {
  color: #fff;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

body.modern-redesign .contact-cta-text {
  margin-top: 0.3rem;
}

body.modern-redesign .contact-layout .contact-block {
  flex: initial;
  max-width: none;
  width: auto;
  display: block !important;
  justify-content: initial !important;
  padding: 0 !important;
  height: 100%;
}

body.modern-redesign footer.footer-bg > .contact-block,
body.modern-redesign footer.footer-bg > .site-footer-bottom {
  flex: 0 0 100%;
  max-width: 100%;
}

body.modern-redesign footer.footer-bg > .contact-block {
  padding: clamp(1rem, 2.7vw, 2rem) !important;
}

body.modern-redesign footer .contact-column {
  width: min(1100px, 100%);
  margin: 0 auto;
  background: rgba(18, 26, 36, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: clamp(0.8rem, 1.2vw, 1.1rem);
  min-height: 462px;
  height: 100%;
}

body.modern-redesign footer .contact-column .contact-text {
  max-width: 620px;
}

body.modern-redesign footer.footer-bg > .site-footer-bottom {
  padding: 0 !important;
}

body.modern-redesign footer .footer-details-wrapper {
  border-radius: 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(14, 20, 29, 0.96);
  padding: 1.3rem clamp(1rem, 2.7vw, 2rem) !important;
}

body.modern-redesign footer .footer-details-container {
  width: min(1100px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px minmax(220px, 1fr) minmax(260px, 1.2fr);
  grid-template-areas:
    "logo nav contact"
    "meta meta meta";
  gap: 0.8rem 1.3rem;
  align-items: start;
}

body.modern-redesign footer .footer-details-container .footer-logo {
  grid-area: logo;
  margin: 0 !important;
  justify-content: flex-start !important;
}

body.modern-redesign footer .footer-details-container .pages {
  grid-area: nav;
  margin: 0 !important;
}

body.modern-redesign footer .footer-details-container .footer-contact-list {
  grid-area: contact;
  margin: 0 !important;
  padding-top: 0;
  border-top: 0;
}

body.modern-redesign footer .footer-details-container .row.my-5 {
  grid-area: meta;
  margin: 0 !important;
  padding-top: 0.55rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

body.modern-redesign footer .footer-details-container .row {
  margin-left: 0;
  margin-right: 0;
}

body.modern-redesign footer .contact-column {
  background: rgba(20, 28, 39, 0.9);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

body.modern-redesign footer .footer-details-wrapper {
  transform: none;
  border-radius: var(--radius-lg);
  background: rgba(23, 31, 43, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.11);
}

body.modern-redesign .footer-nav-heading {
  color: rgba(235, 242, 251, 0.84);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.8rem;
  text-align: left;
}

body.modern-redesign .footer-menu {
  row-gap: 0.5rem;
  margin-bottom: 0 !important;
}

body.modern-redesign .footer-menu .menu-item {
  padding: 0;
}

body.modern-redesign .footer-menu .menu-item a {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0.82rem 0.95rem;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  color: #f7f9fd;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  transition: transform 0.28s ease, background-color 0.28s ease, border-color 0.28s ease;
}

body.modern-redesign .footer-menu .menu-item a::after {
  content: "\2197";
  font-size: 0.95rem;
  line-height: 1;
  opacity: 0.9;
}

body.modern-redesign .footer-menu .menu-item a:hover {
  background: linear-gradient(130deg, rgba(248, 102, 4, 0.92), rgba(248, 102, 4, 0.72));
  border-color: transparent;
  transform: translateY(-2px);
  color: #fff;
}

body.modern-redesign .footer-contact-list {
  margin-top: 0;
  padding-top: 0;
  row-gap: 0.4rem;
}

body.modern-redesign .footer-contact-list a {
  border-radius: 10px;
  padding: 0.55rem 0.7rem;
  transition: background-color 0.24s ease;
}

body.modern-redesign .footer-contact-list a:hover {
  background: rgba(255, 255, 255, 0.08);
}

body.modern-redesign footer input,
body.modern-redesign footer textarea,
body.modern-redesign footer button {
  border-radius: 10px;
  border: 1px solid #d5dde8;
}

body.modern-redesign footer .contact-column .section-title {
  margin-bottom: 0.7rem;
  font-size: clamp(1.35rem, 1.9vw, 1.7rem);
}

body.modern-redesign footer .contact-column .contact-text {
  font-size: clamp(0.95rem, 1.08vw, 1.08rem);
  line-height: 1.65;
  margin: 0.5rem 0 0.9rem !important;
}

body.modern-redesign footer input,
body.modern-redesign footer button {
  height: 32px;
}

body.modern-redesign footer textarea {
  height: 78px;
}

body.modern-redesign footer textarea,
body.modern-redesign footer input {
  margin-bottom: 4px;
  padding: 7px 10px;
}

body.modern-redesign footer .my-2 {
  margin: 0.35rem 0 !important;
}

body.modern-redesign footer .progress {
  width: 100%;
  margin: 0.35rem 0;
}

body.modern-redesign .contact-social-row .col-12 {
  display: flex;
  align-items: center;
  justify-content: center !important;
}

body.modern-redesign .contact-social-link {
  display: inline-flex;
  align-items: center;
  font-size: 80%;
  line-height: 1.1;
}

body.modern-redesign .contact-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  flex-shrink: 0;
  width: 16px !important;
  height: 16px !important;
}

body.modern-redesign #contact .wpcf7 form.wpcf7-form {
  display: flex;
  flex-direction: column;
  height: 100%;
}

body.modern-redesign #contact .wpcf7 form.wpcf7-form .contact-social-row:first-of-type {
  margin-top: auto !important;
}

body.modern-redesign #attach_file_btn,
body.modern-redesign footer input[type="submit"] {
  border: none;
  font-weight: 700;
  letter-spacing: 0.05em;
}

@media (max-width: 1199px) {
  body.modern-redesign #services {
    height: auto;
  }

  body.modern-redesign .tabs-container {
    grid-template-columns: 1fr;
  }

  body.modern-redesign .tab-content {
    min-height: 368px;
  }
}

@media (max-width: 991px) {
  body.modern-redesign nav.navbar {
    padding: 0.65rem 0;
  }

  body.modern-redesign .navbar-collapse {
    background: rgba(15, 21, 29, 0.98);
    margin-top: 0.7rem;
    border-radius: 14px;
    padding: 0.5rem;
  }

  body.modern-redesign .hero-container {
    margin-top: 84px !important;
  }

  body.modern-redesign .hero-banner .centered {
    left: 50%;
    top: 58%;
    transform: translate(-50%, -50%);
    width: min(900px, 92vw);
  }

  body.modern-redesign .about-us,
  body.modern-redesign .tabsection {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  body.modern-redesign .hero-banner .carousel-item > div {
    height: 65vh !important;
    min-height: 520px;
  }

  body.modern-redesign .hero-banner .title {
    font-size: clamp(2.304rem, 10.56vw, 3.36rem);
  }

  body.modern-redesign .hero-banner .subtitle {
    font-size: clamp(1.2288rem, 5.632vw, 1.792rem);
    line-height: 1;
  }

  body.modern-redesign .hero-banner .hero-rotating-tagline {
    font-size: clamp(0.82rem, 3.2vw, 0.98rem);
    line-height: 1.2;
    white-space: normal;
  }

  body.modern-redesign .hero-contact-line {
    font-size: clamp(0.9rem, 3.5vw, 1rem);
  }

  body.modern-redesign .tabs-container {
    padding: 1rem;
    gap: 0.8rem;
  }

  body.modern-redesign .column-content {
    padding: 1.2rem;
  }

  body.modern-redesign #tabs-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.45rem;
    overflow: visible;
    white-space: normal;
    padding-bottom: 0;
  }

  body.modern-redesign #tabs-nav li {
    flex: initial;
  }

  body.modern-redesign .service-tab {
    font-size: 0.8rem;
    padding: 0.62rem 0.65rem;
    width: 100%;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
  }

  body.modern-redesign .tab-content {
    min-height: 264px;
  }

  body.modern-redesign .tab-content-text {
    width: 92%;
    padding: 1rem;
    line-height: 1.55;
    font-size: 0.94rem;
  }

  body.modern-redesign .portfolio {
    padding: 2.2rem 1rem !important;
  }

  body.modern-redesign .portfolio .portfolio-container {
    min-height: 240px;
  }

  body.modern-redesign .about-us .left-col,
  body.modern-redesign .choose-lydor .custom-container {
    padding: 1.2rem !important;
  }

  body.modern-redesign .about-team-panel-head {
    flex-direction: column;
    align-items: flex-start;
  }

  body.modern-redesign .about-team-panel-actions {
    width: 100%;
    justify-content: space-between;
  }

  body.modern-redesign footer .contact-column,
  body.modern-redesign footer .footer-details-wrapper {
    border-radius: 14px;
    padding: 1.2rem !important;
  }

  body.modern-redesign .reveal,
  body.modern-redesign .reveal.reveal-left,
  body.modern-redesign .reveal.reveal-right {
    transform: translateY(20px) scale(0.99);
  }
}

/* Nuonix-style structure polish while keeping brand colors/content */
body.modern-redesign {
  --shell-width: 1240px;
  --panel-radius: 24px;
  overflow-x: hidden;
}

body.modern-redesign.splash-pending {
  overflow: hidden;
}

body.modern-redesign .splash-screen {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(248, 102, 4, 0.18), transparent 35%),
    radial-gradient(circle at 75% 75%, rgba(95, 116, 141, 0.2), transparent 40%),
    linear-gradient(150deg, #0f1622, #131c2b 58%, #0f1622);
  opacity: 1;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

body.modern-redesign.splash-done .splash-screen {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

body.modern-redesign .splash-card {
  position: relative;
  width: min(380px, 86vw);
  height: min(190px, 38vh);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
  background: rgba(17, 25, 37, 0.82);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.42);
}

body.modern-redesign .splash-logo {
  width: min(170px, 45vw);
  height: auto;
  display: block;
  animation: splash-logo-pulse 1.5s ease forwards;
}

body.modern-redesign .splash-logo-wrap {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

body.modern-redesign .splash-logo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-130%) skewX(-20deg);
  background: linear-gradient(100deg, transparent 22%, rgba(255, 255, 255, 0.82) 48%, transparent 74%);
  mix-blend-mode: screen;
  animation: splash-logo-shine 1.05s ease-out 0.22s forwards;
}

body.modern-redesign .splash-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

body.modern-redesign .splash-ring-track,
body.modern-redesign .splash-ring-progress {
  fill: none;
  stroke-width: 4;
}

body.modern-redesign .splash-ring-track {
  stroke: rgba(255, 255, 255, 0.15);
}

body.modern-redesign .splash-ring-progress {
  stroke: #f86604;
  stroke-linecap: round;
  stroke-dasharray: 928;
  stroke-dashoffset: 928;
  filter: drop-shadow(0 0 8px rgba(248, 102, 4, 0.85));
  animation: splash-load 1.5s linear forwards;
}

@keyframes splash-load {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes splash-logo-pulse {
  0% {
    transform: scale(0.92);
    opacity: 0.72;
  }
  35% {
    transform: scale(1.03);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes splash-logo-shine {
  to {
    transform: translateX(135%) skewX(-20deg);
  }
}

body.modern-redesign::before,
body.modern-redesign::after {
  content: "";
  position: fixed;
  z-index: -1;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}

body.modern-redesign::before {
  top: -140px;
  right: -140px;
  background: rgba(248, 102, 4, 0.24);
}

body.modern-redesign::after {
  bottom: -170px;
  left: -140px;
  background: rgba(57, 76, 100, 0.24);
}

body.modern-redesign nav.navbar {
  background: transparent !important;
  border: 0;
  box-shadow: none;
  padding-top: 0.9rem;
}

body.modern-redesign nav.navbar .container {
  max-width: min(var(--shell-width), 94vw);
  background: linear-gradient(140deg, rgba(31, 39, 50, 0.96), rgba(22, 27, 36, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  padding: 0.52rem 0.88rem;
  box-shadow: 0 16px 34px rgba(8, 12, 18, 0.28);
}

body.modern-redesign nav.navbar.is-scrolled .container {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 18px 42px rgba(7, 11, 16, 0.38);
}

body.modern-redesign .hero-banner {
  border-bottom-left-radius: 28px;
  border-bottom-right-radius: 28px;
  overflow: hidden;
}

body.modern-redesign .hero-container {
  margin-top: 102px !important;
}

body.modern-redesign #software,
body.modern-redesign #services,
body.modern-redesign #portfolio,
body.modern-redesign #about,
body.modern-redesign #choose,
body.modern-redesign footer.footer-bg {
  width: min(var(--shell-width), 94vw);
  margin-left: auto;
  margin-right: auto;
  border-radius: var(--panel-radius);
  overflow: hidden;
  box-shadow: 0 22px 46px rgba(12, 18, 27, 0.14);
}

body.modern-redesign #software,
body.modern-redesign #services,
body.modern-redesign #portfolio,
body.modern-redesign #about,
body.modern-redesign #choose,
body.modern-redesign footer.footer-bg {
  margin-top: clamp(18px, 3vw, 38px);
}

body.modern-redesign #software {
  background: linear-gradient(180deg, #ffffff 0%, #f5f7fb 100%);
  padding: 1.12rem 1rem !important;
  margin-top: clamp(6px, 1.2vw, 14px);
}

body.modern-redesign #services {
  background: transparent;
  padding: 0 !important;
  min-height: calc((100svh - 96px) * 0.9);
}

body.modern-redesign #services .tabs-container {
  min-height: 100%;
  padding: clamp(0.95rem, 1.8vw, 1.45rem);
}

body.modern-redesign #services .left-col .column-content {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 1.3rem;
}

body.modern-redesign #services #tabs-nav {
  gap: 0.45rem;
}

body.modern-redesign #services .service-tab {
  font-size: 0.88rem;
  padding: 0.64rem 0.9rem;
}

body.modern-redesign #services .left-col .services-side-note {
  margin-top: auto;
  padding: 0.8rem 0.82rem 0.74rem;
}

body.modern-redesign #services .left-col .services-side-note p {
  font-size: 0.84rem;
  line-height: 1.5;
}

body.modern-redesign #services .right-col .tab-content {
  min-height: clamp(320px, 44vh, 520px);
}

body.modern-redesign .tabs-container {
  padding: clamp(1rem, 2.8vw, 2.1rem);
}

body.modern-redesign .right-col {
  background: #1f2732;
}

body.modern-redesign .portfolio {
  background: linear-gradient(180deg, #f2f5f9 0%, #ecf1f7 100%);
}

body.modern-redesign .portfolio .section-title {
  margin-bottom: 0.75rem;
}

body.modern-redesign .portfolio-row {
  row-gap: 1rem;
}

body.modern-redesign #portfolio .pagination {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

body.modern-redesign #portfolio .portfolio-empty {
  width: 100%;
  text-align: center;
  padding: 2.2rem 1rem;
  border: 1px dashed rgba(53, 72, 98, 0.45);
  border-radius: 14px;
  color: #4a5f7b;
  background: rgba(255, 255, 255, 0.4);
  font-family: "Teko", sans-serif;
  letter-spacing: 0.08em;
  font-size: 2rem;
}

body.modern-redesign #portfolio .container {
  overflow: hidden;
}

body.modern-redesign #portfolio .portfolio-row.portfolio-marquee {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start !important;
  transition: transform 0.55s ease;
  will-change: transform;
}

body.modern-redesign #portfolio .portfolio-row.portfolio-marquee .portfolio-page {
  flex: 0 0 100%;
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(var(--portfolio-cols, 4), minmax(0, 1fr));
  gap: 1rem;
  padding: 0 0.5rem;
}

body.modern-redesign #portfolio .portfolio-row.portfolio-marquee .portfolio-page-item {
  margin: 0;
}

body.modern-redesign #portfolio .portfolio-row.portfolio-marquee .post-button {
  display: block;
  width: 100%;
  height: 100%;
}

body.modern-redesign #portfolio .portfolio-row.portfolio-marquee .portfolio-container {
  min-height: 0;
  aspect-ratio: 4 / 3;
  background-size: cover !important;
  background-position: center center !important;
  border-radius: 14px;
  overflow: hidden;
}

body.modern-redesign #portfolio .portfolio-row.portfolio-marquee .column-content-container {
  display: flex;
  align-items: flex-end;
  height: 100%;
}

body.modern-redesign #portfolio .pagination .page-numbers {
  border: none;
  cursor: pointer;
}

body.modern-redesign #portfolio .pagination {
  margin-top: 1.35rem;
}

body.modern-redesign .portfolio .portfolio-container {
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.42s ease;
}

body.modern-redesign .portfolio a:hover .portfolio-container {
  transform: translateY(-8px);
  border-color: var(--orange);
  box-shadow: 0 20px 38px rgba(14, 21, 32, 0.26), 0 0 0 1px rgba(248, 102, 4, 0.45), 0 0 18px rgba(248, 102, 4, 0.28);
}

body.modern-redesign .portfolio a:hover .column-content-wrapper,
body.modern-redesign .portfolio a:focus-visible .column-content-wrapper {
  opacity: 1;
  transform: translateY(0);
}

body.modern-redesign .about-us {
  min-height: clamp(480px, 52vw, 720px);
}

body.modern-redesign .about-us .about-stage {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  background-size: cover !important;
  background-position: center top !important;
  background-repeat: no-repeat !important;
}

body.modern-redesign .choose-lydor {
  position: relative;
}

body.modern-redesign .choose-lydor::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.13), transparent 46%);
  pointer-events: none;
}

body.modern-redesign footer.footer-bg {
  margin-bottom: 2rem;
}

@media (max-width: 991px) {
  body.modern-redesign .about-us .left-col {
    position: relative;
    width: 100%;
    padding: 1rem;
    inset: auto;
  }

  body.modern-redesign .about-team-toggle {
    width: 100%;
  }

  body.modern-redesign .about-team-modal {
    padding: 1rem;
  }

  body.modern-redesign .about-team-panel {
    width: 100%;
    max-height: calc(100vh - 2rem);
  }

  body.modern-redesign .about-team-grid {
    grid-template-columns: 1fr;
  }

  body.modern-redesign .about-team-card {
    grid-template-columns: 92px 1fr;
    column-gap: 0.7rem;
  }

  body.modern-redesign .about-team-card:last-child {
    grid-column: auto;
    width: auto;
    max-width: none;
    justify-self: stretch;
  }

  body.modern-redesign .about-team-photo-wrap {
    width: 92px;
    height: 92px;
  }

  body.modern-redesign .about-us .column-content {
    background: rgba(11, 20, 32, 0.64);
  }

  body.modern-redesign footer .contact-column {
    min-height: 340px;
  }

  body.modern-redesign .contact-layout {
    width: min(1100px, 100%);
    grid-template-columns: 1fr;
    justify-items: center;
  }

  body.modern-redesign .contact-layout .contact-side-tile {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  body.modern-redesign #contact.contact-side-tile {
    width: 100%;
  }

  body.modern-redesign .contact-layout .contact-side-tile {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  body.modern-redesign nav.navbar .container {
    border-radius: 14px;
    padding: 0.6rem 0.8rem;
  }

  body.modern-redesign .hero-container {
    margin-top: 88px !important;
  }

  body.modern-redesign #software,
  body.modern-redesign #services,
  body.modern-redesign #portfolio,
  body.modern-redesign #about,
  body.modern-redesign #choose,
  body.modern-redesign footer.footer-bg {
    width: min(var(--shell-width), 94vw);
    border-radius: 18px;
  }

  body.modern-redesign .about-us .about-stage {
    position: relative;
    inset: auto;
    min-height: 320px;
    height: auto;
    background-size: cover !important;
    background-position: center center !important;
  }

  body.modern-redesign .footer-nav-heading {
    text-align: center;
  }

  body.modern-redesign footer .footer-details-container {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "logo logo"
      "nav nav"
      "contact contact"
      "meta meta";
  }

  body.modern-redesign footer .footer-details-container .footer-logo {
    justify-content: center !important;
  }

  body.modern-redesign .footer-menu .menu-item a {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  body.modern-redesign .software .slick-slide {
    text-align: center;
  }

  body.modern-redesign .software .slick-slide > div {
    display: inline-block;
  }

  body.modern-redesign::before,
  body.modern-redesign::after {
    width: 280px;
    height: 280px;
    filter: blur(50px);
  }

  body.modern-redesign .hero-banner {
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
  }

  body.modern-redesign #software,
  body.modern-redesign #services,
  body.modern-redesign #portfolio,
  body.modern-redesign #about,
  body.modern-redesign #choose,
  body.modern-redesign footer.footer-bg {
    border-radius: 14px;
    margin-top: 14px;
  }

  body.modern-redesign #software {
    margin-top: 6px;
  }
}

/* Compact footer refinement */
body.modern-redesign footer .footer-details-wrapper {
  padding: 0.8rem 1rem !important;
}

body.modern-redesign footer .footer-details-container {
  grid-template-columns: auto 1fr auto;
  grid-template-areas:
    "logo nav meta";
  align-items: center;
  gap: 0.8rem;
}

body.modern-redesign footer .footer-details-container .footer-logo img {
  height: 46px;
}

body.modern-redesign .footer-nav-heading {
  display: none;
}

body.modern-redesign .footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

body.modern-redesign .footer-menu .menu-item {
  width: auto;
  max-width: none;
  flex: 0 0 auto;
}

body.modern-redesign .footer-menu .menu-item a {
  padding: 0.4rem 0.65rem;
  border: 0;
  background: transparent;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  border-radius: 8px;
}

body.modern-redesign .footer-menu .menu-item a::after {
  display: none;
}

body.modern-redesign .footer-contact-list {
  display: none;
}

body.modern-redesign footer .footer-details-container .row.my-5 {
  border-top: 0;
  padding-top: 0;
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
  align-items: center;
}

body.modern-redesign footer .footer-details-container .row.my-5 > div {
  width: auto;
  margin: 0 !important;
  font-size: 0.72rem;
  opacity: 0.9;
}

@media (max-width: 991px) {
  body.modern-redesign footer .footer-details-wrapper {
    padding: 0.9rem !important;
  }

  body.modern-redesign footer .footer-details-container {
    grid-template-columns: 1fr;
    grid-template-areas:
      "logo"
      "nav"
      "meta";
    text-align: center;
  }

  body.modern-redesign footer .footer-details-container .footer-logo,
  body.modern-redesign footer .footer-details-container .pages {
    justify-content: center !important;
  }

  body.modern-redesign .footer-menu {
    justify-content: center;
  }

  body.modern-redesign footer .footer-details-container .row.my-5 {
    justify-content: center;
  }
}

/* Visible simple footer bar */
body.modern-redesign .site-footer-bottom {
  display: none !important;
}

body.modern-redesign .simple-footer-bar {
  width: 100%;
  min-height: 68px;
  margin-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(12, 18, 26, 0.95);
  padding: 0 1rem;
  display: flex;
  align-items: center;
}

body.modern-redesign .simple-footer-inner {
  width: min(1100px, 100%);
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.75rem;
}

body.modern-redesign .simple-footer-logo img {
  height: 34px;
  width: auto;
}

body.modern-redesign .simple-footer-logo {
  justify-self: start;
}

body.modern-redesign .simple-footer-nav {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  justify-self: center;
}

body.modern-redesign .simple-footer-nav a {
  color: #f2f5fb;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  padding: 0.34rem 0.58rem;
  border-radius: 7px;
}

body.modern-redesign .simple-footer-nav a:hover {
  background: rgba(248, 102, 4, 0.85);
  color: #fff;
}

body.modern-redesign .simple-footer-copy {
  color: rgba(240, 246, 255, 0.86);
  font-size: 0.72rem;
  white-space: nowrap;
  justify-self: end;
}

@media (max-width: 991px) {
  body.modern-redesign .simple-footer-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.45rem;
  }

  body.modern-redesign .simple-footer-logo,
  body.modern-redesign .simple-footer-nav,
  body.modern-redesign .simple-footer-copy {
    justify-self: center;
    text-align: center;
  }

  body.modern-redesign .simple-footer-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  body.modern-redesign .simple-footer-copy {
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 767px) {
  body.modern-redesign .simple-footer-bar {
    padding: 0.4rem 0.65rem;
    min-height: 68px;
  }

  body.modern-redesign .simple-footer-logo img {
    height: 28px;
  }

  body.modern-redesign .simple-footer-nav a {
    font-size: 0.66rem;
    padding: 0.28rem 0.44rem;
  }

  body.modern-redesign .simple-footer-copy {
    font-size: 0.66rem;
    line-height: 1.25;
  }
}

@media (max-width: 420px) {
  body.modern-redesign #tabs-nav {
    grid-template-columns: 1fr;
  }
}

/* Typography refinement */
body.modern-redesign {
  font-size: 16px;
  line-height: 1.6;
}

body.modern-redesign p,
body.modern-redesign li,
body.modern-redesign .contact-text,
body.modern-redesign .tab-content-text {
  font-family: "Manrope", "Lato", sans-serif;
}

body.modern-redesign .hero-banner .title {
  font-size: clamp(2.4rem, 5.04vw, 4.32rem);
  line-height: 0.95;
  letter-spacing: 0.025em;
}

body.modern-redesign .hero-banner .subtitle {
  font-size: clamp(1.28rem, 2.688vw, 2.304rem);
  line-height: 1;
  white-space: nowrap;
}

body.modern-redesign .hero-banner .hero-rotating-tagline {
  font-size: clamp(0.95rem, 1.45vw, 1.2rem);
  line-height: 1.2;
}

body.modern-redesign .section-title {
  font-size: clamp(2.2rem, 3.2vw, 3rem);
  line-height: 0.98;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

body.modern-redesign .service-tab {
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

body.modern-redesign .tab-content-text {
  font-size: clamp(1.02rem, 1.55vw, 1.16rem);
  line-height: 1.7;
}

body.modern-redesign .about-us .section-text h3 {
  font-family: "Teko", sans-serif;
  font-size: clamp(2rem, 2.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

body.modern-redesign .about-us .section-text p,
body.modern-redesign .choose-lydor .section-text p,
body.modern-redesign .contact-text {
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.75;
}

body.modern-redesign .choose-lydor .section-text h4 {
  font-size: clamp(1.9rem, 3vw, 2.45rem);
  line-height: 1.08;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

body.modern-redesign .portfolio .column-content-wrapper {
  font-size: 1rem;
  line-height: 1.4;
}

body.modern-redesign .portfolio .column-content-wrapper div:first-child {
  font-weight: 700;
  color: #ffffff;
}

body.modern-redesign .portfolio .column-content-wrapper div:last-child {
  font-weight: 600;
  color: #ffffff;
}

body.modern-redesign footer input,
body.modern-redesign footer textarea,
body.modern-redesign footer input::placeholder,
body.modern-redesign footer textarea::placeholder {
  font-size: 0.95rem;
}

body.modern-redesign .simple-footer-nav a,
body.modern-redesign .navbar .nav-link,
body.modern-redesign .enquire-btn,
body.modern-redesign footer input[type="submit"],
body.modern-redesign #attach_file_btn {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.06em;
}

@media (max-width: 767px) {
  body.modern-redesign {
    font-size: 15px;
  }

  body.modern-redesign .hero-banner .title {
    font-size: clamp(2.04rem, 8.4vw, 3.12rem);
  }

  body.modern-redesign .hero-banner .subtitle {
    font-size: clamp(1.088rem, 4.48vw, 1.664rem);
    line-height: 1;
  }

  body.modern-redesign .hero-banner .hero-rotating-tagline {
    font-size: clamp(0.82rem, 3.2vw, 0.98rem);
    line-height: 1.2;
    white-space: normal;
  }

  body.modern-redesign .section-title {
    font-size: clamp(1.95rem, 9vw, 2.4rem);
  }

  body.modern-redesign .service-tab {
    font-size: 0.8rem;
  }

  body.modern-redesign .tab-content-text,
  body.modern-redesign .contact-text {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}

/* Section-to-section viewport spacing and cleaner scroll stops */
html {
  scroll-snap-type: none;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body.modern-redesign #services,
body.modern-redesign #portfolio,
body.modern-redesign #about,
body.modern-redesign footer.footer-bg {
  min-height: calc((100svh - 96px) * 0.8);
  scroll-margin-top: 96px;
}

body.modern-redesign #about {
  min-height: calc((100svh - 96px) * 0.9);
}


body.modern-redesign #contact {
  scroll-margin-top: 96px;
}

body.modern-redesign footer.footer-bg {
  min-height: calc((100svh - 96px) * 0.765);
  margin-top: clamp(18px, 3vw, 38px) !important;
}

@media (max-width: 991px) {
  html {
    scroll-padding-top: 84px;
  }

  body.modern-redesign #services,
  body.modern-redesign #portfolio,
  body.modern-redesign #about,
  body.modern-redesign footer.footer-bg {
    min-height: calc((100svh - 84px) * 0.8);
    scroll-margin-top: 84px;
  }

  body.modern-redesign #about {
    min-height: calc((100svh - 84px) * 0.9);
  }


  body.modern-redesign #contact {
    scroll-margin-top: 84px;
  }

  body.modern-redesign footer.footer-bg {
    min-height: calc((100svh - 84px) * 0.765);
    margin-top: 14px !important;
  }
}



/* Disable Slick slider and use simple flexbox */
body.modern-redesign .software-slider.slick-initialized,
body.modern-redesign .software-slider.slick-slider {
  overflow: visible !important;
  height: auto !important;
}

body.modern-redesign .software-slider .slick-list,
body.modern-redesign .software-slider .slick-track {
  transform: none !important;
  height: auto !important;
  width: auto !important;
}

body.modern-redesign .software-slider .slick-slide {
  display: inline-block !important;
  float: none !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Software logos - simple horizontal row */
body.modern-redesign .software-logos {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 2rem !important;
  width: 100% !important;
  padding: 1rem 0 !important;
}

body.modern-redesign .software-logos img {
  width: auto !important;
  height: 70px !important;
  max-width: 100% !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0 auto !important;
}

@media (max-width: 767px) {
  body.modern-redesign .software-logos {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    justify-items: center !important;
    align-items: center !important;
    gap: 0.75rem !important;
    padding: 0.75rem 0.5rem !important;
  }

  body.modern-redesign .software-logos img {
    height: 42px !important;
    width: min(100%, 142px) !important;
    max-width: 142px !important;
    transform: translateY(0) !important;
  }

  body.modern-redesign .software-logos img[alt="Tekla"],
  body.modern-redesign .software-logos img[alt="StruCad"] {
    transform: translateY(-2px) !important;
  }
}

@media (max-width: 460px) {
  body.modern-redesign .software-logos img {
    height: 36px !important;
    max-width: 124px !important;
  }
}

body.modern-redesign .software-slider.row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

body.modern-redesign .software-slider .col-12,
body.modern-redesign .software-slider .col-lg-3,
body.modern-redesign .software-slider .col-md-6 {
  flex: 0 0 auto !important;
  width: auto !important;
  max-width: none !important;
  padding: 0.5rem 0.75rem !important;
  margin: 0 !important;
}

body.modern-redesign .software-slider .col-12 img,
body.modern-redesign .software-slider img {
  width: auto !important;
  height: 52px !important;
  max-width: none !important;
  object-fit: contain !important;
  object-position: center !important;
}

@media (max-width: 767px) {
  body.modern-redesign #software {
    padding: 0.8rem 0.5rem !important;
    overflow: visible !important;
  }

  body.modern-redesign .software-slider {
    gap: 0.25rem !important;
    flex-wrap: nowrap !important;
    overflow-x: visible !important;
  }

  body.modern-redesign .software-slider .col-12,
  body.modern-redesign .software-slider .col-lg-3,
  body.modern-redesign .software-slider .col-md-6 {
    flex: 1 1 33.33% !important;
    width: 33.33% !important;
    max-width: 33.33% !important;
    padding: 0.25rem !important;
    min-width: 0 !important;
  }

  body.modern-redesign .software-slider .col-12 img,
  body.modern-redesign .software-slider img {
    height: 32px !important;
    width: auto !important;
    max-width: 100% !important;
  }
}

/* 3D Model Viewer Modal */
body.modern-redesign #model3dModal .modal-dialog {
  max-width: 90vw;
  max-height: 90vh;
}

body.modern-redesign #newsModal .modal-dialog {
  max-width: min(920px, 92vw);
}

body.modern-redesign #model3dModal .modal-content {
  height: 85vh;
  border: 2px solid var(--orange);
  border-radius: 8px;
}

body.modern-redesign #model3dModal .modal-header {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 1rem;
}

body.modern-redesign #model3dModal .modal-body {
  height: calc(85vh - 60px);
}

body.modern-redesign model-viewer {
  --poster-color: transparent;
}

body.modern-redesign model-viewer::part(default-progress-bar) {
  background-color: var(--orange);
}

body.modern-redesign #model3dModal .close:hover {
  color: var(--orange);
}

/* Portfolio clickable */
body.modern-redesign .portfolio-container {
  cursor: pointer !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

body.modern-redesign .portfolio-container:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(230, 100, 0, 0.3);
}

