/* =============================================================== */
/* CSS RESET & GLOBAL VARIABLES                                    */

:root {
  /* Fonts & shared transitions */
  --font-primary: "Inter", sans-serif;
  --font-heading: "Playfair Display", serif;
  --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --border-radius-lg: 32px;
  --border-radius-md: 20px;

  /* Global page surface (hero + base body) */
  --bg-light: #eef6ff;
  --text-dark: #1a1a1a;
  --text-muted: #6c757d;

  /* Product section palette */
  --primary-blue: #1b4d8f;
  --primary-blue-light: #e8f0f8;
  --text-light: #707070;
  --gold: #b28a50;
  --card-bg-warm: #f4eee3;
  --card-bg-cool: #e8f0f8;
  --white: #ffffff;
  --border-light: #eaeaea;

  /* Footer palette (scoped to .footer, not global body) */
  --footer-bg: #f8fafc;
  --bg-surface: #ffffff;
  --ink-dark: #0f172a;
  --ink-muted: #475569;
  --ink-soft: #64748b;
  --red-accent: #ef4444;
  --teal-accent: #0ea5e9;
  --border-color: rgba(15, 23, 42, 0.08);
  --grid-dot: rgba(15, 23, 42, 0.02);

  /* "Why Choose Us" palette (scoped to .wcu, not global body) */
  --wcu-page-bg: #e9f5f8;
  --wcu-ink: #1b1712;
  --wcu-ink-soft: #5b564d;
  --flow-tint: #e6efef;
  --flow-a: #2e8f94;
  --net-tint: #f1eee7;
  --net-a: #b8843a;
  --blue-tint: #eeebf6;
  --blue-a: #7a62d6;
  --sig-tint: #e9f1ea;
  --sig-a: #3f8f5b;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  background: var(--bg-light);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  position: relative;
}

img {
  max-width: 100%;
}

