/* Front Pages Consolidated Styles
******************************************************************************* */
/* (C) */
body,
.bg-body {
  background-color: transparent !important;
}

:root {
  --front-hero-offset: 7.125rem;
  --front-hero-gap: 2.5rem;
  --front-hero-content-gap: 1.5rem;
}

@media (max-width: 1199.98px) {
  :root {
    --front-hero-offset: 12.125rem;
  }
}
@media (max-width: 767.98px) {
  :root {
    --front-hero-offset: 8.125rem;
    --front-hero-content-gap: 1.25rem;
  }
}
@media (max-width: 575.98px) {
  :root {
    --front-hero-gap: 2rem;
  }
}
.section-py {
  padding-block: 2rem;
  padding-inline: 0;
}
@media (max-width: 1199.98px) {
  .section-py {
    padding-block: 1.75rem;
    padding-inline: 0;
  }
}
@media (max-width: 767.98px) {
  .section-py {
    padding-block: 1.5rem;
    padding-inline: 0;
  }
}

.first-section-pt {
  padding-block-start: 5rem;
}
@media (max-width: 1199.98px) {
  .first-section-pt {
    padding-block-start: 7.5rem;
  }
}

.card {
  /* card hover border color */
}
.card[class*=card-hover-border-] {
  transition: all 0.2s ease-in-out;
}

.banner-bg-img {
  position: absolute;
  block-size: 100%;
  inline-size: 100%;
  inset-block-start: 0;
  inset-inline-start: 0;
  object-fit: cover;
  object-position: left;
}

.section-title-img {
  block-size: 100%;
  inline-size: 120%;
  inset-block-start: 10px;
  inset-inline-start: -12%;
}

