body {
  background: #f3f4f6;
  min-height: 100vh;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
    Arial;
}

/* glass effect for cards / panels */
.glass {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(6px);
}

.card-shadow {
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
}

/* subtle rounded white border like screenshot */
.outer-frame {
  background: #2f2f2f;
  /* page background behind the white frame */
  padding: 22px;
}

.frame-inner {
  background: white;
  border-radius: 14px;
  padding: 18px;
}

/* layout of the cards row */
.big-card {
  flex: 2;
  transition: all 0.20s ease;
}

.small-card {
  flex: 1;
  transition: all 0.20s ease;
}

.bg-card {
  min-height: 180px;
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  position: relative;
}

/* .img-wrap {
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
} */

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.fade-out {
  opacity: 0;
}

.fade-in {
  opacity: 1;
}

/* ---------- Mobile nav styles (controlled via classes) ---------- */
.mobile-nav {
  display: flex !important;
  flex-direction: column;
  background: #ffffff;
  padding: 8px 10px;
  position: absolute;
  top: 64px;
  /* placed below header */
  right: 12px;
  z-index: 11111;
  border-radius: 8px;
  gap: 8px;
  min-width: 180px;
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transform-origin: top right;
}

/* initial hidden/visible states (animated) */
.mobile-nav.hidden {
  display: none !important;
  opacity: 0;
  transform: translateY(-6px) scale(0.99);
  transition: opacity 0.18s ease, transform 0.18s ease;
  pointer-events: none;
}

.mobile-nav.visible {
  display: flex !important;
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.18s ease, transform 0.18s ease;
  pointer-events: auto;
}

/* Small style tweaks for nav links inside mobile-nav */
.mobile-nav a,
.mobile-nav button {
  color: #0b1220;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 6px;
  text-decoration: none;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

.mobile-nav a:hover,
.mobile-nav button:hover {
  background: rgba(0, 0, 0, 0.04);
}

/* Desktop nav styles override (keeps hidden on mobile via Tailwind classes) */
nav.desktop-nav a {

  font-weight: 500;
}

/* Accessibility helper for visible focus outlines */
:focus {
  outline: 3px solid rgba(59, 130, 246, 0.18);
  outline-offset: 2px;
}

/* Responsive small tweaks to ensure cards stack on narrow screens */
/* @media (max-width: 640px) {
  #cards {
    flex-direction: column;
    height: auto !important;
  }

  .big-card,
  .small-card {
    width: 100%;
  }

  .frame-inner {
    padding: 12px;
  }

  .mobile-nav {
    right: 8px;
    left: 8px;
    top: 60px;
  }

  header {
    padding: 10px;
  }
} */








/* thin border like in the reference */
.hero-card {
  border: 4px solid rgba(0, 0, 0, 0.25);
  border-radius: 6px;
  box-shadow: 0 6px 30px rgba(2, 6, 23, 0.45) inset;
}

/* big heading split with vertical separators */
.headline {
  letter-spacing: -0.02em;
}

.divider-vert {
  display: inline-block;
  width: 2px;
  height: 1.05em;
  background: rgba(255, 255, 255, 0.22);
  margin: 0 0.9rem;
  vertical-align: middle;
  transform: translateY(-1px);
}

/* slightly muted paragraph */
.muted {
  color: rgba(255, 255, 255, 0.86)
}

.muter {
  color: rgba(255, 255, 255, 0.78)
}

/* responsive fine-tuning */
@media (min-width:1280px) {
  .headline {
    font-size: 48px
  }
}



.zigzag {
  width: 72px;
  height: 20px;
  display: inline-block
}


@media (min-width: 768px) {

  /* mimic the split-screen effect: subtle left padding and thin divider */
  .md\\:col-span-8 {
    position: relative
  }

  .md\\:col-span-4 {
    border-left: 6px solid rgba(124, 43, 214, 0.06)
  }
}

@media (max-width: 767px) {
  h2 {
    line-height: 1.05
  }
}


@media (max-width: 768px) {

  .left-box,
  .right-box {
    width: 100% !important;
  }
}






.last-line {
  display: inline-block;
  position: relative;
  padding-right: 6px;
}

.last-line .zig {
  position: absolute;
  right: 0;
  bottom: -10px;
  height: 14px;
  pointer-events: none;
  user-select: none;
}

/* Responsive font size example (optional) */
@media (max-width: 480px) {
  h1 {
    font-size: 20px;
    line-height: 1.2;
  }

  .last-line .zig {
    height: 10px;
    bottom: -7px;
  }
}















:root {
  --gap: 10px;
}

.section-wrapper {
  max-width: 100%;
}

.section-title-small {
  color: #651FFB;
  font-weight: 700;
  padding-left: 40px;
  font-size: 16px;
}

.section-title {
  font-size: 35px;
  font-weight: 600;
  color: #2d2d2d;
  padding-left: 40px;
  margin-bottom: 10px;
}

.industry-row {
  padding: 10px 60px 10px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 500;
  color: #000000;
  border-bottom: 1px solid #B694FF
}

.industry-row img {
  width: 28px;
  opacity: 0.9;
}

@media (max-width: 576px) {
  .section-title {
    font-size: 28px;
  }

  .industry-row {
    font-size: 16px;
  }

  .industry-row img {
    width: 22px;
  }
}

.process-section {
  padding: 60px 24px 80px;
  background: #ffffff;
}

.process-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.process-path {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px 48px;
  position: relative;
  z-index: 1;
}

.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
}

