:root {
  /* brand colors */
  --brand-red: #c2181b; /* your red */
  --brand-red-accent: #dd7d7f; /* slight accent for a tiny gradient pop */
  --brand-navy: #1f3662;

  --card-bg: rgba(255, 255, 255, 0.7);
  --card-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  --card-shadow-hover: 0 18px 40px rgba(14, 74, 166, 0.25);

  --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 18px 48px rgba(14, 74, 166, 0.22);

  --hero-min-h: 70vh; /* tweak this height */
  --hero-zoom: 1.08;
  --overlay-bg: rgba(0, 0, 0, 0.42);
  --label-text: #fff;
  --divider: rgba(255, 255, 255, 0.25);

  --ink-700: #1b2b44;
  --ink-500: #5d6b7b;
  --ink-900: #0f1b2d;
  --ink-600: #5b6b7e;

  --glass: rgba(255, 255, 255, 0.72);

  --z-nav: 6000;
  --z-progress: 1000;
}

a {
  color: var(--brand-navy);
}

a:hover {
  color: var(--brand-red);
}

.cm-search-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
}

.cm-search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.cm-search-overlay.active {
  display: flex;
  animation: fadeIn 0.2s ease;
}

.cm-search-box {
  background: #fff;
  border-radius: 14px;
  width: min(600px, 90%);
  padding: 20px;
  position: relative;
}

.cm-close-btn {
  position: absolute;
  right: 14px;
  top: 14px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.cm-search-box input {
  margin-top: 40px;
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 10px;
  outline: none;
}

.cm-search__spinner {
  margin-top: 10px;
  width: 20px;
  height: 20px;
  border: 2px solid #ddd;
  border-top-color: #c8102e;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: none;
}

.cm-search__panel {
  margin-top: 15px;
  max-height: 50vh;
  overflow: auto;
}

.cm-result {
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
}
.cm-result:hover {
  background: #f5f5f5;
}

.cm-title {
  font-weight: bold;
}
.cm-url {
  font-size: 0.8rem;
  color: gray;
}
.cm-snippet {
  font-size: 0.85rem;
  color: #444;
}

.cm-hl {
  background: linear-gradient(transparent 60%, rgba(200, 16, 46, 0.3) 60%);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Layout */
.split-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: var(--hero-min-h);
  background-color: var(--brand-navy);
}

/* Panels */
.hero-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  place-items: center;
  min-height: var(--hero-min-h);
  text-decoration: none;
  outline: none;
}

/* Images */
.hero-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: transform;
}

/* Gray overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay-bg);
  transition:
    transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1),
    opacity 0.6s ease;
  will-change: transform, opacity;
  pointer-events: none;
}

/* Slide direction per side */
.hero-panel--left .hero-overlay {
  transform: translateX(0);
}
.hero-panel--right .hero-overlay {
  transform: translateX(0);
}

/* Labels */
.hero-label {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 0.75rem 1.25rem;
  font-size: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--label-text);
  background: var(--brand-navy);
  backdrop-filter: blur(4px);
  border-radius: 999px;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

/* --------------------------------------------------------------
# Back to top button
-------------------------------------------------------------- */
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  left: 15px;
  bottom: 15px;
  z-index: 996;
  background: #c2181b;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: white;
  line-height: 0;
}

.back-to-top:hover {
  background: #151515;
}

.back-to-top:hover i {
  color: #c2181b;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/* --------------------------------------------------------------
# Preloader
-------------------------------------------------------------- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #151515;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 0px);
  left: calc(50% - 30px);
  border: 6px solid #c2181b;
  border-top-color: #151515;
  border-bottom-color: #151515;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Hover / focus effects */
.hero-panel:hover img,
.hero-panel:focus-visible img {
  transform: scale(var(--hero-zoom));
}

.hero-panel--left:hover .hero-overlay,
.hero-panel--left:focus-visible .hero-overlay {
  transform: translateX(-100%);
  opacity: 0.08;
}

.hero-panel--right:hover .hero-overlay,
.hero-panel--right:focus-visible .hero-overlay {
  transform: translateX(100%);
  opacity: 0.08;
}

.hero-panel:hover .hero-label,
.hero-panel:focus-visible .hero-label {
  transform: translateY(-2px);
  background: var(--brand-red);
}

/* Mobile: stack vertically */
@media (max-width: 900px) {
  .split-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-panel {
    min-height: 45vh;
  }
  .hero-panel + .hero-panel {
    border-left: none;
  }
}

/* Motion preference */
@media (prefers-reduced-motion: reduce) {
  .hero-panel img,
  .hero-overlay,
  .hero-label {
    transition: none;
  }
}

/* Brand header */
.brand-hero {
  text-align: center;
}
.brand-hero h2 {
  font-weight: 800;
  margin: 0 0 0.35rem;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  background: var(--brand-red);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: headGrad 6s ease-in-out infinite alternate;
}
.brand-hero h5 {
  color: var(--ink-600);
  font-weight: 500;
  line-height: 1.6;
  margin: 0.25rem auto 0;
  max-width: 72ch;
}
.brand-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
}
.brand-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  color: #fff !important;
  background: var(--brand-navy);
}
.brand-chip:hover {
  transform: translateY(-2px);
  filter: saturate(1.05);
}