.shadow-xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.min-vh-50 {
  min-block-size: 50vh;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.btn-white {
  background-color: #fff;
  border-color: #fff;
  color: var(--bs-info);
}
.btn-white:hover {
  background-color: #f8f9fa;
  border-color: #f8f9fa;
  color: var(--bs-info);
}

.bg-gradient-dark-transparent {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
}

/* ============================================
   PAGE HERO - Front-facing pages with hero sections
   ============================================ */
.page-hero {
  position: relative;
  padding-block-start: var(--front-hero-offset);
  overflow: hidden;
}
.page-hero > .container {
  position: relative;
  z-index: 1;
  margin-top: 0 !important;
}

.front-hero {
  position: relative;
  padding-block-start: calc(var(--front-hero-offset) + 0rem);
  padding-block-end: calc(var(--front-hero-gap) + 0rem);
  padding-inline: 0;
}

.front-hero--tight {
  padding-block-start: calc(var(--front-hero-offset) + -0.5rem);
  padding-block-end: calc(var(--front-hero-gap) + -1rem);
  padding-inline: 0;
}

.front-hero--roomy {
  padding-block-start: calc(var(--front-hero-offset) + 0.75rem);
  padding-block-end: calc(var(--front-hero-gap) + 0.75rem);
  padding-inline: 0;
}

/* ============================================
   HERO SECTION STYLES
   ============================================ */
.hero-bg-gradient {
  display: none;
}

.hero-content-box {
  position: relative;
  z-index: 2;
}
.hero-content-box .hero-title {
  color: var(--bs-heading-color, #1e2130);
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
}
.hero-content-box .hero-title .text-primary {
  background: linear-gradient(135deg, var(--bs-primary) 0%, #28c76f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-content-box .hero-subtitle {
  font-size: 1.125rem;
  line-height: 1.7;
  max-inline-size: 450px;
}

.hero-cta .btn-primary {
  background: linear-gradient(135deg, var(--bs-primary) 0%, #1a3a6b 100%);
  border: none;
  transition: all 0.3s ease;
}
.hero-cta .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px -8px rgba(var(--bs-primary-rgb), 0.5);
}
.hero-cta .btn-outline-primary {
  border-width: 2px;
  transition: all 0.3s ease;
}
.hero-cta .btn-outline-primary:hover {
  transform: translateY(-3px);
}

@media (max-width: 767.98px) {
  .hero-trust {
    display: none;
  }
}
.hero-trust .trust-item {
  transition: transform 0.2s ease;
}
.hero-trust .trust-item:hover {
  transform: translateY(-2px);
}
.hero-trust .trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  block-size: 32px;
  inline-size: 32px;
}

.hero-banner-wrapper {
  position: relative;
  padding: 1rem 2rem 1rem 1rem;
  overflow: visible;
}

.banner-glow {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 50%;
  transform: translate(-50%, -50%);
  inline-size: 120%;
  block-size: 120%;
  background: radial-gradient(ellipse at center, rgba(var(--bs-primary-rgb), 0.15) 0%, rgba(var(--bs-primary-rgb), 0.05) 40%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.hero-banner-container {
  position: relative;
  z-index: 1;
}
.hero-banner-container:hover .hero-banner-img {
  transform: translateY(-5px);
  box-shadow: 0 35px 80px -20px rgba(0, 0, 0, 0.3), 0 15px 30px -15px rgba(0, 0, 0, 0.15);
}

.hero-banner-img {
  display: block;
  inline-size: 100%;
  block-size: auto;
  object-fit: contain;
  border-radius: 1rem;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.25), 0 10px 20px -10px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.banner-float-card {
  border-radius: 0.75rem;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
@keyframes float-delayed {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes float-slow {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.animate-float {
  animation: none;
}

.animate-float-delayed {
  animation: none;
}

.animate-float-slow {
  animation: none;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS FOR HERO
   ============================================ */
@media (max-width: 991.98px) {
  .hero-content-box .hero-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    text-align: center;
  }
  .hero-content-box .hero-subtitle {
    text-align: center;
    max-inline-size: 100%;
  }
  .hero-content-box .badge {
    display: block;
    text-align: center;
    margin-inline: auto;
    inline-size: fit-content;
  }
  .hero-cta {
    justify-content: center !important;
  }
  .hero-trust .d-flex {
    justify-content: center !important;
  }
  .hero-banner-wrapper {
    margin-block-start: 2rem;
    margin-inline-end: 0;
  }
  .hero-banner-img {
    inline-size: 100%;
  }
  .min-vh-50 {
    min-block-size: auto;
  }
}
@media (max-width: 767.98px) {
  .hero-cta .btn {
    inline-size: 100%;
    justify-content: center;
  }
  .hero-trust .d-flex {
    flex-wrap: wrap;
    gap: 0.75rem !important;
    justify-content: center;
  }
  .hero-trust .trust-item {
    inline-size: 45%;
    justify-content: center;
  }
  .hero-banner-img {
    border-radius: 0.75rem;
  }
}
@media (max-width: 575.98px) {
  .hero-content-box .hero-title {
    font-size: 1.75rem;
  }
  .hero-content-box .hero-subtitle {
    font-size: 1rem;
  }
  .hero-cta .btn {
    padding: 0.875rem 1.5rem !important;
    font-size: 0.95rem;
  }
}
/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .animate-float,
  .animate-float-delayed,
  .animate-float-slow {
    animation: none;
  }
  .hero-banner-img,
  .hero-cta .btn,
  .hero-trust .trust-item {
    transition: none;
  }
}
/* Dark mode support */
[data-bs-theme=dark] .hero-bg-gradient {
  background: linear-gradient(135deg, rgba(var(--bs-primary-rgb), 0.1) 0%, rgba(30, 33, 48, 0.98) 40%, rgba(var(--bs-info-rgb), 0.08) 100%);
}
[data-bs-theme=dark] .hero-content-box .hero-title {
  color: #fff;
}
[data-bs-theme=dark] .banner-float-card {
  background: rgba(30, 33, 48, 0.95);
}
[data-bs-theme=dark] .banner-glow {
  background: radial-gradient(ellipse at center, rgba(var(--bs-primary-rgb), 0.25) 0%, rgba(var(--bs-primary-rgb), 0.08) 40%, transparent 70%);
}

/* ============================================
   LANDING SOLUTIONS CARDS - Compact Styles
   ============================================ */
#landingSolutions .row.g-6 {
  --bs-gutter-y: 1rem;
  --bs-gutter-x: 1rem;
}
#landingSolutions .card .card-header {
  padding: 1rem 1rem 0.5rem;
}
#landingSolutions .card .card-header .text-center .solution-icon {
  width: 48px !important;
  height: 48px !important;
  margin-bottom: 0.5rem !important;
}
#landingSolutions .card .card-header .text-center .solution-icon i {
  font-size: 1.25rem !important;
}
#landingSolutions .card .card-header h4 {
  font-size: 1.05rem;
  margin-bottom: 0;
}
#landingSolutions .card .card-body {
  padding: 0.5rem 1rem 1rem;
}
#landingSolutions .card .card-body > p {
  font-size: 0.85rem;
  margin-bottom: 0.75rem !important;
  line-height: 1.4;
}
#landingSolutions .card .card-body .pricing-list li {
  margin-bottom: 0.2rem;
}
#landingSolutions .card .card-body .pricing-list li h6 {
  font-size: 0.8rem;
  margin-bottom: 0;
}
#landingSolutions .card .card-body .d-grid {
  margin-top: 0.75rem !important;
}
#landingSolutions .card .card-body .d-grid .btn {
  padding: 0.5rem 0.875rem;
  font-size: 0.85rem;
}
#landingSolutions .card .card-body .d-grid .btn-link {
  padding: 0.125rem;
  font-size: 0.8rem;
  margin-top: 0.25rem !important;
}
@media (max-width: 767.98px) {
  #landingSolutions {
    padding-block: 1rem;
  }
  #landingSolutions .row.g-6 {
    --bs-gutter-y: 1rem;
    --bs-gutter-x: 1rem;
  }
  #landingSolutions .card .card-header {
    padding: 1rem;
  }
  #landingSolutions .card .card-header .text-center .solution-icon {
    width: 56px !important;
    height: 56px !important;
    margin-bottom: 0.75rem !important;
  }
  #landingSolutions .card .card-header .text-center .solution-icon i {
    font-size: 1.25rem !important;
  }
  #landingSolutions .card .card-header h4 {
    font-size: 1.1rem;
  }
  #landingSolutions .card .card-body {
    padding: 1rem;
    padding-block-start: 0;
  }
  #landingSolutions .card .card-body > p {
    font-size: 0.9rem;
    margin-bottom: 0.75rem !important;
  }
  #landingSolutions .card .card-body .pricing-list li {
    margin-bottom: 0.25rem;
  }
  #landingSolutions .card .card-body .pricing-list li h6 {
    font-size: 0.85rem;
    margin-bottom: 0;
  }
  #landingSolutions .card .card-body .d-grid {
    margin-top: 1rem !important;
  }
  #landingSolutions .card .card-body .d-grid .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  #landingSolutions .card .card-body .d-grid .btn-link {
    padding: 0.25rem;
    font-size: 0.85rem;
  }
}
@media (max-width: 575.98px) {
  #landingSolutions .card .card-header {
    padding: 0.75rem;
  }
  #landingSolutions .card .card-header .text-center .solution-icon {
    width: 48px !important;
    height: 48px !important;
    margin-bottom: 0.5rem !important;
  }
  #landingSolutions .card .card-header .text-center .solution-icon i {
    font-size: 1.125rem !important;
  }
  #landingSolutions .card .card-header h4 {
    font-size: 1rem;
  }
  #landingSolutions .card .card-body {
    padding: 0.75rem;
  }
  #landingSolutions .card .card-body > p {
    font-size: 0.85rem;
    margin-bottom: 0.5rem !important;
  }
  #landingSolutions .card .card-body .pricing-list li h6 {
    font-size: 0.8rem;
  }
}