.grid-container,
.left-col,
.right-col,
.hero-text-content,
.button-group,
.main-header,
.header-left-group {
  min-width: 0;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-on-scroll.reveal-delay-1 {
  transition-delay: 0.12s;
}

.reveal-on-scroll.reveal-delay-2 {
  transition-delay: 0.24s;
}

.reveal-on-scroll.reveal-delay-3 {
  transition-delay: 0.36s;
}

.reveal-on-scroll.reveal-delay-4 {
  transition-delay: 0.48s;
}

.reveal-zoom {
  transform: scale(0.94);
}

.reveal-zoom.in-view {
  transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

.section-header-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 680px;
  margin: 0 auto 10px;
  padding: 0 20px;
}

.section-eyebrow {
  font-family: var(--font-primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary-blue, #1b4d8f);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: #111111;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 18px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 3px;
  border-radius: 2px;
  background: var(--primary-blue, #1b4d8f);
  transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.section-header-block:hover .section-title::after {
  width: 84px;
}

.section-desc {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.7;
  color: #5c5c5c;
  max-width: 560px;
}

@media (max-width: 640px) {
  .section-header-block {
    margin-bottom: 36px;
  }

  .section-title {
    font-size: 1.9rem;
  }
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    radial-gradient(circle at 8% 12%,
      rgba(37, 99, 235, 0.18) 0,
      transparent 22%),
    radial-gradient(circle at 92% 15%,
      rgba(124, 58, 237, 0.16) 0,
      transparent 20%),
    radial-gradient(circle at 80% 85%,
      rgba(96, 165, 250, 0.14) 0,
      transparent 24%),
    radial-gradient(circle at 15% 80%,
      rgba(168, 85, 247, 0.1) 0,
      transparent 20%);
  filter: blur(50px);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    linear-gradient(rgba(59, 130, 246, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.04) 1px, transparent 1px),
    radial-gradient(circle at center,
      rgba(37, 99, 235, 0.06) 1.5px,
      transparent 2px);
  background-size:
    60px 60px,
    60px 60px,
    120px 120px;
  opacity: 0.7;
  mask-image: radial-gradient(circle, black 65%, transparent 100%);
  -webkit-mask-image: radial-gradient(circle, black 65%, transparent 100%);
}

.hero-section {
  position: relative;
  z-index: 2;
  min-height: auto;
  padding: 18px 26px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0;
}

.main-header {
  width: min(100%, 1600px);
  padding: 0 24px;
  margin: 12px 20px 18px;
}

.grid-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  gap: 30px;
  flex-grow: 1;
}

.left-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px 20px 10px 0;
}

.right-col {
  background: linear-gradient(to bottom, #333333, #000000);
  border-radius: var(--border-radius-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  transition: var(--transition-smooth);
  max-height: calc(97vh - 120px);
}

.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}

.header-left-group {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  max-height: 60px;
  width: auto;
  object-fit: contain;
}

.nav-links-desktop {
  display: flex;
  background: #ffffff;
  padding: 6px;
  border-radius: 100px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.nav-links-desktop a {
  text-decoration: none;
  color: #333333;
  padding: 10px 26px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 100px;
  transition: var(--transition-smooth);
}

.nav-links-desktop a.active,
.nav-links-desktop a:hover {
  background: #000000;
  color: #ffffff;
}

.discover-btn {
  background: #000000;
  color: #ffffff;
  border: none;
  padding: 14px 36px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.discover-btn:hover {
  background: #222222;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.hero-text-content {
  margin: auto 0;
  max-width: 620px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-sub {
  font-family: var(--font-primary);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  margin-bottom: 20px;
  display: inline-block;
  background: linear-gradient(90deg, #0074e4 0%, #d80000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.main-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -1px;
  text-transform: uppercase;
  margin-bottom: 25px;
  color: #111111;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

.description {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.8;
  color: #555555;
  margin-bottom: 0px;
  max-width: 540px;
  text-align: justify;
  letter-spacing: 0.3px;
  font-weight: 400;
}

.description strong {
  color: #0074e4;
  font-weight: 600;
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 5px;
}

.industry-tag {
  background: rgba(0, 116, 228, 0.08);
  border: 1px solid rgba(0, 116, 228, 0.15);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #0074e4;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.industry-tag:hover {
  background: rgba(0, 116, 228, 0.15);
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

.carousel-container {
  margin-top: 0px;
  padding-top: 30px;
  overflow-x: auto;
  overflow-y: hidden;
}

.carousel-track {
  display: flex;
  gap: 16px;
}

.thumb-card {
  flex: 0 0 140px;
  height: 130px;
  background: #ffffff;
  border-radius: var(--border-radius-md);
  padding: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  border: 2px solid transparent;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
  transition: var(--transition-smooth);
}

.thumb-card.active {
  border-color: #000000;
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.thumb-img-fallback {
  width: 100%;
  height: 110px;
  border-radius: calc(var(--border-radius-md) - 6px);
  background-size: cover;
  background-position: center;
  background-color: #e0e0e0;
}

.thumb-label {
  font-size: 0.8rem;
  text-align: center;
  font-weight: 600;
  padding: 4px 0;
}

.main-image-container {
  flex-grow: 1;
  position: relative;
  margin: 25px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  background-color: transparent;
}

.showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition:
    opacity 0.7s ease-in-out,
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  transform: scale(1.06);
}

.showcase-img.active {
  opacity: 1;
  transform: scale(1);
}

.vertical-steps {
  position: absolute;
  left: 25px;
  top: 35%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.step {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.step.active {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.sticky-navbar {
  position: fixed;
  top: -90px;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
  z-index: 1000;
  transition: top 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.sticky-navbar.visible {
  top: 0;
}

.sticky-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hamburger-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  max-width: 86vw;
  height: 100%;
  background: #ffffff;
  z-index: 1010;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-sidebar.open {
  right: 0;
}

.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1005;
  display: none;
}

.sidebar-overlay.visible {
  display: block;
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.close-btn {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
}

.sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 1.3rem;
  font-weight: 700;
}

.next-section {
  padding: 140px 40px;
  background: #ffffff;
  text-align: center;
}

.next-section h2 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  margin-bottom: 20px;
  font-weight: 800;
}

@media (min-width: 2200px) {
  .grid-container {
    max-width: 2000px;
    /* let it grow further before capping */
    gap: 46px;
  }

  .main-title {
    font-size: 4.4rem;
    /* scale text up so it doesn't look tiny on a huge screen */
  }

  .description {
    font-size: 1.05rem;
    max-width: 620px;
  }

  .right-col {
    max-height: 860px;
    /* let the image panel grow proportionally taller too */
  }

  .logo-img {
    max-height: 70px;
  }

  .nav-links-desktop a {
    padding: 12px 30px;
    font-size: 0.95rem;
  }

  .discover-btn {
    padding: 16px 40px;
    font-size: 0.95rem;
  }
}

@media (max-width: 1024px) {
  .grid-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .main-title {
    font-size: 3.8rem;
  }

  .nav-links-desktop,
  .desktop-only {
    display: none;
  }

  .hamburger-btn {
    display: block;
  }

  .right-col {
    max-height: 550px;
  }

  .description {
    font-size: 0.9rem;
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .hero-section {
    padding: 18px;
  }

  .main-header {
    margin-bottom: 26px;
  }

  .main-title {
    font-size: 2.7rem;
  }

  .brand-sub {
    font-size: 0.7rem;
    margin-bottom: 14px;
  }

  .logo-img {
    max-height: 44px;
  }

  .btn {
    margin-top: 26px;
    width: 100%;
  }

  .button-group {
    width: 100%;
  }

  .carousel-container {
    overflow-x: visible;
    padding-top: 22px;
  }

  .carousel-track {
    flex-wrap: wrap;
    gap: 12px;
  }

  .thumb-card {
    flex: 0 0 calc(50% - 6px);
    height: 96px;
  }

  .thumb-img-fallback {
    height: 74px;
  }

  .right-col {
    max-height: 400px;
  }

  .main-image-container {
    margin: 14px;
  }
}

@media (max-width: 400px) {
  .main-title {
    font-size: 2.2rem;
  }

  .discover-btn {
    padding: 12px 24px;
    font-size: 0.8rem;
  }

  .thumb-card {
    flex: 0 0 100%;
    height: 88px;
  }
}

/* --------ABOUT SECTION-------- */
.npo-about-section-wrapper {
  padding: 50px 0;
  background-color: whitesmoke;
  position: relative;
  box-sizing: border-box;
}

.npo-about-section-wrapper *,
.npo-about-section-wrapper *::before,
.npo-about-section-wrapper *::after {
  box-sizing: border-box;
}

.npo-about-main-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}

.npo-about-flow-content-block {
  display: block;
  width: 100%;
}

.npo-about-media-canvas {
  float: left;
  width: 45%;
  max-width: 460px;
  height: 380px;
  margin-right: 40px;
  margin-bottom: 10px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.npo-about-decor-pattern-mesh {
  position: absolute;
  width: 320px;
  height: 320px;
  top: 10px;
  left: 10px;
  opacity: 0.12;
  background-image: radial-gradient(#000000 1.5px, transparent 1.5px);
  background-size: 15px 15px;
  z-index: 1;
  mask-image: radial-gradient(circle, black 60%, transparent 100%);
  -webkit-mask-image: radial-gradient(circle, black 60%, transparent 100%);
}

.npo-about-floating-rig-group {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.npo-about-cropped-circle {
  border-radius: 50% !important;
  overflow: hidden;
  position: absolute;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.npo-about-cropped-circle img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.npo-about-img-pos-main {
  width: 250px;
  height: 250px;
  top: 52%;
  left: 45%;
  transform: translate(-50%, -50%);
  z-index: 5;
}

.npo-about-img-pos-top-right {
  width: 130px;
  height: 130px;
  top: 15%;
  right: 20px;
  z-index: 6;
  border: 5px solid #faf8f5;
}

.npo-about-img-pos-bottom-left {
  width: 95px;
  height: 95px;
  bottom: 12%;
  left: 5px;
  z-index: 6;
  border: 4px solid #faf8f5;
}

.npo-about-flow-content-block>span {
  font-family: "Inter", sans-serif;
  color: #c4362c;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.npo-about-flow-content-block>h2 {
  font-family: "Playfair Display", serif;
  font-size: 38px;
  color: #111111;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 14px;
  font-weight: 800;
}

.npo-about-flow-content-block>p {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #555555;
  line-height: 1.65;
  margin-bottom: 14px;
  text-align: justify;
}

.npo-about-flow-content-block>h3 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  color: #111111;
  margin-top: 18px;
  margin-bottom: 10px;
  font-weight: 700;
  display: block;
  clear: none;
}

@keyframes npoAboutDynamicDrift {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0px);
  }
}

.npo-about-floating-anim {
  animation: npoAboutDynamicDrift 6s ease-in-out infinite;
}

@media (max-width: 991px) {
  .npo-about-media-canvas {
    float: none !important;
    width: 100% !important;
    max-width: 380px !important;
    margin: 0 auto 25px auto !important;
    height: 320px !important;
  }

  .npo-about-decor-pattern-mesh {
    left: 50%;
    transform: translateX(-50%);
  }

  .npo-about-flow-content-block>span,
  .npo-about-flow-content-block>h2,
  .npo-about-flow-content-block>h3 {
    text-align: center;
  }

  .npo-about-flow-content-block>p {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .npo-about-section-wrapper {
    padding: 36px 0;
  }

  .npo-about-main-container {
    padding: 0 20px;
  }

  .npo-about-flow-content-block>h2 {
    font-size: 28px;
  }

  .npo-about-flow-content-block>h3 {
    font-size: 20px;
  }

  .npo-about-floating-rig-group {
    max-width: 280px;
    height: 280px;
    margin: 0 auto;
  }

  .npo-about-img-pos-main {
    width: 190px;
    height: 190px;
  }

  .npo-about-img-pos-top-right {
    width: 100px;
    height: 100px;
  }

  .npo-about-img-pos-bottom-left {
    width: 75px;
    height: 75px;
  }
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
  margin-bottom: 5px;
  padding: 14px 28px;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  border-radius: 20px;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  text-decoration: none;
  line-height: 1;
  transition:
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    background-position 0.6s ease,
    color 0.35s ease,
    border-color 0.35s ease;
}

.btn:active {
  transform: translateY(0) scale(0.96);
  transition-duration: 0.15s;
}

.btn:focus-visible {
  outline: 3px solid rgba(24, 96, 189, 0.35);
  outline-offset: 3px;
}

.btn-label {
  position: relative;
  z-index: 2;
}

.btn-icon {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary {
  background: linear-gradient(135deg, #2b82f0 0%, #1860bd 55%, #103f7d 100%);
  background-size: 180% 180%;
  background-position: 0% 0%;
  color: #ffffff;
  border: none;
  box-shadow:
    0 10px 24px -8px rgba(24, 96, 189, 0.55),
    0 2px 8px rgba(24, 96, 189, 0.3);
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(115deg,
      transparent 30%,
      rgba(255, 255, 255, 0.35) 45%,
      transparent 60%);
  transform: translateX(-130%);
  transition: transform 0.85s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  background-position: 100% 100%;
  box-shadow:
    0 18px 32px -8px rgba(24, 96, 189, 0.6),
    0 4px 12px rgba(24, 96, 189, 0.35);
}

.btn-primary:hover::before {
  transform: translateX(130%);
}

.btn-primary:hover .btn-icon svg {
  transform: translateX(5px);
}

.btn-secondary {
  background-color: transparent;
  color: #1860bd;
  border: 2px solid rgba(24, 96, 189, 0.35);
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.25s ease,
    border-color 0.3s ease;
}

.btn-secondary::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #1860bd;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.55s cubic-bezier(0.65, 0, 0.35, 1);
}

.btn-secondary:hover {
  color: #ffffff;
  border-color: #1860bd;
  transform: translateY(-3px);
  box-shadow: 0 12px 22px -10px rgba(24, 96, 189, 0.4);
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.35s ease 0.18s,
    border-color 0.3s ease;
}

.btn-secondary:hover::before {
  transform: scaleX(1);
}

.btn-secondary:hover .btn-icon svg {
  transform: scale(1.08) rotate(-4deg);
}

@media (max-width: 480px) {
  .btn {
    flex: 1 1 100%;
    padding: 16px 24px;
  }
}

/* -- ------PRODUCT SECTION------- */
/* (variables for this section now live in the single consolidated
   :root block at the top of the file) */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.product-section {
  padding: 60px 0 40px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
  margin-top: 60px;
  flex-wrap: wrap;
  gap: 12px;
}

.sub-title {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 0.5rem;
}

.product-main-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: #111111;
}

.product-main-title .highlight {
  color: var(--gold);
}

.categories-wrapper {
  margin-bottom: 2rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.categories-wrapper::-webkit-scrollbar {
  display: none;
}

.categories-container {
  display: flex;
  gap: 12px;
  padding-bottom: 5px;
}

.category-tab {
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-light);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}

.category-tab:not(.active):hover {
  color: var(--primary-blue);
  background-color: var(--primary-blue-light);
  transform: translateY(-1px);
}

.category-tab.active {
  background-color: var(--primary-blue);
  color: var(--white);
  border-color: var(--primary-blue);
  font-weight: 600;
  pointer-events: none;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

.product-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 10px 0 20px 0;
  cursor: grab;
  user-select: none;
  width: 100%;
}

.product-slider:active {
  cursor: grabbing;
}

.product-slider::-webkit-scrollbar {
  display: none;
}

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  border: 1px solid #e0e0e0;
  color: var(--primary-blue);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: bold;
  transition: var(--transition);
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.scroll-btn:hover {
  background-color: var(--primary-blue);
  color: var(--white);
  border-color: var(--primary-blue);
  box-shadow: 0 6px 16px rgba(27, 77, 143, 0.2);
}

#prev-btn {
  left: -23px;
}

#next-btn {
  right: -23px;
}

.scroll-btn.disabled {
  opacity: 0.3;
  pointer-events: none;
  background-color: rgba(255, 255, 255, 0.5);
}

.product-card {
  flex: 0 0 calc((100% - 40px) / 3);
  max-width: calc((100% - 40px) / 3);
  scroll-snap-align: start;
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06);
}

.product-card.hidden {
  display: none !important;
}

.image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-height: 260px;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  margin-bottom: 1.2rem;
  background-color: var(--card-bg-warm);
}

.product-card:nth-child(even) .image-container {
  background-color: var(--card-bg-cool);
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-card:hover .image-container img {
  transform: scale(1.05);
}

.product-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 0.4rem;
  padding: 0 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-description {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  color: #555555;
  line-height: 1.55;
  padding: 0 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  margin-top: 14px;
  margin-left: 4px;
  margin-bottom: 4px;
  background-color: transparent;
  color: var(--primary-blue);
  border: 1.5px solid var(--primary-blue);
  text-decoration: none;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: var(--transition);
}

.read-more-btn::after {
  content: "→";
  font-size: 1rem;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.read-more-btn:hover {
  background-color: var(--primary-blue);
  color: var(--white);
}

.read-more-btn:hover::after {
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .product-card {
    flex: 0 0 calc((100% - 20px) / 2);
    max-width: calc((100% - 20px) / 2);
  }
}

@media (max-width: 640px) {
  .product-card {
    flex: 0 0 85%;
    max-width: 85%;
  }

  .scroll-btn {
    display: none;
  }

  .product-main-title {
    font-size: 1.6rem;
  }

  .container {
    padding: 0 16px;
  }
}

/* ============================= */
/* TESTIMONIAL SECTION */
/* ============================= */

.testimonial-section {
  padding: 40px 24px 60px;
  background-color: whitesmoke;
  position: relative;
}

.testimonial-card {
  max-width: 1040px;
  margin: 0 auto;
  position: relative;
  overflow: visible;
  border-radius: 32px;
  padding: 22px 36px;
  background:
    radial-gradient(circle at 90% 0%,
      rgba(37, 99, 235, 0.1) 0,
      transparent 40%),
    radial-gradient(circle at 4% 100%,
      rgba(124, 58, 237, 0.08) 0,
      transparent 38%),
    linear-gradient(160deg, #82d5ef 0%, #f4f9ff 55%, #eaf2fd 100%);
  border: 1px solid rgba(37, 99, 235, 0.08);
  box-shadow:
    0 24px 48px -25px rgba(20, 40, 80, 0.18),
    0 2px 8px rgba(20, 40, 80, 0.04);
  display: grid;
  grid-template-columns: 0.8fr auto 1.1fr;
  gap: 38px;
  align-items: center;
}

.testimonial-media-col {
  position: relative;
}

.testimonial-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 230px;
  margin-top: 40px;
  z-index: 1;
}

.testimonial-photo-wrap::before {
  content: "";
  position: absolute;
  inset: -22px -16px auto auto;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  border: 1px solid rgba(24, 96, 189, 0.14);
  z-index: 0;
}

.testimonial-photo-wrap::after {
  content: "";
  position: absolute;
  left: -26px;
  bottom: -18px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(24, 96, 189, 0.06);
  border: 1px solid rgba(24, 96, 189, 0.1);
  z-index: 0;
}

.testimonial-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3 / 3.6;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  box-shadow: 0 18px 36px -18px rgba(20, 40, 80, 0.35);
}

.testimonial-rating-badge {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: -26px;
  margin-left: 4px;
  background: #ffffff;
  width: fit-content;
  padding: 8px 16px 8px 8px;
  border-radius: 100px;
  box-shadow: 0 10px 20px -10px rgba(20, 40, 80, 0.2);
}

.testimonial-rating-score {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: #111111;
  line-height: 1;
}

.testimonial-rating-stars {
  display: flex;
  gap: 3px;
  color: #f5b400;
  font-size: 0.8rem;
}

.testimonial-media-heading {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #111111;
  line-height: 1.32;
  margin-top: 16px;
}

.testimonial-media-text {
  font-family: var(--font-primary);
  font-size: 0.8rem;
  color: #6b7280;
  line-height: 1.55;
  margin-top: 8px;
  max-width: 260px;
}

.testimonial-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(24, 96, 189, 0.12);
}

.testimonial-content-col {
  position: relative;
  z-index: 2;
}

.testimonial-quote-mark {
  position: absolute;
  top: -42px;
  left: -6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 7rem;
  font-weight: 700;
  color: rgba(24, 96, 189, 0.08);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.testimonial-kicker {
  position: relative;
  font-family: var(--font-primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1860bd;
  margin-bottom: 12px;
}

.testimonial-heading {
  position: relative;
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1.2;
  color: #111111;
  max-width: 480px;
}

.testimonial-heading-rule {
  width: 100%;
  max-width: 420px;
  height: 1px;
  background: rgba(24, 96, 189, 0.15);
  margin: 18px 0 18px;
}

.testimonial-quote-text {
  font-family: var(--font-primary);
  font-size: 0.92rem;
  line-height: 1.65;
  color: #555555;
  max-width: 480px;
  min-height: 88px;
  transition: opacity 0.35s ease;
}

.testimonial-quote-text.fading {
  opacity: 0;
}

.testimonial-author-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 22px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  transition: opacity 0.35s ease;
}

.testimonial-author.fading {
  opacity: 0;
}

.testimonial-author-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(24, 96, 189, 0.2);
}

.testimonial-author-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #111111;
}

.testimonial-author-role {
  font-family: var(--font-primary);
  font-size: 0.78rem;
  color: #6b7280;
  margin-top: 2px;
}

.testimonial-stack {
  display: flex;
}

.testimonial-stack-item {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  padding: 2px;
  background: transparent;
  border: none;
  cursor: pointer;
  margin-left: -16px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-stack-item:first-child {
  margin-left: 0;
}

.testimonial-stack-item img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 2px rgba(24, 96, 189, 0.15);
  transition: box-shadow 0.35s ease;
}

.testimonial-stack-item.active img {
  box-shadow: 0 0 0 2px #1860bd;
}

.testimonial-stack-item:hover {
  transform: translateY(-4px);
}

@media (max-width: 1024px) {
  .testimonial-card {
    grid-template-columns: 1fr;
    padding: 36px 26px;
    border-radius: 26px;
  }

  .testimonial-divider {
    display: none;
  }

  .testimonial-media-col {
    text-align: center;
  }

  .testimonial-photo-wrap {
    margin: 0 auto;
    margin-top: 16px;
  }

  .testimonial-media-text {
    margin-left: auto;
    margin-right: auto;
  }

  .testimonial-heading,
  .testimonial-quote-text,
  .testimonial-heading-rule {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .testimonial-section {
    padding: 30px 16px 44px;
  }

  .testimonial-card {
    padding: 30px 18px;
  }

  .testimonial-heading {
    font-size: 1.55rem;
  }

  .testimonial-quote-mark {
    font-size: 5rem;
    top: -30px;
  }

  .testimonial-author-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .testimonial-photo-wrap {
    max-width: 180px;
  }
}

/* (footer variables now live in the single consolidated :root block
   at the top of the file, under --footer-bg / --ink-dark / etc.
   The footer's own background is applied via the scoped .footer
   rule below, not a global body{} override.) */

.premium-divider {
  position: relative;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg,
      transparent 0%,
      var(--teal-accent) 25%,
      var(--red-accent) 75%,
      transparent 100%);
}

.footer {
  position: relative;
  background-color: var(--footer-bg);
  background-image: radial-gradient(var(--grid-dot) 1px, transparent 0);
  background-size: 24px 24px;
  color: var(--ink-dark);
  padding: 48px 0 24px;
  overflow: hidden;
}

.footer::before,
.footer::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  opacity: 0.25;
  z-index: 0;
}

.footer::before {
  top: -10%;
  left: 5%;
  background: #bae6fd;
}

.footer::after {
  bottom: 10%;
  right: 5%;
  background: #fecaca;
}

.footer-inner {
  position: relative;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 5vw;
  z-index: 1;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 24px;
}

.col {
  opacity: 0;
  transform: translateY(15px);
  transition:
    opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.col.in-view {
  opacity: 1;
  transform: translateY(0);
}

.col:nth-child(1) {
  transition-delay: 0.04s;
}

.col:nth-child(2) {
  transition-delay: 0.08s;
}

.col:nth-child(3) {
  transition-delay: 0.12s;
}

.col:nth-child(4) {
  transition-delay: 0.16s;
}

.brand-col {
  width: 32%;
}

.products-col {
  width: 20%;
}

.links-col {
  width: 15%;
}

.contact-col {
  width: 25%;
}

.brand-wordmark {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.02em;
  display: inline-flex;
  gap: 3px;
  margin-bottom: 2px;
}

.brand-wordmark .a {
  color: var(--ink-dark);
}

.brand-wordmark .b {
  background: linear-gradient(135deg, var(--red-accent), #f43f5e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-tag {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.35em;
  color: #0284c7;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.brand-col p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-muted);
  margin-bottom: 20px;
}

.newsletter {
  display: flex;
  width: 100%;
  border-radius: 14px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  padding: 5px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
  transition: all 0.3s ease;
}

.newsletter:focus-within {
  border-color: #38bdf8;
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.15);
}

.newsletter input {
  flex: 1;
  border: none;
  outline: none;
  padding: 8px 12px;
  font-size: 14px;
  color: var(--ink-dark);
  background: transparent;
  min-width: 0;
}

.newsletter input::placeholder {
  color: var(--ink-soft);
}

.newsletter button {
  border: none;
  border-radius: 10px;
  padding: 0 18px;
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
  color: #fff;
  font-weight: 600;
  font-size: 13.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.brand-social-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.brand-social-row a {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-social-row a svg {
  width: 16px;
  height: 16px;
  fill: var(--ink-muted);
  transition:
    fill 0.3s,
    transform 0.3s;
}

.brand-social-row a:hover {
  background: var(--ink-dark);
  border-color: var(--ink-dark);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
}

.brand-social-row a:hover svg {
  fill: #fff;
}

.brand-social-row.on-dark a {
  background: #0f172a;
  border-color: #0f172a;
  border-radius: 50%;
}

.brand-social-row.on-dark a svg {
  fill: #ffffff;
}

.brand-social-row.on-dark a:hover {
  background: #e57373;
  border-color: #e57373;
}

.col h4 {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--ink-dark);
  text-transform: uppercase;
  margin-bottom: 16px;
  position: relative;
}

.col h4::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 16px;
  height: 2px;
  background: var(--teal-accent);
}

.flink-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.flink-list a {
  text-decoration: none;
  color: var(--ink-muted);
  font-size: 14px;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
  display: inline-flex;
  align-items: center;
}

.flink-list a:hover {
  color: var(--ink-dark);
  transform: translateX(4px);
}

.scroll-shell .flink-list {
  max-height: 220px;
  overflow-y: auto;
  padding-right: 8px;
}

.scroll-shell .flink-list::-webkit-scrollbar {
  width: 4px;
}

.scroll-shell .flink-list::-webkit-scrollbar-track {
  background: transparent;
}

.scroll-shell .flink-list::-webkit-scrollbar-thumb {
  background: rgba(15, 23, 42, 0.1);
  border-radius: 2px;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-muted);
}

.contact-list li:last-child {
  align-items: flex-start;
}

.contact-list a {
  text-decoration: none;
  color: var(--ink-muted);
  transition: color 0.25s;
}

.contact-list a:hover {
  color: var(--teal-accent);
}

.c-icon {
  flex: none;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
}

.c-icon svg {
  width: 14px;
  height: 14px;
  stroke: #0284c7;
  fill: none;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding: 20px 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
  color: var(--ink-soft);
}

.legal-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.legal-links a {
  text-decoration: none;
  color: var(--ink-soft);
  transition: color 0.25s;
}

.legal-links a:hover {
  color: var(--ink-dark);
}

.to-top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.to-top svg {
  width: 15px;
  height: 15px;
  stroke: var(--ink-muted);
  fill: none;
  transition: all 0.3s;
}

.to-top:hover {
  background: var(--ink-dark);
  border-color: var(--ink-dark);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
}

.to-top:hover svg {
  stroke: #fff;
  transform: translateY(-1px);
}

@media (max-width: 1024px) {
  .footer-columns {
    flex-wrap: wrap;
    gap: 30px;
  }

  .brand-col,
  .products-col,
  .links-col,
  .contact-col {
    width: 45%;
  }
}

@media (max-width: 640px) {
  .footer-columns {
    flex-direction: column;
    gap: 24px;
  }

  .brand-col,
  .products-col,
  .links-col,
  .contact-col {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .legal-links {
    margin-top: 2px;
  }
}

/* -------WHY CHOOSE US SECTION--------- */
/* (variables now live in the single consolidated :root block at the
   top of the file, under --wcu-page-bg / --wcu-ink / --wcu-ink-soft.
   The warm cream background is scoped to .wcu itself below, instead
   of the old global body{} override that was leaking onto the rest
   of the page and fighting with the hero/footer backgrounds.) */

.wcu {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px 60px;
  color: var(--wcu-ink);
  font-family: var(--font-primary);
  -webkit-font-smoothing: antialiased;
}

.wcu-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}

.wcu-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--wcu-ink-soft);
  margin-bottom: 12px;
}

.wcu-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--flow-a);
}

.wcu-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(28px, 3.3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
  max-width: 14ch;
}

.wcu-sub {
  max-width: 33ch;
  font-size: 15px;
  line-height: 1.6;
  color: var(--wcu-ink-soft);
  padding-bottom: 6px;
}

.wcu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.wcu-card {
  position: relative;
  min-height: 230px;
  border-radius: 20px;
  overflow: hidden;
  padding: 22px 24px 20px;
  display: flex;
  flex-direction: column;
  isolation: isolate;
  border: 1px solid rgba(27, 23, 18, 0.06);
  opacity: 0;
  transform: translateY(20px);
  transition:
    transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.wcu-card.is-visible {
  animation: cardUp 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes cardUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wcu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -22px rgba(27, 23, 18, 0.22);
}

.wcu-card--flow {
  background: var(--flow-tint);
}

.wcu-card--net {
  background: var(--net-tint);
}

.wcu-card--blue {
  background: var(--blue-tint);
}

.wcu-card--sig {
  background: var(--sig-tint);
}

.wcu-card--flow:hover {
  border-color: rgba(46, 143, 148, 0.35);
}

.wcu-card--net:hover {
  border-color: rgba(184, 132, 58, 0.35);
}

.wcu-card--blue:hover {
  border-color: rgba(122, 98, 214, 0.35);
}

.wcu-card--sig:hover {
  border-color: rgba(63, 143, 91, 0.35);
}

.wcu-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.wcu-bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition:
    transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 0.6s ease;

  mask-image: linear-gradient(to right,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 1) 65%);
  -webkit-mask-image: linear-gradient(to right,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 1) 65%);
}

.wcu-card:hover .wcu-bg video {
  transform: scale(1.09);
}

.wcu-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  mix-blend-mode: normal;
}

