/* ==========================================================================
   UniSteps Consulting - Custom Styles
   ========================================================================== */

:root {
  --us-navy: #0a0f2c;
  --us-navy-2: #0d1338;
  --us-purple: #6c5ce7;
  --us-purple-2: #8e6ff0;
  --us-blue: #3b7ddd;
  --us-orange: #f5921e;
  --us-green: #27ae60;
  --us-teal: #14b8a6;
  --us-indigo: #6f52ed;
  --us-pink: #ef4d6e;
  --us-light-bg: #f6f7fb;
  --us-soft-purple-bg: #f1eefc;
  --us-text-muted: #6b7280;
  --us-radius: 16px;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "inter", sans-serif;
  color: #1a1d29;
  background-color: #ffffff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}


/* =========================================================
   NAVBAR
========================================================= */

.us-navbar {
  background: #ffffff;

  box-shadow:
    0 2px 14px rgba(0, 0, 0, 0.06);

  padding: 10px 0;

  position: sticky;
  top: 0;

  z-index: 1030;
}


/* =========================================================
   LOGO
========================================================= */

.us-navbar .navbar-brand {
  margin-right: 0;
  padding: 0;
}

.brand-logo-img {
  width: 175px;
  height: 75px;

  object-fit: contain;
  display: block;

  flex-shrink: 0;
}


/* =========================================================
   NAVIGATION
========================================================= */

.us-navbar .navbar-nav {
  gap: 4px;
}

.us-navbar .nav-link {
  position: relative;

  font-size: 16px;
  font-weight: 600;

  color: #333333;

  padding: 9px 13px !important;

  margin: 0;

  transition:
    color 0.25s ease,
    background 0.25s ease;
}


/* =========================================================
   NAV LINK HOVER LINE
========================================================= */

.us-navbar .nav-link::after {
  content: "";

  position: absolute;

  left: 13px;
  right: 13px;
  bottom: 3px;

  height: 2px;

  background: var(--us-purple);

  border-radius: 10px;

  transform: scaleX(0);

  transform-origin: center;

  transition:
    transform 0.3s ease;
}

.us-navbar .nav-link:hover::after,
.us-navbar .nav-link.active::after {
  transform: scaleX(1);
}


/* =========================================================
   ACTIVE + HOVER
========================================================= */

.us-navbar .nav-link.active,
.us-navbar .nav-link:hover {
  color: var(--us-purple);
}


/* =========================================================
   DROPDOWN ARROW
========================================================= */

.us-navbar .dropdown-toggle::after {
  margin-left: 6px;

  vertical-align: 0.15em;

  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;

  transition:
    transform 0.25s ease;
}

.us-navbar .dropdown:hover .dropdown-toggle::after {
  transform: rotate(180deg);
}


/* =========================================================
   DROPDOWN MENU
========================================================= */

.us-navbar .dropdown-menu {
  min-width: 220px;

  margin-top: 10px;

  padding: 8px;

  border: 1px solid #eef0f5;

  border-radius: 14px;

  background: #ffffff;

  box-shadow:
    0 15px 40px rgba(20, 20, 60, 0.12);

  animation:
    dropdownFade 0.22s ease;
}


/* =========================================================
   DROPDOWN ITEMS
========================================================= */

.us-navbar .dropdown-item {
  font-size: 14px;

  font-weight: 500;

  color: #333;

  padding: 10px 13px;

  border-radius: 9px;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    padding-left 0.25s ease;
}

.us-navbar .dropdown-item:hover {
  background: #f3f0ff;

  color: var(--us-purple);

  padding-left: 17px;
}


/* =========================================================
   DESKTOP DROPDOWN ON HOVER
========================================================= */

@media (min-width: 992px) {

  .us-navbar .dropdown:hover > .dropdown-menu {
    display: block;
  }

}


/* =========================================================
   DROPDOWN ANIMATION
========================================================= */

@keyframes dropdownFade {

  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}


/* =========================================================
   CONTACT BUTTON
========================================================= */

.us-btn-dark-pill {
  background: var(--us-navy);

  color: #ffffff;

  border-radius: 50px;

  padding: 10px 24px;

  font-size: 14px;

  font-weight: 600;

  border: none;

  white-space: nowrap;

  box-shadow:
    0 5px 14px rgba(16, 20, 43, 0.10);

  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.us-btn-dark-pill:hover {
  background: var(--us-purple);

  color: #ffffff;

  transform: translateY(-2px);

  box-shadow:
    0 9px 20px rgba(16, 20, 43, 0.16);
}


/* =========================================================
   MOBILE TOGGLER
========================================================= */

.us-navbar .navbar-toggler {
  border: 1px solid #e5e7ef;

  border-radius: 10px;

  padding: 7px 9px;

  box-shadow: none !important;
}

.us-navbar .navbar-toggler:focus {
  box-shadow:
    0 0 0 3px rgba(108, 92, 231, 0.12) !important;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 991px) {

  .us-navbar {
    padding: 9px 0;
  }

  .brand-logo-img {
    width: 140px;
    max-height: 52px;
  }

  .us-navbar .navbar-collapse {
    padding-top: 15px;
  }

  .us-navbar .navbar-nav {
    gap: 2px;

    align-items: stretch !important;
  }

  .us-navbar .nav-link {
    padding: 11px 5px !important;
  }

  .us-navbar .nav-link::after {
    left: 5px;
    right: auto;
    width: 25px;
  }

  .us-navbar .dropdown-menu {
    margin-top: 4px;

    border: none;

    box-shadow: none;

    background: #f8f8fc;
  }

  .us-navbar .nav-item.ms-lg-3 {
    margin-left: 0 !important;

    margin-top: 8px;
  }

  .us-btn-dark-pill {
    display: inline-flex;

    justify-content: center;

    width: fit-content;
  }

}

/* ---------------- Hero ---------------- */


.us-hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;

  background:
    radial-gradient(
      circle at 78% 48%,
      rgba(53, 93, 220, 0.22),
      transparent 28%
    ),
    radial-gradient(
      circle at 15% 80%,
      rgba(74, 52, 190, 0.12),
      transparent 25%
    ),
    linear-gradient(120deg, #020b29 0%, #03123b 52%, #020a25 100%);

  color: #fff;
}

.us-hero::before {
  content: "";

  position: absolute;
  inset: 0;

  background-image: radial-gradient(
    rgba(91, 137, 255, 0.55) 1px,
    transparent 1px
  );

  background-size: 28px 28px;

  opacity: 0.1;

  pointer-events: none;
}

.us-hero .container {
  position: relative;
  z-index: 2;
}

/* =========================================================
   LEFT SIDE
========================================================= */

.us-eyebrow {
  margin-bottom: 14px;

  color: #9b82ff;

  font-size: 15px;
  font-weight: 600;
}

.us-hero-title {
  margin-bottom: 20px;

  color: #fff;

  font-size: clamp(44px, 5vw, 65px);
  font-weight: 700;
  line-height: 1.07;

  letter-spacing: -2px;
}

.text-gradient-purple {
  background: linear-gradient(90deg, #8468ff, #b08bff, #ffffff);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.us-hero-text {
  max-width: 555px;

  margin-bottom: 30px;

  color: rgba(255, 255, 255, 0.72);

  font-size: 15px;
  line-height: 1.8;
}

/* =========================================================
   BUTTON
========================================================= */

.us-btn-gradient {
  position: relative;
  overflow: hidden;

  padding: 12px 23px;

  border: 0;
  border-radius: 30px;

  color: #fff !important;

  background: linear-gradient(100deg, #7054ff, #9574ff);

  box-shadow: 0 12px 30px rgba(106, 77, 255, 0.32);

  transition: all 0.35s ease;
}

.us-btn-gradient::after {
  content: "";

  position: absolute;

  top: 0;
  left: -120%;

  width: 80%;
  height: 100%;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.38),
    transparent
  );

  transform: skewX(-25deg);

  transition: left 0.65s ease;
}

.us-btn-gradient:hover {
  transform: translateY(-3px);

  box-shadow: 0 18px 42px rgba(106, 77, 255, 0.52);
}

.us-btn-gradient:hover::after {
  left: 140%;
}

.us-link-white {
  color: #fff;

  text-decoration: none;

  font-size: 14px;

  transition: all 0.3s ease;
}

.us-link-white:hover {
  color: #a78aff;
}

/* =========================================================
   STATS
========================================================= */

.us-mini-stat {
  display: flex;
  align-items: center;
  gap: 9px;

  min-height: 62px;

  padding: 8px 9px;

  border: 1px solid rgba(113, 147, 224, 0.22);

  border-radius: 10px;

  background: rgba(8, 27, 72, 0.5);

  backdrop-filter: blur(10px);

  transition: all 0.3s ease;
}

.us-mini-stat:hover {
  transform: translateY(-4px);

  border-color: rgba(123, 142, 255, 0.65);

  background: rgba(17, 43, 102, 0.72);

  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.us-mini-stat > i {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 33px;
  height: 33px;

  flex-shrink: 0;

  border-radius: 50%;

  color: #9eaeff;

  background: rgba(88, 105, 220, 0.17);
}

.us-mini-stat div {
  display: flex;
  flex-direction: column;
}

.us-mini-stat strong {
  color: #fff;

  font-size: 13px;

  line-height: 1.2;
}

.us-mini-stat span {
  margin-top: 3px;

  color: rgba(255, 255, 255, 0.53);

  font-size: 9px;
}

/* =========================================================
   BCSTEP PRODUCT SHOWCASE
========================================================= */

.bc-product-showcase {
  position: relative;
  width: 100%;
  max-width: 650px;
  height: 570px;
  margin-left: auto;
  isolation: isolate;
  overflow: visible;
}


/* =========================================================
   BACKGROUND GLOW
========================================================= */

.bc-showcase-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(70px);
  z-index: -1;
}

.glow-one {
  width: 330px;
  height: 330px;
  top: 110px;
  left: 160px;
  background: rgba(35, 100, 255, 0.25);
  animation: glowMove 5s ease-in-out infinite;
}

.glow-two {
  width: 220px;
  height: 150px;
  left: 215px;
  bottom: 20px;
  background: rgba(40, 110, 255, 0.18);
}

@keyframes glowMove {

  0%,
  100% {
    transform: scale(.9);
    opacity: .5;
  }

  50% {
    transform: scale(1.12);
    opacity: .9;
  }
}


/* =========================================================
   DECORATIVE GRID
========================================================= */

.bc-grid {
  position: absolute;
  inset: 20px 0;

  background-image:
    linear-gradient(
      rgba(80, 140, 255, .07) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(80, 140, 255, .07) 1px,
      transparent 1px
    );

  background-size: 30px 30px;

  mask-image:
    radial-gradient(
      circle at center,
      black 15%,
      transparent 72%
    );

  -webkit-mask-image:
    radial-gradient(
      circle at center,
      black 15%,
      transparent 72%
    );

  opacity: .65;
}


/* =========================================================
   CONNECTION SVG
========================================================= */

.bc-lines-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.bc-lines-svg line {
  stroke: rgba(73, 157, 255, .85);
  stroke-width: 1.2;
  filter: drop-shadow(0 0 4px rgba(47, 130, 255, .8));
}

.bc-lines-svg line::after {
  display: none;
}


/* =========================================================
   CENTER BCSTEP
========================================================= */

.bc-main-product {
  position: absolute;

  top: 50%;
  left: 50%;

  width: 180px;
  height: 180px;

  transform: translate(-50%, -50%);

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      #ffffff 0%,
      #ffffff 58%,
      #edf4ff 82%,
      #d8e7ff 100%
    );

  border: 5px solid rgba(255, 255, 255, .95);

  box-shadow:
    0 0 20px rgba(53, 133, 255, .95),
    0 0 45px rgba(39, 112, 255, .75),
    0 0 85px rgba(39, 112, 255, .35);

  z-index: 15;

  transition: .45s ease;
}

.bc-main-product:hover {
  transform:
    translate(-50%, -50%)
    scale(1.06);

  box-shadow:
    0 0 30px rgba(70, 150, 255, 1),
    0 0 65px rgba(40, 120, 255, .85),
    0 0 100px rgba(40, 120, 255, .45);
}


/* =========================================================
   CENTER CONTENT
========================================================= */

.bc-main-inner {
  position: relative;
  z-index: 4;
  text-align: center;
}

.bc-main-logo {
  width: 48px;
  height: 48px;

  margin: 0 auto 7px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;

  background:
    linear-gradient(
      135deg,
      #286af4,
      #704cf5
    );

  box-shadow:
    0 7px 20px rgba(45, 95, 240, .35);
}

.bc-main-logo span {
  color: white;
  font-size: 28px;
  font-weight: 800;
}

.bc-main-inner strong {
  display: block;

  color: #173d8f;

  font-size: 23px;
  font-weight: 700;

  line-height: 1;
}

.bc-main-inner small {
  display: block;

  margin-top: 7px;

  color: #6b83b2;

  font-size: 9px;
  line-height: 1.35;
}


/* =========================================================
   CENTER OUTER ORBIT
========================================================= */

.bc-main-orbit {
  position: absolute;
  inset: -20px;

  border-radius: 50%;

  border:
    1px dashed
    rgba(71, 153, 255, .6);

  box-shadow:
    0 0 20px rgba(42, 123, 255, .18);

  animation:
    mainRotate 15s linear infinite;
}

@keyframes mainRotate {

  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }

}