/* ============================================
   FAQ SECTION - Additional spacing
   ============================================ */
#landingFAQ {
  padding-block-end: 4rem;
}
@media (max-width: 767.98px) {
  #landingFAQ {
    padding-block-end: 3rem;
  }
}

/* ============================================
   ABOUT PAGE IMAGE STYLES
   ============================================ */
.about-hero-img-wrapper,
.about-multimodal-img-wrapper {
  position: relative;
  inline-size: 70%;
  margin-inline: auto;
}
@media (max-width: 991.98px) {
  .about-hero-img-wrapper,
  .about-multimodal-img-wrapper {
    inline-size: 100%;
  }
}

/* ============================================
   FRONT PAGE SHARED IMAGE STYLES
   ============================================ */
.shipper-hero-img-wrapper,
.carrier-hero-img-wrapper,
.broker-hero-img-wrapper {
  position: relative;
  inline-size: 70%;
  margin-inline: auto;
}
@media (max-width: 991.98px) {
  .shipper-hero-img-wrapper,
  .carrier-hero-img-wrapper,
  .broker-hero-img-wrapper {
    inline-size: 100%;
  }
}

.shipper-hero-img-wrapper,
.broker-hero-img-wrapper {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.shipper-hero-img-wrapper:hover .shipper-hero-img,
.carrier-hero-img-wrapper:hover .carrier-hero-img,
.broker-hero-img-wrapper:hover .broker-hero-img {
  transform: scale(1.03);
}

.shipper-hero-img,
.carrier-hero-img,
.broker-hero-img {
  display: block;
  inline-size: 100%;
  block-size: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.4s ease;
}

.shipper-logistics-img-wrapper,
.carrier-logistics-img-wrapper,
.broker-dashboard-img-wrapper {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.2);
}

.shipper-logistics-img-wrapper:hover .shipper-logistics-img,
.carrier-logistics-img-wrapper:hover .carrier-logistics-img,
.broker-dashboard-img-wrapper:hover .broker-dashboard-img {
  transform: scale(1.02);
}

.shipper-logistics-img,
.carrier-logistics-img,
.broker-dashboard-img {
  display: block;
  inline-size: 100%;
  block-size: 400px;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.4s ease;
}
@media (max-width: 991.98px) {
  .shipper-logistics-img,
  .carrier-logistics-img,
  .broker-dashboard-img {
    block-size: 300px;
  }
}
@media (max-width: 575.98px) {
  .shipper-logistics-img,
  .carrier-logistics-img,
  .broker-dashboard-img {
    block-size: 220px;
  }
}

.shipper-logistics-img {
  object-position: 30% center;
}

.shipper-monitoring-img,
.carrier-monitoring-img,
.broker-capacity-img {
  display: block;
  inline-size: 100%;
  block-size: 100%;
  min-block-size: 450px;
  object-fit: cover;
  object-position: center center;
}
@media (max-width: 991.98px) {
  .shipper-monitoring-img,
  .carrier-monitoring-img,
  .broker-capacity-img {
    min-block-size: 280px;
    max-block-size: 350px;
  }
}

/* ============================================
   SHIPPER PAGE IMAGE STYLES
   ============================================ */
.shipper-hero-badge {
  position: absolute;
  inset-block-end: -1rem;
  inset-inline-end: -1rem;
  max-inline-size: 200px;
  z-index: 10;
}
@media (max-width: 767.98px) {
  .shipper-hero-badge {
    position: relative;
    inset-block-end: auto;
    inset-inline-end: auto;
    margin-block-start: 1rem;
    max-inline-size: 100%;
  }
}

/* ============================================
   BROKER PAGE IMAGE STYLES
   ============================================ */
.broker-stat-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.15);
  border-inline-start: 4px solid var(--bs-primary);
}

/* ============================================
   BROKER PAGE ENHANCED STYLES
   ============================================ */