@keyframes headGrad {
  0% {
    background-position: 0 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

/* Products List title */
.section-title .animated-gradient-text {
  letter-spacing: 0.12em;
  font-weight: 700;
}

/* Card polish (keeps your .team .member HTML) */
.team .member {
  border-radius: 20px;
  padding: 1px;
  background: var(--glass);
  backdrop-filter: blur(6px);
  transition: transform 0.35s;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.team .member:hover {
  transform: translateY(-6px);
}

.team .member-img {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.team .member-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  transition: transform 0.6s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.team .member:hover .member-img img {
  transform: scale(1.05);
}

.team .member-info {
  padding: 14px 14px 18px;
  text-align: center;
}
.team .member-info h4 {
  margin: 0.4rem 0 0.25rem;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--ink-900);
}
.team .member-info p {
  font-size: 1.1rem;
  line-height: 2.1rem;
}
.team .member-info .sub {
  display: block;
  font-size: 0.85rem;
  color: var(--ink-600);
  min-height: 1.4em;
}

.team .member .get-started-btn {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  color: #fff !important;
  background-color: var(--brand-navy);
  transition:
    transform 0.2s,
    filter 0.2s;
}

/* Grid spacing */
.team .row {
  row-gap: 24px;
}

/* =========================================================
   NAVBAR (BASE + STATES)
   ========================================================= */
.navbar {
  position: fixed;
  transition:
    background-color 0.3s ease;
  padding: 0.8rem 2rem;
  z-index: var(--z-nav);
}

.navbar-nav .nav-link {
  font-weight: 600;
  text-transform: uppercase;
  color: white !important;
  letter-spacing: 0.5px;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--brand-red) !important; /* Brand red on hover */
}

.navbar-transparent {
  background-color: rgba(0, 43, 92, 0.5) !important; /* navy blue with 50% opacity */
}

.navbar-scrolled {
  background: rgba(0, 0, 0, 0.72) !important;
}

.navbar .nav-link,
.navbar .navbar-brand {
  color: #fff;
}

.navbar .nav-link:hover {
  color: #eaeaea;
}

/* =========================================================
   NAVBAR (STATES / DROPDOWNS)
   ========================================================= */
/* Glassy navy navbar to start */
.navbar-glassy {
  background: rgba(0, 43, 92, 0.85) !important; /* navy with transparency */
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  transition:
    background-color 0.25s ease;
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: var(--brand-navy) !important;
}

/* Solid navy after scroll */
.navbar-solid {
  background: white !important;
}

.navbar-solid .nav-link,
.navbar-solid .navbar-brand {
  color: #002b5c !important; /* Dark navy brand color */
}

.navbar-solid .nav-link:hover {
  color: #c8102e !important; /* Red brand accent on hover */
}

/* Link styles */
.navbar.navbar-light .nav-link,
.navbar.navbar-light .navbar-brand {
  color: #ffffff; /* white links on navy */
}

.navbar.navbar-light .nav-link:hover {
  color: #c8102e; /* brand red on hover */
}

/* Dropdown menu */
.navbar .dropdown-menu {
  border: none;
  background: #ffffff;
  z-index: calc(var(--z-nav) + 1);
}

.navbar .dropdown-item:hover {
  background: #002b5c;
  color: #ffffff;
}

/* Hover open on desktop only */
@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

/* Responsive logo size */
@media (max-width: 768px) {
  .navbar-dark .navbar-toggler-icon,
  .navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  }
}

.nav-item-active .nav-link {
  color: #e63946 !important;
}

/* Premium wrap */
.services--lux {
  position: relative;
  padding-block: clamp(3rem, 6vw, 6rem);
}

/* Section title refinement */
.section-title--modern h2 {
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.section-title--modern h3 {
  font-weight: 400;
  opacity: 0.8;
  margin: 0 0 1.5rem;
}

/* Card */
.icon-box--lux {
  position: relative;
  height: 100%;
  display: grid;
  align-content: start;
  gap: 0.75rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition:
    transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 0.3s ease;
  overflow: hidden;
  isolation: isolate;
  align-items: center;
}
.icon-box--lux::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto auto;
  height: 180px;
  width: 180px;
  rotate: 35deg;
  filter: blur(10px);
  opacity: 0.6;
  pointer-events: none;
  transition:
    transform 0.6s ease,
    opacity 0.6s ease;
}
.icon-box--lux:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.45);
}
.icon-box--lux:hover::before {
  transform: translate3d(-10px, -8px, 0);
  opacity: 0.85;
}