.wcu-card--flow .wcu-bg::after {
  background: linear-gradient(to right,
      rgba(230, 239, 239, 0.95) 0%,
      rgba(230, 239, 239, 0.5) 45%,
      rgba(230, 239, 239, 0) 75%);
}

.wcu-card--net .wcu-bg::after {
  background: linear-gradient(to right,
      rgba(241, 238, 231, 0.95) 0%,
      rgba(241, 238, 231, 0.5) 45%,
      rgba(241, 238, 231, 0) 75%);
}

.wcu-card--blue .wcu-bg::after {
  background: linear-gradient(to right,
      rgba(238, 235, 246, 0.95) 0%,
      rgba(238, 235, 246, 0.5) 45%,
      rgba(238, 235, 246, 0) 75%);
}

.wcu-card--sig .wcu-bg::after {
  background: linear-gradient(to right,
      rgba(233, 241, 234, 0.95) 0%,
      rgba(233, 241, 234, 0.5) 45%,
      rgba(233, 241, 234, 0) 75%);
}

.wcu-bg-fallback {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.wcu-card--flow .wcu-bg-fallback {
  background: radial-gradient(circle at 78% 20%,
      rgba(46, 143, 148, 0.18),
      transparent 60%);
}

.wcu-card--net .wcu-bg-fallback {
  background: radial-gradient(circle at 78% 20%,
      rgba(184, 132, 58, 0.18),
      transparent 60%);
}

.wcu-card--blue .wcu-bg-fallback {
  background: radial-gradient(circle at 78% 20%,
      rgba(122, 98, 214, 0.18),
      transparent 60%);
}

.wcu-card--sig .wcu-bg-fallback {
  background: radial-gradient(circle at 78% 20%,
      rgba(63, 143, 91, 0.18),
      transparent 60%);
}

.wcu-card.no-video .wcu-bg-fallback {
  opacity: 1;
}

.wcu-card.no-video .wcu-bg video {
  display: none;
}

.wcu-icon-wrap {
  position: relative;
  z-index: 1;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(27, 23, 18, 0.06);
  margin-bottom: 14px;
}

.wcu-icon-wrap svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wcu-card--flow .wcu-icon-wrap svg {
  stroke: var(--flow-a);
}

.wcu-card--net .wcu-icon-wrap svg {
  stroke: var(--net-a);
}

.wcu-card--blue .wcu-icon-wrap svg {
  stroke: var(--blue-a);
}

.wcu-card--sig .wcu-icon-wrap svg {
  stroke: var(--sig-a);
}

.wcu-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--wcu-ink-soft);
  margin-bottom: 8px;
}