.broker-feature-card {
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}
.broker-feature-card::before {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  inline-size: 100%;
  block-size: 4px;
  background: linear-gradient(90deg, var(--bs-primary) 0%, #28c76f 50%, var(--bs-info) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.broker-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -15px rgba(var(--bs-primary-rgb), 0.25);
}
.broker-feature-card:hover::before {
  opacity: 1;
}
.broker-feature-card:hover .broker-feature-icon {
  transform: scale(1.1);
  box-shadow: 0 12px 24px -8px rgba(var(--bs-primary-rgb), 0.4);
}

.broker-feature-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  inline-size: 72px;
  block-size: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(var(--bs-primary-rgb), 0.1) 0%, rgba(var(--bs-primary-rgb), 0.2) 100%);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.broker-feature-icon i {
  font-size: 1.75rem;
  background: linear-gradient(135deg, var(--bs-primary) 0%, #1a3a6b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.broker-feature-icon::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px dashed rgba(var(--bs-primary-rgb), 0.2);
  animation: rotate-slow 20s linear infinite;
}

@keyframes rotate-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.broker-tools-list .broker-tool-item {
  position: relative;
  padding: 1.25rem;
  margin-block-end: 1rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(var(--bs-primary-rgb), 0.03) 100%);
  border: 1px solid rgba(var(--bs-primary-rgb), 0.08);
  transition: all 0.3s ease;
}
.broker-tools-list .broker-tool-item:hover {
  transform: translateX(8px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(var(--bs-primary-rgb), 0.08) 100%);
  box-shadow: 0 10px 30px -10px rgba(var(--bs-primary-rgb), 0.2);
  border-color: rgba(var(--bs-primary-rgb), 0.15);
}
.broker-tools-list .broker-tool-item:hover .broker-tool-icon {
  background: linear-gradient(135deg, var(--bs-primary) 0%, #1a3a6b 100%);
}
.broker-tools-list .broker-tool-item:hover .broker-tool-icon i {
  color: #fff !important;
  -webkit-text-fill-color: #fff;
}
.broker-tools-list .broker-tool-item:last-child {
  margin-block-end: 0;
}
.broker-tools-list .broker-tool-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  inline-size: 64px;
  block-size: 64px;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(var(--bs-primary-rgb), 0.1) 0%, rgba(var(--bs-primary-rgb), 0.15) 100%);
  flex-shrink: 0;
  transition: all 0.4s ease;
}
.broker-tools-list .broker-tool-icon i {
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--bs-primary) 0%, #1a3a6b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}
.broker-tools-list .broker-tool-content h5 {
  color: var(--bs-heading-color);
  margin-block-end: 0.375rem;
}
.broker-tools-list .broker-tool-content p {
  line-height: 1.6;
}

.broker-capacity-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem !important;
}
.broker-capacity-card::before {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline-end: 0;
  inline-size: 300px;
  block-size: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  transform: translate(30%, -30%);
  pointer-events: none;
}
.broker-capacity-card .capacity-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  inline-size: 80px;
  block-size: 80px;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.broker-capacity-card .capacity-icon-wrapper i {
  font-size: 2rem;
}
.broker-capacity-card .capacity-type-item {
  padding: 1rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, rgba(var(--bs-primary-rgb), 0.03) 0%, rgba(var(--bs-primary-rgb), 0.06) 100%);
  border: 1px solid rgba(var(--bs-primary-rgb), 0.08);
  transition: all 0.3s ease;
}
.broker-capacity-card .capacity-type-item:hover {
  background: linear-gradient(135deg, rgba(var(--bs-primary-rgb), 0.08) 0%, rgba(var(--bs-primary-rgb), 0.12) 100%);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px -8px rgba(var(--bs-primary-rgb), 0.2);
}
.broker-capacity-card .capacity-type-item .capacity-type-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  inline-size: 40px;
  block-size: 40px;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, rgba(var(--bs-primary-rgb), 0.1) 0%, rgba(var(--bs-primary-rgb), 0.15) 100%);
  margin-inline-end: 0.75rem;
  flex-shrink: 0;
}
.broker-capacity-card .capacity-type-item .capacity-type-icon i {
  font-size: 1rem;
}

.broker-steps-wrapper {
  position: relative;
}

.broker-step-card {
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.broker-step-card:hover {
  transform: translateY(-10px);
}
.broker-step-card:hover .broker-step-number {
  transform: scale(1.15);
  box-shadow: 0 12px 24px -8px rgba(var(--bs-primary-rgb), 0.5);
}
.broker-step-card .broker-step-number {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  inline-size: 56px;
  block-size: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bs-primary) 0%, #1a3a6b 100%);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  transition: all 0.4s ease;
  z-index: 2;
}
.broker-step-card .broker-step-number::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(var(--bs-primary-rgb), 0.3) 0%, rgba(var(--bs-primary-rgb), 0.1) 100%);
  z-index: -1;
}
.broker-step-card::after {
  content: "";
  position: absolute;
  inset-block-start: 28px;
  inset-inline-start: calc(50% + 32px);
  inline-size: calc(100% - 32px);
  block-size: 3px;
  background: linear-gradient(90deg, var(--bs-primary) 0%, rgba(var(--bs-primary-rgb), 0.3) 50%, transparent 100%);
  z-index: 1;
}
@media (max-width: 991.98px) {
  .broker-step-card::after {
    display: none;
  }
}
.broker-step-card:last-child::after {
  display: none;
}

.broker-capacity-section {
  position: relative;
  border-radius: 1.5rem !important;
  overflow: hidden;
}
.broker-capacity-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(var(--bs-primary-rgb), 0.95) 0%, rgba(26, 58, 107, 0.98) 100%);
  z-index: 0;
}
.broker-capacity-section::after {
  content: "";
  position: absolute;
  inset-block-start: -50%;
  inset-inline-end: -20%;
  inline-size: 60%;
  block-size: 200%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
  pointer-events: none;
}
.broker-capacity-section > * {
  position: relative;
  z-index: 1;
}
.broker-capacity-section .capacity-feature {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.3s ease;
}
.broker-capacity-section .capacity-feature:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(4px);
}
.broker-capacity-section .capacity-feature .capacity-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  inline-size: 44px;
  block-size: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  margin-inline-end: 1rem;
  flex-shrink: 0;
}