/* Media/logo */
.icon-box__media {
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  border-radius: 12px;
}
.icon-box__media img {
  max-width: 90%;
}

/* Title + link */
.icon-box__title {
  margin: 0.25rem 0 0;
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  letter-spacing: 0.02em;
}
.icon-box__title a {
  color: inherit;
  text-decoration: none;
  background: linear-gradient(90deg, #c8102e, #ff4a63);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: opacity 0.25s ease;
}
.icon-box--lux:hover .icon-box__title a {
  opacity: 0.9;
}

/* Description */
.icon-box__desc {
  margin: 0.25rem 0 0.5rem;
  color: rgba(0, 0, 0, 0.7);
}

/* CTA (keeps your existing classes) */
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  color: var(--brand-navy) !important;
  transition:
    transform 0.25s ease;
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
  .section-title--modern h3 {
    color: rgba(255, 255, 255, 0.85);
  }
  .icon-box__desc {
    color: rgba(255, 255, 255, 0.8);
  }
  .icon-box--lux {
    background: linear-gradient(180deg, rgba(20, 20, 22, 0.55), rgba(24, 24, 28, 0.4));
    border-color: rgba(255, 255, 255, 0.12);
  }
}

/* container */
.section-title--modern {
  text-align: center;
  margin-block: 2.5rem 1.75rem;
  position: relative;
}