.wcu-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.wcu-card--flow .wcu-badge .dot {
  background: var(--flow-a);
}

.wcu-card--net .wcu-badge .dot {
  background: var(--net-a);
}

.wcu-card--blue .wcu-badge .dot {
  background: var(--blue-a);
}

.wcu-card--sig .wcu-badge .dot {
  background: var(--sig-a);
}

.wcu-card-title {
  position: relative;
  z-index: 1;
  font-family: "Space Grotesk", sans-serif;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 6px;
  max-width: 17ch;
}

.wcu-card-copy {
  position: relative;
  z-index: 1;
  font-size: 13px;
  line-height: 1.55;
  color: var(--wcu-ink-soft);
  max-width: 32ch;
  margin-bottom: 14px;
}

.wcu-cta {
  position: relative;
  z-index: 1;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--wcu-ink);
  text-decoration: none;
  width: fit-content;
  padding-bottom: 2px;
  border-bottom: 1.5px solid currentColor;
}

.wcu-cta svg {
  width: 13px;
  height: 13px;
  transition: transform 0.3s ease;
}

.wcu-cta:hover svg {
  transform: translateX(4px);
}

@media (max-width: 860px) {
  .wcu-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .wcu-grid {
    grid-template-columns: 1fr;
  }

  .wcu-card {
    min-height: 210px;
  }

  .wcu-bg video {
    mask-image: linear-gradient(to bottom,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 1) 60%);
    -webkit-mask-image: linear-gradient(to bottom,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 1) 60%);
  }

  .wcu-card--flow .wcu-bg::after {
    background: linear-gradient(to bottom,
        rgba(230, 239, 239, 0.95) 0%,
        rgba(230, 239, 239, 0.5) 50%,
        rgba(230, 239, 239, 0) 90%);
  }

  .wcu-card--net .wcu-bg::after {
    background: linear-gradient(to bottom,
        rgba(241, 238, 231, 0.95) 0%,
        rgba(241, 238, 231, 0.5) 50%,
        rgba(241, 238, 231, 0) 90%);
  }

  .wcu-card--blue .wcu-bg::after {
    background: linear-gradient(to bottom,
        rgba(238, 235, 246, 0.95) 0%,
        rgba(238, 235, 246, 0.5) 50%,
        rgba(238, 235, 246, 0) 90%);
  }

  .wcu-card--sig .wcu-bg::after {
    background: linear-gradient(to bottom,
        rgba(233, 241, 234, 0.95) 0%,
        rgba(233, 241, 234, 0.5) 50%,
        rgba(233, 241, 234, 0) 90%);
  }
}