.broker-pricing-card {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.broker-pricing-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px -15px rgba(var(--bs-primary-rgb), 0.2);
}
.broker-pricing-card:hover .broker-pricing-btn {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -8px rgba(var(--bs-primary-rgb), 0.4);
}
.broker-pricing-card.broker-pricing-popular {
  border: 2px solid var(--bs-primary);
  transform: scale(1.02);
}
.broker-pricing-card.broker-pricing-popular:hover {
  transform: scale(1.02) translateY(-12px);
}
.broker-pricing-card .broker-pricing-badge {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 50%;
  transform: translate(-50%, -50%);
  padding: 0.375rem 1rem;
  border-radius: 2rem;
  background: linear-gradient(135deg, var(--bs-primary) 0%, #1a3a6b 100%);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.broker-pricing-card .broker-pricing-price {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--bs-primary) 0%, #28c76f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.broker-pricing-card .broker-pricing-feature {
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
}
.broker-pricing-card .broker-pricing-feature .feature-check {
  display: flex;
  align-items: center;
  justify-content: center;
  inline-size: 20px;
  block-size: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(var(--bs-primary-rgb), 0.1) 0%, rgba(var(--bs-primary-rgb), 0.15) 100%);
  margin-inline-end: 0.75rem;
  flex-shrink: 0;
}
.broker-pricing-card .broker-pricing-feature .feature-check i {
  font-size: 0.625rem;
  color: var(--bs-primary);
}

.faq-hero {
  position: relative;
}

.faq-search-panel {
  padding: 1.75rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 1.5rem 3rem -1.5rem rgba(15, 23, 42, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}
.faq-search-panel .form-label {
  color: rgba(15, 23, 42, 0.7);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
}
.faq-search-panel .form-control,
.faq-search-panel .form-select {
  border-radius: 0.875rem;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.25s ease;
}
.faq-search-panel .form-control:focus,
.faq-search-panel .form-select:focus {
  border-color: rgba(54, 49, 244, 0.4);
  box-shadow: 0 0 0 0.2rem rgba(54, 49, 244, 0.12);
}
.faq-search-panel .form-control-lg {
  padding: 0.875rem 1.25rem;
  font-size: 1rem;
}

.faq-language {
  margin-top: 1rem;
}
.faq-language .form-select {
  border-radius: 0.75rem;
  padding: 0.625rem 1rem;
  background-color: rgba(255, 255, 255, 0.95);
  cursor: pointer;
}

.faq-content {
  padding-block-start: var(--front-hero-content-gap, 1.5rem);
  padding-block-end: 3rem;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.5) 0%, #fff 100%);
}

.faq-sidebar {
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  position: sticky;
  top: 6rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1.25rem 3rem -1rem rgba(15, 23, 42, 0.12), 0 0 1px rgba(15, 23, 42, 0.1);
  overflow: hidden;
}
.faq-sidebar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(54, 49, 244, 0.8) 0%, rgba(14, 165, 233, 0.8) 100%);
}
.faq-sidebar .card-body {
  padding: 1.75rem;
  position: relative;
}
.faq-sidebar h6 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(15, 23, 42, 0.6);
}

.faq-sidebar .btn {
  white-space: nowrap;
  font-size: 0.75rem;
  padding: 0.375rem 0.75rem;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}
.faq-sidebar .btn.btn-outline-primary {
  border-color: rgba(54, 49, 244, 0.25);
}
.faq-sidebar .btn.btn-outline-primary:hover {
  background: rgba(54, 49, 244, 0.08);
  border-color: rgba(54, 49, 244, 0.4);
}
.faq-sidebar .btn.btn-outline-secondary {
  border-color: rgba(15, 23, 42, 0.15);
}
.faq-sidebar .btn.btn-outline-secondary:hover {
  background: rgba(15, 23, 42, 0.06);
}

.faq-category-option {
  padding: 0.625rem 0.875rem;
  border-radius: 0.75rem;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: all 0.25s ease;
}
.faq-category-option:hover {
  background: rgba(54, 49, 244, 0.04);
  transform: translateX(4px);
}
.faq-category-option .form-check-input {
  margin-top: 0;
  width: 1.1rem;
  height: 1.1rem;
  border: 2px solid rgba(15, 23, 42, 0.2);
  cursor: pointer;
  transition: all 0.2s ease;
}
.faq-category-option .form-check-input:checked {
  background-color: #3631f4;
  border-color: #3631f4;
}
.faq-category-option .form-check-input:focus {
  box-shadow: 0 0 0 0.2rem rgba(54, 49, 244, 0.15);
}
.faq-category-option .small {
  font-weight: 500;
  transition: color 0.2s ease;
}

.faq-category-option:focus-within {
  box-shadow: 0 0 0 0.15rem rgba(54, 49, 244, 0.08);
}

.faq-category-option.is-active {
  background: linear-gradient(135deg, rgba(54, 49, 244, 0.06) 0%, rgba(14, 165, 233, 0.04) 100%);
}
.faq-category-option.is-active .small {
  color: #0f172a;
  font-weight: 600;
}

.faq-category-option.is-active .faq-category-count {
  background: linear-gradient(135deg, rgba(54, 49, 244, 0.18) 0%, rgba(14, 165, 233, 0.12) 100%);
  color: #3631f4;
  font-weight: 700;
}

