/* Global Nexoryx accent palette */
:root {
  --nexoryx-blue-dark: #d100ff;
  --nexoryx-blue-mid: #6f2dff;
  --nexoryx-blue-light: #1f5fff;
  --nexoryx-gradient: linear-gradient(90deg, #d100ff 0%, #6f2dff 50%, #1f5fff 100%);
  --primary: var(--nexoryx-blue-mid);
  --lime: var(--nexoryx-blue-mid);
  --lime-2: var(--nexoryx-blue-light);
}

.contact-status-message {
  display: block;
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 15px;
  line-height: 1.6;
  background: #f3f5f7;
  color: #1f2937;
  min-height: 56px;
}

.contact-status-message:empty {
  display: none;
}

.contact-status-message.is-loading {
  background: #eef4ff;
  color: #174ea6;
}

.contact-status-message.is-success {
  background: #ecfdf3;
  color: #166534;
}

.contact-status-message.is-error {
  background: #fef2f2;
  color: #b91c1c;
}

.dark .contact-status-message {
  background: #1f2937;
  color: #f9fafb;
}

.dark .contact-status-message.is-loading {
  background: #172554;
  color: #bfdbfe;
}

.dark .contact-status-message.is-success {
  background: #052e16;
  color: #bbf7d0;
}

.dark .contact-status-message.is-error {
  background: #450a0a;
  color: #fecaca;
}

.nexoryx-gradient {
  background: var(--nexoryx-gradient);
}

/* Custom tweaks for the homepage header */
.header__area-3.header__area-3--light {
  background-color: var(--white);
  border-bottom: 1px solid var(--white-2);
}

/* Dark mode header override for light-style header */
.dark .header__area-3.header__area-3--light {
  background-color: var(--black-2);
  border-bottom: 1px solid var(--black-6);
}

/* Offset fixed header so hero text isn't clipped */
.hero__area {
  padding-top: 110px;
}

/* Constrain oversized logo assets in the header */
.header__logo-2 img {
  width: 180px;
  height: auto;
}

/* Constrain oversized logo assets in the footer */
.footer__logo {
  width: 200px;
  height: auto;
  max-width: 100%;
}

.footer__logo-3 img {
  width: 200px;
  height: auto;
}

.footer__logo-3 p {
  max-width: 360px;
}

.footer__social-3 {
  display: flex;
  align-items: stretch;
}

.footer__social-3 ul {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
}

.footer__social-3 li a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  padding: 28px 40px;
  text-align: left;
}

.footer__social-3 .social-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.footer__social-3 .social-handle {
  font-size: 14px;
  color: var(--gray-2);
  text-transform: none;
  letter-spacing: 0.02em;
}

.footer__social-3 li a:hover .social-handle {
  color: var(--black-2);
}

@media only screen and (max-width: 767px) {
  .footer__social-3 li a {
    align-items: center;
    padding: 24px;
    text-align: center;
  }
}

/* Constrain oversized logo assets in the offcanvas menu */
.offcanvas__logo img {
  width: 180px;
  height: auto;
}

/* Theme toggle button in header */
.header__nav-icon-3 {
  display: flex;
  align-items: center;
  gap: 12px;
}