.process-step--right {
  text-align: left;
}

.process-badge {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: #6a1bff;
  color: #ffffff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 12px 24px rgba(106, 27, 255, 0.25);
}

.process-card {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 12px 35px rgba(148, 163, 184, 0.22);
  padding: 16px 18px;
  min-height: 110px;
  display: grid;
  align-content: center;
  gap: 6px;
  border: 1px solid rgba(229, 231, 235, 0.9);
}

.process-card h3 {
  margin: 0;
  color: #5c1adb;
  font-weight: 700;
  font-size: 16px;
}

.process-card p {
  margin: 0;
  color: #1f2937;
  font-size: 14px;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .process-path {
    display: none;
  }

  .process-step {
    grid-template-columns: auto 1fr;
  }
}














/* slide card css */

#carouselContainer {
  max-width: 100%;
  position: relative;
}

/* Viewport */
#carouselViewport {
  overflow: hidden;
  padding: 10px 40px;
}

/* Scroller / Track */
#carouselScroller {
  display: flex;
  gap: var(--gap);
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  /* fallback */
  scrollbar-width: none;
  /* firefox */
  scroll-snap-type: x mandatory;
  /* default; temporarily disabled during programmatic animation */
  scroll-padding-left: 40px;
}

/* hide scrollbar on webkit */
#carouselScroller::-webkit-scrollbar {
  display: none;
}

/* Item / Card */
.carouselItem {
  flex: 0 0 18rem;
  border-radius: 8px;
  overflow: hidden;
}



/* Arrow buttons */
.carouselButton {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform .12s ease, opacity .12s ease;
}

.carouselButton:active {
  transform: translateY(-50%) scale(.98);
}

.carouselButton[disabled] {
  opacity: .5;
  cursor: default;
}

#carouselBtnLeft {
  left: 8px;
}

#carouselBtnRight {
  right: 8px;
}

.iconChevron {
  width: 18px;
  height: 18px;
  stroke: #333;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* Responsive */
@media (max-width: 900px) {
  #carouselViewport {
    padding: 10px 20px;
  }

  .carouselItem {
    flex: 0 0 17rem;
  }
}

@media (max-width: 520px) {
  .carouselItem {
    flex: 0 0 80%;
  }

  .carouselButton {
    width: 36px;
    height: 36px;
  }
}





/* Beyond Maintenance. Toward Transformation. css */


.maintenance-section {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 2vw, 80px);
  background-color: #ffee00;
  /* fallback if gif missing */
  /* inline CSS variable can override --bg-gif */
}

/* GIF layer (cover) */
/* .maintenance-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg-gif, url('assets/gif/MaintenanceGif.gif'));
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: 0;
  will-change: transform, opacity;
} */