.faq-category-count {
  font-weight: 600;
  font-size: 0.75rem;
  padding: 0.25rem 0.625rem;
  border-radius: 1rem;
  background: rgba(15, 23, 42, 0.06);
  color: rgba(15, 23, 42, 0.6);
  transition: all 0.25s ease;
}

.faq-card {
  border-radius: 1.25rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: #fff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  position: relative;
}
.faq-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, rgba(54, 49, 244, 0.6) 0%, rgba(14, 165, 233, 0.4) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.faq-card .card-body {
  padding: 1.5rem;
  position: relative;
  z-index: 1;
}
.faq-card .badge {
  font-weight: 600;
  font-size: 0.7rem;
  padding: 0.375rem 0.75rem;
  border-radius: 0.5rem;
  letter-spacing: 0.02em;
}
.faq-card h5 {
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 0.75rem;
  transition: color 0.2s ease;
}
.faq-card p {
  font-size: 0.925rem;
  line-height: 1.65;
  color: rgba(15, 23, 42, 0.65);
}

.faq-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 1.5rem 3rem -1rem rgba(15, 23, 42, 0.15), 0 0 0 1px rgba(54, 49, 244, 0.1);
  border-color: rgba(54, 49, 244, 0.15);
}
.faq-card:hover::before {
  opacity: 1;
}
.faq-card:hover h5 {
  color: #3631f4;
}

.faq-item {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.faq-item.d-none {
  opacity: 0;
  transform: scale(0.95);
}

.faq-detail-hero {
  position: relative;
}

.faq-detail-nav {
  align-items: center;
  margin-bottom: 1rem;
}

.faq-detail-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: #0f172a;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  box-shadow: 0 0.5rem 1.5rem -0.75rem rgba(15, 23, 42, 0.2);
  transition: all 0.25s ease;
}
.faq-detail-back span[aria-hidden] {
  transition: transform 0.2s ease;
}
.faq-detail-back:hover {
  background: #fff;
  color: #3631f4;
  box-shadow: 0 0.75rem 2rem -0.5rem rgba(15, 23, 42, 0.2);
  transform: translateX(-3px);
}
.faq-detail-back:hover span[aria-hidden] {
  transform: translateX(-3px);
}

.breadcrumb-wrapper {
  padding: 0.5rem 0;
}
.breadcrumb-wrapper .breadcrumb {
  font-size: 0.875rem;
  background: transparent;
  margin-bottom: 0;
}
.breadcrumb-wrapper .breadcrumb .breadcrumb-item {
  color: rgba(15, 23, 42, 0.5);
}
.breadcrumb-wrapper .breadcrumb .breadcrumb-item a {
  color: rgba(15, 23, 42, 0.65);
  text-decoration: none;
  transition: color 0.2s ease;
}
.breadcrumb-wrapper .breadcrumb .breadcrumb-item a:hover {
  color: #3631f4;
}
.breadcrumb-wrapper .breadcrumb .breadcrumb-item.active {
  color: #0f172a;
  font-weight: 600;
}
.breadcrumb-wrapper .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(15, 23, 42, 0.3);
}

.faq-detail-card {
  border-radius: 1.5rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: #fff;
  box-shadow: 0 1rem 3rem -1.5rem rgba(15, 23, 42, 0.1);
  overflow: hidden;
}
.faq-detail-card .card-body {
  padding: 2rem;
}
.faq-detail-card .card-body p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(15, 23, 42, 0.75);
  margin-bottom: 1.25rem;
}
.faq-detail-card .card-body p:last-child {
  margin-bottom: 0;
}
.faq-detail-card .card-body a {
  color: #3631f4;
  text-decoration: underline;
  text-decoration-color: rgba(54, 49, 244, 0.3);
  text-underline-offset: 3px;
  transition: all 0.2s ease;
}
.faq-detail-card .card-body a:hover {
  text-decoration-color: #3631f4;
}
.faq-detail-card .card-body ul,
.faq-detail-card .card-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}
.faq-detail-card .card-body ul li,
.faq-detail-card .card-body ol li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.faq-detail-sidebar {
  border-radius: 1.25rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.98) 0%, rgba(14, 165, 233, 0.03) 100%);
  box-shadow: 0 1rem 2.5rem -1.5rem rgba(15, 23, 42, 0.1);
  overflow: hidden;
}
.faq-detail-sidebar .card-body {
  padding: 1.5rem;
}
.faq-detail-sidebar .card-body h6 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(15, 23, 42, 0.5);
  margin-bottom: 1rem;
}
.faq-detail-sidebar .card-body hr {
  border-color: rgba(15, 23, 42, 0.08);
  margin: 1.25rem 0;
}
.faq-detail-sidebar .card-body .small {
  font-size: 0.875rem;
  line-height: 1.6;
}
.faq-detail-sidebar .btn {
  border-radius: 0.75rem;
  font-weight: 600;
  padding: 0.625rem 1rem;
  transition: all 0.25s ease;
}
.faq-detail-sidebar .btn.btn-primary {
  box-shadow: 0 0.5rem 1.5rem -0.5rem rgba(54, 49, 244, 0.4);
}
.faq-detail-sidebar .btn.btn-primary:hover {
  box-shadow: 0 0.75rem 2rem -0.5rem rgba(54, 49, 244, 0.5);
  transform: translateY(-2px);
}
.faq-detail-sidebar .btn.btn-outline-primary:hover {
  transform: translateY(-2px);
}

