/* ==========================================================================
   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
========================================================= */

/* =========================================================
   UNI STEPS 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 UNDERLINE
========================================================= */

.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;
}


/* =========================================================
   NAV LINK HOVER + ACTIVE
========================================================= */

.us-navbar .nav-link:hover,
.us-navbar .nav-link.active {
  color: var(--us-purple) !important;
}

.us-navbar .nav-link:hover::after,
.us-navbar .nav-link.active::after {
  transform: scaleX(1) !important;
}


/* =========================================================
   ACTIVE NAVIGATION
========================================================= */

.us-navbar .nav-link.active {
  color: var(--us-purple) !important;
}

.us-navbar .nav-link.active::after {
  transform: scaleX(1) !important;
}


/* =========================================================
   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);
}


/* =========================================================
   CUSTOM PRODUCT CHEVRON
========================================================= */

.us-navbar .product-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.us-navbar .product-chevron {
  font-size: 10px;
  transition: transform 0.25s ease;
}

.us-navbar .dropdown:hover .product-chevron {
  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: #333333;

  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.1);

  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}


/* =========================================================
   CONTACT BUTTON HOVER
========================================================= */

.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);
}


/* =========================================================
   CONTACT BUTTON ACTIVE
========================================================= */

.us-navbar .us-btn-dark-pill.active {
  background: var(--us-purple) !important;
  color: #ffffff !important;

  box-shadow:
    0 8px 20px rgba(108, 92, 231, 0.25);
}


/* =========================================================
   CONTACT HOVER + ACTIVE SAME LOOK
========================================================= */

.us-navbar .us-btn-dark-pill:hover,
.us-navbar .us-btn-dark-pill.active {
  background: var(--us-purple) !important;
  color: #ffffff !important;
}


/* =========================================================
   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;
  }


  /* -----------------------------
     MOBILE LOGO
  ----------------------------- */

  .brand-logo-img {
    width: 140px;
    max-height: 52px;
  }


  /* -----------------------------
     MOBILE NAVIGATION
  ----------------------------- */

  .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;
  }


  /* -----------------------------
     MOBILE UNDERLINE
  ----------------------------- */

  .us-navbar .nav-link::after {
    left: 5px;
    right: auto;
    width: 25px;
  }

  .us-navbar .nav-link.active::after {
    transform: scaleX(1) !important;
  }


  /* -----------------------------
     MOBILE DROPDOWN
  ----------------------------- */

  .us-navbar .dropdown-menu {
    margin-top: 4px;
    border: none;
    box-shadow: none;
    background: #f8f8fc;
  }


  /* -----------------------------
     MOBILE CONTACT
  ----------------------------- */

  .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;
  }

}
.us-navbar .nav-link.active {
    color: var(--us-purple) !important;
}

.us-navbar .nav-link.active::after {
    transform: scaleX(1) !important;
}

.us-navbar .nav-link:hover {
    color: var(--us-purple) !important;
}

.us-navbar .nav-link:hover::after {
    transform: scaleX(1) !important;
}

.us-navbar .us-btn-dark-pill.active {
    background: var(--us-purple) !important;
    color: #fff !important;
}

.us-navbar .us-btn-dark-pill:hover {
    background: var(--us-purple) !important;
    color: #fff !important;
}
/* ---------------- 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;
} */
/* =========================================================
   BCSTEP HERO — SOFT BLUE TILED BACKGROUND
   HTML / CONTAINER / CONTENT — NO CHANGE
========================================================= */

.us-hero {

  position: relative;
  overflow: hidden;
  isolation: isolate;

  /* =====================================================
     BASE HERO BACKGROUND — GREEN TO CREAM (Image 1 style)
  ===================================================== */
  background:
    var(--hero-glow),
    linear-gradient(
      135deg,
      #eef7ef 0%,
      #f1f6ea 35%,
      #f6f1e2 65%,
      #faf3df 100%
    );

  min-height: 720px;

  /* =====================================================
     EXTRA SOFT LIGHT — TOP CENTER
  ===================================================== */
  --hero-glow: radial-gradient(
    ellipse at 50% 15%,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 255, 255, 0.55) 30%,
    transparent 65%
  );
}


/* =========================================================
   SOFT CHECKER / TILE PATTERN
========================================================= */

.us-hero::before {

  content: "";

  position: absolute;
  inset: 0;

  z-index: -2;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.4) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.4) 1px,
      transparent 1px
    );

  background-size: 55px 55px;

  opacity: 0.6;

  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.9),
    rgba(0, 0, 0, 0.55)
  );
}


/* =========================================================
   LARGE SOFT GLOW — CENTER / BOTTOM (green tint)
========================================================= */

/* .us-hero::after {

  content: "";

  position: absolute;

  z-index: -1;

  width: 850px;
  height: 850px;

  left: 50%;
  bottom: -610px;

  transform: translateX(-50%);

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(146, 201, 138, 0.35) 0%,
    rgba(200, 214, 150, 0.22) 35%,
    rgba(240, 225, 180, 0.14) 58%,
    transparent 72%
  );

  filter: blur(10px);
} */