/* yellow overlay on top of gif to match look & improve contrast */
/* .maintenance-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 238, 0, 0.92) 0%, rgba(255, 241, 120, 0.9) 100%);
  z-index: 1;
  pointer-events: none;
} */

/* Respect user's reduced motion preference — static fallback */
/* @media (prefers-reduced-motion: reduce) {
  .maintenance-section::before {
    background-image: url('assets/gif/MaintenanceGif.gif');

    background-attachment: scroll;
  }
} */
/* MAINTENANCE SECTION */
.maintenance-section {
  position: relative;
  width: 100%;
  min-height: 420px;
  overflow: hidden;
}

/* GIF BACKGROUND */
.maintenance-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg-gif, url('assets/gif/MaintenanceGif.gif'));
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: 0;
}

/* YELLOW OVERLAY */
.maintenance-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(255, 238, 0, 0.92) 0%,
      rgba(255, 241, 120, 0.9) 100%);
  z-index: 1;
  pointer-events: none;
}

/* CONTENT */
.maintenance-content {
  position: relative;
  z-index: 2;
  padding: 60px 40px;
  max-width: 1100px;
  margin: 0 auto;
  color: #000;
}

.maintenance-content h1 {
  font-size: 32px;
  margin-bottom: 12px;
  font-weight: 700;
}

.maintenance-content p {
  font-size: 16px;
  max-width: 620px;
  line-height: 1.6;
}

/* ACCESSIBILITY: REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  .maintenance-section::before {
    background-image: url('assets/gif/MaintenanceGif.gif');
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .maintenance-content {
    padding: 40px 20px;
  }

  .maintenance-content h1 {
    font-size: 24px;
  }
}


.maintenance-section {
  position: relative;
  width: 100%;
  min-height: 420px;
  overflow: hidden;

  /* GIF BACKGROUND */
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;

  /* yellow overlay using background-blend */
  background-color: rgba(255, 238, 0, 0.92);
  background-blend-mode: multiply;
}
















/* --------------- Layout wrapper (keeps content above layers) --------------- */
.maintenance-wrapper {
  position: relative;
  z-index: 2;
  /* above gif + overlay */
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  gap: clamp(16px, 2.5vw, 40px);
  align-items: flex-start;
  padding: 0 20px;
}

/* --------------- Left text column --------------- */
.left-box {
  width: 60%;
  min-width: 260px;
}

.sub-title {
  color: #651FFB;
  font-weight: 800;
  margin: 0 0 8px 0;
  font-size: clamp(14px, 1.4vw, 18px);
  letter-spacing: 0.2px;
}

.main-heading {
  margin: 0 0 14px 0;
  font-size: clamp(24px, 3.2vw, 36px);
  line-height: 1.05;
  color: #000000;
  font-weight: 800;
}

.sub-heading {
  margin: 0 0 10px 0;
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 600;
  color: #000000;
}

.description {
  margin: 0 0 16px 0;
  color: #3E3E3E;
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.6;
}

/* --------------- Right timeline column --------------- */
.right-box {
  width: 40%;
  min-width: 240px;
}

.timeline {
  position: relative;
  padding-left: 36px;
  /* space for icons overlapping the line */
}

/* vertical connector line (visible above overlay) */
.timeline::before {
  content: "";
  position: absolute;
  left: 54px;
  top: 13px;
  bottom: 13px;
  width: 3px;
  background: #FFFFFF;
  border-radius: 2px;
  z-index: 3;
  /* put on top of overlay */
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: clamp(22px, 3.5vh, 42px);
  position: relative;
  z-index: 4;
  /* above the line & overlay */
}

/* circular icon bubble */
.icon-wrap {
  position: relative;
  width: 55px;
  height: 55px;
  min-width: 44px;

  display: grid;
  place-items: center;
  box-sizing: border-box;
  transform: translateX(-8px);
  /* overlaps the line */
  flex-shrink: 0;
}

.icon {
  width: 58%;
  height: auto;
  display: block;
}

.timeline-content h4 {
  margin: 0;
  font-size: clamp(16px, 1.6vw, 18px);
  font-weight: 600;
  color: #000000;
}