@media (max-width: 480px) {
  .wcu {
    padding: 56px 18px 40px;
  }

  .wcu-card-copy {
    max-width: 100%;
  }

  .wcu-card-title {
    max-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {

  .wcu-card,
  .wcu-head {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .wcu-bg video {
    transition: none !important;
  }
}

.contactus-layout-scope {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 140px 20px 20px 20px;
  box-sizing: border-box;
  background-color: #ffffff;
}

.contactus-layout-scope * {
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.contactus-main-container {
  display: flex;
  width: 100%;
  max-width: 1100px;
  background: #ffffff;
  border-radius: 24px;
  overflow: visible;
  gap: 35px;
  position: relative;
}

.contactus-form-section {
  flex: 1.3;
  padding: 15px;
  min-width: 0;
}

.contactus-subtitle {
  color: #e57373;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contactus-subtitle::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 2px;
  background-color: #e57373;
}

.contactus-form-section h1 {
  color: #1e293b;
  font-size: 32px;
  margin-bottom: 24px;
  font-weight: 700;
  line-height: 1.25;
}

.contactus-grid-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contactus-form-group {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.contactus-full-width {
  grid-column: span 2;
}

.contactus-form-group input,
.contactus-form-group textarea,
.contactus-custom-select-trigger {
  width: 100%;
  padding: 14px 18px;
  background-color: #f8fafc;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 15px;
  color: #1e293b;
  transition: all 0.3s ease;
  outline: none;
}

.contactus-form-group input:focus,
.contactus-form-group textarea:focus {
  border-color: #a2d2ff;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(162, 210, 255, 0.2);
}

.contactus-form-group textarea {
  resize: none;
  height: 120px;
}

.contactus-custom-select-wrapper {
  position: relative;
  cursor: pointer;
  user-select: none;
}

.contactus-custom-select-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contactus-custom-select-trigger svg {
  width: 14px;
  height: 14px;
  stroke: #e57373;
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
  flex: none;
}

.contactus-custom-select-wrapper.contactus-open .contactus-custom-select-trigger svg {
  transform: rotate(180deg);
}

.contactus-custom-options {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  right: 0;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  border: 1px solid #e3f2fd;
  max-height: 150px;
  overflow-y: auto;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.3s ease;
}

.contactus-custom-select-wrapper.contactus-open .contactus-custom-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.contactus-custom-option {
  padding: 11px 18px;
  font-size: 15px;
  color: #1e293b;
  transition: background 0.2s ease;
}

.contactus-custom-option:hover {
  background-color: #e3f2fd;
}

.contactus-custom-options::-webkit-scrollbar {
  width: 6px;
}

.contactus-custom-options::-webkit-scrollbar-track {
  background: #f8fafc;
  border-radius: 0 12px 12px 0;
}

.contactus-custom-options::-webkit-scrollbar-thumb {
  background: #e57373;
  border-radius: 10px;
}

.contactus-submit-container {
  grid-column: span 2;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.contactus-btn-submit {
  background-color: #ffb7b2;
  color: #1e293b;
  border: none;
  padding: 14px 28px;
  border-radius: 28px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contactus-btn-submit:hover {
  background-color: #e57373;
  color: #ffffff;
  transform: translateY(-1px);
}

.contactus-btn-icon {
  background-color: #000000;
  color: #ffffff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  flex: none;
}

.contactus-btn-icon svg {
  width: 17px;
  height: 17px;
  fill: #ffffff;
}

.contactus-info-section {
  flex: 0.7;
  background-color: #e3f2fd;
  border-radius: 24px;
  padding: 40px 32px 32px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  min-width: 0;
}

.contactus-info-block {
  margin-bottom: 22px;
}

.contactus-info-block h3 {
  font-size: 20px;
  color: #1e293b;
  margin-bottom: 8px;
  font-weight: 600;
}

.contactus-info-block p {
  color: #475569;
  font-size: 15px;
  line-height: 1.55;
}

.contactus-social-media h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.contactus-character-wrapper {
  position: absolute;
  bottom: 100%;
  right: 40px;
  width: 170px;
  height: auto;
  z-index: 15;
  pointer-events: none;
  margin-bottom: -47px;
}

.contactus-character-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  mix-blend-mode: multiply;
}

@media (max-width: 850px) {
  .contactus-layout-scope {
    padding-top: 110px;
  }

  .contactus-main-container {
    flex-direction: column;
    gap: 30px;
  }

  .contactus-grid-form {
    grid-template-columns: 1fr;
  }

  .contactus-full-width,
  .contactus-submit-container {
    grid-column: span 1;
  }

  .contactus-character-wrapper {
    width: 180px;
    right: 30px;
  }
}

@media (max-width: 480px) {
  .contactus-layout-scope {
    padding: 96px 14px 14px;
  }

  .contactus-form-section h1 {
    font-size: 24px;
  }

  .contactus-info-section {
    padding: 32px 20px 24px;
  }

  .contactus-character-wrapper {
    width: 120px;
    right: 16px;
    margin-bottom: -34px;
  }

  .contactus-btn-submit {
    padding: 12px 20px;
    font-size: 14px;
  }
}

@media (min-width: 481px) {
  .main-title {
    white-space: nowrap;
    font-size: clamp(2.5rem, 5vw, 4rem);
  }
}

@media (max-width: 640px) {
  .carousel-container {
    display: none;
  }

  .right-col {
    max-height: 350px;
    margin-bottom: 20px;
  }

  .main-title {
    font-size: 2rem !important;
    white-space: normal;
    line-height: 1.1;
  }
}

@media (max-width: 640px) {
  .button-group {
    flex-wrap: nowrap !important;
    gap: 8px !important;
    margin-top: 20px;
  }

  .btn {
    flex: 1 1 50%;
    margin-top: 0 !important;
    padding: 10px 10px !important;
    font-size: 0.75rem !important;
  }

  .btn-icon svg {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 640px) {
  .button-group {
    margin-top: 10px !important;
    margin-bottom: 0px !important;
    padding-bottom: 0 !important;
  }

  .hero-text-content {
    margin-bottom: 0 !important;
    padding-bottom: 0px !important;
  }

  .carousel-container {
    padding-top: 10px !important;
    margin-top: 0 !important;
  }
}
/* ======BLOG SECTION====== */
.bs-blog-wrapper {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #f4f7f9 0%, #eaeef3 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

.bs-blog-wrapper * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Container Design - Fluid height for clean stacking */
.bs-blog-container {
  display: flex;
  width: 100%;
  max-width: 1100px;
  min-height: 600px;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(11, 29, 58, 0.06);
}

/* --- LEFT SIDEBAR --- */
.bs-blog-sidebar {
  width: 35%;
  background-color: #e3f2fd;
  display: flex;
  flex-direction: column;
  padding: 30px 20px 30px 30px;
  border-right: 1px solid rgba(11, 29, 58, 0.05);
}

.bs-blog-sidebar-header {
  margin-bottom: 25px;
}

.bs-blog-logo {
  color: #f08b86;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.bs-blog-sidebar-header h2 {
  color: #0b1d3a;
  font-size: 26px;
  margin-bottom: 15px;
  font-weight: 700;
}

.bs-blog-search-box input {
  width: 100%;
  padding: 10px 0;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(11, 29, 58, 0.1);
  color: #0b1d3a;
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s;
}

.bs-blog-search-box input:focus {
  border-bottom-color: #f08b86;
}

.bs-blog-search-box input::placeholder {
  color: rgba(11, 29, 58, 0.4);
}

/* Scroll Area Setup */
.bs-blog-list {
  flex-grow: 1;
  height: 0;
  min-height: 250px;
  overflow-y: auto;
  padding-right: 5px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.bs-blog-list::-webkit-scrollbar {
  display: none;
  width: 0 !important;
  height: 0 !important;
  background: transparent;
}

/* Interactive Sidebar Items */
.bs-blog-item {
  color: #3e4e68;
  padding: 15px 10px;
  cursor: pointer;
  font-size: 15px;
  line-height: 1.4;
  border-left: 3px solid transparent;
  padding-left: 15px;
  transition: all 0.3s ease;
}

.bs-blog-item:hover {
  color: #0b1d3a;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 6px;
}

.bs-blog-item.bs-blog-active {
  color: #0b1d3a;
  font-weight: 600;
  border-left: 3px solid #f08b86;
  background-color: #ffffff;
  border-radius: 0 6px 6px 0;
  box-shadow: 0 4px 12px rgba(11, 29, 58, 0.03);
}

/* Hidden source elements inside each sidebar card — used by JS to populate
   the main display panel, not shown in the sidebar list itself */
.bs-blog-item-image,
.bs-blog-item-description,
.bs-blog-item-link {
  display: none;
}

/* Visible title inside each sidebar card */
.bs-blog-item-title {
  font-size: 15px;
  font-weight: inherit;
  color: inherit;
  line-height: 1.4;
}

.bs-blog-no-results {
  color: #53627c;
  font-size: 14px;
  font-style: italic;
  padding: 15px 0;
  text-align: center;
}

/* --- RIGHT SIDE CONTENT PANEL --- */
.bs-blog-content {
  width: 65%;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
}

.bs-blog-image-wrapper {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background-color: #f4f7f9;
}

.bs-blog-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bs-blog-text-wrapper {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.bs-blog-text-wrapper h1 {
  font-size: 28px;
  color: #0b1d3a;
  margin-bottom: 15px;
  line-height: 1.3;
  font-weight: 700;
}

.bs-blog-text-wrapper p {
  font-size: 15px;
  color: #53627c;
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bs-blog-read-more-btn {
  align-self: flex-start;
  color: #f08b86;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid #f08b86;
  padding-bottom: 2px;
  transition:
    color 0.3s,
    border-color 0.3s;
}

.bs-blog-read-more-btn:hover {
  color: #0b1d3a;
  border-color: #0b1d3a;
}

/* --- ANIMATIONS --- */
.bs-blog-fade-in {
  animation: bsBlogFadeInEffect 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes bsBlogFadeInEffect {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
       MEDIA QUERIES FOR TABLETS & MOBILES
       ========================================================================== */

/* Tablets & Medium Screens */
@media (max-width: 900px) {
  .bs-blog-container {
    min-height: auto;
  }

  .bs-blog-sidebar {
    width: 40%;
    padding: 20px;
  }

  .bs-blog-content {
    width: 60%;
  }

  .bs-blog-text-wrapper {
    padding: 25px;
  }

  .bs-blog-text-wrapper h1 {
    font-size: 22px;
  }
}

/* Smartphones & Small Viewports (List moves to the top, content underneath) */
@media (max-width: 768px) {
  .bs-blog-container {
    flex-direction: column;
    /* Changed to place the sidebar/list at the top */
    border-radius: 12px;
  }

  .bs-blog-sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(11, 29, 58, 0.08);
    padding: 25px 20px;
  }

  .bs-blog-list {
    height: auto;
    max-height: 260px;
    /* Limits standard list menu size on mobile screens */
  }

  .bs-blog-content {
    width: 100%;
  }

  .bs-blog-image-wrapper {
    height: 200px;
  }

  .bs-blog-text-wrapper {
    padding: 25px 20px;
  }

  .bs-blog-text-wrapper h1 {
    font-size: 24px;
  }
}

/* ======BREADCRUMB SECTION====== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  background-color: #f8fafc;
  color: #1e293b;
  min-height: 100vh;
}

/* --- 3D Breadcrumb Section Wrapper --- */
.breadcrumb-section {
  margin-top: 0;
  position: relative;
  min-height: 320px;
  width: 100%;
  padding: 40px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  /* Keeps the background image zoom & movements safely contained */
  background-color: #ffffff;
  /* Establishes 3D perspective space */
  perspective: 1000px;
}

.main-header {
  position: relative;
  z-index: 3;
}

.breadcrumb-bg {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;

  /* ============================================================== */
  /* UPDATE THIS LINE WITH YOUR ACTUAL IMAGE PATH FROM YOUR ASSETS  */
  /* ============================================================== */
  background-image: url("/assets/photos/Breadcrumb\ Image.jfif");

  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 1;
  transform: translateZ(-50px);
  /* Pushes the image deeply into the 3D background */
  transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Soft Pastel Gradient Overlay (Light Blue to Light Red/Rose) */
.breadcrumb-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Seamless integration of colors directly over your asset image */
  background: linear-gradient(135deg,
      rgba(48, 152, 221, 0.88) 0%,
      /* Soft Light Blue */
      rgba(250, 234, 234, 0.9) 100%
      /* Soft Light Red / Rose */
    );
  z-index: 2;
}

/* Premium 3D Glassmorphism Content Card */
.breadcrumb-card {
  position: relative;
  z-index: 3;
  background: rgba(255, 255, 255, 0.55);
  /* Elegant translucent white */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 50px 70px;
  border-radius: 30px;

  /* Multi-layered 3D shadow simulating ambient light wrapping around the card */
  box-shadow:
    0 30px 60px rgba(59, 130, 246, 0.15),
    /* Light Blue drop shadow */
    0 12px 25px rgba(244, 63, 94, 0.1),
    /* Light Red ambient shadow */
    inset 0 1px 0 rgba(255, 255, 255, 0.8);

  max-width: 620px;
  width: calc(100% - 40px);
  /* Ensures safety margin on tablets/mobile */

  /* Essential 3D transform declarations */
  transform-style: preserve-3d;
  transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition:
    transform 0.15s ease-out,
    box-shadow 0.3s ease;
  will-change: transform;
}

/* Expand shadow intensity on card interactive hover */
.breadcrumb-card:hover {
  box-shadow:
    0 40px 80px rgba(59, 130, 246, 0.22),
    0 15px 35px rgba(244, 63, 94, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* 3D Pop-out Page Title */
.breadcrumb-title {
  font-size: 2rem; /* fallback/starting size, JS will adjust from here */
  font-weight: 650;
  letter-spacing: -1px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #0f172a 30%, #1e3a8a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  overflow-wrap: break-word;
  word-break: break-word;
  line-height: 1.35;
  max-width: 34ch;
  margin-left: auto;
  margin-right: auto;
  transition: font-size 0.15s ease;

  /* Floats 50px above the card surface */
  transform: translateZ(50px);
}

/* 3D Pop-out Navigation Link bar */
.breadcrumb-nav {
  display: inline-block;
  /* Floats 30px above the card surface */
  transform: translateZ(30px);
  transition: transform 0.3s ease;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Breadcrumb List Item styling */
.breadcrumb-item {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.2px;
}

/* Interactive 3D Underline Animated Links */
.breadcrumb-item a {
  color: #64748b;
  /* Sleek slate grey */
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.25s ease;
}

.breadcrumb-item a:hover {
  color: #0f172a;
}

/* Dynamic dual-gradient line transition (Light Blue to Light Red) */
.breadcrumb-item a::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, #3b82f6, #f43f5e);
  transform-origin: bottom right;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.breadcrumb-item a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* Minimalist Chevron Separator in Slate Gray */
.breadcrumb-item+.breadcrumb-item::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 2px solid #cbd5e1;
  border-top: 2px solid #cbd5e1;
  transform: rotate(45deg);
  margin: 0 14px 2px 10px;
}

/* Active Page styling (Vibrant Light Red Accent) */
.breadcrumb-item.active {
  color: #f43f5e;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(244, 63, 94, 0.15);
}

/* Responsive Design Mobile Adjustments */
@media (max-width: 640px) {
  .breadcrumb-section {
    min-height: 320px;
  }

  .breadcrumb-card {
    padding: 35px 20px;
    border-radius: 20px;
  }

  .breadcrumb-title {
    font-size: 1.5rem;
  }
}

/* ======NAVBAR EXCEPT HOME PAGE======= */

.fixed-navbar {
  position: fixed;
  top: 0;
  /* Changed from -90px to 0 so it stays visible */
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
  z-index: 1000;
}

.fixed-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

:root {
  --ssgrp-cream: #f3ede1;
  --ssgrp-panel: #ecf3f6;
  --ssgrp-brown: #3d2b1f;
  --ssgrp-gold: #c98a45;
  --ssgrp-heading: #000000;
  --ssgrp-muted: #6b6b6b;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--ssgrp-muted);
  line-height: 1.7;
}

.ssgrp-product-detail {
  max-width: 1180px;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 30px;
}

/* ---------- Image floats left, text wraps beside then continues full-width ---------- */
.ssgrp-content-wrap {
  overflow: hidden;
  /* clearfix so container height accounts for the float */
}

/* ---------- Image block ---------- */
.ssgrp-media-block {
  float: left;
  width: 420px;
  margin: 0 40px 24px 0;
}

.ssgrp-image-frame {
  position: relative;
  background: var(--ssgrp-panel);
  border-radius: 6px;
  overflow: hidden;
}

.ssgrp-image-frame::before,
.ssgrp-image-frame::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  border: 2px solid var(--ssgrp-gold);
  z-index: 2;
}

.ssgrp-image-frame::before {
  top: 14px;
  left: 14px;
  border-right: none;
  border-bottom: none;
}

.ssgrp-image-frame::after {
  bottom: 14px;
  right: 14px;
  border-left: none;
  border-top: none;
}

.ssgrp-image-frame img {
  display: block;
  width: 100%;
  height: 340px;
  object-fit: contain;
  padding: 24px;
}

.ssgrp-share-block {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

.ssgrp-share-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ssgrp-heading);
}

.ssgrp-share-icons {
  display: flex;
  gap: 10px;
}

.ssgrp-share-icons button {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: var(--ssgrp-brown);
  color: var(--ssgrp-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.ssgrp-share-icons button:hover {
  background: var(--ssgrp-gold);
  transform: translateY(-2px);
}

.ssgrp-share-icons svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* ---------- Text content ---------- */
.ssgrp-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ssgrp-gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.ssgrp-eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--ssgrp-gold);
}

.ssgrp-text-content h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 34px;
  color: var(--ssgrp-heading);
  margin-bottom: 18px;
}

.ssgrp-text-content h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--ssgrp-heading);
  margin: 26px 0 12px;
}

.ssgrp-text-content p {
  font-size: 14.5px;
  color: var(--ssgrp-muted);
  margin-bottom: 14px;
}

.ssgrp-text-content strong {
  color: var(--ssgrp-heading);
}

/* ---------- Divider before the section that continues past the image ---------- */
.ssgrp-section-divider {
  padding-top: 36px;
  margin-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* ---------- Responsive ---------- */
@media (max-width:900px) {
  .ssgrp-media-block {
    float: none;
    width: 100%;
    max-width: 420px;
    margin: 0 0 24px;
  }
}

@media (max-width:480px) {
  body {
    padding: 32px 16px;
  }

  .ssgrp-text-content h1 {
    font-size: 26px;
  }
}

.cat-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 16px 20px;
  background: #f8fafc;
  width: 100%;
  box-sizing: border-box;
}

/* Top two-column promotional buttons */
.cat-row.two-col {
  display: flex;
  gap: 14px;
  width: 100%;
}
.cat-row.two-col .cat-btn {
  flex: 1;
}

/* Full-width India / State row */
.cat-row.full-row {
  display: flex;
  width: 100%;
}

/* Grid row for small district/city buttons */
.cat-row.grid-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 per row, adjust as needed */
  gap: 14px;
  width: 100%;
  align-items: stretch;
}

.cat-btn {
  border: 1px solid rgba(15, 23, 42, 0.08);
  outline: none;
  cursor: pointer;
  padding: 18px 26px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.03);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cat-row.two-col .cat-btn {
  color: #0f172a;
  white-space: nowrap;
  background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
}
.cat-row.two-col .cat-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #bae6fd 0%, #e0f2fe 100%);
  box-shadow: 0 10px 15px -3px rgba(186, 230, 253, 0.5);
  border-color: rgba(186, 230, 253, 0.8);
}

.cat-btn.full {
  width: 100%;
  white-space: nowrap;
  color: #0f172a;
  background: linear-gradient(135deg, #fee2e2 0%, #fef2f2 100%);
}
.cat-btn.full:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #fecaca 0%, #fee2e2 100%);
  box-shadow: 0 10px 15px -3px rgba(254, 202, 202, 0.5);
  border-color: rgba(254, 202, 202, 0.8);
}

.cat-btn.small {
  width: 100%;   /* fills its grid cell */
  height: 100%;  /* matches tallest button in the row */
  white-space: normal;
  line-height: 1.3;
  color: #0f172a;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.12);
}
.cat-btn.small:hover {
  transform: translateY(-2px);
  background: #f8fafc;
  box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.08);
  border-color: rgba(15, 23, 42, 0.2);
}

/* ==================================================================
   RESPONSIVE ADJUSTMENTS
================================================================== */

@media (max-width: 900px) {
  .cat-row.grid-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .cat-section {
    padding: 14px 16px;
    gap: 10px;
  }
  .cat-row {
    gap: 10px;
  }
  .cat-btn {
    padding: 14px 18px;
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  .cat-row.grid-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile (425px and below) — two-col buttons stack instead of squeezing */
@media (max-width: 425px) {
  .cat-row.two-col {
    flex-direction: column;
  }
  .cat-row.two-col .cat-btn {
    width: 100%;
  }
  .cat-btn.small {
    padding: 12px 16px;
    font-size: 13px;
  }
}

/* Small Mobile (375px and below) */
@media (max-width: 375px) {
  .cat-section {
    padding: 12px 12px;
    gap: 8px;
  }
  .cat-row {
    gap: 8px;
  }
  .cat-btn.small {
    padding: 10px 14px;
    font-size: 12px;
  }
  .cat-btn.full {
    padding: 14px 18px;
    font-size: 13px;
  }
}

/* Extra Small (320px) */
@media (max-width: 320px) {
  .cat-row.grid-row {
    grid-template-columns: repeat(1, 1fr);
  }
  .cat-btn.small {
    padding: 9px 12px;
    font-size: 11.5px;
  }
}


/* ======PRODUCTS DROPDOWN — DESKTOP (with sub-flyout)====== */
.nav-item-dropdown {
  position: relative;
}

.nav-item-dropdown>.dropdown-toggle {
  text-decoration: none;
  color: #333333;
  padding: 10px 26px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 100px;
  transition: var(--transition-smooth);
  display: inline-block;
}

.nav-item-dropdown:hover>.dropdown-toggle {
  background: #000000;
  color: #ffffff;
}

.nav-item-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 14px;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translate(-50%, 10px);
  min-width: 240px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 20px 45px -15px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.3s;
  z-index: 1001;
}

.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.dropdown-menu-flat {
  text-decoration: none;
  color: var(--primary-blue, #1b4d8f);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 10px;
  margin-top: 4px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 14px;
  transition: background 0.25s ease;
}

.dropdown-menu-flat:hover {
  background: rgba(27, 77, 143, 0.06);
}

/* Sub-item (category row that reveals a flyout) */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  text-decoration: none;
  color: #333333;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 10px;
  transition: all 0.25s ease;
}

.dropdown-submenu-toggle:hover,
.dropdown-submenu:hover>.dropdown-submenu-toggle {
  background: var(--primary-blue, #1b4d8f);
  color: #ffffff;
}

.submenu-arrow {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
  transition: transform 0.25s ease;
}

.dropdown-submenu:hover .submenu-arrow {
  transform: translateX(2px);
}

/* invisible bridge so hover survives the jump to the flyout */
.dropdown-submenu::after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 14px;
  height: 100%;
}

.dropdown-submenu-panel {
  position: absolute;
  top: 0;
  left: calc(100% + 14px);
  min-width: 260px;
  max-height: 280px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 20px 45px -15px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow-y: auto;
  overflow-x: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  transition:
    opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.3s;
  z-index: 1002;
  scrollbar-width: thin;
  scrollbar-color: rgba(27, 77, 143, 0.25) transparent;
}

.dropdown-submenu-panel::-webkit-scrollbar {
  width: 6px;
}

.dropdown-submenu-panel::-webkit-scrollbar-track {
  background: transparent;
}

.dropdown-submenu-panel::-webkit-scrollbar-thumb {
  background: rgba(27, 77, 143, 0.25);
  border-radius: 10px;
}

.dropdown-submenu-panel::-webkit-scrollbar-thumb:hover {
  background: rgba(27, 77, 143, 0.4);
}

.dropdown-submenu:hover .dropdown-submenu-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.dropdown-submenu-panel a {
  text-decoration: none;
  color: #333333;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 10px;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.dropdown-submenu-panel a:hover {
  background: var(--primary-blue, #1b4d8f);
  color: #ffffff;
  padding-left: 20px;
}

/* Flip the flyout to open leftward if it's the last item near a viewport edge */
.dropdown-submenu.flip-left .dropdown-submenu-panel {
  left: auto;
  right: calc(100% + 14px);
}

.dropdown-submenu.flip-left .dropdown-submenu-panel {
  transform: translateX(-8px);
}

.dropdown-submenu.flip-left:hover .dropdown-submenu-panel {
  transform: translateX(0);
}

/* ======PRODUCTS ACCORDION — MOBILE (with nested sub-accordion)====== */
.sb-dropdown {
  display: flex;
  flex-direction: column;
}

.sb-dropdown-toggle {
  background: none;
  border: none;
  font-family: inherit;
  text-align: left;
  color: var(--text-dark);
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}

.sb-chevron {
  width: 16px;
  height: 16px;
  stroke: var(--text-dark);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.sb-dropdown.sb-open>.sb-dropdown-toggle .sb-chevron {
  transform: rotate(180deg);
}

.sb-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sb-dropdown.sb-open .sb-dropdown-menu {
  max-height: 800px;
  margin-top: 16px;
}

/* Nested category inside the mobile Products panel */
.sb-subdropdown {
  border-left: 2px solid rgba(0, 0, 0, 0.08);
  padding-left: 14px;
}

.sb-subdropdown-toggle {
  background: none;
  border: none;
  font-family: inherit;
  text-align: left;
  color: #333333;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  padding: 6px 0;
}

.sb-sub-chevron {
  width: 13px;
  height: 13px;
  stroke: #333333;
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  flex: none;
}

.sb-subdropdown.sb-sub-open .sb-sub-chevron {
  transform: rotate(180deg);
}

.sb-subdropdown-menu {
  max-height: 0;
  overflow-y: hidden;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.15) transparent;
}

.sb-subdropdown.sb-sub-open .sb-subdropdown-menu {
  max-height: 220px;
  overflow-y: auto;
  margin-top: 6px;
  margin-bottom: 4px;
}

.sb-subdropdown-menu::-webkit-scrollbar {
  width: 4px;
}

.sb-subdropdown-menu::-webkit-scrollbar-track {
  background: transparent;
}

.sb-subdropdown-menu::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}

.sb-subdropdown-menu a {
  text-decoration: none;
  color: #666666;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 6px 4px;
  transition: color 0.25s ease;
}

.sb-subdropdown-menu a:hover {
  color: #000000;
}

@media (max-width: 480px) {

  .dropdown-menu,
  .dropdown-submenu-panel {
    min-width: 210px;
  }
}