.faq-detail-related {
  border-radius: 1.25rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: #fff;
  box-shadow: 0 1rem 2.5rem -1.5rem rgba(15, 23, 42, 0.08);
}
.faq-detail-related .card-body {
  padding: 1.5rem;
}
.faq-detail-related .card-body h6 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(15, 23, 42, 0.5);
  margin-bottom: 1rem;
}

.faq-related-link {
  display: block;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  text-decoration: none;
  background: linear-gradient(145deg, #fff 0%, rgba(248, 250, 252, 0.8) 100%);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.faq-related-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, rgba(54, 49, 244, 0.5) 0%, rgba(14, 165, 233, 0.4) 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.faq-related-link .fw-semibold {
  font-size: 0.925rem;
  line-height: 1.4;
  margin-bottom: 0.25rem;
  transition: color 0.2s ease;
}
.faq-related-link .small {
  font-size: 0.8rem;
  opacity: 0.7;
}

.faq-related-link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(54, 49, 244, 0.15);
}

.faq-related-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 1rem 2rem -0.75rem rgba(15, 23, 42, 0.15);
  border-color: rgba(54, 49, 244, 0.15);
}
.faq-related-link:hover::before {
  opacity: 1;
}
.faq-related-link:hover .fw-semibold {
  color: #3631f4;
}

.faq-related-articles h6 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(15, 23, 42, 0.5);
}

.faq-related-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 0.75rem;
  overflow: hidden;
  background: #fff;
}

.faq-related-item {
  display: block;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #0f172a;
  text-decoration: none;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  transition: all 0.2s ease;
}
.faq-related-item:last-child {
  border-bottom: none;
}
.faq-related-item:hover {
  background: rgba(54, 49, 244, 0.04);
  color: #3631f4;
  padding-left: 1.25rem;
}
.faq-related-item:focus-visible {
  outline: none;
  background: rgba(54, 49, 244, 0.06);
  color: #3631f4;
}

.faq-detail-body {
  padding-top: 0;
  padding-bottom: 3rem;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.4) 0%, #fff 100%);
}

#faq-empty {
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  font-weight: 500;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.08) 0%, rgba(14, 165, 233, 0.02) 100%);
  border: 1px solid rgba(14, 165, 233, 0.15);
  color: rgba(15, 23, 42, 0.7);
}