/* headline with animated brand gradient */
.section-title--modern h2 {
  text-align: center;
  font-weight: 800;
  font-size: 25px;
  line-height: 1.15;
  margin: 0 0 0.9rem;
  background: var(--brand-red);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* subtle glow underline */
.section-title--modern h2::after {
  content: "";
  display: block;
  height: 6px;
  width: min(220px, 40%);
  margin: 0.65rem auto 0;
  border-radius: 999px;
  background: var(--brand-navy);
  filter: drop-shadow(0 4px 10px rgba(14, 74, 166, 0.25));
  opacity: 0.9;
}

/* subhead */
.section-title--modern h5 {
  margin: 1rem auto 0;
  color: var(--ink-500);
  font-weight: 500;
  line-height: 1.6;
}

/* accessibility: reduce motion if prefers */
@media (prefers-reduced-motion: reduce) {
  .section-title--modern h2 {
    animation: none;
  }
}

@keyframes titleGradient {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

/* Section wrappers – soft gradients + spacing */
.section-wrap {
  position: relative;
  padding: clamp(2rem, 3vw, 4rem) 0;
  overflow: hidden;
}
.section-wrap::before {
  content: "";
  position: absolute;
  inset: -10% -20% auto -20%;
  height: 60%;
  pointer-events: none;
}

/* Unified section titles */
.heading-hero {
  text-transform: none;
  font-weight: 800;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  line-height: 1.15;
  margin: 0 0 0.75rem;
  background: var(--brand-red);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: headGrad 7s ease-in-out infinite alternate;
}
.sublead {
  color: var(--ink-600);
  max-width: 60ch;
  margin: 0 auto;
  line-height: 1.7;
}
@media (prefers-reduced-motion: reduce) {
  .heading-hero {
    animation: none;
  }
}
@keyframes headGrad {
  0% {
    background-position: 0 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

/* Cards – glassy with gradient hairline */
.glass-card {
  background: var(--card-bg);
  backdrop-filter: blur(6px);
  border-radius: 18px;
  transition:
    transform 0.35s ease;
  position: relative;
  overflow: hidden;
}
.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  background: var(--brand-navy);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.6;
  pointer-events: none;
}
.glass-card:hover {
  transform: translateY(-6px);
}

/* Image polish */
.img-tilt {
  border-radius: 16px;
  height: 350px;
}

/* Icon boxes (Mission/Vision) */
.icon-box {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 1.25rem 1.25rem;
}
.icon-box i {
  font-size: 1.75rem;
  color: var(--brand-navy);
}
.icon-box h4 {
  margin: 0.5rem 0 0.25rem;
  letter-spacing: 0.06em;
  color: var(--ink-900);
}
.icon-box p {
  color: var(--ink-600);
  margin-bottom: 0.5rem;
}

/* Bullet lists */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.check-list li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  color: var(--ink-900);
  align-items: center;
  gap: 15px;
}
.check-list li i {
  color: var(--brand-navy);
  margin-top: 0.15rem;
}

/* CTA pill */
.btn-pill {
  display: inline-block;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  color: #fff !important;
  text-decoration: none;
  font-weight: 600;
  background-color: var(--brand-navy);
  transition:
    transform 0.2s ease,
    filter 0.2s ease;
}
.btn-pill:hover {
  transform: translateY(-2px);
  filter: saturate(1.05);
}

/* Logos slider tweaks */
.clients .swiper-slide {
  opacity: 0.8;
  transition:
    filter 0.25s,
    opacity 0.25s,
    transform 0.25s;
}
.clients .swiper-slide:hover {
  filter: none;
  opacity: 1;
  transform: translateY(-3px);
}

.section-title {
  margin-bottom: 40px; /* main text color */
  padding-top: 10px;
}

.animated-gradient-text-light {
  font-size: 1rem;
  font-weight: bold;
  background-size: 300% 300%;
  color: var(--brand-navy);
  -webkit-background-clip: text;
  margin: 0;
}

.animated-gradient-text {
  font-size: 2rem;
  font-weight: bold;
  background-size: 300% 300%;
  -webkit-background-clip: text;
  margin: 0;
}

/* =========================================================
   SCROLL PROGRESS BAR
   ========================================================= */
/* the track (very subtle, optional) */
.scroll-progress {
  position: fixed;
  top: 125px; /* sits above your fixed navbar */
  left: 0;
  width: 100%;
  height: 5px;
  background: rgba(0, 0, 0, 0.05);
  z-index: var(--z-progress);
  pointer-events: none;
}

/* the actual moving bar */
.scroll-progress > span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--brand-red), var(--brand-red-accent));
  transition:
    width 0.15s ease,
    opacity 0.2s ease;
  will-change: width;
  opacity: 0; /* fade in after first scroll pixel */
}

.btn-primary {
  background-color: var(--brand-navy) !important;
  border-color: var(--brand-navy) !important;
}
/*
 Products list
*/
/* Section spacing + subtle backdrop gradient */
#team.team {
  position: relative;
  overflow: hidden;
}

/* Make the grid breathe without touching HTML */
#team .services .row {
  row-gap: 24px;
}

/* Card shell */
#team .member {
  border-radius: 20px;
  border: 1px solid #e6e6e6;
  background: var(--card-bg);
  backdrop-filter: blur(6px);
  transition: transform 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Title polish (uses your existing class if present) */
.section-title p.animated-gradient-text {
  font-size: 1.25rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.25rem;
}

/* =========================================================
   BRANCHES / BRAND BLUE BG
   ========================================================= */
#branches {
  background-color: var(--brand-navy);
}

.bg-brand-blue {
  background-color: #0047ab; /* your branded blue */
}

/* =========================================================
   MISC ELEMENTS
   ========================================================= */
.brand-card img {
  max-height: 56px;
  object-fit: contain;
}

.whatsapp-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1050;
}

.whatsapp-fab img {
  width: 28px;
  height: 28px;
}

.premium-link {
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}

.premium-link:hover {
  color: #c8102e; /* Elegant red accent */
  transform: translateY(-2px) scale(1.02);
  text-shadow: 0 2px 8px rgba(200, 16, 46, 0.3);
}

.premium-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #c8102e, #ff4a63);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.premium-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.btn:hover {
  background-color: #e30613; /* replace with your brand red hex */
  border-color: #e30613; /* match border to the background */
  color: #fff; /* make text white for contrast */
}