.timeline-content p {
  margin: 6px 0 0;
  font-size: clamp(13px, 1.1vw, 15px);
  color: var(--muted);
  line-height: 1.4;
}

/* dot where icon meets line */
.timeline-item::after {
  content: "";
  position: absolute;
  left: 26px;
  top: 14px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 4px rgba(107, 27, 224, 0.08);
  z-index: 2;
}

/* --------------- Responsiveness --------------- */
/* Tablet */
@media (max-width: 1024px) {
  .maintenance-wrapper {
    gap: 24px;
  }

  .left-box {
    width: 58%;
  }

  .right-box {
    width: 42%;
  }
}

/* Mobile: stack the columns, remove vertical line */
@media (max-width: 768px) {
  .maintenance-wrapper {
    flex-direction: column;
    align-items: stretch;
  }

  .left-box,
  .right-box {
    width: 100%;
  }

  .timeline {
    padding-left: 0;
    margin-top: 8px;
  }

  .timeline::before {
    display: none;
  }

  /* remove vertical line */
  .timeline-item {
    gap: 12px;
    margin-bottom: 18px;
    align-items: center;
  }

  .icon-wrap {
    transform: none;
    width: 48px;
    height: 48px;
    margin-right: 8px;
    border-width: 0px;
  }

  .timeline-item {
    display: flex;
    align-items: center;
  }

  .timeline-content h4 {
    font-size: 16px;
  }

  .timeline-content p {
    font-size: 13px;
  }

  .timeline-item::after {
    display: none;
  }

  /* hide dot on small screens */
}

/* Small phones */
@media (max-width: 420px) {
  .maintenance-section {
    padding: 22px 14px;
  }

  .main-heading {
    font-size: 22px;
    line-height: 1.08;
  }

  .sub-heading {
    font-size: 15px;
  }

  .description {
    font-size: 13px;
  }

  .icon-wrap {
    width: 42px;
    height: 42px;
  }

  .timeline-item {
    margin-bottom: 14px;
    gap: 10px;
  }
}

/* --------------- Accessibility focus --------------- */
.icon-wrap:focus {
  outline: 3px solid rgba(107, 27, 224, 0.18);
  outline-offset: 3px;
}

/* small utility: make assets non-selectable */
img {
  display: block;
  max-width: 100%;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
}






/* SECTION WRAPPER */
.contactWrapper {
  display: flex;
  justify-content: center;
  padding: 60px 10px;
}

.contactContainer {
  width: 100%;
  max-width: 800px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}


.contactLeftCol {
  flex: 1 1 480px;
  min-width: 280px;
  max-width: 400px;
}

.topTag {
  color: #6b6b6b;
  margin: 0 0 12px 0;
  font-size: 14px;
  font-weight: 500;
}

.mainHeading {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 5px 0;
  line-height: 1.1;
  color: #000000;
}

.mainDesc {
  color: #5C5C5C;
  font-size: 14px;
  font-weight: 400;
}

.subTagline {
  color: #5C5C5C;
  font-weight: 600;
  margin-bottom: 26px;
}


.contactForm {
  background: transparent;
}

.formBlock {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.inputBox,
.textBox {
  border: 0;
  padding: 5px 16px;
  border-radius: 8px;
  font-size: 14px;
  color: #888888;
  background: #F1F1F1;
  border: 0.81px solid #F5F5F5;
  outline: none;
  resize: vertical;
  min-height: 35px;
}

.textBox {
  min-height: 50px;
}

.submitBtn {
  margin-top: 8px;
  background: #772DCA;
  color: #F1F1F1;
  border: 0;
  padding: 5px 22px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  text-align: center;

}

.submitBtn:hover {
  transform: translateY(-2px);
}


.contactRightCol {
  flex: 0 0 350px;
  min-width: 300px;
  height: 470px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 30px rgba(15, 15, 15, 0.08);
  background-image: url('../assets/png/formImg.png');
  background-size: cover;
  background-position: center;
  position: relative;
}

.contactRightCol:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}