/* =========================================================
   CENTER PULSE
========================================================= */

.bc-main-pulse {
  position: absolute;

  inset: -7px;

  border-radius: 50%;

  border:
    1px solid
    rgba(66, 151, 255, .6);

  animation:
    mainPulse 2.4s ease-out infinite;

  pointer-events: none;
}

@keyframes mainPulse {

  0% {
    transform: scale(1);
    opacity: .9;
  }

  100% {
    transform: scale(1.38);
    opacity: 0;
  }

}


/* =========================================================
   PRODUCT CARDS
========================================================= */

.bc-product-card {
  position: absolute;

  width: 225px;
  min-height: 76px;

  padding: 10px 12px;

  display: flex;
  align-items: center;

  z-index: 20;

  border-radius: 15px;

  border:
    1px solid
    rgba(73, 142, 239, .45);

  background:
    linear-gradient(
      135deg,
      rgba(10, 38, 91, .97),
      rgba(3, 18, 52, .96)
    );

  backdrop-filter: blur(16px);

  box-shadow:
    0 15px 35px rgba(0, 0, 0, .28),
    inset 0 1px 0
    rgba(255, 255, 255, .08);

  transition:
    transform .4s cubic-bezier(.2, .8, .2, 1),
    border-color .4s ease,
    box-shadow .4s ease;
}


/* TOP SHINE */

.bc-product-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 15px;
  right: 15px;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(110, 188, 255, .95),
      transparent
    );

  opacity: .45;
}


/* HOVER GLOW */

.bc-product-card::after {
  content: "";

  position: absolute;

  inset: 0;

  border-radius: inherit;

  background:
    radial-gradient(
      circle at 0% 50%,
      rgba(60, 145, 255, .16),
      transparent 50%
    );

  opacity: 0;

  transition: .35s ease;

  pointer-events: none;
}

.bc-product-card:hover {
  transform:
    translateY(-8px)
    scale(1.04);

  border-color:
    rgba(105, 183, 255, .95);

  box-shadow:
    0 20px 45px rgba(0, 61, 180, .35),
    0 0 25px rgba(45, 133, 255, .25);
}

.bc-product-card:hover::after {
  opacity: 1;
}


/* =========================================================
   PRODUCT ICON
========================================================= */

.bc-product-icon {
  width: 45px;
  height: 45px;

  flex-shrink: 0;

  margin-right: 11px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;

  color: #fff;

  font-size: 18px;

  transition: .4s ease;
}

.bc-product-card:hover .bc-product-icon {
  transform:
    scale(1.12)
    rotate(-4deg);
}


/* ICON COLORS */

.icon-green {
  background:
    linear-gradient(
      135deg,
      #3ca72c,
      #8ddd3c
    );

  box-shadow:
    0 0 20px rgba(85, 215, 45, .4);
}

.icon-blue {
  background:
    linear-gradient(
      135deg,
      #1374ff,
      #30b1ff
    );

  box-shadow:
    0 0 20px rgba(35, 139, 255, .4);
}

.icon-orange {
  background:
    linear-gradient(
      135deg,
      #f87519,
      #ffad31
    );

  box-shadow:
    0 0 20px rgba(255, 137, 37, .4);
}

.icon-purple {
  background:
    linear-gradient(
      135deg,
      #6650ff,
      #9b79ff
    );

  box-shadow:
    0 0 20px rgba(106, 80, 255, .4);
}

.icon-indigo {
  background:
    linear-gradient(
      135deg,
      #465dff,
      #847dff
    );

  box-shadow:
    0 0 20px rgba(76, 91, 255, .4);
}

.icon-pink {
  background:
    linear-gradient(
      135deg,
      #ed317f,
      #ff65ae
    );

  box-shadow:
    0 0 20px rgba(255, 50, 133, .4);
}


/* =========================================================
   PRODUCT TEXT
========================================================= */