/* =========================================================
   HERO CONTENT
========================================================= */

.us-hero .container {

  position: relative;

  z-index: 2;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {
  .us-hero {
    min-height: auto;
  }

  .us-hero::before {
    background-size: 45px 45px;
  }

  .us-hero::after {
    width: 650px;
    height: 650px;
    bottom: -470px;
  }
}

@media (max-width: 576px) {
  .us-hero::before {
    background-size: 38px 38px;
    opacity: 0.55;
  }

  .us-hero::after {
    width: 500px;
    height: 500px;
    bottom: -350px;
  }
}
/* =========================================================
   LEFT SIDE
========================================================= */

.us-eyebrow {
  margin-bottom: 14px;

  color: #2f11a7;

  font-size: 15px;
  font-weight: 600;
}

.us-hero-title {
  margin-bottom: 20px;
  
   color:#160455;

  font-size: clamp(44px, 5vw, 65px);
  font-weight: 700;
  line-height: 1.07;

  letter-spacing: -2px;
}

.text-gradient-purple {
 background: linear-gradient(90deg, #34237d, #632fd2, #baa7ff);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.us-hero-text {
  max-width: 555px;
  margin-bottom: 30px;
  color: rgb(91 85 85 / 72%);
  font-size: 16px;
  line-height: 1.8;
  font-weight: 500;
}

/* =========================================================
   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: #0a022a;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.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
========================================================= */

.bcstep-product-network {
  position: relative;

  width: 119%;
  max-width: 750px;

  height: 600px;

  margin: 0 auto;

  overflow: visible;
}

/* =========================================================
   CENTER IMAGE
========================================================= */

.bcstep-center-image {
  position: absolute;

  width: 330px;
  height: 330px;

  left: 50%;
  top: 50%;

  transform: translate(-50%, -50%);

  z-index: 5;

  display: flex;
  align-items: center;
  justify-content: center;
}

.bcstep-center-image img {
  width: 100%;
  height: 100%;

  object-fit: contain;

  display: block;

  filter: drop-shadow(0 0 18px rgba(0, 105, 255, 0.35))
    drop-shadow(0 0 45px rgba(0, 105, 255, 0.18));
}
/* ==============================
   CENTER IMAGE
============================== */

.bcstep-center-image {
  position: relative;

  width: 330px;
  height: 330px;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* Your circular background image */

.bcstep-center-image > img {
  width: 120%;
  height: 100%;

  object-fit: contain;

  display: block;
}

/* ==============================
   LOGO INSIDE WHITE CIRCLE
============================== */

/* .bcstep-logo-overlay {
  position: absolute;

  left: 49%;
  top: 50%;

  transform: translate(-50%, -50%);

  width: 155px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-direction: column;

  text-align: center;

  z-index: 10;

  pointer-events: none;
} */

/* Actual logo */

.bcstep-logo-overlay img {
  width: 118px;
  height: auto;

  max-height: 102px;

  object-fit: contain;

  display: block;

  margin-bottom: 45px;
}

/* IT SOLUTIONS */

/* .bcstep-logo-overlay span {
  display: block;

  color: #1764c0;

  font-family: "Inter", sans-serif;

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 2.5px;

  line-height: 1;

  white-space: nowrap;
} */

/* =========================================================
   CENTER EXTRA GLOW
========================================================= */

.bcstep-center-glow {
  position: absolute;

  width: 260px;
  height: 260px;

  left: 50%;
  top: 50%;

  transform: translate(-50%, -50%);

  border-radius: 50%;

  background: rgba(0, 105, 255, 0.16);

  filter: blur(65px);

  z-index: 1;

  pointer-events: none;
}

/* =========================================================
   CONNECTING SVG
========================================================= */

.bcstep-network-lines {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  z-index: 2;

  overflow: visible;

  pointer-events: none;
}

.bcstep-network-lines line {
  stroke: rgba(49, 157, 255, 0.65);

  stroke-width: 1.2;

  stroke-dasharray: 5 6;

  filter: drop-shadow(0 0 4px rgba(0, 140, 255, 0.6));

  animation: networkLineMove 3s linear infinite;
}

@keyframes networkLineMove {
  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: -22;
  }
}

/* =========================================================
   PRODUCT CARD
========================================================= */

.bcstep-network-card {
  position: absolute;

  width: 200px;
  min-height: 66px;

  padding: 6px 12px;

  display: flex;
  align-items: center;

  gap: 12px;

  border-radius: 17px;

  background: linear-gradient(156deg, rgb(255 255 255), rgb(255 255 255));

  border: 1px solid rgba(46, 157, 255, 0.58);

  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.3),
    0 0 18px rgba(0, 100, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(12px);

  z-index: 10;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

/* =========================================================
   CARD POSITIONS
========================================================= */

.card-left-top {
  left: 25px;
  top: 82px;
}

.card-left-middle {
  left: 15px;
  top: 264px;
}

.card-left-bottom {
  left: 51px;
  bottom: 85px;
}

.card-right-top {
  right: 34px;
  top: 86px;
}

.card-right-middle {
  right: 17px;
  top: 266px;
}

.card-right-bottom {
  right: 54px;
  bottom: 83px;
}

/* =========================================================
   CARD HOVER
========================================================= */

.bcstep-network-card:hover {
  transform: translateY(-8px) scale(1.035);

  border-color: rgba(51, 178, 255, 0.95);

  box-shadow:
    0 22px 45px rgba(0, 60, 180, 0.28),
    0 0 25px rgba(0, 143, 255, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* =========================================================
   CARD ICON
========================================================= */

.network-card-icon {
  flex: 0 0 49px;

  width: 49px;
  height: 49px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;

  /* font-size: 20px; */

  border: 1px solid rgba(255, 255, 255, 0.13);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.bcstep-network-card:hover .network-card-icon {
  transform: scale(1.08);

  box-shadow: 0 0 20px rgba(50, 160, 255, 0.25);
}

/* =========================================================
   ICON COLORS
========================================================= */

.icon-green {
  color: #5cf0a1;

  background: linear-gradient(
    135deg,
    rgba(20, 211, 119, 0.25),
    rgba(20, 130, 90, 0.12)
  );
}

.icon-blue {
  color: #4ec8ff;

  background: linear-gradient(
    135deg,
    rgba(0, 175, 255, 0.27),
    rgba(0, 90, 180, 0.12)
  );
}

.icon-purple {
  color: #c185ff;

  background: linear-gradient(
    135deg,
    rgba(163, 73, 255, 0.28),
    rgba(108, 40, 180, 0.12)
  );
}

.icon-orange {
  color: #ffb54f;

  background: linear-gradient(
    135deg,
    rgba(255, 157, 30, 0.28),
    rgba(180, 90, 0, 0.12)
  );
}

.icon-indigo {
  color: #91a6ff;

  background: linear-gradient(
    135deg,
    rgba(91, 101, 255, 0.28),
    rgba(64, 65, 180, 0.12)
  );
}

.icon-pink {
  color: #ff73bd;

  background: linear-gradient(
    135deg,
    rgba(255, 48, 156, 0.28),
    rgba(180, 30, 110, 0.12)
  );
}

/* =========================================================
   CARD CONTENT
========================================================= */

.network-card-content {
  flex: 1;

  min-width: 0;
}

.network-card-content span {
  display: block;

  color: rgb(25 30 36 / 68%);

  font-family: "Inter", sans-serif;

  font-size: 10px;

  font-weight: 600;

  letter-spacing: 0.6px;

  margin-bottom: 1px;
}

.network-card-content h5 {
  margin: 0;

  color: #030b26;

  font-family: "Inter", sans-serif;

  font-size: 16px;

  line-height: 1.25;

  font-weight: 700;
}

.network-card-content small {
  display: block;

  margin-top: 3px;

  color: rgb(9 58 199);

  font-family: "Inter", sans-serif;

  font-size: 10px;

  line-height: 1.3;

  white-space: nowrap;
}

/* =========================================================
   ARROW
========================================================= */

.network-card-arrow {
  width: 29px;
  height: 29px;

  flex: 0 0 29px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  color: #091c4f;

  background: rgba(255, 255, 255, 0.04);

  border: 1px solid rgba(109, 182, 255, 0.28);

  font-size: 12px;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.bcstep-network-card:hover .network-card-arrow {
  color: #ffffff;

  background: #0842ff;

  border-color: #087dff;

  transform: translate(2px, -2px);
}

/* =========================================================
   CONNECTION GLOW DOTS
========================================================= */

.card-left-top::after,
.card-left-middle::after,
.card-left-bottom::after,
.card-right-top::after,
.card-right-middle::after,
.card-right-bottom::after {
  content: "";

  position: absolute;

  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #36b5ff;

  box-shadow:
    0 0 8px #169cff,
    0 0 18px rgba(22, 156, 255, 0.8);
}

/* Left dots */

.card-left-top::after,
.card-left-middle::after,
.card-left-bottom::after {
  right: -4px;
  top: 50%;

  transform: translateY(-50%);
}

/* Right dots */

.card-right-top::after,
.card-right-middle::after,
.card-right-bottom::after {
  left: -4px;
  top: 50%;

  transform: translateY(-50%);
}

/* =========================================================
   RESPONSIVE — 1200
========================================================= */

@media (max-width: 1200px) {
  .bcstep-product-network {
    height: 570px;
  }

  .bcstep-center-image {
    width: 300px;
    height: 300px;
  }

  .bcstep-network-card {
    width: 195px;
    min-height: 90px;
  }

  .card-left-middle {
    left: -5px;
  }

  .card-right-middle {
    right: -5px;
  }
}

/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 991px) {
  .bcstep-product-network {
    max-width: 720px;

    height: 610px;

    margin-top: 30px;
  }

  .bcstep-center-image {
    width: 310px;
    height: 310px;
  }

  .bcstep-network-card {
    width: 205px;
  }
}

/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 767px) {
  .bcstep-product-network {
    height: 850px;

    max-width: 500px;

    margin-top: 20px;
  }

  .bcstep-center-image {
    width: 250px;
    height: 250px;

    top: 50%;
  }

  .bcstep-network-card {
    width: 180px;

    min-height: 78px;

    padding: 11px;

    gap: 9px;

    border-radius: 13px;
  }

  /* .network-card-icon {

    width: 40px;
    height: 40px;

    flex-basis: 40px;

    font-size: 16px;
  } */
  /* .network-card-icon img {
    width: 40px!important;
    height: 40px !important;
  }

  .network-card-content span {

    font-size: 8px;
  } */

  .cd-img {
    object-fit: cover;
    width: 40px !important;
    height: 40px !important;
  }

  .network-card-content h5 {
    font-size: 13px;
  }

  .network-card-content small {
    font-size: 8px;
  }

  .network-card-arrow {
    display: none;
  }

  .card-left-top {
    left: 0;
    top: 25px;
  }

  .card-right-top {
    right: 0;
    top: 25px;
  }

  .card-left-middle {
    left: 0;
    top: 385px;
  }

  .card-right-middle {
    right: 0;
    top: 385px;
  }

  .card-left-bottom {
    left: 0;
    bottom: 25px;
  }

  .card-right-bottom {
    right: 0;
    bottom: 25px;
  }

  .bcstep-network-lines {
    opacity: 0.5;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {
  .bcstep-product-network {
    height: 780px;
  }

  .bcstep-center-image {
    width: 205px;
    height: 205px;
  }

  .bcstep-network-card {
    width: 155px;

    min-height: 68px;

    padding: 9px;
  }

  /* 
  .network-card-icon {

    width: 34px;
    height: 34px;

    flex-basis: 34px;

    font-size: 14px;

    border-radius: 10px;
  } */

  .network-card-content h5 {
    font-size: 11px;
  }

  .network-card-content small {
    font-size: 7px;
  }

  .network-card-content span {
    font-size: 7px;
  }

  .card-left-middle,
  .card-right-middle {
    top: 350px;
  }
}

/* ---------------- 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.3);

  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.3);

  background: #e1f7ea;
}

.us-service-card.accent-teal {
  --accent: #36beae;
  --accent-soft: #dcf7f3;
  --accent-shadow: rgba(54, 190, 174, 0.3);

  background: #dcf7f3;
}

.us-service-card.accent-indigo {
  --accent: #6c5ce7;
  --accent-soft: #eae5fd;
  --accent-shadow: rgba(108, 92, 231, 0.3);

  background: #eae5fd;
}

.us-service-card.accent-pink {
  --accent: #e75b82;
  --accent-soft: #fde3e9;
  --accent-shadow: rgba(231, 91, 130, 0.3);

  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.1),
    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.3);
}

.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.3);
}

.us-product-card.border-blue:hover .product-icon1 {
  box-shadow: 0 10px 24px rgba(61, 124, 255, 0.3);
}

.us-product-card.border-orange:hover .product-icon1 {
  box-shadow: 0 10px 24px rgba(234, 122, 44, 0.3);
}

.us-product-card.border-teal:hover .product-icon1 {
  box-shadow: 0 10px 24px rgba(29, 174, 156, 0.3);
}

.us-product-card.border-indigo:hover .product-icon1 {
  box-shadow: 0 10px 24px rgba(108, 92, 231, 0.3);
}

.us-product-card.border-pink:hover .product-icon1 {
  box-shadow: 0 10px 24px rgba(232, 67, 147, 0.3);
}

/* =========================================================
   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;
  padding: 65px 0;
  background: #eef1ff;
}

/* Soft background only inside container area */
.us-stats-wrapper {
  position: relative;
  background: #c7c7df;
  border-radius: 26px;
  padding: 28px;
  border: 1px solid rgba(108, 92, 231, 0.08);
  box-shadow: 0 10px 35px rgba(30, 30, 60, 0.05);
  overflow: hidden;
}

/* Very soft glow inside container */
.us-stats-wrapper::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  top: -180px;
  left: -120px;
  border-radius: 50%;
  background: rgba(108, 92, 231, 0.045);
  filter: blur(70px);
  pointer-events: none;
}

.us-stats-wrapper::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  right: -140px;
  bottom: -180px;
  border-radius: 50%;
  background: rgba(125, 110, 255, 0.035);
  filter: blur(70px);
  pointer-events: none;
}

.us-stat-card {
  position: relative;
  z-index: 2;
}

/* ---------- Main Wrapper ---------- */

.us-stats-wrapper {
  position: relative;

  display: grid;
  grid-template-columns: repeat(4, 1fr);

  padding: 16px;

  border: 1px solid #e9e9ef;
  border-radius: 20px;

  background: #ffffff;

  box-shadow: 0 10px 35px rgba(30, 20, 80, 0.08);

  overflow: hidden;
}

/* ---------- Top Light ---------- */

.us-stats-wrapper::before {
  content: "";

  position: absolute;
  left: 8%;
  right: 8%;
  top: 0;

  height: 1px;

  background: #eeeef5;
}

/* ---------- Individual Card ---------- */

.us-stat-card {
  position: relative;

  display: flex;
  align-items: center;

  gap: 18px;

  min-height: 105px;

  padding: 20px 25px;

  border-radius: 16px;

  opacity: 0;
  transform: translateY(20px);

  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

/* ---------- Stagger Animation ---------- */

.us-stats-wrapper .us-stat-card:nth-child(1) {
  transition-delay: 0.05s;
}

.us-stats-wrapper .us-stat-card:nth-child(2) {
  transition-delay: 0.15s;
}

.us-stats-wrapper .us-stat-card:nth-child(3) {
  transition-delay: 0.25s;
}

.us-stats-wrapper .us-stat-card:nth-child(4) {
  transition-delay: 0.35s;
}

/* ---------- Visible State ---------- */

.us-stats-wrapper.stats-visible .us-stat-card {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Divider ---------- */

.us-stat-card:not(:last-child)::after {
  content: "";

  position: absolute;

  right: 0;
  top: 22px;
  bottom: 22px;

  width: 1px;

  background: #e8e8ef;
}

/* ---------- Card Hover ---------- */

.us-stat-card:hover {
  background: #faf9ff;

  box-shadow: 0 8px 25px rgba(80, 65, 180, 0.08);

  transform: translateY(-4px) !important;
}

/* ---------- Icon ---------- */

.us-stat-icon {
  position: relative;

  flex: 0 0 58px;

  width: 58px;
  height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 15px;

  color: #1d0d50;

  font-size: 23px;

  background: #f1efff;

  border: 1px solid #e5e1ff;

  box-shadow: none;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease;
}

/* ---------- Remove Icon Shine ---------- */

.us-stat-icon::before {
  display: none;
}

/* ---------- Icon Hover ---------- */

.us-stat-card:hover .us-stat-icon {
  color: #ffffff;

  background: var(--us-purple);

  border-color: var(--us-purple);

  transform: translateY(-3px) scale(1.05);

  box-shadow: 0 8px 20px rgba(108, 92, 231, 0.2);
}

/* ---------- Content ---------- */

.us-stat-content {
  min-width: 0;
}

/* ---------- Number ---------- */

.us-stat-content h3 {
  margin: 0 0 5px;

  font-size: 29px;

  line-height: 1.1;

  font-weight: 750;

  letter-spacing: -0.5px;

  color: #8e6ff0;

  transition:
    transform 0.3s ease,
    filter 0.3s ease;
}

/* ---------- Number Shadow ---------- */

.us-stat-content .counter,
.us-stat-content h3 {
  text-shadow: none;
}

/* ---------- Number Hover ---------- */

.us-stat-card:hover .us-stat-content h3 {
  transform: translateX(2px);

  filter: drop-shadow(0 4px 10px rgba(130, 115, 255, 0.15));
}

/* ---------- Description ---------- */

.us-stat-content p {
  margin: 0;

  color: #555559;

  font-size: 12px;

  line-height: 1.4;

  font-weight: 450;

  transition: color 0.3s ease;
}

.us-stat-card:hover .us-stat-content p {
  color: #555559;
}

/* ---------- Counter Animation ---------- */

.us-stats-wrapper.stats-visible .us-stat-card:nth-child(1) .us-stat-content h3 {
  animation: numberPop 0.6s ease 0.4s both;
}

.us-stats-wrapper.stats-visible .us-stat-card:nth-child(2) .us-stat-content h3 {
  animation: numberPop 0.6s ease 0.5s both;
}

.us-stats-wrapper.stats-visible .us-stat-card:nth-child(3) .us-stat-content h3 {
  animation: numberPop 0.6s ease 0.6s both;
}

.us-stats-wrapper.stats-visible .us-stat-card:nth-child(4) .us-stat-content h3 {
  animation: numberPop 0.6s ease 0.7s both;
}

@keyframes numberPop {
  0% {
    opacity: 0;
    transform: translateY(8px) scale(0.92);
  }

  70% {
    transform: translateY(-2px) scale(1.03);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {
  .us-stats-strip {
    padding: 50px 0;
  }

  .us-stats-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .us-stat-card {
    padding: 20px;
  }

  .us-stat-card:nth-child(2)::after {
    display: none;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {
  .us-stats-strip {
    padding: 40px 0;
  }

  .us-stats-strip .container {
    padding: 0 12px;
  }

  .us-stats-wrapper {
    grid-template-columns: 1fr;

    padding: 10px;

    border-radius: 18px;
  }

  .us-stat-card {
    min-height: 88px;

    padding: 17px 16px;
  }

  .us-stat-card:not(:last-child)::after {
    top: auto;

    right: 18px;
    left: 18px;

    bottom: 0;

    width: auto;
    height: 1px;

    background: #e8e8ef;
  }

  .us-stat-icon {
    flex: 0 0 50px;

    width: 50px;
    height: 50px;

    font-size: 20px;

    border-radius: 14px;
  }

  .us-stat-content h3 {
    font-size: 25px;
  }

  .us-stat-content p {
    font-size: 12px;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {
  .us-stat-card {
    gap: 13px;
    padding: 15px 12px;
  }

  .us-stat-icon {
    flex: 0 0 46px;

    width: 46px;
    height: 46px;

    font-size: 18px;
  }

  .us-stat-content h3 {
    font-size: 23px;
  }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .us-stat-content h3 {
    animation: none !important;
  }

  .us-stat-card {
    opacity: 1;
    transform: none;

    transition: 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.1),
      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.2);
}

.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.3),
    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.1);

  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.1);
}

/* 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.1),
      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, 0.15),
    rgba(124, 92, 255, 0.7),
    rgba(255, 255, 255, 0.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, 0.06);

  border: 1px solid rgba(255, 255, 255, 0.08);

  text-decoration: none;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.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 0.25s ease,
    transform 0.25s ease;
}

.footer-links li a i {
  font-size: 9px;
  color: var(--us-purple-2);

  transition: transform 0.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 0.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, 0.1);
  border: 1px solid rgba(124, 92, 255, 0.15);

  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.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, 0.08);

  background: rgba(0, 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, 0.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 0.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;
  }
}

/* =========================================================
   ABOUT-US-SECTION
========================================================= */

/* =========================================================
   SUB BANNER
========================================================= */

.us-sub-banner {
  position: relative;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

  background: url("assets/sub-banner.jpg") center center / cover no-repeat;

  border-bottom: 1px solid rgba(108, 92, 231, 0.08);
}

/* =========================================================
   SUB BANNER CONTENT
========================================================= */

.us-sub-banner-content {
  position: relative;

  z-index: 2;

  width: 100%;

  text-align: center;

  padding: 30px 15px;
}

/* =========================================================
   SUB BANNER HEADING
========================================================= */

.us-sub-banner h1 {
  margin: 0 0 13px;

  color: #ffffff;

  font-family: "Inter", sans-serif;

  font-size: 36px;
  font-weight: 700;

  line-height: 1.2;

  letter-spacing: -1px;
}

/* Purple highlight effect */

.us-sub-banner h1::after {
  content: "";

  display: block;

  width: 42px;
  height: 3px;

  margin: 13px auto 0;

  border-radius: 10px;

  background: linear-gradient(90deg, var(--us-purple), var(--us-blue));
}

/* =========================================================
   BREADCRUMB
========================================================= */

.us-breadcrumb {
  display: flex;

  justify-content: center;
  align-items: center;

  gap: 10px;

  margin-top: 15px;

  font-family: "Inter", sans-serif;

  font-size: 14px;
  font-weight: 500;

  color: #ffffff;
}

/* Home */

.us-breadcrumb a {
  color: #ffffff;

  text-decoration: none;

  transition: all 0.3s ease;
}

.us-breadcrumb a:hover {
  color: var(--us-blue);
}

/* Slash */

.us-breadcrumb span:nth-child(2) {
  color: #b8bcc8;
}

/* Current page */

.us-breadcrumb span:last-child {
  color: #b5c3e7;
}

/* =========================================
   FOUNDER SECTION
========================================= */

.founder-section {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  background: var(--us-light-bg);
}

/* Soft background decoration */
.founder-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  top: -220px;
  right: -130px;
  border-radius: 50%;
  background: rgba(108, 92, 231, 0.055);
  pointer-events: none;
}

.founder-section::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  bottom: -180px;
  left: -120px;
  border-radius: 50%;
  border: 1px solid rgba(59, 125, 221, 0.1);
  pointer-events: none;
}

.founder-section .container {
  position: relative;
  z-index: 2;
}

/* =========================================
   FOUNDER IMAGE WRAPPER
========================================= */

.founder-image-wrap {
  position: relative;
  max-width: 430px;
  margin: 0 auto;
  padding: 0 15px 15px 0;
}

/* Decorative back layer */
.founder-image-wrap::before {
  content: "";
  position: absolute;
  width: 92%;
  height: 92%;
  right: 0;
  bottom: 0;

  border-radius: var(--us-radius);

  background: linear-gradient(
    135deg,
    rgba(108, 92, 231, 0.12),
    rgba(59, 125, 221, 0.08)
  );

  transform: translate(12px, 12px);
}

/* =========================================
   IMAGE BOX
========================================= */

.founder-image-box {
  position: relative;
  z-index: 2;

  width: 100%;
  height: 500px;

  overflow: hidden;

  background: #ffffff;

  border-radius: var(--us-radius);

  border: 1px solid rgba(108, 92, 231, 0.1);

  box-shadow: 0 20px 55px rgba(10, 15, 44, 0.12);
}

/* Image */
.founder-image-box img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
  object-position: center top;

  transition: transform 0.7s ease;
}

/* Image hover */
.founder-image-box:hover img {
  transform: scale(1.04);
}

/* Soft image overlay */
.founder-image-box::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(180deg, transparent 65%, rgba(10, 15, 44, 0.1));

  pointer-events: none;
}

/* =========================================
   DESCRIPTION
========================================= */

.founder-description {
  max-width: 680px;
  padding-left: 20px;
}

/* Paragraph */
.founder-description p {
  margin: 0 0 20px;

  color: var(--us-text-muted);

  font-family: "Inter", sans-serif;

  font-size: 16px;
  font-weight: 400;

  line-height: 1.85;
}

/* First paragraph slightly stronger */
.founder-description p:first-child {
  color: #4d5364;
  font-size: 16px;
}

/* =========================================
   FOUNDER INFO
========================================= */

.founder-info {
  display: flex;
  align-items: center;
  gap: 16px;

  margin-top: 28px;
  padding-top: 20px;

  border-top: 1px solid rgba(108, 92, 231, 0.12);
}

/* Small vertical accent */
.founder-info::before {
  content: "";

  width: 4px;
  height: 38px;

  flex-shrink: 0;

  border-radius: 10px;

  background: linear-gradient(180deg, var(--us-purple), var(--us-blue));
}

/* Founder label */
.founder-info strong {
  display: block;

  margin-bottom: 3px;

  color: var(--us-navy);

  font-size: 13px;
  font-weight: 700;

  letter-spacing: 0.3px;
}

/* Founder name */
.founder-info span {
  display: block;

  color: var(--us-purple);

  font-size: 14px;
  font-weight: 600;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {
  .founder-section {
    padding: 75px 0;
  }

  .founder-image-wrap {
    max-width: 390px;
  }

  .founder-image-box {
    height: 460px;
  }

  .founder-description {
    max-width: 100%;
    padding-left: 0;
  }

  .founder-description p {
    font-size: 15px;
    line-height: 1.8;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {
  .founder-section {
    padding: 60px 0;
  }

  .founder-section::before {
    width: 280px;
    height: 280px;
    top: -150px;
    right: -120px;
  }

  .founder-section::after {
    width: 200px;
    height: 200px;
    bottom: -130px;
    left: -100px;
  }

  /* Image */

  .founder-image-wrap {
    max-width: 100%;
    padding: 0 10px 10px 0;
  }

  .founder-image-box {
    height: 420px;
    border-radius: 14px;
  }

  /* Description */

  .founder-description {
    padding-left: 0;
  }

  .founder-description p {
    margin-bottom: 17px;

    font-size: 14.5px;
    line-height: 1.75;
  }

  .founder-description p:first-child {
    font-size: 15px;
  }

  /* Founder info */

  .founder-info {
    gap: 13px;
    margin-top: 24px;
    padding-top: 18px;
  }

  .founder-info::before {
    width: 3px;
    height: 34px;
  }

  .founder-info strong {
    font-size: 12px;
  }

  .founder-info span {
    font-size: 13px;
  }
}

/* =========================================
   EXTRA SMALL MOBILE
========================================= */

@media (max-width: 380px) {
  .founder-section {
    padding: 50px 0;
  }

  .founder-image-box {
    height: 380px;
  }

  .founder-description p {
    font-size: 14px;
  }
}

/* =========================================================
   Contact-us-section
========================================================= */

/* =========================================================
   OUR BRANCHES SECTION
========================================================= */

.us-branches-section {
  position: relative;
  overflow: hidden;

  padding: 95px 0;

  background: #ffffff;
}

/* =========================================================
   SOFT BACKGROUND DECORATION
========================================================= */

.us-branches-section::before {
  content: "";

  position: absolute;

  width: 450px;
  height: 450px;

  top: -230px;
  right: -180px;

  border-radius: 50%;

  background: rgba(108, 92, 231, 0.045);

  pointer-events: none;
}

.us-branches-section::after {
  content: "";

  position: absolute;

  width: 320px;
  height: 320px;

  bottom: -190px;
  left: -160px;

  border-radius: 50%;

  background: rgba(59, 125, 221, 0.035);

  pointer-events: none;
}

/* =========================================================
   CONTAINER
========================================================= */

.us-branches-section .container {
  position: relative;
  z-index: 2;
}

/* =========================================================
   SECTION HEADING
========================================================= */

.us-branches-heading {
  max-width: 680px;

  margin: 0 auto 55px;
}

.us-branches-heading > span {
  display: inline-block;

  margin-bottom: 12px;

  color: var(--us-purple);

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 2.2px;
}

.us-branches-heading h2 {
  margin: 0 0 14px;

  color: var(--us-navy);

  font-size: clamp(34px, 4vw, 46px);

  font-weight: 700;

  line-height: 1.15;

  letter-spacing: -1px;
}

.us-branches-heading h2 strong {
  color: var(--us-purple);
  font-weight: 700;
}

.us-branches-heading p {
  max-width: 600px;

  margin: 0 auto;

  color: var(--us-text-muted);

  font-size: 15px;

  line-height: 1.8;
}

/* =========================================================
   BRANCH ITEM
========================================================= */

.branch-item {
  position: relative;

  margin-bottom: 35px;

  overflow: hidden;

  background: #ffffff;

  border: 1px solid rgba(10, 15, 44, 0.07);

  border-radius: var(--us-radius);

  box-shadow: 0 12px 40px rgba(10, 15, 44, 0.07);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.branch-item:last-child {
  margin-bottom: 0;
}

.branch-item:hover {
  transform: translateY(-5px);

  box-shadow: 0 20px 50px rgba(10, 15, 44, 0.11);
}

/* =========================================================
   BRANCH DETAILS
========================================================= */

.branch-details {
  position: relative;

  height: 100%;

  display: flex;
  flex-direction: column;

  justify-content: center;

  padding: 42px 42px;

  background: linear-gradient(145deg, #ffffff 0%, #fafaff 100%);
}

/* =========================================================
   TOP AREA
========================================================= */

.branch-top {
  display: flex;

  align-items: flex-start;

  gap: 18px;
}

/* Number */

.branch-number {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 46px;
  height: 46px;

  flex-shrink: 0;

  border-radius: 12px;

  color: var(--us-purple);

  background: var(--us-soft-purple-bg);

  font-size: 13px;
  font-weight: 700;
}

/* =========================================================
   BRANCH TYPE
========================================================= */

.branch-type {
  display: block;

  margin-bottom: 5px;

  color: var(--us-blue);

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 1.8px;
}

/* =========================================================
   CITY
========================================================= */

.branch-top h3 {
  margin: 0;

  color: var(--us-navy);

  font-size: 30px;

  font-weight: 700;

  line-height: 1.2;
}

/* =========================================================
   DIVIDER
========================================================= */

.branch-line {
  width: 100%;
  height: 1px;

  margin: 28px 0;

  background: linear-gradient(
    90deg,
    rgba(108, 92, 231, 0.2),
    rgba(108, 92, 231, 0.03)
  );
}

/* =========================================================
   ADDRESS
========================================================= */

.branch-address {
  display: flex;

  align-items: flex-start;

  gap: 15px;

  margin-bottom: 28px;
}

.branch-address i {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 38px;
  height: 38px;

  flex-shrink: 0;

  border-radius: 10px;

  color: var(--us-purple);

  background: var(--us-soft-purple-bg);

  font-size: 14px;
}

.branch-address p {
  margin: 0;

  color: var(--us-text-muted);

  font-size: 14px;

  line-height: 1.8;
}

/* =========================================================
   LOCATION BUTTON
========================================================= */

.branch-location-btn {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 10px;

  width: fit-content;

  padding: 11px 18px;

  color: #ffffff;

  background: var(--us-navy);

  border-radius: 8px;

  font-size: 12px;

  font-weight: 600;

  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.branch-location-btn i {
  font-size: 11px;
}

.branch-location-btn:hover {
  color: #ffffff;

  background: var(--us-purple);

  transform: translateX(3px);
}

/* =========================================================
   MAP
========================================================= */

.branch-map {
  position: relative;

  height: 100%;

  min-height: 350px;

  overflow: hidden;

  background: #eef1f8;
}

/* Google Map */

.branch-map iframe {
  width: 100%;
  height: 100%;

  min-height: 350px;

  display: block;

  border: 0;

  filter: saturate(0.85);
}

/* =========================================================
   MAP LABEL
========================================================= */

.map-overlay {
  position: absolute;

  z-index: 5;

  top: 18px;
  left: 18px;

  pointer-events: none;
}

.map-overlay span {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  padding: 9px 13px;

  color: var(--us-navy);

  background: rgba(255, 255, 255, 0.94);

  border: 1px solid rgba(10, 15, 44, 0.07);

  border-radius: 8px;

  box-shadow: 0 5px 20px rgba(10, 15, 44, 0.1);

  font-size: 12px;

  font-weight: 600;
}

.map-overlay i {
  color: var(--us-purple);
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {
  .us-branches-section {
    padding: 75px 0;
  }

  .us-branches-heading {
    margin-bottom: 45px;
  }

  .branch-details {
    padding: 35px;
  }

  .branch-map,
  .branch-map iframe {
    min-height: 330px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {
  .us-branches-section {
    padding: 60px 0;
  }

  .us-branches-heading {
    margin-bottom: 35px;
  }

  .us-branches-heading h2 {
    font-size: 32px;
  }

  .us-branches-heading p {
    font-size: 14px;
  }

  /* Branch */

  .branch-item {
    margin-bottom: 25px;
  }

  /* Details */

  .branch-details {
    padding: 30px 25px;
  }

  .branch-top h3 {
    font-size: 26px;
  }

  .branch-line {
    margin: 23px 0;
  }

  /* Map */

  .branch-map {
    min-height: 280px;
  }

  .branch-map iframe {
    min-height: 280px;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {
  .us-branches-section {
    padding: 50px 0;
  }

  .us-branches-heading h2 {
    font-size: 29px;
  }

  .branch-details {
    padding: 25px 20px;
  }

  .branch-number {
    width: 42px;
    height: 42px;
  }

  .branch-top {
    gap: 13px;
  }

  .branch-top h3 {
    font-size: 24px;
  }

  .branch-address {
    gap: 12px;
  }

  .branch-address p {
    font-size: 13px;
  }

  .branch-map,
  .branch-map iframe {
    min-height: 240px;
  }

  .branch-location-btn {
    width: 100%;
  }
}