/* .infoCard {
  position: absolute;
  right: 25px;
  bottom: 18px;
  background: #fff;
  padding: 12px 14px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(12, 12, 12, 0.12);
  max-width: 85%;
  font-size: 13px;
} */
.infoCard {
  position: absolute;
  left: 50%;
  bottom: 18px;
  /* jitna bottom se gap chahiye */
  transform: translateX(-50%);

  background: #fff;
  padding: 12px 14px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(12, 12, 12, 0.12);

  max-width: 85%;
  width: 100%;
  font-size: 13px;
}




.infoCard h4 {
  margin: 0 0 6px 0;
  font-size: 13px;
  font-weight: 700;
  color: #000000;
}

.infoCard p {
  margin: 0;
  color: #616161;
  font-size: 10px;
  font-weight: 500;
}

@media (max-width:900px) {
  .contactContainer {
    gap: 28px;
  }

  .contactRightCol {
    flex-basis: 100%;
    height: 360px;
    order: 2;
  }

  .contactLeftCol {
    flex-basis: 100%;
    order: 1;
  }

  .submitBtn {
    width: 100%;

  }

  /* .infoCard {
    max-width: 90%;
    right: 12px;
    left: 12px;
  } */
}

@media (max-width:520px) {
  .contactWrapper {
    padding: 34px 12px;
  }

  .mainHeading {
    font-size: 22px;
  }

  .contactRightCol {
    height: 260px;
    border-radius: 12px;
  }

  .infoCard {
    padding: 10px;
    font-size: 12px;
  }
}


.contactLeftCol {
  flex: 1 1 480px;
  min-width: 280px;
  max-width: 400px;
}

/* Tablet & Mobile */
@media (max-width: 1024px) {

  .contactLeftCol,
  .contactRightCol {
    flex: 0 0 100%;
    max-width: 100%;
    min-width: 100%;
  }
}








/* banner css */

.contact-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 34px;
  border-radius: 22px;
  min-height: 92px;
  width: 80%;
  background-color: #772DCA;
  position: relative;
  top: 55px;
}

.contact-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-title {
  margin: 0;
  font-weight: 700;
  font-size: 20px;
  color: #F1F1F1;
  letter-spacing: -0.2px;
}




/* Social icons */
.socials {
  display: flex;
  gap: 12px;
  align-items: center;
}



/* small icon svg sizing */


/* Responsive: stack on small screens */
@media (max-width:640px) {
  .contact-banner {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 18px;
  }

  .socials {
    order: 2;
    width: 100%;
    justify-content: center;
  }

  .contact-text {
    order: 1
  }

  .contact-title {
    font-size: 18px
  }
}

/* Very small devices — center socials below */
@media (max-width:420px) {
  .socials {
    justify-content: center;
  }


}











/* footer css */



.footer {
  background: linear-gradient(90deg, #0b0b0b 0%, #2b2b2b 100%);
  /* dark gradient */
  color: #f5f5f5;
  padding: 28px 20px;
  padding-top: 80px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 8px 20px;
}

/* Logo area */
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo img {
  height: 44px;
  /* matches the reference height visually */
  width: auto;
  display: block;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand .title {
  font-weight: 700;
  letter-spacing: 0.2px;
  font-size: 16px;
}

.brand .subtitle {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 2px;
}

/* Nav links on the right */
.footer-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  opacity: 0.95;
  transition: opacity .18s ease, transform .18s ease;
}

.footer-nav a:hover {
  opacity: 1;
  transform: translateY(-2px);
}




/* Responsive behaviour */
@media (max-width: 720px) {
  .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
    gap: 18px;
    margin-top: 8px;
  }

  .logo img {
    height: 40px;
  }

  .brand .title {
    font-size: 15px
  }
}

@media (max-width: 420px) {
  .logo img {
    height: 36px;
  }

  .footer-nav a {
    font-size: 13px;
  }
}

.animated-border {
  position: relative;
  z-index: 0;
}

.animated-border::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  /* border thickness */
  border-radius: 16px;
  background: linear-gradient(120deg,
      #7b4bff,
      #4aa1ff,
      #8ddafc,
      #7b4bff);
  background-size: 300% 300%;
  animation: borderMove 4s linear infinite;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

@keyframes borderMove {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 300% 50%;
  }
}