.bc-product-info {
  display: flex;
  flex-direction: column;

  min-width: 0;
}

.bc-product-info span {
  color:
    rgba(165, 198, 255, .65);

  font-size: 8px;

  line-height: 1;
}

.bc-product-info h6 {
  margin: 4px 0 3px;

  color: #ffffff;

  font-size: 13px;
  font-weight: 600;

  line-height: 1;
}

.bc-product-info small {
  color:
    rgba(255, 255, 255, .55);

  font-size: 8px;

  white-space: nowrap;
}


/* =========================================================
   ARROW
========================================================= */

.bc-product-arrow {
  width: 25px;
  height: 25px;

  margin-left: auto;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  color:
    rgba(255, 255, 255, .55);

  background:
    rgba(255, 255, 255, .06);

  font-size: 11px;

  transition: .35s ease;
}

.bc-product-card:hover .bc-product-arrow {
  color: #fff;

  background:
    rgba(82, 153, 255, .28);

  transform:
    translate(3px, -3px);
}


/* =========================================================
   PRODUCT POSITIONS
========================================================= */

/* Top Left */
.product-hrm {
  top: 25px;
  left: 35px;
}

/* Top Right */
.product-erp {
  top: 25px;
  right: 15px;
}

/* Middle Left */
.product-prochat {
  top: 215px;
  left: -5px;
}

/* Middle Right */
.product-task {
  top: 215px;
  right: -5px;
}

/* Bottom Left */
.product-procom {
  bottom: 35px;
  left: 35px;
}

/* Bottom Right */
.product-support {
  bottom: 35px;
  right: 15px;
}


/* =========================================================
   CENTER LARGE RING
========================================================= */

.bc-product-showcase::before {
  content: "";

  position: absolute;

  top: 50%;
  left: 50%;

  width: 395px;
  height: 395px;

  transform:
    translate(-50%, -50%);

  border:
    1px solid
    rgba(64, 137, 255, .18);

  border-radius: 50%;

  box-shadow:
    0 0 30px
    rgba(40, 117, 255, .08);

  pointer-events: none;

  z-index: 2;
}


/* =========================================================
   BOTTOM HOLOGRAPHIC PLATFORM
========================================================= */

.bc-bottom-light {
  position: absolute;

  bottom: 8px;
  left: 50%;

  width: 310px;
  height: 48px;

  transform:
    translateX(-50%);

  border-radius: 50%;

  border:
    1px solid
    rgba(54, 135, 255, .55);

  box-shadow:
    0 0 25px
    rgba(41, 123, 255, .38),

    inset 0 0 20px
    rgba(41, 123, 255, .18);

  z-index: 4;

  animation:
    platformPulse 3s ease-in-out infinite;
}

.bc-bottom-light::before {
  content: "";

  position: absolute;

  left: 50%;
  top: 9px;

  width: 195px;
  height: 26px;

  transform:
    translateX(-50%);

  border-radius: 50%;

  border:
    1px solid
    rgba(69, 154, 255, .45);

  box-shadow:
    0 0 12px
    rgba(54, 143, 255, .35);
}

.bc-bottom-light::after {
  content: "";

  position: absolute;

  left: 50%;
  top: -20px;

  width: 3px;
  height: 30px;

  transform:
    translateX(-50%);

  background:
    linear-gradient(
      transparent,
      rgba(77, 165, 255, .95),
      transparent
    );

  box-shadow:
    0 0 15px
    rgba(54, 143, 255, .9);
}

@keyframes platformPulse {

  0%,
  100% {
    opacity: .65;
    transform:
      translateX(-50%)
      scale(.97);
  }

  50% {
    opacity: 1;
    transform:
      translateX(-50%)
      scale(1.03);
  }

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1200px) {

  .bc-product-showcase {
    transform: scale(.92);
    transform-origin: center;
  }

}

@media (max-width: 991px) {

  .bc-product-showcase {
    margin: 30px auto 0;
    transform: scale(.88);
  }

}

@media (max-width: 600px) {

  .bc-product-showcase {
    height: 500px;
    transform: scale(.65);
    transform-origin: top center;
  }

}
/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {
  .bc-product-showcase {
    transform: scale(0.9);
    transform-origin: center;
  }
}

@media (max-width: 991px) {
  .us-hero {
    min-height: auto;
  }

  .us-hero-content {
    text-align: left;
  }

  .bc-product-showcase {
    margin: 20px auto 0;

    transform: scale(0.9);
    transform-origin: top center;
  }
}

@media (max-width: 767px) {
  .us-hero-title {
    font-size: 43px;
  }

  .bc-product-showcase {
    height: 570px;

    transform: scale(0.72);
    transform-origin: top center;

    margin-bottom: -120px;
  }
}

@media (max-width: 575px) {
  .us-hero-title {
    font-size: 37px;
  }

  .us-mini-stat {
    min-height: 58px;
  }

  .bc-product-showcase {
    height: 570px;

    transform: scale(0.58);
    transform-origin: top center;

    margin-bottom: -180px;
  }
}
.bc-lines-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.bc-lines-svg line {
  stroke: rgba(91, 140, 255, 0.45);
  stroke-width: 1.5;
  stroke-dasharray: 4 4;
  animation: bcLineFlow 3s linear infinite;
}

@keyframes bcLineFlow {
  to {
    stroke-dashoffset: -16;
  }
}

/* ---------------- About ---------------- */


.us-about {
  background: #fff;
  position: relative;
  overflow: hidden;
}

/* =========================================================
   ABOUT LEFT CONTENT
========================================================= */

.us-eyebrow-light {
  color: var(--us-purple);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.us-eyebrow-light::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--us-purple);
  border-radius: 10px;
}

.us-h2 {
  font-weight: 700;
  font-size: 2.1rem;
  line-height: 1.2;
  color: #10142b;
  margin-bottom: 18px;
}

.us-body-text {
 color: var(--us-text-muted);
    
    font-size: 16px;
    max-width: 560px;
    letter-spacing: 0.2px;
    font-weight: 400;
}

/* =========================================================
   STATS
========================================================= */

.us-stat-item {
  position: relative;
  padding: 12px 10px 12px 0;
  transition: transform 0.3s ease;
}

.us-stat-item:hover {
  transform: translateY(-4px);
}

.us-stat-item i {
  color: var(--us-purple);
  font-size: 25px;
  display: block;
  margin-bottom: 6px;
  transition: transform 0.3s ease;
}

.us-stat-item:hover i {
  transform: scale(1.12);
}

.us-stat-item strong {
  display: block;
    font-size: 18px;
    font-weight: 700;
    color: #10142b;
}

.us-stat-item span {
  font-size: 13px;
  color: var(--us-text-muted);
}

/* =========================================================
   DASHBOARD MAIN CARD
========================================================= */

.us-dashboard-card {
  position: relative;
  background: #fff;
  border-radius: 18px;

  box-shadow: 0 18px 45px rgba(20, 20, 60, 0.1);

  overflow: hidden;

  border: 1px solid #eef0f7;

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

/* Dashboard hover */

.us-dashboard-card:hover {
  transform: translateY(-7px);

  box-shadow: 0 25px 60px rgba(20, 20, 60, 0.15);

  border-color: rgba(108, 92, 231, 0.16);
}

/* =========================================================
   DASHBOARD TOP BAR
========================================================= */

.us-dash-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 10px 16px;

  border-bottom: 1px solid #eef0f7;

  font-size: 12px;
  font-weight: 600;

  color: #10142b;

  background: #fff;
}

.dash-logo {
  color: var(--us-purple);
}

.dash-logo i {
  margin-right: 4px;
}

.dash-title {
  color: #10142b;
}

.dash-title i {
  color: var(--us-purple);
  margin-right: 4px;
}