.theme-toggle {
  border: 1px solid var(--black-2);
  background: transparent;
  color: var(--black-2);
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.theme-toggle:hover {
  background: var(--nexoryx-gradient);
  border-color: var(--nexoryx-blue-light);
  color: var(--white);
}

.dark .theme-toggle {
  border-color: var(--white-2);
  color: var(--white);
}

.dark .theme-toggle:hover {
  background: var(--nexoryx-gradient);
  border-color: var(--nexoryx-blue-light);
  color: var(--white);
}

.logo-gradient {
  color: #7023ff;
  display: inline-block;
  position: relative;
  z-index: 2;
  isolation: isolate;
  mix-blend-mode: normal;
}

.logo-gradient .char {
  color: inherit;
}

@supports (-webkit-background-clip: text) or (background-clip: text) {
  .logo-gradient {
    background: linear-gradient(90deg, #ffffff 0%, #ffffff 100%);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }

  .logo-gradient .char {
    background: linear-gradient(90deg, #ffffff 0%, #ffffff 100%);
    background-repeat: no-repeat;
    background-size: 100vw 100%;
    background-position: left center;
    background-attachment: fixed;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
}






/* Header menu hover underline */
.header__area-3 .main-menu-3 > li > a {
  position: relative;
}

.header__area-3 .main-menu-3 > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  height: 2px;
  width: 0;
  margin: 0 auto;
  background: var(--nexoryx-gradient);
  border-radius: 999px;
  transition: width 0.25s ease;
}

.header__area-3 .main-menu-3 > li > a:hover::after,
.header__area-3 .main-menu-3 > li > a:focus-visible::after {
  width: 100%;
}

/* Header menu hover text color */
.header__area-3 .main-menu-3 > li > a:hover .menu-text,
.header__area-3 .main-menu-3 > li > a:focus-visible .menu-text {
  color: var(--nexoryx-blue-light);
  text-shadow: none;
}

.header__area-3 .main-menu-3 > li > a:hover .menu-text span,
.header__area-3 .main-menu-3 > li > a:focus-visible .menu-text span {
  background: var(--nexoryx-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* Global accent updates to remove legacy green */
.cursor1 {
  border-color: var(--nexoryx-blue-mid);
}

.cursor2 {
  background-color: var(--nexoryx-blue-light);
}

.scroll-top {
  background: var(--nexoryx-gradient);
  mix-blend-mode: normal;
}

.scroll-top i {
  color: var(--white);
}

/* Footer layout fix */
.footer__area .footer__btm {
  background-color: var(--black-2);
}

.footer__area .footer__row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.footer__area .footer__inner {
  background-color: transparent;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.footer__area .footer__top {
  text-align: center;
}

.footer__area .footer__top img {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
  margin: 0 auto;
}

/* Footer overlap fix */
.footer__area .footer__top img {
  margin-bottom: 0 !important;
  transform: none !important;
}

.footer__area .footer__btm {
  position: relative;
  z-index: 1;
}

/* ============================
   Responsive hero fixes ✅
   - Prevent header/hero overlap
   - Scale headline for small viewports
   - Stack subtitle below headline on small screens
   - Hide decorative pseudo-box on tiny screens
   ============================ */

/* Make extra space under the fixed header on smaller screens */
@media (max-width: 991px) {
  .hero__area {
    padding-top: 140px; /* increase offset so header won't overlap */
  }
  .hero__content {
    padding-top: 160px;
  }
}

/* Mobile-specific adjustments */
@media (max-width: 767px) {
  .hero__area {
    padding-top: 170px;
    padding-bottom: clamp(180px, 40vw, 320px);
  }
  /* scale the hero title fluidly and increase line-height slightly */
  .hero__title {
    font-size: clamp(28px, 8vw, 40px);
    line-height: 1.05;
    margin-top: 20px;
    word-break: break-word;
    white-space: normal;
  }

  /* ensure the title wrapper uses the full width and has safe padding */
  .hero__title-wrapper {
    max-width: 100%;
    margin-bottom: 10px;
    padding-right: 20px;
  }

  /* place subtitle below the title and remove absolute positioning */
  .hero__sub-title {
    position: static !important;
    margin-top: 12px;
    padding-top: 0;
    right: auto;
    bottom: auto;
  }

  /* hide the decorative 'Pro' box on very small screens to avoid overlap */
  .hero__title::after {
    display: none;
  }

  /* make hero images less intrusive on mobile */
  .hero__area .hero1_bg {
    opacity: 0.6;
    bottom: -20px;
  }
}

/* Mid-size screens — keep headline readable */
@media (min-width:768px) and (max-width:1199px) {
  .hero__title {
    font-size: clamp(48px, 6vw, 86px);
    line-height: 1;
  }
  .hero__title-wrapper {
    max-width: 800px;
  }
}

/* Prevent hero/background overlap on small + medium screens */
@media (min-width: 768px) and (max-width: 991px) {
  .hero__area {
    padding-bottom: clamp(140px, 25vw, 280px);
  }

  .hero__title-wrapper {
    margin-bottom: 24px;
  }

  .hero__sub-title {
    position: static !important;
    max-width: 100%;
    margin-top: 16px;
  }

  .hero__title::after {
    display: none;
  }

  .hero__area .hero1_bg {
    max-height: 60vh;
    object-fit: cover;
    opacity: 0.7;
  }
}

/* About page: flowing brand marquee */
.brand__area .brand__marquee {
  overflow: hidden;
  border-top: 1px solid var(--white-3);
  border-bottom: 1px solid var(--white-3);
}

.brand__area .brand__track {
  display: flex;
  width: max-content;
  animation: brandFlow 8s linear infinite;
}

.brand__area .brand__list--flow {
  display: flex;
  align-items: center;
  gap: 56px;
  background: transparent;
  border: none;
  margin: 0;
  padding: 28px 12px;
  flex-wrap: nowrap;
}

.brand__area .brand__list--flow .brand__item {
  flex: 0 0 auto;
  padding: 0;
  border: none;
}

.brand__area .brand__list--flow img {
  display: block;
  max-height: 64px;
  width: auto;
  opacity: 0.9;
  filter: grayscale(0.05);
  transition: opacity 0.2s ease;
}

.brand__area .brand__marquee:hover .brand__track {
  animation-play-state: paused;
}

@keyframes brandFlow {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 991px) {
  .brand__area .brand__list--flow {
    gap: 36px;
  }

  .brand__area .brand__list--flow img {
    max-height: 54px;
  }
}

@media (max-width: 575px) {
  .brand__area .brand__list--flow {
    gap: 26px;
    padding: 22px 8px;
  }

  .brand__area .brand__list--flow img {
    max-height: 46px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand__area .brand__track {
    animation: none;
  }

  .brand__area .brand__list--flow {
    flex-wrap: wrap;
    justify-content: center;
  }

  .brand__area .brand__list--flow + .brand__list--flow {
    display: none;
  }
}

/* Service 4 modern layout + animation cleanup */
.service-4-page .service-4-hero {
  position: relative;
  background:
    radial-gradient(900px circle at 15% -10%, rgba(74, 120, 214, 0.2), transparent 55%),
    radial-gradient(800px circle at 95% 0%, rgba(255, 255, 255, 0.06), transparent 45%);
}

.service-4-page .service-4-hero .row {
  align-items: flex-start;
  row-gap: 20px;
}

.service-4-page .service-4-hero .sec-title {
  margin-bottom: 8px;
}

.service-4-page .service-4-hero .sec-text {
  padding-left: 0;
  border-left: 0;
  max-width: 900px;
  margin-top: 28px;
}

.service-4-page .service-4-hero .sec-title {
  margin-bottom: 28px;
}

.service-4-page .portfolio__service .sec-title {
  max-width: 560px;
  font-size: clamp(52px, 5.9vw, 98px);
  line-height: 1.04;
  letter-spacing: 0.4px;
  text-transform: none;
  word-break: normal;
  overflow-wrap: normal;
  text-wrap: balance;
}

.service-4-page .service-4-title-line {
  display: block;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .service-4-page .service-4-title-line {
    white-space: normal;
  }
}

.service-4-page .portfolio__service .sec-text {
  background-image: none;
  padding-left: 24px;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}

.service-4-page .portfolio__service .sec-text,
.service-4-page .portfolio__service-item {
  filter: none;
}

.service-4-page .portfolio__service .sec-text p {
  padding-top: 0;
  max-width: 640px;
  font-size: 18px;
  line-height: 1.75;
}

.service-4-page .portfolio__service .sec-text strong {
  color: inherit;
  font-weight: 600;
}

.service-4-page .portfolio__service .sec-text p:first-child {
  font-size: 20px;
  line-height: 1.6;
  margin-top: 22px;
}

.service-4-page .portfolio__service .sec-text strong {
  display: inline-block;
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}

.service-4-page .portfolio__service-list .row > [class*="col-"] {
  display: flex;
}

.service-4-page .portfolio__service-list .row {
  row-gap: 24px;
}

.service-4-page .portfolio__service-item {
  height: 100%;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(6px);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-4-page .portfolio__service-item::after {
  background: rgba(0, 0, 0, 0.08);
}

.service-4-page .portfolio__service-item:hover {
  transform: translateY(-6px);
  border-color: rgba(74, 120, 214, 0.5);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.service-4-page .portfolio__service-item .ps-title {
  letter-spacing: 0.2px;
}

.service-4-page .service-4-hero .animation__char_come,
.service-4-page .service-4-hero .title-anim {
  opacity: 1 !important;
  transform: none !important;
}

.service-4-page .service-4-hero .animation__char_come .char,
.service-4-page .service-4-hero .title-anim .char {
  transform: none !important;
}

.dark .service-4-page .portfolio__service .sec-text strong {
  color: var(--white);
}

.dark .service-4-page .portfolio__service .sec-text {
  border-left-color: rgba(255, 255, 255, 0.12);
}

.dark .service-4-page .portfolio__service-item {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.dark .service-4-page .portfolio__service-item::after {
  background: rgba(255, 255, 255, 0.08);
}

.dark .service-4-page .portfolio__service-item:hover {
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

/* Light theme refinements */
body:not(.dark).service-4-page .service-4-hero {
  background:
    radial-gradient(900px circle at 10% -15%, rgba(74, 120, 214, 0.24), transparent 55%),
    radial-gradient(700px circle at 90% 0%, rgba(0, 0, 0, 0.03), transparent 50%),
    linear-gradient(180deg, #f8f9fb 0%, #ffffff 60%);
}

body:not(.dark).service-4-page .portfolio__service .sec-text {
  border-left-color: rgba(0, 0, 0, 0.12);
}

body:not(.dark).service-4-page .portfolio__service-item {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

body:not(.dark).service-4-page .portfolio__service-item::after {
  background: rgba(0, 0, 0, 0.1);
}

body:not(.dark).service-4-page .portfolio__service-item:hover {
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.12);
}

body:not(.dark).service-4-page .portfolio__service .sec-text strong {
  color: var(--black-2);
}

@media (max-width: 991px) {
  .service-4-page .portfolio__service .sec-text {
    padding-left: 0;
    border-left: 0;
  }
}

/* Service 4 card visibility + animation */
.service-4-page .portfolio__service-list .portfolio__service-item {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(56, 76, 130, 0.3);
  background: linear-gradient(165deg, rgba(11, 15, 26, 0.9), rgba(8, 11, 20, 0.78));
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  opacity: 0;
  transform: translateY(26px) scale(0.985);
}

.service-4-page .portfolio__service-list .portfolio__service-item::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(460px circle at var(--mx, 50%) var(--my, 50%), rgba(127, 176, 242, 0.18), transparent 42%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: -1;
}

.service-4-page .portfolio__service-list .portfolio__service-item:hover {
  transform: translateY(-8px);
  border-color: rgba(127, 176, 242, 0.7);
  box-shadow: 0 22px 52px rgba(20, 42, 98, 0.45);
}

.service-4-page .portfolio__service-list .portfolio__service-item:hover::before {
  opacity: 1;
}

.service-4-page .portfolio__service-list .portfolio__service-item .ps-title {
  color: #f3f7ff;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.service-4-page .portfolio__service-list .portfolio__service-item ul li {
  color: rgba(224, 233, 255, 0.9);
  font-weight: 500;
  line-height: 1.6;
}

.service-4-page .portfolio__service-list .portfolio__service-item.is-visible {
  opacity: 1;
  transform: none;
  transition-delay: var(--reveal-delay, 0ms);
}

body:not(.dark).service-4-page .portfolio__service-list .portfolio__service-item {
  border-color: rgba(50, 71, 131, 0.2);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.96), rgba(245, 250, 255, 0.92));
  box-shadow: 0 14px 38px rgba(18, 38, 84, 0.12);
}

body:not(.dark).service-4-page .portfolio__service-list .portfolio__service-item .ps-title {
  color: #17233b;
}

body:not(.dark).service-4-page .portfolio__service-list .portfolio__service-item ul li {
  color: #3f4f6e;
}

body:not(.dark).service-4-page .portfolio__service-list .portfolio__service-item:hover {
  border-color: rgba(74, 120, 214, 0.55);
  box-shadow: 0 24px 52px rgba(34, 64, 140, 0.18);
}

@media (prefers-reduced-motion: reduce) {
  .service-4-page .portfolio__service-list .portfolio__service-item {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Global responsive hardening */
html,
body {
  overflow-x: hidden;
}

img,
video,
iframe,
svg {
  max-width: 100%;
  height: auto;
}

.container,
.container-fluid {
  width: 100%;
}

.header__nav-icon-3 .mobile-menu-trigger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.header__nav-icon-3 .mobile-menu-trigger:hover {
  background: var(--nexoryx-gradient);
  border-color: var(--nexoryx-blue-light);
  color: var(--white);
}

.header__nav-icon-3 .mobile-menu-trigger img {
  width: 18px;
  height: 18px;
  margin: 0;
}

.dark .header__nav-icon-3 .mobile-menu-trigger {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 1199px) {
  .container,
  .container-fluid {
    padding-left: 20px;
    padding-right: 20px;
  }

  .header__inner-3 {
    gap: 16px;
    padding: 16px 20px;
  }

  .header__nav-icon-3 {
    gap: 10px;
  }

  .header__nav-icon-3 .mobile-menu-trigger {
    display: inline-flex;
  }

  .hero__content,
  .hero__content-6,
  .hero__content-8,
  .service__hero-right-2,
  .sec-title-wrapper,
  .about__content-wrapper,
  .workflow__wrapper-3,
  .workflow__wrapper-6,
  .footer__inner {
    min-width: 0;
  }

  .hero__title,
  .hero__title-6,
  .sec-title,
  .sec-title-2,
  .sec-title-6,
  .cta__title,
  .project-title {
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .footer__area .footer__inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 24px;
  }

  .footer__widget,
  .footer__widget-2,
  .footer__widget-3,
  .footer__widget-4,
  .footer__copyright,
  .footer__subscribe {
    grid-column: auto;
    grid-row: auto;
    margin-left: 0;
    width: 100%;
  }

  .footer__widget-4 {
    padding: 48px 32px;
  }
}

@media (max-width: 991px) {
  .container,
  .container-fluid {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero__area,
  .service__hero-2,
  .service__hero-6,
  .service__hero-8 {
    overflow: hidden;
  }

  .hero__content {
    padding-top: 110px;
  }

  .hero__title,
  .sec-title,
  .sec-title-2,
  .sec-title-6,
  .cta__title {
    font-size: clamp(34px, 6vw, 62px);
    line-height: 1.05;
  }

  .hero__title-6 {
    font-size: clamp(36px, 7vw, 72px);
    line-height: 1.04;
  }

  .service__top-text,
  .about__content,
  .sec-text,
  .sec-text p,
  .hero__sub-title,
  .nx-lead {
    max-width: 100%;
  }

  .service__list-wrapper,
  .about__content-wrapper,
  .workflow__wrapper-3,
  .workflow__wrapper-6,
  .counter__wrapper,
  .footer__inner {
    overflow: visible;
  }

  .service__hero-inner-2,
  .service__hero-left-2,
  .nx-assurance__grid,
  .nx-grid,
  .nx-grid--steps {
    min-width: 0;
  }

  .service__hero-left-2 {
    justify-content: center;
  }

  .service__hero-left-2 img {
    width: 100%;
    max-width: 240px;
  }

  .blog__item,
  .blog__item-2,
  .blog__item-3,
  .portfolio__service-item,
  .service__item-7,
  .nx-card,
  .nx-step,
  .nx-outcome {
    height: auto;
  }
}

@media (max-width: 767px) {
  .container,
  .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }

  .cursor1,
  .cursor2,
  .cursor {
    display: none !important;
  }

  .header__inner-3 {
    padding: 14px 16px;
  }

  .header__logo-2 img,
  .offcanvas__logo img {
    width: 150px;
  }

  .theme-toggle,
  .header__nav-icon-3 .mobile-menu-trigger {
    width: 40px;
    height: 40px;
  }

  .hero__content {
    padding-top: 90px;
  }

  .hero__area {
    padding-top: 140px;
  }

  .hero__title,
  .hero__title-6,
  .sec-title,
  .sec-title-2,
  .sec-title-6,
  .cta__title,
  .project-title {
    font-size: clamp(28px, 8vw, 42px);
    line-height: 1.08;
  }

  .hero__sub-title,
  .sec-text p,
  .about__content p,
  .service__top-text p,
  .nx-lead {
    font-size: 15px;
    line-height: 1.7;
  }

  .btn_wrapper,
  .service__top-btn,
  .cta__content .btn_wrapper {
    width: 100%;
  }

  .btn_wrapper .wc-btn-primary,
  .btn_wrapper .wc-btn-secondary,
  .footer__widget-4 .wc-btn-primary {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .service__hero-inner-2 {
    gap: 28px;
  }

  .service__hero-left-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-auto-rows: auto !important;
    gap: 14px !important;
  }

  .service__hero-left-2 img {
    max-width: 100% !important;
    width: 100% !important;
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }

  .service__hero-right-2 {
    max-width: 100%;
  }

  .service__hero-right-2 .title {
    font-size: clamp(34px, 10vw, 52px) !important;
  }

  .service__hero-right-2 p {
    max-width: 100% !important;
    font-size: 15px !important;
  }

  .about__mid-7 .image-1,
  .about__mid-7 .signature,
  .hero__content img,
  .service__hero-right-2 .scroll {
    display: none !important;
  }

  .video__area.about__img-2 {
    padding-bottom: 24px;
  }

  .nx-section {
    padding: 72px 0;
  }

  .nx-grid,
  .nx-grid--steps,
  .nx-assurance__grid {
    gap: 14px;
  }

  .nx-card,
  .nx-step,
  .nx-outcome {
    padding: 18px;
  }

  .nx-card[style],
  .nx-grid .nx-card[style] {
    grid-column: span 12 !important;
  }

  .blog__item,
  .blog__item-2,
  .blog__item-3 {
    margin-bottom: 28px;
  }

  .faq__list .accordion-button,
  .faq__list-3 .accordion-button,
  .faq__list-4 .accordion-button,
  .faq__list-6 .accordion-button {
    font-size: 18px;
    line-height: 1.4;
    padding-right: 56px;
  }

  .footer__area .footer__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer__widget-4 {
    padding: 28px 22px;
  }

  .footer__subscribe form {
    display: flex;
    width: 100%;
  }

  .footer__subscribe input {
    min-width: 0;
    width: 100%;
  }
}