@media (max-width: 991.98px) {
  .faq-sidebar {
    position: static;
    margin-bottom: 1.5rem;
  }
  .faq-sidebar::before {
    display: none;
  }
  .faq-sidebar .card-body {
    padding: 1.25rem;
  }
  .faq-detail-card .card-body {
    padding: 1.5rem;
  }
  .faq-detail-card .card-body p {
    font-size: 1rem;
  }
}
@media (max-width: 767.98px) {
  .faq-search-panel {
    padding: 1.25rem;
    border-radius: 1.25rem;
  }
  .faq-card .card-body {
    padding: 1.25rem;
  }
  .faq-card .card-body h5 {
    font-size: 1rem;
  }
  .faq-detail-sidebar .card-body,
  .faq-detail-related .card-body {
    padding: 1.25rem;
  }
  .faq-related-link {
    padding: 0.875rem 1rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .faq-card,
  .faq-category-option,
  .faq-related-link,
  .faq-detail-back,
  .faq-sidebar .btn {
    transition: none;
  }
  .faq-card:hover,
  .faq-related-link:hover {
    transform: none;
  }
}
nav.layout-navbar {
  z-index: 1070;
  backdrop-filter: unset;
  background-color: transparent;
  block-size: auto;
}
nav.layout-navbar::before {
  position: absolute;
  display: block;
  block-size: 100%;
  content: "";
  inline-size: 100%;
  inset-block-start: 0;
  inset-inline-start: 0;
}
nav.layout-navbar .navbar.landing-navbar {
  --bs-front-navbar-bg: var(--bs-primary);
  --bs-front-navbar-border-color: var(--bs-primary);
  border: 2px solid var(--bs-front-navbar-border-color);
  background-color: var(--bs-front-navbar-bg);
  margin-block-start: 1rem;
  padding-block: 0.614rem;
  transform: unset;
  transition: all 0.2s ease-in-out;
  border-radius: 0.375rem;
}
nav.layout-navbar .navbar.landing-navbar .navbar-nav .nav-link {
  color: #ffffff;
  margin-inline-end: 0.625rem;
  padding-block: 0.5rem;
  padding-inline: 0.625rem;
}
@media (max-width: 1199.98px) {
  nav.layout-navbar .navbar.landing-navbar .navbar-nav .nav-link {
    margin-inline-end: 0;
    padding-inline: 0.5rem;
  }
}
nav.layout-navbar .navbar.landing-navbar .navbar-nav .nav-item:last-child .nav-link {
  margin-inline-end: 0;
}
@media (min-width: 992px) {
  nav.layout-navbar .navbar.landing-navbar .navbar-nav .nav-item.mega-dropdown > .dropdown-menu {
    inset-block-start: 100%;
    inset-inline-start: 50%;
    max-inline-size: 1300px;
    transform: translateX(-50%);
  }
  :dir(rtl) nav.layout-navbar .navbar.landing-navbar .navbar-nav .nav-item.mega-dropdown > .dropdown-menu {
    transform: translateX(50%);
  }
}
@media (max-width: 991.98px) {
  nav.layout-navbar .navbar.landing-navbar .navbar-nav .nav-item.mega-dropdown > .dropdown-menu {
    border: none;
    background: transparent;
    box-shadow: none;
  }
}
nav.layout-navbar .navbar.landing-navbar .navbar-nav .nav-item.mega-dropdown > .dropdown-menu .mega-dropdown-link {
  margin: 0;
  font-weight: 400;
  padding-inline: 0;
}
nav.layout-navbar .navbar.landing-navbar .navbar-nav .nav-item.mega-dropdown > .dropdown-menu .mega-dropdown-link .icon-base {
  block-size: 1rem;
  color: var(--bs-body-color);
  font-size: 1rem;
  inline-size: 1rem;
  margin-block-start: -0.125rem;
}
nav.layout-navbar .navbar.landing-navbar .navbar-nav .nav-item.mega-dropdown > .dropdown-menu .mega-dropdown-link:hover {
  color: var(--bs-primary);
}
nav.layout-navbar .navbar.landing-navbar .navbar-nav .nav-item .nav-img-col,
nav.layout-navbar .navbar.landing-navbar .navbar-nav .nav-item .nav-img-col img {
  border-radius: 0.625rem;
}
nav.layout-navbar .navbar.landing-navbar .navbar-nav .show > .nav-link,
nav.layout-navbar .navbar.landing-navbar .navbar-nav .active > .nav-link,
nav.layout-navbar .navbar.landing-navbar .navbar-nav .nav-link.show,
nav.layout-navbar .navbar.landing-navbar .navbar-nav .nav-link.active,
nav.layout-navbar .navbar.landing-navbar .navbar-nav .nav-link:hover {
  color: rgba(255, 255, 255, 0.75);
}
@media (max-width: 991.98px) {
  nav.layout-navbar .navbar.landing-navbar .landing-nav-menu {
    background-color: var(--bs-paper-bg);
  }
}
@media (max-width: 991.98px) {
  nav.layout-navbar .navbar.landing-navbar .landing-menu-overlay {
    position: fixed;
    z-index: 9998;
    display: none;
    background-color: rgba(var(--bs-black-rgb), 0.78);
    block-size: 100%;
    inline-size: 100%;
    inset-block-start: 0;
    inset-inline-start: 0;
    transition: all 0.2s ease-in-out;
  }
  nav.layout-navbar .navbar.landing-navbar .landing-nav-menu {
    position: fixed;
    z-index: 9999;
    display: block;
    padding: 1rem;
    block-size: 100%;
    inline-size: 80%;
    inset-block-start: 0;
    inset-inline-start: -100%;
    max-inline-size: 300px;
    overflow-y: auto;
    transition: all 0.3s ease-in-out;
  }
  nav.layout-navbar .navbar.landing-navbar .landing-nav-menu.show {
    inset-inline-start: 0;
  }
  nav.layout-navbar .navbar.landing-navbar .landing-nav-menu.show ~ .landing-menu-overlay {
    display: block;
  }
}
nav.layout-navbar .navbar.landing-navbar .btn-outline-light {
  color: #ffffff;
  border-color: #ffffff;
}
nav.layout-navbar .navbar.landing-navbar .btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}
nav.layout-navbar.navbar-active::before {
  backdrop-filter: saturate(100%) blur(6px);
}
nav.layout-navbar.navbar-active .landing-navbar {
  background-color: var(--bs-primary);
  box-shadow: var(--bs-box-shadow-sm);
}
nav.layout-navbar .menu-text {
  color: #ffffff;
}

.landing-footer {
  margin-top: 5rem;
  --bs-footer-text: var(--bs-white);
  --bs-footer-bottom-text: #d3d4dc;
  --bs-footer-bottom-bg: #282c3e;
  --bs-footer-top-bg: #241d31;
  /* use dark variables as front footer having dark background */
}
.landing-footer .footer-link,
.landing-footer .footer-text {
  color: var(--bs-footer-text);
  opacity: 0.78;
}
.landing-footer .footer-title {
  color: var(--bs-footer-text);
  opacity: 0.92;
}
.landing-footer .footer-bottom-text {
  color: var(--bs-footer-bottom-text);
}
.landing-footer .footer-bottom {
  background-color: var(--bs-footer-bottom-bg);
}
.landing-footer .footer-link {
  transition: all 0.2s ease-in-out;
}
.landing-footer .footer-link:hover {
  opacity: 1;
}
.landing-footer .footer-top {
  padding-block: 3.6875rem 2.4375rem;
  border-top-left-radius: 3.75rem;
  border-top-right-radius: 3.75rem;
}
@media (max-width: 767.98px) {
  .landing-footer .footer-top {
    padding-block: 3rem;
    padding-inline: 0;
  }
}
.landing-footer .footer-top .footer-bg {
  object-position: center;
}
@media (min-width: 992px) {
  .landing-footer .footer-logo-description {
    max-inline-size: 385px;
  }
}
.landing-footer .footer-form {
  max-inline-size: 22.25rem;
}
.landing-footer .footer-form input {
  background-color: transparent;
  color: var(--bs-footer-text);
}
.landing-footer .footer-form input, .landing-footer .footer-form input:hover:not(:focus):not(:disabled) {
  border-color: #44485e;
}
.landing-footer .footer-form input:focus {
  border-color: var(--bs-primary);
  box-shadow: 0 0.125rem 0.25rem color-mix(in srgb, var(--bs-primary) 0.1, #2f3349);
}
.landing-footer .footer-form input::placeholder {
  color: rgba(var(--bs-white-rgb), 0.5);
}
.landing-footer .footer-form label {
  color: #cfcde4;
}