.us-dash-topbar .dash-icons i {
  margin-left: 10px;
  color: var(--us-text-muted);

  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.us-dash-topbar .dash-icons i:hover {
  color: var(--us-purple);
  transform: translateY(-2px);
}

/* =========================================================
   DASHBOARD BODY
========================================================= */

.us-dash-body {
  display: flex;
}

/* =========================================================
   SIDEBAR
========================================================= */

.us-dash-sidebar {
  width: 130px;

  background: #10142b;
  color: #cfd2e6;

  font-size: 11px;

  flex-shrink: 0;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.us-dash-sidebar ul {
  padding: 10px 0;
  margin: 0;
  list-style: none;
}

.us-dash-sidebar li {
  padding: 9px 14px;

  display: flex;
  align-items: center;
  gap: 8px;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    padding-left 0.25s ease;
}

.us-dash-sidebar li:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  padding-left: 18px;
}

.us-dash-sidebar li.active {
  background: var(--us-purple);
  color: #fff;
}

/* =========================================================
   UPGRADE BOX
========================================================= */

.dash-upgrade {
  background: rgba(255, 255, 255, 0.06);

  margin: 10px;
  padding: 10px;

  border-radius: 8px;

  text-align: center;
}

.dash-upgrade p {
  font-size: 10px;
  margin-bottom: 6px;
}

.dash-upgrade button {
  background: var(--us-purple);
  color: #fff;

  border: none;
  border-radius: 20px;

  font-size: 10px;
  padding: 4px 10px;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.dash-upgrade button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(108, 92, 231, 0.3);
}

/* =========================================================
   DASHBOARD MAIN AREA
========================================================= */

.us-dash-main {
  flex: 1;

  padding: 14px;

  background: #f8f9fc;

  font-size: 11px;

  overflow-x: auto;
}

/* =========================================================
   KPI CARDS
========================================================= */

.dash-kpis {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.kpi {
  flex: 1;

  min-width: 90px;

  background: #fff;

  border-radius: 8px;

  padding: 8px 10px;

  display: flex;
  flex-direction: column;

  gap: 2px;

  border: 1px solid #eef0f7;

  position: relative;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.kpi:hover {
  transform: translateY(-3px);

  border-color: rgba(108, 92, 231, 0.15);

  box-shadow: 0 7px 18px rgba(20, 20, 60, 0.08);
}

.kpi i {
  font-size: 14px;
}

.kpi span {
  font-weight: 700;
  font-size: 14px;
}

.kpi small {
  font-weight: 400;
  color: var(--us-text-muted);
  font-size: 9px;
}

.kpi em {
  position: absolute;

  top: 8px;
  right: 8px;

  font-style: normal;

  color: var(--us-green);

  font-size: 9px;
}

/* =========================================================
   DASHBOARD PANELS
========================================================= */

.dash-panel {
  background: #fff;

  border-radius: 8px;

  padding: 10px 12px;

  border: 1px solid #eef0f7;

  height: 100%;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.dash-panel:hover {
  transform: translateY(-2px);

  border-color: rgba(108, 92, 231, 0.12);

  box-shadow: 0 8px 20px rgba(20, 20, 60, 0.06);
}

.panel-title {
  font-weight: 600;
  font-size: 11px;
  margin-bottom: 8px;
  color: #10142b;
}

/* =========================================================
   LINE CHART
========================================================= */

.fake-line-chart {
  height: 70px;

  border-radius: 6px;

  background: linear-gradient(
    180deg,
    rgba(108, 92, 231, 0.25),
    rgba(108, 92, 231, 0)
  );

  position: relative;
}

.fake-line-chart::after {
  content: "";

  position: absolute;

  left: 0;
  right: 0;

  top: 30%;

  height: 2px;

  background: repeating-linear-gradient(
    90deg,
    var(--us-purple) 0 10px,
    transparent 10px 14px
  );
}

.chart-x-labels {
  display: flex;
  justify-content: space-between;

  font-size: 8px;

  color: var(--us-text-muted);

  margin-top: 4px;
}

/* =========================================================
   DONUT CHART
========================================================= */

.donut-chart {
  width: 80px;
  height: 80px;

  border-radius: 50%;

  margin: 0 auto;

  background: conic-gradient(var(--us-purple) 0% 86%, #e6e6f0 86% 100%);

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 700;
  font-size: 13px;

  color: #10142b;

  position: relative;

  z-index: 0;

  transition: transform 0.35s ease;
}

.dash-panel:hover .donut-chart {
  transform: scale(1.05);
}

.donut-chart::before {
  content: "";

  position: absolute;

  width: 55px;
  height: 55px;

  background: #fff;

  border-radius: 50%;
}

/* =========================================================
   TABLE
========================================================= */

.dash-table {
  font-size: 9.5px;
}

.dash-table th {
  color: var(--us-text-muted);

  font-weight: 600;

  border-bottom: 1px solid #eef0f7;
}

.dash-table td {
  border-bottom: 1px solid #f3f4f9;

  vertical-align: middle;

  padding: 6px 4px;
}

/* =========================================================
   STATUS BADGES
========================================================= */

.badge-status {
  padding: 2px 8px;

  border-radius: 10px;

  font-size: 8.5px;

  font-weight: 600;

  transition: transform 0.2s ease;
}

.badge-status:hover {
  transform: scale(1.05);
}

.badge-status.progress {
  background: #fff2d9;
  color: #b9820a;
}

.badge-status.completed {
  background: #d9f7e6;
  color: #17a35a;
}

.badge-status.review {
  background: #e2e6ff;
  color: #4b5ee8;
}

.badge-status.pending {
  background: #fde2e2;
  color: #d84343;
}

/* =========================================================
   ACTIVITY
========================================================= */

.dash-activity {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.dash-activity li {
  display: flex;

  align-items: flex-start;

  gap: 6px;

  font-size: 10px;

  margin-bottom: 8px;

  transition: transform 0.25s ease;
}

.dash-activity li:hover {
  transform: translateX(3px);
}

.dash-activity li span {
  display: block;

  color: var(--us-text-muted);

  font-size: 9px;
}

.view-all {
  font-size: 10px;

  color: var(--us-purple);

  font-weight: 600;

  text-decoration: none;

  transition: opacity 0.2s ease;
}

.view-all:hover {
  opacity: 0.7;
}

/* =========================================================
   MINI BARS
========================================================= */

.mini-bars {
  display: flex;

  align-items: flex-end;

  gap: 8px;

  height: 45px;

  margin-top: 6px;
}

.mini-bars span {
  width: 14px;

  background: var(--us-purple);

  border-radius: 3px 3px 0 0;

  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.mini-bars span:hover {
  opacity: 0.75;
  transform: translateY(-3px);
}

.mini-bar-labels {
  display: flex;

  gap: 14px;

  font-size: 8px;

  color: var(--us-text-muted);

  margin-top: 4px;
}

/* =========================================================
   ABOUT BUTTON
========================================================= */

.us-about .us-btn-dark-pill {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.us-about .us-btn-dark-pill:hover {
  transform: translateY(-3px);

  box-shadow: 0 8px 20px rgba(16, 20, 43, 0.18);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {
  .us-h2 {
    font-size: 1.9rem;
  }

  .us-dashboard-card {
    margin-top: 10px;
  }
}

@media (max-width: 767px) {
  .us-h2 {
    font-size: 1.7rem;
  }

  .us-body-text {
    font-size: 14px;
  }

  .us-dashboard-card {
    border-radius: 14px;
  }

  .us-dash-sidebar {
    width: 105px;
  }

  .us-dash-sidebar li {
    padding: 8px 10px;
    font-size: 10px;
  }

  .us-dash-main {
    padding: 10px;
  }

  .dash-kpis {
    gap: 6px;
  }

  .kpi {
    min-width: 80px;
  }
}

@media (max-width: 575px) {
  .us-dash-topbar {
    padding: 9px 10px;
  }

  .dash-title {
    display: none;
  }

  .us-dash-sidebar {
    width: 90px;
  }

  .us-dash-sidebar li {
    font-size: 9px;
    gap: 5px;
  }
}

/* ---------------- Services ---------------- */



/* =========================================================
   SERVICES SECTION
========================================================= */

.us-services {
  background: var(--us-soft-purple-bg);
}


/* =========================================================
   SECTION EYEBROW
========================================================= */

.us-eyebrow-light {
  color: var(--us-indigo);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 10px;

  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.us-eyebrow-light::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--us-indigo);
  display: inline-block;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.us-h2 {
  font-size: clamp(1.7rem, 2.6vw, 2rem);
    font-weight: 600;
    color: var(--us-ink);
    
    line-height: 1.5;
    max-width: 560px;
    letter-spacing: 0.3px;
}


/* =========================================================
   SERVICE CARD
========================================================= */

.us-service-card {
  position: relative;

  width: 100%;
  height: 100%;
  min-height: 285px;

  padding: 30px 26px;

  border-radius: var(--us-radius);

  border: 1px solid rgba(20, 20, 60, 0.05);

  overflow: hidden;
  isolation: isolate;

  cursor: pointer;

  opacity: 0;

  transform:
    translateY(65px)
    scale(0.97);

  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease,
    border-color 0.35s ease;
}


/* =========================================================
   ORIGINAL CARD COLORS
========================================================= */

.us-service-card.accent-orange {
  --accent: #f39a3f;
  --accent-soft: #fdeee0;
  --accent-shadow: rgba(243, 154, 63, 0.30);

  background: #fdeee0;
}

.us-service-card.accent-blue {
  --accent: #4f83e1;
  --accent-soft: #e4edfc;
  --accent-shadow: rgba(79, 131, 225, 0.32);

  background: #e4edfc;
}

.us-service-card.accent-green {
  --accent: #35a86b;
  --accent-soft: #e1f7ea;
  --accent-shadow: rgba(53, 168, 107, 0.30);

  background: #e1f7ea;
}

.us-service-card.accent-teal {
  --accent: #36beae;
  --accent-soft: #dcf7f3;
  --accent-shadow: rgba(54, 190, 174, 0.30);

  background: #dcf7f3;
}

.us-service-card.accent-indigo {
  --accent: #6c5ce7;
  --accent-soft: #eae5fd;
  --accent-shadow: rgba(108, 92, 231, 0.30);

  background: #eae5fd;
}

.us-service-card.accent-pink {
  --accent: #e75b82;
  --accent-soft: #fde3e9;
  --accent-shadow: rgba(231, 91, 130, 0.30);

  background: #fde3e9;
}


/* =========================================================
   SCROLL ANIMATION ACTIVE
========================================================= */

.us-service-card.service-visible {
  opacity: 1;

  transform:
    translateY(0)
    scale(1);
}


/* =========================================================
   STAGGER ANIMATION
========================================================= */

.us-services .row > div:nth-child(1) .us-service-card {
  transition-delay: 0.05s;
}

.us-services .row > div:nth-child(2) .us-service-card {
  transition-delay: 0.18s;
}

.us-services .row > div:nth-child(3) .us-service-card {
  transition-delay: 0.31s;
}


/* =========================================================
   SOFT COLOR SCREEN
   IMPORTANT:
   BLACK SCREEN NAHI.
   CARD CHA SAME COLOR USE HOT AHE.
========================================================= */

.us-service-card::before {
  content: "";

  position: absolute;
  inset: 0;

  border-radius: inherit;

  /*
     SAME CARD COLOR
     but transparent + soft
  */
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(255, 255, 255, 0.28),
      transparent 35%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(255, 255, 255, 0.18),
      transparent 38%
    ),
    linear-gradient(
      145deg,
      color-mix(
        in srgb,
        var(--accent) 78%,
        #ffffff
      ) 0%,
      color-mix(
        in srgb,
        var(--accent) 68%,
        #ffffff
      ) 50%,
      color-mix(
        in srgb,
        var(--accent) 82%,
        #ffffff
      ) 100%
    );

  /*
     SCREEN STARTS FROM BOTTOM
  */
  transform: translateY(101%);

  opacity: 0;

  z-index: 4;

  pointer-events: none;

  /*
     SOFT BLUR / GLASS EFFECT
  */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  transition:
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.4s ease;
}


/* =========================================================
   COLOR SCREEN REVEAL
========================================================= */

.us-service-card:hover::before {
  transform: translateY(0);
  opacity: 1;
}


/* =========================================================
   SOFT LIGHT GLOW
========================================================= */

.us-service-card::after {
  content: "";

  position: absolute;

  left: 10%;
  right: 10%;

  bottom: -42px;

  height: 70px;

  background: var(--accent);

  border-radius: 50%;

  filter: blur(28px);

  opacity: 0;

  z-index: 3;

  pointer-events: none;

  transition:
    opacity 0.5s ease,
    transform 0.6s ease;
}


/* =========================================================
   HOVER CARD
========================================================= */

.us-service-card:hover {
  transform:
    translateY(-10px)
    scale(1.015) !important;

  border-color: var(--accent);

  box-shadow:
    0 18px 35px rgba(20, 30, 60, 0.12),
    0 28px 55px rgba(20, 30, 60, 0.10),
    0 18px 40px var(--accent-shadow);
}


/* =========================================================
   GLOW ON HOVER
========================================================= */

.us-service-card:hover::after {
  opacity: 0.55;

  transform: translateY(8px);
}


/* =========================================================
   CONTENT ABOVE COLOR SCREEN
========================================================= */

.us-service-card > * {
  position: relative;
  z-index: 10;
}


/* =========================================================
   ICON
========================================================= */

.service-icon {
  position: relative;
  z-index: 10;

  width: 50px;
  height: 50px;

  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 18px;

  overflow: hidden;
  flex-shrink: 0;

  background: #ffffff !important;

  box-shadow:
    0 4px 12px rgba(20, 20, 60, 0.08);

  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.35s ease,
    box-shadow 0.35s ease;
}


/* =========================================================
   ICON IMAGE
========================================================= */

.service-icon img {
  width: 30px;
  height: 30px;

  max-width: 30px;
  max-height: 30px;

  object-fit: contain;

  display: block;

  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.35s ease;
}


/* =========================================================
   ICON HOVER
========================================================= */

.us-service-card:hover .service-icon {
  transform:
    translateY(-7px)
    scale(1.08);

  background: rgba(255, 255, 255, 0.92) !important;

  box-shadow:
    0 10px 24px rgba(30, 50, 90, 0.15),
    0 0 20px rgba(255, 255, 255, 0.30);
}


.us-service-card:hover .service-icon img {
  transform: scale(1.12);
}


/* =========================================================
   CARD TITLE
========================================================= */

.us-service-card h5 {
  position: relative;
  z-index: 10;

  font-weight: 700;

  margin-bottom: 10px;

  color: var(--us-ink);

  transition:
    color 0.4s ease,
    transform 0.4s ease;
}


/* =========================================================
   TITLE HOVER
========================================================= */

.us-service-card:hover h5 {
  color: #ffffff;

  transform: translateY(-4px);
}


/* =========================================================
   CARD PARAGRAPH
========================================================= */

.us-service-card p {
  position: relative;
  z-index: 10;

  color: var(--us-text-muted);

  font-size: 14px;
  line-height: 1.65;

  margin-bottom: 16px;

  max-width: 100%;

  transition:
    color 0.4s ease,
    transform 0.4s ease;
}


/* =========================================================
   PARAGRAPH HOVER
========================================================= */

.us-service-card:hover p {
  color: rgba(255, 255, 255, 0.88);

  transform: translateY(-4px);
}


/* =========================================================
   READ MORE
========================================================= */

.us-service-card .read-more {
  position: relative;
  z-index: 12;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 7px;

  margin-top: 8px;

  padding: 9px 18px;

  border-radius: 50px;

  text-decoration: none;

  font-size: 12px;
  font-weight: 700;

  border: 1px solid currentColor;

  transition:
    background 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease,
    transform 0.4s ease,
    box-shadow 0.35s ease,
    gap 0.3s ease;
}


/* =========================================================
   READ MORE HOVER
========================================================= */

.us-service-card:hover .read-more {
  color: var(--accent) !important;

  background: #ffffff;

  border-color: #ffffff;

  transform: translateY(-5px);

  gap: 10px;

  box-shadow:
    0 8px 22px rgba(30, 50, 90, 0.16);
}


/* =========================================================
   ARROW
========================================================= */

.us-service-card .read-more i {
  transition:
    transform 0.3s ease;
}

.us-service-card:hover .read-more i {
  transform: translateX(4px);
}


/* =========================================================
   TEXT COLORS
========================================================= */

.text-orange {
  color: var(--us-orange) !important;
}

.text-blue {
  color: var(--us-blue) !important;
}

.text-green {
  color: var(--us-green) !important;
}

.text-teal {
  color: var(--us-teal) !important;
}

.text-indigo {
  color: var(--us-indigo) !important;
}

.text-pink {
  color: var(--us-pink) !important;
}

.text-purple {
  color: var(--us-purple) !important;
}


/* =========================================================
   ICON BACKGROUNDS
========================================================= */

.bg-orange-soft {
  background: #fdeee0;
}

.bg-blue-soft {
  background: #e4edfc;
}

.bg-green-soft {
  background: #e1f7ea;
}

.bg-teal-soft {
  background: #dcf7f3;
}

.bg-indigo-soft {
  background: #eae5fd;
}

.bg-pink-soft {
  background: #fde3e9;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

  .us-service-card {
    padding: 24px 22px;
    min-height: 250px;
  }

}


@media (max-width: 767px) {

  .us-service-card {
    min-height: auto;
    padding: 24px 22px;
  }

  .service-icon {
    width: 50px;
    height: 50px;
  }

  .service-icon img {
    width: 28px;
    height: 28px;
  }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .us-service-card {
    opacity: 1;

    transform: none;

    transition: none;
  }

  .us-service-card.service-visible {
    transform: none;
  }

}

/* ---------------- Products ---------------- */



.us-products {
  position: relative;
}


/* =========================================================
   PRODUCT CARD
========================================================= */

.us-product-card {
  position: relative;

  background: #fff;

  border: 1px solid #eef0f7;
  border-radius: var(--us-radius);

  padding: 30px 26px;

  height: 100%;

  box-shadow: 0 10px 30px rgba(20, 20, 60, 0.05);

  overflow: hidden;

  /* ==============================
     SCROLL REVEAL INITIAL STATE
  ============================== */

  opacity: 0;

  transform:
    translateY(65px)
    scale(0.96);

  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;

  will-change: transform, opacity;
}


/* =========================================================
   SCROLL REVEAL ACTIVE
========================================================= */

.us-product-card.product-visible {
  opacity: 1;

  transform:
    translateY(0)
    scale(1);
}


/* =========================================================
   STAGGER EFFECT
========================================================= */

.us-products .row > div:nth-child(1) .us-product-card {
  transition-delay: 0.05s;
}

.us-products .row > div:nth-child(2) .us-product-card {
  transition-delay: 0.15s;
}

.us-products .row > div:nth-child(3) .us-product-card {
  transition-delay: 0.25s;
}

.us-products .row > div:nth-child(4) .us-product-card {
  transition-delay: 0.35s;
}

.us-products .row > div:nth-child(5) .us-product-card {
  transition-delay: 0.45s;
}

.us-products .row > div:nth-child(6) .us-product-card {
  transition-delay: 0.55s;
}


/* =========================================================
   CARD CHILDREN
========================================================= */

.us-product-card > * {
  position: relative;
  z-index: 2;
}


/* =========================================================
   TOP ACCENT BAR
========================================================= */

.us-product-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;
  right: 0;

  height: 4px;

  background: var(--accent, var(--us-orange));

  z-index: 3;

  transform: scaleX(0.35);
  transform-origin: left;

  transition:
    transform 0.45s ease;
}


/* =========================================================
   SOFT GRADIENT WASH
========================================================= */

.us-product-card::after {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 35%,
    var(--tint, transparent) 150%
  );

  opacity: 0;

  transition:
    opacity 0.4s ease;

  pointer-events: none;

  z-index: 0;
}


/* =========================================================
   PRODUCT COLORS
========================================================= */

.us-product-card.border-green {
  --accent: var(--us-green);
  --tint: #e1f7ea;
}

.us-product-card.border-blue {
  --accent: var(--us-blue);
  --tint: #e4edfc;
}

.us-product-card.border-orange {
  --accent: var(--us-orange);
  --tint: #fdeee0;
}

.us-product-card.border-teal {
  --accent: var(--us-teal);
  --tint: #dcf7f3;
}

.us-product-card.border-indigo {
  --accent: var(--us-indigo);
  --tint: #eae5fd;
}

.us-product-card.border-pink {
  --accent: var(--us-pink);
  --tint: #fde3e9;
}


/* =========================================================
   HOVER CARD
========================================================= */

.us-product-card:hover {
  transform:
    translateY(-9px)
    scale(1.01) !important;

  border-color: var(--accent, var(--us-orange));

  box-shadow:
    0 22px 46px rgba(20, 20, 60, 0.14),
    0 8px 20px rgba(20, 20, 60, 0.05);
}


/* Accent bar animation */

.us-product-card:hover::before {
  transform: scaleX(1);
}


/* Gradient animation */

.us-product-card:hover::after {
  opacity: 1;
}


/* =========================================================
   ICON BADGE
========================================================= */

.product-icon1 {
  width: 64px;
  height: 64px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 16px;

  background: #fff;

  border: 2px solid var(--accent, var(--us-orange));

  box-shadow:
    0 6px 16px rgba(20, 20, 60, 0.08);

  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease,
    background 0.35s ease;
}


/* =========================================================
   PRODUCT ICON IMAGE
========================================================= */

.product-icon1 img {
  width: 30px;
  height: 30px;

  max-width: 30px;
  max-height: 30px;

  object-fit: contain;

  display: block;

  transition:
    transform 0.4s ease;
}


/* =========================================================
   ICON HOVER
========================================================= */

.us-product-card:hover .product-icon1 {
  transform:
    scale(1.09)
    rotate(-6deg);

  box-shadow:
    0 12px 24px rgba(20, 20, 60, 0.14);
}

.us-product-card:hover .product-icon1 img {
  transform:
    scale(1.12);
}


/* =========================================================
   PRODUCT-SPECIFIC ICON SHADOWS
========================================================= */

.us-product-card.border-green:hover .product-icon1 {
  box-shadow:
    0 10px 24px rgba(31, 164, 99, 0.30);
}

.us-product-card.border-blue:hover .product-icon1 {
  box-shadow:
    0 10px 24px rgba(61, 124, 255, 0.30);
}

.us-product-card.border-orange:hover .product-icon1 {
  box-shadow:
    0 10px 24px rgba(234, 122, 44, 0.30);
}

.us-product-card.border-teal:hover .product-icon1 {
  box-shadow:
    0 10px 24px rgba(29, 174, 156, 0.30);
}

.us-product-card.border-indigo:hover .product-icon1 {
  box-shadow:
    0 10px 24px rgba(108, 92, 231, 0.30);
}

.us-product-card.border-pink:hover .product-icon1 {
  box-shadow:
    0 10px 24px rgba(232, 67, 147, 0.30);
}


/* =========================================================
   PRODUCT TITLE
========================================================= */

.us-product-card h5 {
  font-weight: 700;

  margin-bottom: 2px;

  color: var(--us-ink);

  transition:
    transform 0.3s ease,
    color 0.3s ease;
}


/* Slight title movement */

.us-product-card:hover h5 {
  transform: translateX(2px);
}


/* =========================================================
   PRODUCT DESCRIPTION
========================================================= */

.us-product-card p {
  transition:
    transform 0.3s ease;
}

.us-product-card:hover p {
  transform: translateX(2px);
}


/* =========================================================
   PRODUCT LIST
========================================================= */

.us-product-card ul {
  list-style: none;

  margin: 14px 0 20px;

  padding-left: 0;
}


/* =========================================================
   LIST ITEMS
========================================================= */

.us-product-card ul li {
  font-size: 13.5px;

  color: #3c3f52;

  padding-left: 16px;

  position: relative;

  margin-bottom: 6px;

  transition:
    transform 0.3s ease,
    color 0.3s ease;
}


/* Bullet */

.us-product-card ul li::before {
  content: "•";

  position: absolute;

  left: 0;

  color: var(--accent, var(--us-orange));

  font-size: 18px;

  line-height: 1;

  transition:
    transform 0.3s ease;
}


/* =========================================================
   LIST HOVER
========================================================= */

.us-product-card:hover ul li {
  transform: translateX(4px);
}

.us-product-card:hover ul li::before {
  transform:
    scale(1.25);
}


/* Individual stagger */

.us-product-card:hover ul li:nth-child(1) {
  transition-delay: 0.02s;
}

.us-product-card:hover ul li:nth-child(2) {
  transition-delay: 0.05s;
}

.us-product-card:hover ul li:nth-child(3) {
  transition-delay: 0.08s;
}

.us-product-card:hover ul li:nth-child(4) {
  transition-delay: 0.11s;
}


/* =========================================================
   EXPLORE BUTTON
========================================================= */

.btn-sm-pill {
  padding: 8px 18px;

  font-size: 13px;

  font-weight: 600;

  border-radius: 50px;

  background: transparent;

  display: inline-flex;

  align-items: center;

  gap: 6px;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease,
    gap 0.3s ease;
}


/* Arrow */

.btn-sm-pill i {
  transition:
    transform 0.3s ease;
}


/* =========================================================
   BUTTON HOVER
========================================================= */

.btn-sm-pill:hover {
  transform:
    translateY(-2px);

  box-shadow:
    0 10px 20px rgba(20, 20, 60, 0.12);

  gap: 9px;
}

.btn-sm-pill:hover i {
  transform:
    translateX(3px);
}

.btn-sm-pill:hover {
  color: #fff !important;
}


/* =========================================================
   BUTTON BORDERS
========================================================= */

.btn-sm-pill.border-green {
  border: 1px solid var(--us-green);
}

.btn-sm-pill.border-blue {
  border: 1px solid var(--us-blue);
}

.btn-sm-pill.border-orange {
  border: 1px solid var(--us-orange);
}

.btn-sm-pill.border-teal {
  border: 1px solid var(--us-teal);
}

.btn-sm-pill.border-indigo {
  border: 1px solid var(--us-indigo);
}

.btn-sm-pill.border-pink {
  border: 1px solid var(--us-pink);
}


/* =========================================================
   BUTTON HOVER COLORS
========================================================= */

.btn-sm-pill.border-green:hover {
  background: var(--us-green);
}

.btn-sm-pill.border-blue:hover {
  background: var(--us-blue);
}

.btn-sm-pill.border-orange:hover {
  background: var(--us-orange);
}

.btn-sm-pill.border-teal:hover {
  background: var(--us-teal);
}

.btn-sm-pill.border-indigo:hover {
  background: var(--us-indigo);
}

.btn-sm-pill.border-pink:hover {
  background: var(--us-pink);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

  .us-product-card {
    padding: 24px;
  }

}


@media (max-width: 767px) {

  .us-product-card {
    padding: 22px;
  }

  .product-icon1 {
    width: 56px;
    height: 56px;
  }

  .product-icon1 img {
    width: 26px;
    height: 26px;
  }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .us-product-card {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .us-product-card.product-visible {
    transform: none;
  }

}
/* =========================================================
   PRODUCT CARD - HOVER EFFECT ALWAYS ACTIVE
========================================================= */

/* Card effect already visible */
.us-product-card {
  border-color: var(--accent, var(--us-orange));

  box-shadow:
    0 22px 46px rgba(20, 20, 60, 0.14),
    0 8px 20px rgba(20, 20, 60, 0.05);
}


/* Accent top line already full */
.us-product-card::before {
  transform: scaleX(1);
}


/* Soft color wash already visible */
.us-product-card::after {
  opacity: 1;
}


/* Icon effect already visible */
.us-product-card .product-icon1 {
  transform:
    scale(1.09)
    rotate(-6deg);

  box-shadow:
    0 12px 24px rgba(20, 20, 60, 0.14);
}


/* Icon image effect already visible */
.us-product-card .product-icon1 img {
  transform: scale(1.12);
}


/* Title slight movement already visible */
.us-product-card h5 {
  transform: translateX(2px);
}


/* Description slight movement already visible */
.us-product-card p {
  transform: translateX(2px);
}


/* List items effect already visible */
.us-product-card ul li {
  transform: translateX(4px);
}


/* Bullet effect already visible */
.us-product-card ul li::before {
  transform: scale(1.25);
}


/* Button effect already visible */
.us-product-card .btn-sm-pill {
  transform: translateY(-2px);
  gap: 9px;

  box-shadow:
    0 10px 20px rgba(20, 20, 60, 0.12);

  color: #fff !important;
}


/* Button colors */
.us-product-card.border-green .btn-sm-pill {
  background: var(--us-green);
}

.us-product-card.border-blue .btn-sm-pill {
  background: var(--us-blue);
}

.us-product-card.border-orange .btn-sm-pill {
  background: var(--us-orange);
}

.us-product-card.border-teal .btn-sm-pill {
  background: var(--us-teal);
}

.us-product-card.border-indigo .btn-sm-pill {
  background: var(--us-indigo);
}

.us-product-card.border-pink .btn-sm-pill {
  background: var(--us-pink);
}

/* ---------------- Stats Strip ---------------- */

.us-stats-strip {
  position: relative;
  overflow: hidden;
  background: var(--us-navy);
  padding: 45px 0;
}


/* =========================================================
   CONTAINER
========================================================= */

.us-stats-strip .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}


/* =========================================================
   TRACK
========================================================= */

.us-stats-track {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}


/* =========================================================
   STATS GROUP
========================================================= */

.us-stats-group {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}


/* =========================================================
   INDIVIDUAL STAT
========================================================= */

.us-stats-item {
  flex: 1;
  min-width: 0;

  padding: 8px 30px;

  text-align: center;

  position: relative;
}


/* =========================================================
   DIVIDER
========================================================= */

.us-stats-item:not(:last-child)::after {
  content: "";

  position: absolute;

  right: 0;
  top: 8px;

  width: 1px;
  height: 75px;

  background: rgba(255, 255, 255, 0.12);
}


/* =========================================================
   ICON
========================================================= */

.us-stats-item i {
  width: 54px;
  height: 54px;

  margin: 0 auto 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 23px;

  color: var(--us-purple-2);

  background: rgba(255, 255, 255, 0.07);

  border: 1px solid rgba(255, 255, 255, 0.10);

  border-radius: 15px;

  transition: all 0.3s ease;
}


/* =========================================================
   NUMBER
========================================================= */

.us-stats-item h3 {
  color: #fff;

  font-size: 27px;

  line-height: 1.2;

  font-weight: 700;

  margin: 0 0 5px;
}


/* =========================================================
   TEXT
========================================================= */

.us-stats-item p {
  color: #a9adc7;

  font-size: 13px;

  line-height: 1.5;

  margin: 0;
}


/* =========================================================
   HOVER
========================================================= */

.us-stats-item:hover i {
  color: #fff;

  background: var(--us-purple);

  border-color: var(--us-purple);

  transform:
    translateY(-4px)
    scale(1.06);

  box-shadow:
    0 10px 25px rgba(108, 92, 231, 0.30),
    0 0 0 5px rgba(108, 92, 231, 0.08);
}


.us-stats-item:hover h3 {
  color: var(--us-purple-2);
}


.us-stats-item:hover p {
  color: #dfe1ec;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

  .us-stats-strip {
    padding: 35px 0;
  }

  .us-stats-group {
    flex-wrap: wrap;
    row-gap: 30px;
  }

  .us-stats-item {
    flex: 0 0 50%;
    width: 50%;
    padding: 8px 15px;
  }

  .us-stats-item:nth-child(2)::after {
    display: none;
  }

  .us-stats-item i {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .us-stats-item h3 {
    font-size: 23px;
  }

  .us-stats-item p {
    font-size: 12px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

  .us-stats-item {
    flex: 0 0 100%;
    width: 100%;
  }

  .us-stats-item:not(:last-child)::after {
    display: none;
  }

}
/* ---------------- CTA ---------------- */

.us-cta {
  background: #fff;
  position: relative;
  overflow: hidden;
}

/* =========================================================
   MAIN CTA CARD
========================================================= */

.us-cta-card {
  position: relative;
  overflow: hidden;

  padding: 28px 36px;

  border-radius: 24px;

  background:
    radial-gradient(
      circle at 8% 50%,
      rgba(108, 92, 231, 0.16),
      transparent 30%
    ),
    radial-gradient(
      circle at 92% 20%,
      rgba(108, 92, 231, 0.10),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #f8f7ff 0%,
      #ffffff 48%,
      #f5f3ff 100%
    );

  border: 1px solid rgba(108, 92, 231, 0.12);

  box-shadow:
    0 20px 55px rgba(20, 20, 60, 0.09);

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.us-cta-card:hover {
  transform: translateY(-4px);

  box-shadow:
    0 28px 70px rgba(20, 20, 60, 0.13);
}

/* =========================================================
   CTA CONTENT
========================================================= */

.cta-content {
  position: relative;
  z-index: 3;
}

.cta-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  margin-bottom: 12px;

  color: var(--us-purple);

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
}

.cta-label i {
  font-size: 13px;
}

/* Heading */

.us-cta .us-h2 {
  margin-bottom: 14px;

  font-size: 31px;
  line-height: 1.2;
  font-weight: 700;

  color: #10142b;
}

.us-cta .us-h2 span {
  color: var(--us-purple);
}

/* Description */

.us-cta .us-body-text {
  max-width: 600px;
  margin-bottom: 22px;

  font-size: 14px;
  line-height: 1.7;

  color: var(--us-text-muted);
}

/* =========================================================
   CTA BUTTON AREA
========================================================= */

.cta-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.us-cta .us-btn-dark-pill {
  display: inline-flex;
  align-items: center;

  padding: 11px 22px;

  border-radius: 50px;

  font-size: 13px;
  font-weight: 600;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.us-cta .us-btn-dark-pill:hover {
  transform: translateY(-3px);

  box-shadow:
    0 10px 25px rgba(16, 20, 43, 0.20);
}

.cta-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  font-size: 11px;
  color: var(--us-text-muted);
}

.cta-note i {
  color: var(--us-green);
  font-size: 12px;
}

/* =========================================================
   LEFT VISUAL
========================================================= */

.cta-visual {
  width: 155px;
  height: 155px;

  margin: 0 auto;

  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* Main icon */

.cta-main-icon {
  width: 76px;
  height: 76px;

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;
  z-index: 3;

  color: #fff;
  font-size: 30px;

  background: var(--us-purple);

  border-radius: 24px;

  box-shadow:
    0 16px 35px rgba(108, 92, 231, 0.30),
    0 0 0 9px rgba(108, 92, 231, 0.08);

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.us-cta-card:hover .cta-main-icon {
  transform: scale(1.08) rotate(-4deg);

  box-shadow:
    0 20px 42px rgba(108, 92, 231, 0.36),
    0 0 0 11px rgba(108, 92, 231, 0.08);
}

/* =========================================================
   ORBITS
========================================================= */

.cta-orbit {
  position: absolute;

  border: 1px dashed rgba(108, 92, 231, 0.22);

  border-radius: 50%;
}

.orbit-one {
  width: 125px;
  height: 125px;

  animation: ctaRotate 14s linear infinite;
}

.orbit-two {
  width: 155px;
  height: 155px;

  border-color: rgba(108, 92, 231, 0.12);

  animation: ctaRotateReverse 18s linear infinite;
}

@keyframes ctaRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes ctaRotateReverse {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

/* =========================================================
   FLOATING ICONS
========================================================= */

.cta-floating-icon {
  position: absolute;

  width: 36px;
  height: 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #fff;

  border: 1px solid rgba(108, 92, 231, 0.12);

  border-radius: 12px;

  color: var(--us-purple);

  font-size: 14px;

  box-shadow:
    0 8px 20px rgba(20, 20, 60, 0.10);

  z-index: 4;

  transition:
    transform 0.35s ease,
    color 0.35s ease,
    background 0.35s ease;
}

.cta-icon-one {
  top: 10px;
  right: 8px;

  animation: floatingOne 3s ease-in-out infinite;
}

.cta-icon-two {
  bottom: 12px;
  left: 5px;

  color: var(--us-green);

  animation: floatingTwo 3.5s ease-in-out infinite;
}

@keyframes floatingOne {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

@keyframes floatingTwo {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(7px);
  }
}

.cta-floating-icon:hover {
  background: var(--us-purple);
  color: #fff;

  transform: scale(1.1);
}

/* =========================================================
   RIGHT CONTACT BOX
========================================================= */

.cta-contact-box {
  min-height: 95px;

  padding: 16px;

  display: flex;
  align-items: center;
  gap: 12px;

  position: relative;

  background: rgba(255, 255, 255, 0.78);

  border: 1px solid rgba(108, 92, 231, 0.12);

  border-radius: 17px;

  box-shadow:
    0 10px 25px rgba(20, 20, 60, 0.06);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.cta-contact-box:hover {
  transform: translateY(-5px);

  border-color: rgba(108, 92, 231, 0.25);

  box-shadow:
    0 15px 32px rgba(20, 20, 60, 0.10);
}

/* Contact icon */

.cta-contact-icon {
  width: 43px;
  height: 43px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #eeeafd;

  color: var(--us-purple);

  border-radius: 13px;

  font-size: 18px;
}

.cta-contact-box small {
  display: block;

  margin-bottom: 3px;

  color: var(--us-text-muted);

  font-size: 10px;
}

.cta-contact-box strong {
  display: block;

  color: #10142b;

  font-size: 12px;
  font-weight: 700;

  line-height: 1.4;
}

.cta-arrow {
  width: 27px;
  height: 27px;

  margin-left: auto;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--us-purple);

  background: #f2efff;

  border-radius: 50%;

  font-size: 12px;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease;
}

.cta-contact-box:hover .cta-arrow {
  transform: rotate(45deg);

  background: var(--us-purple);
  color: #fff;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

  .us-cta-card {
    padding: 42px 30px;
  }

  .us-cta .us-h2 {
    font-size: 28px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

  .us-cta {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }

  .us-cta-card {
    padding: 34px 22px;

    border-radius: 20px;
  }

  .us-cta .us-h2 {
    font-size: 25px;
  }

  .us-cta .us-body-text {
    font-size: 13.5px;
  }

  .cta-actions {
    justify-content: center;
  }

  .cta-note {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 575px) {

  .us-cta-card {
    padding: 30px 18px;
  }

  .us-cta .us-h2 {
    font-size: 23px;
  }

  .us-cta .us-btn-dark-pill {
    width: 100%;
    justify-content: center;
  }
}

/* ---------------- Footer ---------------- */
/* =========================================================
   UNISTEPS PREMIUM FOOTER
========================================================= */

.us-footer {
  position: relative;
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(124, 92, 255, 0.12),
      transparent 30%
    ),
    radial-gradient(
      circle at 85% 70%,
      rgba(104, 78, 210, 0.10),
      transparent 32%
    ),
    var(--us-navy);

  color: #fff;
  overflow: hidden;
  padding-top: 75px;
}


/* subtle top border */

.us-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.15),
    rgba(124,92,255,.7),
    rgba(255,255,255,.15),
    transparent
  );
}
.cta-visual-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
  overflow: visible;
}

.cta-visual-img img {
  max-height: 230px;   
  width: auto;
  max-width: none;
}

@media (max-width: 1200px) {
  .cta-visual-img img {
    max-width: 150px;
  }
}


/* =========================================================
   BRAND
========================================================= */

.footer-brand {
  max-width: 350px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 22px;
}

.footer-logo .brand-logo-img {
  width: 165px;
  height: auto;
  object-fit: contain;
}


.footer-text {
  color: #aeb3ca;
  font-size: 14px;
  line-height: 1.8;
  max-width: 330px;
  margin: 0 0 25px;
}


/* =========================================================
   SOCIAL ICONS
========================================================= */

.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-socials a {
  width: 40px;
  height: 40px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 11px;

  color: #c5c9dc;
  background: rgba(255,255,255,.06);

  border: 1px solid rgba(255,255,255,.08);

  text-decoration: none;

  transition:
    transform .3s ease,
    background .3s ease,
    color .3s ease,
    border-color .3s ease;
}

.footer-socials a i {
  font-size: 16px;
}


.footer-socials a:hover {
  color: #fff;
  background: var(--us-purple);
  border-color: var(--us-purple);
  transform: translateY(-5px);
}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.footer-column h6 {
  position: relative;

  color: #fff;
  font-size: 15px;
  font-weight: 700;

  margin: 4px 0 10px;
}


.footer-heading-line {
  display: block;

  width: 32px;
  height: 3px;

  border-radius: 10px;

  background: var(--us-purple);

  margin-bottom: 20px;
}


/* =========================================================
   FOOTER LINKS
========================================================= */

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}


.footer-links li {
  margin-bottom: 11px;
}


.footer-links li a {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  color: #aeb3ca;
  font-size: 13.5px;

  text-decoration: none;

  transition:
    color .25s ease,
    transform .25s ease;
}


.footer-links li a i {
  font-size: 9px;
  color: var(--us-purple-2);

  transition: transform .25s ease;
}


.footer-links li a:hover {
  color: #fff;
  transform: translateX(5px);
}


.footer-links li a:hover i {
  transform: translateX(3px);
}


/* =========================================================
   CONTACT INFO
========================================================= */

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}


.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;

  color: #aeb3ca;

  font-size: 13.5px;
  line-height: 1.6;

  margin-bottom: 15px;

  transition: color .25s ease;
}


.footer-contact-icon {
  flex: 0 0 34px;

  width: 34px;
  height: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 9px;

  color: var(--us-purple-2);

  background: rgba(124,92,255,.10);
  border: 1px solid rgba(124,92,255,.15);

  transition:
    background .3s ease,
    color .3s ease,
    transform .3s ease;
}


.footer-contact-icon i {
  font-size: 14px;
}


.footer-contact li:hover {
  color: #fff;
}


.footer-contact li:hover .footer-contact-icon {
  color: #fff;
  background: var(--us-purple);
  transform: translateY(-2px);
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
  margin-top: 55px;

  border-top: 1px solid rgba(255,255,255,.08);

  background: rgba(0,0,0,.12);
}


.footer-bottom-inner {
  min-height: 70px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;
}


.footer-bottom p {
  color: #858ba7;
  font-size: 12px;

  margin: 0;
}


.footer-bottom p span {
  margin: 0 7px;
  color: rgba(255,255,255,.25);
}


.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 22px;
}


.footer-bottom-links a {
  color: #858ba7;
  font-size: 12px;
  text-decoration: none;

  transition: color .25s ease;
}


.footer-bottom-links a:hover {
  color: #fff;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

  .us-footer {
    padding-top: 60px;
  }

  .footer-brand {
    max-width: 420px;
  }

  .footer-bottom {
    margin-top: 40px;
  }

}


@media (max-width: 767px) {

  .us-footer {
    padding-top: 50px;
  }

  .footer-logo .brand-logo-img {
    width: 145px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 20px 0;
  }

  .footer-bottom-links {
    gap: 16px;
  }

}


@media (max-width: 575px) {

  .us-footer {
    padding-top: 45px;
  }

  .footer-text {
    font-size: 13px;
  }

  .footer-socials a {
    width: 38px;
    height: 38px;
  }

  .footer-column h6 {
    font-size: 14px;
  }

  .footer-links li a,
  .footer-contact li {
    font-size: 13px;
  }

}