:root,
[data-bs-theme=light] {
  --bs-body-bg: #ffffff;
  --bs-body-color: #494B5B;
  --bs-primary: #2484F6;
  --bs-primary-rgb: 36, 132, 246;
  --bs-primary-hover: #1E75E8;
  --bs-primary-hover-rgb: 30, 117, 232;
  --bs-secondary: #E1EFFF;
  --bs-secondary-rgb: 225, 239, 255;
  --bs-heading-color: #16181B;
  --inverse-color: #494B5B;
  --inverse-color-rgb: 73, 75, 91;
  --bs-link-color: var(--bs-primary);
  --nav-bg: #ffffff;
  --nav-color: #fff;
  --nav-hover-color: #2484F6;
  --dropdown-bg: #ffffff;
  --dropdown-color: #2484F6;
  --dropdown-hover-bg: #f7f7f7;
  --nav-inverse: #000000;
  --nav-inverse-alt: #ffffff;

  /* Override Bootstrap dropdown CSS variables */
  --bs-dropdown-link-active-bg: #f8f9fa;
  --bs-dropdown-link-active-color: #495057;
  --bs-dropdown-link-hover-bg: #e9ecef;
  --bs-dropdown-link-hover-color: #495057;
  --bs-nav-link-hover-color: #495057;
}

body {
  font: 1rem/1.7 "Inter", sans-serif;
  background-color: var(--bs-body-bg);
  color: var(--bs-body-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.site-wrap {
  position: relative;
}

::-moz-selection {
  background-color: var(--bs-black);
  color: var(--bs-white);
}

::selection {
  background-color: var(--bs-black);
  color: var(--bs-white);
}

a {
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  color: var(--bs-primary);
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--bs-heading-color);
}

.container {
  max-width: 1140px;
}

.section {
  padding: 50px 0;
  scroll-margin-top: 60px;
}
@media (max-width: 767.98px) {
  .section {
    padding: 30px 0;
  }
}

/* Reduce spacing specifically between hero and first content section */
.hero__v6 + .section {
  padding-top: 20px;
}
@media (max-width: 767.98px) {
  .hero__v6 + .section {
    padding-top: 15px;
  }
}

/* Also reduce bottom padding of hero section */
.hero__v6.section {
  padding-bottom: 30px;
}
@media (max-width: 767.98px) {
  .hero__v6.section {
    padding-bottom: 20px;
  }
}
.section.first-section {
  padding-top: 100px;
}
@media (min-width: 992px) {
  .section.first-section {
    padding-top: 130px;
  }
}

.text-heading-color {
  color: var(--bs-heading-color);
}

.shadow-sm {
  -webkit-box-shadow: 0 0.125rem 0.25rem 0 rgba(var(--bs-black-rgb), 0.05) !important;
          box-shadow: 0 0.125rem 0.25rem 0 rgba(var(--bs-black-rgb), 0.05) !important;
}

.shadow {
  -webkit-box-shadow: 0 0.5rem 1rem 0 rgba(var(--bs-black-rgb), 0.05) !important;
          box-shadow: 0 0.5rem 1rem 0 rgba(var(--bs-black-rgb), 0.05) !important;
}

.shadow-lg {
  -webkit-box-shadow: 0 1rem 3rem 0 rgba(var(--bs-black-rgb), 0.05) !important;
          box-shadow: 0 1rem 3rem 0 rgba(var(--bs-black-rgb), 0.05) !important;
}

.list-checked {
  padding: 0;
  margin: 0;
  color: var(--bs-body-color);
}
.list-checked li {
  position: relative;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 10px;
}
.list-checked li i {
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  display: inline-block;
  background-color: rgba(var(--bs-primary-rgb), 0.1);
  border-radius: 50%;
  color: var(--bs-primary);
  font-size: 20px;
}
.list-checked li:before {
  position: absolute;
  display: inline-block;
  left: 0;
  content: "";
  vertical-align: -0.125em;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 1.5625rem 1.5625rem;
  width: 1.5625rem;
  height: 1.5625rem;
}

.btn {
  padding: 12px 20px;
  background-color: var(--bs-primary);
  color: var(--bs-white);
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 600;
  position: relative;
}
.btn:hover, .btn:active, .btn:focus {
  color: var(--bs-white);
  background-color: var(--bs-primary-hover) !important;
  border: 1px solid var(--bs-primary-hover) !important;
}
.btn.btn-white.hover-outline {
  background-color: var(--bs-white) !important;
  color: var(--bs-black) !important;
  border: 1px solid transparent !important;
}
.btn.btn-white.hover-outline:hover {
  color: var(--bs-white) !important;
  background-color: transparent !important;
  border: 1px solid var(--bs-white) !important;
}
.btn.btn-white-outline {
  border: 1px solid rgba(var(--inverse-color-rgb), 0.2) !important;
  color: var(--inverse-color) !important;
  background-color: transparent;
}
.btn.btn-white-outline:hover, .btn.btn-white-outline:focus, .btn.btn-white-outline:active {
  background-color: transparent !important;
  border: 1px solid rgba(var(--inverse-color-rgb), 0.5) !important;
}

.block-squares {
  position: absolute;
  bottom: -12px;
  right: 0;
  z-index: 1;
  width: auto;
}

.form-control {
  padding-top: 10px;
  padding-bottom: 10px;
  border-width: 1px;
  font-size: 16px;
  background-color: transparent;
  border-color: rgba(var(--inverse-color-rgb), 0.1);
}

.form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: var(--bs-primary);
}

.a-link i {
  font-size: 26px;
  margin-left: 10px;
  -webkit-transition: 0.25s all ease-in-out;
  transition: 0.25s all ease-in-out;
}
.a-link:hover i {
  margin-left: 15px;
}

.page-title {
  padding-top: 100px !important;
  padding-bottom: 50px !important;
  background-color: rgba(var(--inverse-color-rgb), 0.03);
}

.special-link .icons {
  display: inline-block;
  width: 38px;
  height: 38px;
  line-height: 38px;
  border-radius: 50%;
  text-align: center;
  position: relative;
  border: 1px solid rgba(var(--inverse-color-rgb), 0.2);
}

.special-link .icons i {
  font-size: 25px;
  position: relative;
  display: inline-block;
  position: absolute;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}
.special-link .icons i.icon-1 {
  opacity: 1;
  visibility: visible;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.special-link .icons i.icon-2 {
  opacity: 0;
  visibility: hidden;
  top: 80%;
  left: 20%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.special-link:hover .icons .icon-1 {
  opacity: 0;
  visibility: hidden;
  top: 20%;
  left: 80%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.special-link:hover .icons .icon-2 {
  opacity: 1;
  visibility: visible;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.fbs__net-navbar {
  position: absolute;
  top: 0;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  z-index: 99999;
  width: 100%;
  background-color: transparent !important;
  border: none;
}
@media (min-width: 992px) {
  .fbs__net-navbar {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.fbs__net-navbar > .container {
  position: relative;
}
.fbs__net-navbar.relative {
  position: absolute;
}
.fbs__net-navbar .navbar-brand {
  color: var(--bs-white);
  font-size: 30px;
  font-weight: bold;
}
.fbs__net-navbar .navbar-brand .logo.dark {
  display: none;
}
.fbs__net-navbar .navbar-brand .logo.light {
  display: block;
}
.fbs__net-navbar .navbar-nav > li > .nav-link {
  position: relative;
  padding-top: 22px;
  padding-bottom: 22px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 0.9375rem;
  color: rgba(var(--bs-white-rgb), 1);
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  position: relative;
}
@media (max-width: 991.98px) {
  .fbs__net-navbar .navbar-nav > li > .nav-link {
    color: var(--inverse-color);
  }
}
.fbs__net-navbar .navbar-nav > li > .nav-link:before {
  content: "";
  position: absolute;
  width: calc(100% - 20px);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  border-radius: 5px;
  height: 1.5px;
  bottom: 0;
  left: 10px;
  background: currentcolor;
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
  -webkit-transition: -webkit-transform 0.35s ease-out;
  transition: -webkit-transform 0.35s ease-out;
  transition: transform 0.35s ease-out;
  transition: transform 0.35s ease-out, -webkit-transform 0.35s ease-out;
}
.fbs__net-navbar .navbar-nav > li > .nav-link:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
}
.fbs__net-navbar .navbar-nav > li > .nav-link:hover, .fbs__net-navbar .navbar-nav > li > .nav-link:focus {
  color: var(--bs-white);
}
@media (max-width: 991.98px) {
  .fbs__net-navbar .navbar-nav > li > .nav-link:hover, .fbs__net-navbar .navbar-nav > li > .nav-link:focus {
    color: var(--inverse-color) !important;
  }
}
@media (max-width: 767.98px) {
  .fbs__net-navbar .navbar-nav > li > .nav-link {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
.fbs__net-navbar .navbar-nav > li > .nav-link.active {
  color: var(--bs-white);
}
@media (max-width: 991.98px) {
  .fbs__net-navbar .navbar-nav > li > .nav-link.active {
    color: var(--inverse-color);
  }
}
.fbs__net-navbar .navbar-nav > li > .nav-link.active:before {
  content: "";
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.fbs__net-navbar .navbar-nav > li > .nav-link.dropdown-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.fbs__net-navbar .navbar-nav > li > .nav-link.dropdown-toggle::after {
  display: none;
  content: "";
}
@media (max-width: 991.98px) {
  .fbs__net-navbar .navbar-nav > li > .nav-link {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.fbs__net-navbar .navbar-nav .dropdown-menu {
  background-color: var(--nav-bg);
}
.fbs__net-navbar .navbar-nav .dropdown-menu .nav-link:hover {
  background-color: var(--dropdown-hover-bg) !important;
  color: var(--inverse-color);
}
.fbs__net-navbar .navbar-nav .dropdown-toggle::after {
  display: none;
}
.fbs__net-navbar .navbar-nav .dropdown-toggle .bi-chevron-down {
  margin-left: 0.5rem;
}
.fbs__net-navbar .fbs__net-navbar-toggler {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: relative;
  background-color: var(--bs-black);
  color: var(--bs-white);
  border: none;
  display: none;
}
@media (max-width: 991.98px) {
  .fbs__net-navbar .fbs__net-navbar-toggler {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.fbs__net-navbar .navbar-brand {
  margin-right: 0 !important;
}
.fbs__net-navbar .navbar-nav .dropdown > .dropdown-menu,
.fbs__net-navbar .navbar-nav .dropend > .dropdown-menu,
.fbs__net-navbar .navbar-nav .dropstart > .dropdown-menu {
  border: none !important;
  padding-left: 10px;
  padding-right: 10px;
  -webkit-box-shadow: 0 0.1875rem 0.375rem rgba(var(--bs-black-rgb), 0.1);
          box-shadow: 0 0.1875rem 0.375rem rgba(var(--bs-black-rgb), 0.1);
}
@media (min-width: 992px) {
  .fbs__net-navbar .navbar-nav .dropdown > .dropdown-menu,
  .fbs__net-navbar .navbar-nav .dropend > .dropdown-menu,
  .fbs__net-navbar .navbar-nav .dropstart > .dropdown-menu {
    padding-left: 10px;
    padding-right: 10px;
    width: 200px;
    border: none;
  }
}
.fbs__net-navbar .navbar-nav .dropdown > .dropdown-menu .dropdown-item,
.fbs__net-navbar .navbar-nav .dropdown > .dropdown-menu .nav-link,
.fbs__net-navbar .navbar-nav .dropend > .dropdown-menu .dropdown-item,
.fbs__net-navbar .navbar-nav .dropend > .dropdown-menu .nav-link,
.fbs__net-navbar .navbar-nav .dropstart > .dropdown-menu .dropdown-item,
.fbs__net-navbar .navbar-nav .dropstart > .dropdown-menu .nav-link {
  font-size: 0.875rem;
  padding: 10px 10px;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  border-radius: 0.5rem;
}
@media (min-width: 992px) {
  .fbs__net-navbar .navbar-nav .dropdown:hover > .dropdown-menu,
  .fbs__net-navbar .navbar-nav .dropend:hover > .dropdown-menu,
  .fbs__net-navbar .navbar-nav .dropstart:hover > .dropdown-menu {
    display: block;
    -webkit-animation: fadeInUp 0.3s ease;
            animation: fadeInUp 0.3s ease;
  }
}
@media (min-width: 992px) {
  .fbs__net-navbar .navbar-nav .dropend:hover > .dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;
    -webkit-animation: fadeInRight 0.3s ease;
            animation: fadeInRight 0.3s ease;
  }
}
@media (min-width: 992px) {
  .fbs__net-navbar .navbar-nav .dropstart:hover > .dropdown-menu {
    position: absolute;
    top: 0;
    right: 100%;
    -webkit-animation: fadeInLeft 0.3s ease;
            animation: fadeInLeft 0.3s ease;
  }
}
.fbs__net-navbar .navbar-nav .dropdown-toggle::before {
  display: none;
}
.fbs__net-navbar .navbar-nav .dropdown-toggle::after {
  display: none;
}
.fbs__net-navbar .navbar-nav li.dropend > a,
.fbs__net-navbar .navbar-nav li.dropstart > a {
  position: relative;
}
.fbs__net-navbar .navbar-nav li.dropend > a .bi,
.fbs__net-navbar .navbar-nav li.dropstart > a .bi {
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 991.98px) {
  .fbs__net-navbar .navbar-nav li.dropend > a .bi,
  .fbs__net-navbar .navbar-nav li.dropstart > a .bi {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    margin-top: -10px;
  }
}
.fbs__net-navbar .navbar-nav li.dropend > a::after,
.fbs__net-navbar .navbar-nav li.dropstart > a::after {
  display: none;
}
.fbs__net-navbar .navbar-nav li.dropend > a {
  position: relative;
}
.fbs__net-navbar .navbar-nav li.dropend > a:hover {
  background-color: var(--dropdown-hover-bg) !important;
}
.fbs__net-navbar .navbar-nav li.dropend > a .caret {
  position: absolute;
  right: 10px;
}
.fbs__net-navbar .navbar-nav li.dropstart > a {
  position: relative;
}
.fbs__net-navbar .navbar-nav li.dropstart > a:hover {
  background-color: var(--dropdown-hover-bg) !important;
}
.fbs__net-navbar .navbar-nav li.dropstart > a .caret {
  position: absolute;
  left: 10px;
}
.fbs__net-navbar .navbar-toggler:hover, .fbs__net-navbar .navbar-toggler:focus, .fbs__net-navbar .navbar-toggler:active {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.fbs__net-navbar .header-social a {
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  color: var(--bs-white);
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 4px;
  display: inline-block;
  background-color: transparent;
}
.fbs__net-navbar .header-social a:hover {
  background-color: rgba(var(--bs-white-rgb), 0.1);
}
@media (min-width: 992px) {
  .fbs__net-navbar .header-social a {
    color: var(--bs-white);
  }
}
.fbs__net-navbar .header-social .btn {
  width: auto !important;
  height: auto !important;
  background-color: var(--bs-primary) !important;
  color: var(--bs-white) !important;
}
@media (max-width: 575.98px) {
  .fbs__net-navbar .header-social .btn {
    display: none;
  }
}
.fbs__net-navbar.active {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: var(--nav-bg) !important;
  -webkit-box-shadow: 0 0.1875rem 0.375rem rgba(var(--bs-black-rgb), 0.05) !important;
          box-shadow: 0 0.1875rem 0.375rem rgba(var(--bs-black-rgb), 0.05) !important;
}
.fbs__net-navbar.active .navbar-brand {
  color: rgba(var(--inverse-color-rgb), 1) !important;
}
.fbs__net-navbar.active .navbar-brand .logo.dark {
  display: block;
}

.fbs__net-navbar.active .navbar-brand .logo.light {
  display: none;
}

.fbs__net-navbar.active .nav-link {
  color: rgba(var(--inverse-color-rgb), 1) !important;
}
.fbs__net-navbar.active .nav-link:hover {
  color: rgba(var(--inverse-color-rgb), 1) !important;
}
.fbs__net-navbar.active .header-social a {
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  color: var(--inverse-color);
}
.fbs__net-navbar.active .header-social a:hover {
  background-color: rgba(var(--inverse-color-rgb), 0.1);
}
@media (min-width: 992px) {
  .fbs__net-navbar.active .header-social a {
    color: rgba(var(--inverse-color-rgb), 1) !important;
  }
}
.fbs__net-navbar.active .header-social .btn {
  width: auto !important;
  height: auto !important;
  background-color: var(--bs-primary) !important;
  color: var(--bs-white) !important;
}
.fbs__net-navbar.active .navbar-nav > li > .dropdown-toggle:hover {
  color: var(--inverse-color) !important;
}
.fbs__net-navbar.active .navbar-nav > li > .nav-link.dropdown-toggle::after {
  display: none;
  content: "";
}
.fbs__net-navbar.active .navbar-nav li.dropdown a:hover,
.fbs__net-navbar.active .navbar-nav li.dropend a:hover,
.fbs__net-navbar.active .navbar-nav li.dropstart a:hover {
  color: var(--inverse-color) !important;
}
.fbs__net-navbar .fbs__net-icon-menu {
  display: block;
}
.fbs__net-navbar .fbs__net-icon-close {
  display: none;
}
.offcanvas-active .fbs__net-navbar .fbs__net-icon-menu {
  display: none;
}
.offcanvas-active .fbs__net-navbar .fbs__net-icon-close {
  display: block;
}
.fbs__net-navbar.dark {
  -webkit-box-shadow: 0 0px 2px rgba(var(--inverse-color-rgb), 0.15);
          box-shadow: 0 0px 2px rgba(var(--inverse-color-rgb), 0.15);
}
.fbs__net-navbar.dark .navbar-brand .logo.dark {
  display: block;
}

.fbs__net-navbar.dark .navbar-brand .logo.light {
  display: none;
}

.fbs__net-navbar.dark a {
  color: var(--inverse-color) !important;
}
.fbs__net-navbar.dark a:hover {
  color: var(--inverse-color);
}
.fbs__net-navbar.dark .header-social a:hover {
  background-color: rgba(var(--inverse-color-rgb), 0.05);
}

.fbs__net-navbar.dark ul li a {
  color: rgba(var(--inverse-color-rgb), 1) !important;
}
.fbs__net-navbar.dark ul li a:hover {
  color: var(--inverse-color) !important;
}
.fbs__net-navbar .offcanvas-header .offcanvas-header-logo .logo-link .logo.dark {
  display: block;
}

.fbs__net-navbar .offcanvas-header .offcanvas-header-logo .logo-link .logo.light {
  display: none;
}


@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.hero__v6 {
  padding: 10rem 0 !important;
}
.hero__v6 .hero-subtitle {
  background: color-mix(in srgb, var(--bs-secondary), transparent 70%);
  color: var(--bs-primary);
  display: inline-block;
  padding: 5px 12px;
  border-radius: 7px;
  font-weight: 600;
  font-size: 0.75rem;
  margin-bottom: 10px;
}

.hero__v6 .hero-title {
  font-size: 48px;
}
@media (max-width: 1199.98px) {
  .hero__v6 .hero-title {
    font-size: 40px;
  }
}
@media (max-width: 991.98px) {
  .hero__v6 .hero-title {
    font-size: 30px;
  }
}
.hero__v6 .logos .logos-title {
  font-size: 12px;
  letter-spacing: 1px;
  color: color-mix(in srgb, var(--bs-primary), transparent 10%);
}

.hero__v6 .logos img {
  width: 140px;
}
.hero__v6 .hero-img {
  position: relative;
}
.hero__v6 .hero-img .img-main {
  position: relative;
  z-index: 9;
}
.hero__v6 .hero-img .img-card {
  z-index: 10;
  border-radius: 20px;
  -webkit-box-shadow: 0 15px 40px 0 rgba(var(--bs-black-rgb), 0.1);
          box-shadow: 0 15px 40px 0 rgba(var(--bs-black-rgb), 0.1);
  position: absolute;
  max-width: 280px;
  bottom: -40px;
  left: -60px;
}
/* Tablet and Medium Screen Improvements */
@media (min-width: 768px) and (max-width: 991.98px) {
  /* Hero Section Tablet */
  .hero__v6 {
    padding: 80px 0 60px !important;
  }

  .hero__v6 .hero-title {
    font-size: 36px;
  }

  .hero__v6 .hero-img .img-card {
    max-width: 320px;
    left: -40px;
  }

  /* Features Section Tablet */
  .features__v2 .content {
    padding: 3rem !important;
  }

  .features__v2 .col-lg-5 {
    margin-bottom: 2rem;
  }

  /* About Section Tablet */
  .about__v4 .col-md-6:first-child {
    margin-bottom: 2rem;
  }

  .about__v4 .features li {
    flex-basis: calc(50% - 0.75rem);
  }

  /* Stats Section Tablet */
  .stats__v3 .col-md-4 {
    margin-bottom: 2rem;
  }

  /* General spacing for tablet */
  .section {
    padding: 60px 0;
  }

  .container {
    padding-left: 30px;
    padding-right: 30px;
  }

  /* Cards and content blocks */
  .card-body {
    padding: 2rem;
  }

  /* Button sizing for tablet */
  .btn {
    padding: 0.8rem 2rem;
  }
}

/* Large Tablet Improvements */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero__v6 .hero-title {
    font-size: 42px;
  }

  .hero__v6 .hero-img .img-card {
    max-width: 350px;
    left: -50px;
  }

  .features__v2 .content {
    padding: 4rem !important;
  }
}

/* Landscape phone improvements */
@media (max-width: 767.98px) and (orientation: landscape) {
  .hero__v6 {
    padding: 40px 0 !important;
  }

  .hero__v6 .hero-title {
    font-size: 26px;
  }

  .section {
    padding: 25px 0;
  }

  .stats__v3 .content {
    padding: 1.5rem;
  }

  .features__v2 .content {
    padding: 1.5rem !important;
  }
}

/* Accessibility improvements for touch screens */
@media (hover: none) and (pointer: coarse) {
  .btn {
    min-height: 44px;
    min-width: 44px;
  }

  .nav-link {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .app-store-link {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  /* Larger touch targets */
  .cs-floating {
    min-width: 60px;
    min-height: 60px;
  }
}

@media (max-width: 991.98px) {
  .hero__v6 .hero-img .img-card {
    left: 10px;
    max-width: 380px;
  }
}
@media (max-width: 575.98px) {
  .hero__v6 .hero-img .img-card {
    left: 10px;
    max-width: 280px;
  }
}

/* App Download Section */
.app-download {
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}

.app-download-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--inverse-color);
  letter-spacing: 0.5px;
}

.app-store-links {
  gap: 1rem;
}

.app-store-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: var(--bs-primary);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 0.875rem;
  font-weight: 500;
  min-width: 120px;
}

.app-store-link:hover {
  background-color: var(--bs-primary-hover);
  color: white;
  text-decoration: none;
  transform: translateY(-1px);
}

.app-store-link i {
  font-size: 1.25rem;
}

@media (max-width: 575.98px) {
  .app-store-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .app-store-link {
    min-width: 140px;
  }
}

.features__v2 .icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background-color: var(--bs-secondary);
  color: var(--bs-primary);
}

.features__v2 .content {
  background-color: rgba(var(--bs-secondary-rgb), 0.2);
}

.features__v2 .btn-play i {
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  background-color: var(--bs-white);
  color: var(--bs-primary);
}

.about__v4 .subtitle {
  background-color: rgba(var(--bs-secondary-rgb), 0.2);
  color: var(--bs-primary);
  display: inline-block;
  padding: 5px 12px;
  border-radius: 7px;
  font-weight: 600;
  font-size: 0.75rem;
  margin-bottom: 10px;
}

.about__v4 .features li .icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 20px;
  background-color: var(--bs-primary);
  color: var(--bs-white);
}
.about__v4 .mission-statement {
  background-color: var(--bs-primary);
  position: relative;
  bottom: -20px;
  width: 100%;
}
.about__v4 .mission-statement h3 {
  font-size: 10px;
  color: var(--bs-secondary);
}
.about__v4 .mission-statement p {
  color: var(--bs-white);
}
.about__v4 .mission-icon {
  width: 50px;
  height: 50px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50px;
          flex: 0 0 50px;
  line-height: 50px;
  display: inline-block;
  background-color: rgba(var(--bs-secondary-rgb), 0.1);
}
.about__v4 .mission-icon i {
  color: var(--bs-secondary);
}

.pricing__v2 .subtitle {
  background-color: rgba(var(--bs-secondary-rgb), 0.2);
  color: var(--bs-primary);
  display: inline-block;
  padding: 5px 12px;
  border-radius: 7px;
  font-weight: 600;
  font-size: 0.75rem;
  margin-bottom: 10px;
}

.pricing__v2 .price-table {
  border: 1px solid rgba(var(--inverse-color-rgb), 0.2);
}
.pricing__v2 .price-table .price {
  color: var(--bs-heading-color);
}
.pricing__v2 .price-table .price strong {
  font-size: 40px;
}
.pricing__v2 .price-table .icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  border: 1px solid rgba(var(--bs-white-rgb), 0.2);
}
.pricing__v2 .popular {
  background-color: var(--bs-primary);
  color: var(--bs-white);
}
.pricing__v2 .popular .price {
  color: var(--bs-secondary);
}
.pricing__v2 .popular h3 {
  color: var(--bs-white);
}
.pricing__v2 .popular p {
  color: var(--bs-white);
}
.pricing__v2 .popular .pricing-features h4 {
  font-size: 12px;
  color: var(--bs-secondary);
}

.howitworks__v1 .subtitle {
  background-color: rgba(var(--bs-secondary-rgb), 0.2);
  color: var(--bs-primary);
  display: inline-block;
  padding: 5px 12px;
  border-radius: 7px;
  font-weight: 600;
  font-size: 0.75rem;
  margin-bottom: 10px;
}

.howitworks__v1 .step-card {
  position: relative;
}
.howitworks__v1 .step-card .step-number {
  width: 60px;
  height: 60px;
  line-height: 60px;
  display: inline-block;
  color: var(--bs-secondary);
  background-color: var(--bs-primary);
  font-size: 18px;
}
.howitworks__v1 .arch-line {
  position: absolute;
  top: 15px;
  width: 150px;
  right: 0;
  left: calc(100% + 24px);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 991.98px) {
  .howitworks__v1 .arch-line {
    display: none;
  }
}
.howitworks__v1 .arch-line.reverse {
  top: 20px;
}

.services__v3 .subtitle {
  background-color: rgba(var(--bs-secondary-rgb), 0.2);
  color: var(--bs-primary);
  display: inline-block;
  padding: 5px 12px;
  border-radius: 7px;
  font-weight: 600;
  font-size: 0.75rem;
  margin-bottom: 10px;
}

.services__v3 .icon {
  display: inline-block;
  position: relative;
  color: var(--bs-primary) !important;
}

.services__v3 .icon:before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 40px;
  height: 40px;
  right: -10px;
  bottom: 0px;
  border-radius: 50%;
  background-color: rgba(var(--bs-secondary-rgb), 1);
}

.services__v3 .icon svg {
  width: 50px;
}
.services__v3 .service-card {
  border: 1px solid rgba(var(--inverse-color-rgb), 0.2);
}

.faq__v2 {
  background-color: rgba(var(--inverse-color-rgb), 0.02);
}

.faq__v2 .subtitle {
  background-color: rgba(var(--bs-secondary-rgb), 0.2);
  color: var(--bs-primary);
  display: inline-block;
  padding: 5px 12px;
  border-radius: 7px;
  font-weight: 600;
  font-size: 0.75rem;
  margin-bottom: 10px;
}

.faq__v2 .custom-accordion {
  --bs-accordion-bg: var(--bs-body-bg);
  --bs-accordion-btn-icon: url("");
  --bs-accordion-btn-active-icon: url("");
}

.faq__v2 .custom-accordion .accordion-button {
  position: relative;
  padding-right: 50px;
}
.faq__v2 .custom-accordion .accordion-button::after {
  content: "\f4fe";
  font-family: "bootstrap-icons" !important;
  font-style: normal;
  font-weight: 400 !important;
  font-variant: normal;
  text-transform: none;
  right: 20px;
  top: 15px;
  width: 18px;
  height: 14px;
  font-size: 30px;
  color: var(--inverse-color);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  line-height: 1;
  position: absolute;
  -webkit-font-smoothing: antialiased;
}

.faq__v2 .custom-accordion .accordion-button:not(.collapsed)::after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  content: "\f2ea";
}
.faq__v2 .custom-accordion .accordion-item {
  border: none;
  margin-bottom: 10px;
  border-radius: 10px;
  overflow: hidden;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}
.faq__v2 .custom-accordion .accordion-item .accordion-header .accordion-button {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-size: 18px;
  font-weight: 500;
  color: var(--bs-heading-color);
  padding-top: 20px;
  padding-bottom: 20px;
  border: none;
}
.faq__v2 .custom-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  background-color: transparent;
  color: var(--inverse-color);
  -webkit-box-shadow: 0 1px 1px rgba(var(--inverse-color-rgb), 0.05);
          box-shadow: 0 1px 1px rgba(var(--inverse-color-rgb), 0.05);
}
.faq__v2 .custom-accordion .accordion-item .accordion-body {
  border-top: none;
}

.stats__v3 .content {
  padding-top: 70px;
  padding-bottom: 70px;
  background-color: var(--bs-primary);
  color: var(--bs-white);
  overflow: hidden;
  position: relative;
}
.stats__v3 .content h3 {
  color: var(--bs-secondary);
}
.stats__v3 .content .rounded-borders {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 500px;
  height: 500px;
}
.stats__v3 .content .rounded-borders .rounded-border-1,
.stats__v3 .content .rounded-borders .rounded-border-2,
.stats__v3 .content .rounded-borders .rounded-border-3 {
  border: 1px solid var(--bs-secondary);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  position: absolute;
}
.stats__v3 .content .rounded-borders .rounded-border-1 {
  right: 20px;
  top: 20px;
}
.stats__v3 .content .rounded-borders .rounded-border-2 {
  right: 40px;
  top: 40px;
}

.testimonials__v2 .subtitle {
  background-color: rgba(var(--bs-secondary-rgb), 0.2);
  color: var(--bs-primary);
  display: inline-block;
  padding: 5px 12px;
  border-radius: 7px;
  font-weight: 600;
  font-size: 0.75rem;
  margin-bottom: 10px;
}

.testimonials__v2 .testimonial {
  border: 1px solid rgba(var(--inverse-color-rgb), 0.2);
}
.testimonials__v2 .testimonial-author .author-img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50px;
          flex: 0 0 50px;
}

.contact__v2 .subtitle {
  background-color: rgba(var(--bs-secondary-rgb), 0.2);
  color: var(--bs-primary);
  display: inline-block;
  padding: 5px 12px;
  border-radius: 7px;
  font-weight: 600;
  font-size: 0.75rem;
  margin-bottom: 10px;
}

.contact__v2 .icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border: 1px solid rgba(var(--inverse-color-rgb), 0.2);
  border-radius: 50%;
}

.footer {
  background-color: rgba(var(--inverse-color-rgb), 0.02);
  font-size: 15px;
}

.footer h2, .footer h3, .footer h4 {
  font-size: 16px;
}
.footer ul li {
  padding: 0;
  margin: 0 0 10px 0;
}
.footer a {
  color: rgba(var(--inverse-color-rgb), 0.6);
  text-decoration: none;
}
.footer a:hover {
  color: var(--inverse-color);
}
.footer a .badge {
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  background-color: rgba(var(--bs-primary-rgb), 0.1);
  color: var(--bs-primary);
}
.footer a:hover .badge {
  background-color: rgba(var(--bs-primary-rgb), 1);
  color: var(--bs-white);
}
.footer .quick-contact i {
  color: var(--inverse-color);
}
.footer .credits {
  font-size: 13.5px;
}

/* Footer App Icons */
.footer-app-download h6 {
  font-size: 14px;
  font-weight: 600;
  color: var(--bs-heading-color);
}

/* Footer Social Media */
.social-media h6 {
  font-size: 14px;
  font-weight: 600;
  color: var(--bs-heading-color);
}

.social-links {
  gap: 0.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(var(--inverse-color-rgb), 0.1);
  color: var(--inverse-color);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid rgba(var(--inverse-color-rgb), 0.2);
}

.social-link:hover {
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
}

.social-link i {
  font-size: 1.1rem;
}

.app-icons {
  margin-top: 0.25rem;
}

.app-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--bs-primary);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.app-icon-link:hover {
  background-color: var(--bs-primary-hover);
  color: white;
  text-decoration: none;
  transform: translateY(-1px);
}

.app-icon-link i {
  font-size: 1.1rem;
}

@media (max-width: 575.98px) {
  .footer .credits .col-xl-4 {
    gap: 2rem !important;
  }

  .social-links {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .social-link {
    width: 34px;
    height: 34px;
  }

  .social-link i {
    font-size: 1rem;
  }
}

/* Customer Service Floating */
.cs-floating {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  background-color: var(--bs-primary);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  padding: 10px 15px;
  transition: all 0.3s ease;
  z-index: 1000;
  max-width: 200px;
}

.cs-floating:hover {
  background-color: var(--bs-primary-hover);
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
}

.cs-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
  object-fit: cover;
  border: 2px solid white;
}

.cs-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cs-text {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 2px;
  transition: all 0.3s ease;
  position: relative;
  min-height: 1.2em;
}

.cs-text::after {
  content: '|';
  animation: blink 1s infinite;
  color: white;
  font-weight: 400;
}

@keyframes blink {
  0%, 50% {
    opacity: 1;
  }
  51%, 100% {
    opacity: 0;
  }
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

.cs-text.typing {
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid transparent;
}

.cs-subtitle {
  font-size: 11px;
  opacity: 0.9;
  font-weight: 400;
}

@media (max-width: 768px) {
  .cs-floating {
    padding: 8px 12px;
    max-width: 180px;
  }

  .cs-img {
    width: 35px;
    height: 35px;
    margin-right: 8px;
  }

  .cs-text {
    font-size: 13px;
  }

  .cs-subtitle {
    font-size: 10px;
  }
}

/* Custom Dropdown Styling - Override Bootstrap */
/* Override Bootstrap CSS Variables */
.navbar-nav .dropdown-menu {
  --bs-dropdown-link-active-bg: #f8f9fa;
  --bs-dropdown-link-active-color: #495057;
  --bs-dropdown-link-hover-bg: #e9ecef;
  --bs-dropdown-link-hover-color: #495057;
}

.navbar-nav .nav-item.dropdown {
  --bs-nav-link-hover-color: #495057;
  --bs-dropdown-link-active-bg: #f8f9fa;
}

.navbar-nav .nav-item.dropdown .dropdown-toggle:focus,
.navbar-nav .nav-item.dropdown .dropdown-toggle:active,
.navbar-nav .nav-item.dropdown .dropdown-toggle.show,
.navbar-nav .nav-item.dropdown .dropdown-toggle[aria-expanded="true"] {
  background-color: #f8f9fa !important;
  color: #495057 !important;
  border-color: transparent !important;
}

.navbar-nav .nav-item.dropdown .dropdown-toggle:hover {
  background-color: #e9ecef !important;
  color: #495057 !important;
}

/* More specific selectors with !important */
.fbs__net-navbar .navbar-nav .nav-item.dropdown .nav-link.dropdown-toggle:focus,
.fbs__net-navbar .navbar-nav .nav-item.dropdown .nav-link.dropdown-toggle:active,
.fbs__net-navbar .navbar-nav .nav-item.dropdown .nav-link.dropdown-toggle.show,
.fbs__net-navbar .navbar-nav .nav-item.dropdown .nav-link.dropdown-toggle[aria-expanded="true"],
.fbs__net-navbar .navbar-nav .nav-item.dropdown .nav-link.dropdown-toggle[data-bs-toggle="dropdown"]:focus,
.fbs__net-navbar .navbar-nav .nav-item.dropdown .nav-link.dropdown-toggle[data-bs-toggle="dropdown"]:active {
  background-color: #f8f9fa !important;
  background: #f8f9fa !important;
  color: #495057 !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.fbs__net-navbar .navbar-nav .nav-item.dropdown .nav-link.dropdown-toggle:hover {
  background-color: #e9ecef !important;
  background: #e9ecef !important;
  color: #495057 !important;
}

/* Dropdown Menu Items */
.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus,
.dropdown-menu .dropdown-item:active,
.dropdown-menu .dropdown-item.active {
  background-color: #f8f9fa !important;
  color: #495057 !important;
}

/* Override any primary color on dropdown */
.navbar-nav .dropdown-toggle {
  background-color: transparent !important;
}

/* Force override Bootstrap primary colors */
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link:active,
.navbar-nav .nav-link.active {
  background-color: transparent !important;
}

.navbar-nav .dropdown-toggle:not(.btn) {
  background-color: transparent !important;
}

/* ======= Articles Section ======= */
.articles__v1 .subtitle {
  background-color: rgba(var(--bs-secondary-rgb), 0.2);
  color: var(--bs-primary);
  display: inline-block;
  padding: 5px 12px;
  border-radius: 7px;
  font-weight: 600;
  font-size: 0.75rem;
  margin-bottom: 10px;
}

/* Article Card Base */
.article-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(var(--inverse-color-rgb), 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Article Image */
.article-image {
  position: relative;
  overflow: hidden;
}

.article-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.article-card:hover .article-image img {
  transform: scale(1.05);
}

.article-category {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--bs-primary);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Article Content */
.article-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.article-meta {
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: rgba(var(--inverse-color-rgb), 0.7);
}

.article-meta span {
  margin-right: 1rem;
}

.article-meta i {
  margin-right: 0.25rem;
}

.article-title {
  margin-bottom: 1rem;
  line-height: 1.4;
}

.article-title a {
  color: var(--bs-heading-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.article-title a:hover {
  color: var(--bs-primary);
}

.article-excerpt {
  color: rgba(var(--inverse-color-rgb), 0.8);
  margin-bottom: 1.5rem;
  flex-grow: 1;
  line-height: 1.6;
}

.article-read-more {
  color: var(--bs-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  margin-top: auto;
}

.article-read-more:hover {
  color: var(--bs-primary-hover);
  text-decoration: none;
  transform: translateX(4px);
}

.article-read-more i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.article-read-more:hover i {
  transform: translateX(4px);
}

/* Article Slider */
.articles-slider-container {
  position: relative;
}

.articles-swiper {
  padding: 0 50px;
}

.articles-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.article-slider {
  height: 100%;
  min-height: 520px;
  display: flex;
  flex-direction: column;
}

.article-slider .article-image {
  flex-shrink: 0;
}

.article-slider .article-image img {
  height: 220px;
  width: 100%;
  object-fit: cover;
}

.article-slider .article-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.article-slider .article-meta {
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.article-slider .article-title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 1rem;
  flex-shrink: 0;
  height: 3.2em; /* Fixed height for 2-3 lines */
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

.article-slider .article-excerpt {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  height: 5.2em; /* Increased height for better text display */
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

.article-slider .article-read-more {
  margin-top: auto;
  flex-shrink: 0;
}

/* Slider Navigation */
.articles-swiper-button-next,
.articles-swiper-button-prev {
  width: 44px;
  height: 44px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(var(--inverse-color-rgb), 0.1);
  color: var(--bs-primary);
  transition: all 0.3s ease;
}

.articles-swiper-button-next::after,
.articles-swiper-button-prev::after {
  font-size: 18px;
  font-weight: 600;
}

.articles-swiper-button-next:hover,
.articles-swiper-button-prev:hover {
  background: var(--bs-primary);
  color: white;
  transform: scale(1.1);
}

.articles-swiper-button-next {
  right: 10px;
}

.articles-swiper-button-prev {
  left: 10px;
}

/* Slider Pagination */
.articles-swiper-pagination {
  bottom: -50px !important;
  text-align: center;
}

.articles-swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(var(--inverse-color-rgb), 0.3);
  opacity: 1;
  transition: all 0.3s ease;
}

.articles-swiper-pagination .swiper-pagination-bullet-active {
  background: var(--bs-primary);
  width: 30px;
  border-radius: 6px;
}
.article-featured {
  height: 100%;
}

.article-featured .article-image img {
  height: 280px;
}

.article-featured .article-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
}

.article-featured .article-excerpt {
  font-size: 1rem;
  line-height: 1.6;
}

.article-featured .article-content {
  padding: 2rem;
}

/* Small Article */
.article-small .article-image img {
  height: 150px;
}

.article-small .article-title {
  font-size: 1.125rem;
  font-weight: 600;
}

.article-small .article-excerpt {
  font-size: 0.875rem;
}

/* Horizontal Article Layout */
.article-horizontal {
  height: auto !important;
}

.article-horizontal .article-image {
  height: 100%;
}

.article-horizontal .article-image img {
  height: 100%;
  min-height: 120px;
  object-fit: cover;
}

.article-horizontal .article-content {
  padding: 1rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.article-horizontal .article-title {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.article-horizontal .article-excerpt {
  font-size: 0.8rem;
  line-height: 1.4;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-horizontal .article-meta {
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
}

.article-horizontal .article-category {
  font-size: 0.65rem;
  padding: 2px 8px;
}

/* Grid Article */
.article-grid .article-image img {
  height: 180px;
}

.article-grid .article-title {
  font-size: 1.25rem;
  font-weight: 600;
}

/* Related Article */
.article-related {
  flex-direction: row;
  height: auto;
}

.article-related .article-image {
  width: 100px;
  flex-shrink: 0;
}

.article-related .article-image img {
  height: 80px;
  width: 100px;
}

.article-related .article-content {
  padding: 1rem;
}

.article-related .article-title {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.article-related .article-date {
  font-size: 0.8rem;
}

/* Articles Filter */
.articles-filter-wrapper {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.search-box .form-control {
  border-right: none;
}

.search-box .btn {
  border-left: none;
}

.filter-categories .btn-group .btn {
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
}

.filter-categories .btn.active {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}

/* Article Detail Page */
.article-header {
  background: linear-gradient(135deg, rgba(var(--bs-primary-rgb), 0.05) 0%, rgba(var(--bs-secondary-rgb), 0.1) 100%);
}

.article-category-badge .badge {
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
}

.article-header .article-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--bs-heading-color);
  line-height: 1.2;
}

@media (max-width: 767.98px) {
  .article-header .article-title {
    font-size: 2rem;
  }
}

.article-header .article-meta {
  font-size: 0.95rem;
  color: rgba(var(--inverse-color-rgb), 0.7);
}

.article-featured-image img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
}

.image-caption {
  font-style: italic;
}

/* Article Body Content */
.article-body {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--bs-body-color);
}

.article-body h3 {
  color: var(--bs-heading-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.article-body .lead {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--bs-heading-color);
}

.custom-list {
  padding-left: 0;
  list-style: none;
}

.custom-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
}

.custom-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--bs-primary);
  font-weight: bold;
}

.custom-numbered-list {
  counter-reset: custom-counter;
  padding-left: 0;
  list-style: none;
}

.custom-numbered-list li {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 0.75rem;
  counter-increment: custom-counter;
}

.custom-numbered-list li::before {
  content: counter(custom-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  background: var(--bs-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.875rem;
}

/* Article Quote */
.article-quote {
  background: rgba(var(--bs-primary-rgb), 0.05);
  border-left: 4px solid var(--bs-primary);
  padding: 2rem;
  border-radius: 0 8px 8px 0;
}

.article-quote blockquote {
  margin: 0;
}

.article-quote .blockquote p {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--bs-heading-color);
}

/* Feature Box */
.feature-box {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border: 1px solid rgba(var(--inverse-color-rgb), 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(var(--bs-primary-rgb), 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--bs-primary);
  font-size: 1.5rem;
}

.feature-box h5 {
  color: var(--bs-heading-color);
  margin-bottom: 0.75rem;
}

/* Article CTA */
.article-cta {
  background: linear-gradient(135deg, rgba(var(--bs-primary-rgb), 0.05) 0%, rgba(var(--bs-secondary-rgb), 0.1) 100%);
  border: 1px solid rgba(var(--bs-primary-rgb), 0.1);
}

/* Article Footer */
.article-tags .badge {
  margin-right: 0.5rem;
  border: 1px solid rgba(var(--inverse-color-rgb), 0.2);
}

.share-link {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  background: rgba(var(--inverse-color-rgb), 0.1);
  color: var(--inverse-color);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.share-link:hover {
  background: var(--bs-primary);
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
}

/* Related Articles */
.related-articles {
  background-color: rgba(var(--inverse-color-rgb), 0.02);
}

/* Responsive Design */
@media (max-width: 767.98px) {
  /* Global mobile improvements */
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section {
    padding: 40px 0;
  }

  /* Hero Section Mobile */
  .hero__v6 {
    padding: 60px 0 40px !important;
  }

  .hero__v6 .hero-title {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .hero__v6 .hero-description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .hero__v6 .cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 2rem;
  }

  .hero__v6 .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .hero__v6 .hero-img .img-card {
    position: relative;
    left: 0;
    bottom: 0;
    margin-top: 2rem;
    max-width: 100%;
  }

  /* About Section Mobile */
  .about__v4 .col-md-6 {
    margin-bottom: 2rem;
  }

  .about__v4 .features {
    justify-content: flex-start;
  }

  .about__v4 .features li {
    flex-basis: calc(50% - 0.75rem);
    margin-bottom: 0.75rem;
  }

  .about__v4 .mission-statement {
    margin-top: 1rem;
    padding: 1.5rem !important;
  }

  /* Features Section Mobile */
  .features__v2 .content {
    padding: 2rem !important;
  }

  .features__v2 .col-lg-5 {
    margin-bottom: 2rem;
  }

  .features__v2 .col-sm-6 {
    margin-bottom: 2rem;
  }

  .features__v2 .icon {
    margin-bottom: 1rem;
  }

  /* Stats Section Mobile */
  .stats__v3 .col-12.col-sm-6.col-md-4 {
    margin-bottom: 2rem;
  }

  .stats__v3 .stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }

  .stats__v3 .content {
    padding: 2rem;
  }

  /* Packages/Pricing Section Mobile */
  .pricing__v2 .col-md-4,
  .pricing__v2 .col-md-8 {
    margin-bottom: 2rem;
  }

  .pricing__v2 .price-table {
    padding: 2rem !important;
    text-align: center;
  }

  .pricing__v2 .price-table .row {
    flex-direction: column;
  }

  .pricing__v2 .col-md-6 {
    margin-bottom: 1.5rem;
  }

  .pricing__v2 .pricing-features ul {
    text-align: left;
    max-width: 300px;
    margin: 0 auto;
  }

  /* Contact Section Mobile */
  .contact__v2 .col-md-6 {
    margin-bottom: 2rem;
  }

  .contact__v2 .d-flex.gap-5 {
    gap: 2rem !important;
  }

  .contact__v2 .form-wrapper {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    margin-top: 1rem;
  }

  .contact__v2 .btn {
    width: 100%;
    margin-top: 1rem;
  }

  .contact__v2 .icon {
    flex-shrink: 0;
  }

  /* How it Works Mobile (if exists) */
  /* How it Works Mobile */
  .how-it-works .col-md-6,
  .how-it-works .col-lg-6 {
    margin-bottom: 2rem;
  }

  .howitworks__v1 .col-md-6.col-lg-3 {
    margin-bottom: 2.5rem;
  }

  .howitworks__v1 .step-card {
    padding: 1.5rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(36, 132, 246, 0.1);
  }

  .howitworks__v1 .step-number {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    line-height: 50px;
    margin-bottom: 1.5rem !important;
  }

  .howitworks__v1 .arch-line {
    display: none;
  }

  .howitworks__v1 .maskot-step {
    margin-bottom: 1rem;
  }

  .howitworks__v1 .maskot-step img {
    width: 50px !important;
  }

  .how-it-works .step-number {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  /* Export Process Mobile */
  .export-process .col-md-4,
  .export-process .col-lg-4,
  .export-process .col-md-6 {
    margin-bottom: 2rem;
  }

  .export-process .process-item {
    padding: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .export-process .process-number {
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    line-height: 40px;
    flex-shrink: 0;
  }

  .export-process .d-flex.gap-3 {
    gap: 1rem !important;
  }

  .export-process .process-step {
    text-align: center;
    padding: 1.5rem;
  }

  /* FAQ Section Mobile */
  .faq .accordion-button {
    padding: 1rem;
    font-size: 0.95rem;
  }

  .faq .accordion-body {
    padding: 1rem;
    font-size: 0.9rem;
  }

  .faq .accordion-item {
    margin-bottom: 0.75rem;
  }

  /* Customer Service Floating Mobile */
  .cs-floating {
    bottom: 80px;
    right: 15px;
    padding: 0.75rem;
  }

  .cs-floating .cs-img {
    width: 45px;
    height: 45px;
  }

  .cs-floating .cs-content {
    font-size: 0.8rem;
  }

  .cs-floating .cs-text {
    font-size: 0.75rem;
  }

  .cs-floating .cs-subtitle {
    font-size: 0.7rem;
  }

  /* General text improvements */
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  h4 {
    font-size: 1.25rem;
  }

  p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  /* Utility classes for mobile spacing */
  .mb-mobile-3 {
    margin-bottom: 1.5rem;
  }

  .mt-mobile-3 {
    margin-top: 1.5rem;
  }

  .p-mobile-2 {
    padding: 1rem;
  }

  /* Utility classes for mobile spacing */
  .mb-mobile-3 {
    margin-bottom: 1.5rem;
  }

  .mt-mobile-3 {
    margin-top: 1.5rem;
  }

  .p-mobile-2 {
    padding: 1rem;
  }

  /* Mobile-specific improvements */
  .text-mobile-center {
    text-align: center;
  }

  .flex-mobile-column {
    flex-direction: column;
  }

  .gap-mobile-2 {
    gap: 1rem;
  }

  /* Image responsive improvements */
  .img-mobile-full {
    width: 100%;
    height: auto;
  }

  /* Card mobile improvements */
  .card-mobile {
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

  /* Navigation mobile improvements */
  .navbar-mobile {
    padding: 0.5rem 1rem;
  }

  /* Modal mobile improvements */
  .modal-dialog {
    margin: 1rem;
  }

  /* Table mobile improvements */
  .table-responsive {
    font-size: 0.85rem;
  }

  /* Badge mobile improvements */
  .badge {
    font-size: 0.7rem;
    padding: 0.35em 0.65em;
  }

  /* Alert mobile improvements */
  .alert {
    padding: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
  }

  /* Pagination mobile improvements */
  .pagination {
    justify-content: center;
  }

  .page-link {
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
  }

  /* Breadcrumb mobile improvements */
  .breadcrumb {
    padding: 0.5rem;
    font-size: 0.85rem;
  }

  /* List group mobile improvements */
  .list-group-item {
    padding: 0.75rem;
    font-size: 0.9rem;
  }

/* Mobile Navigation Improvements */
@media (max-width: 991.98px) {
  .fbs__net-navbar .offcanvas {
    width: 85% !important;
  }

  .fbs__net-navbar .offcanvas-body {
    padding: 1.5rem;
  }

  .fbs__net-navbar .navbar-nav {
    padding-left: 0 !important;
  }

  .fbs__net-navbar .nav-link {
    padding: 1rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .fbs__net-navbar .nav-link:last-child {
    border-bottom: none;
  }

  .fbs__net-navbar .navbar-toggler {
    border: none;
    padding: 0.5rem;
  }

  .fbs__net-navbar .navbar-toggler:focus {
    box-shadow: none;
  }

  .fbs__net-navbar .offcanvas-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .fbs__net-navbar .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: rgba(0, 0, 0, 0.05);
    border: none;
    box-shadow: none;
    border-radius: 0;
  }

  .fbs__net-navbar .dropdown-item {
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }
}

/* Header responsive logo sizing */
@media (max-width: 767.98px) {
  .navbar-brand img {
    height: 35px !important;
  }

  .offcanvas-header-logo img {
    height: 35px !important;
  }
}

@media (max-width: 575.98px) {
  .navbar-brand img {
    height: 30px !important;
  }

  .offcanvas-header-logo img {
    height: 30px !important;
  }

  .fbs__net-navbar .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Footer Mobile Improvements */
@media (max-width: 767.98px) {
  .footer .col-md-7,
  .footer .col-md-5,
  .footer .col-md-4,
  .footer .col-md-2 {
    margin-bottom: 2rem;
  }

  .footer form.d-flex {
    flex-direction: column;
    gap: 0.75rem;
  }

  .footer .btn {
    width: 100%;
  }

  .footer .app-icons {
    justify-content: flex-start;
    gap: 1rem;
  }

  .footer .app-icon-link {
    font-size: 1.5rem;
  }

  .footer ul li {
    margin-bottom: 0.5rem;
  }

  .footer .social-icons {
    justify-content: flex-start;
    margin-bottom: 1rem;
  }

  .footer .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 575.98px) {
  .footer .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer h2,
  .footer h3 {
    font-size: 1.25rem;
  }

  .footer p {
    font-size: 0.9rem;
  }
}

/* Global Mobile Improvements - End of Mobile Section */
@media (max-width: 767.98px) {
  /* Improve scroll behavior on mobile */
  html {
    scroll-behavior: smooth;
  }

  /* Better touch target sizes */
  a, button, .btn, .nav-link {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Better spacing for interactive elements */
  .btn + .btn {
    margin-top: 0.75rem;
  }

  /* Improve readability */
  body {
    font-size: 16px;
    line-height: 1.6;
  }

  /* Better form elements */
  input, textarea, select {
    font-size: 16px; /* Prevent zoom on iOS */
  }

  /* Improve section visual separation */
  .section:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  /* Better image handling */
  img {
    max-width: 100%;
    height: auto;
  }

  /* Improve list styling */
  ul, ol {
    padding-left: 1.25rem;
  }

  /* Better blockquote styling */
  blockquote {
    font-size: 1rem;
    padding: 1rem;
    margin: 1rem 0;
  }

  /* Improve table responsiveness */
  .table-responsive {
    border: none;
  }

  /* Better video embedding */
  .embed-responsive {
    margin-bottom: 1rem;
  }

  /* Improve carousel controls */
  .carousel-control-prev,
  .carousel-control-next {
    width: 44px;
  }

  /* Better tooltip and popover sizing */
  .tooltip, .popover {
    font-size: 0.875rem;
  }

  /* Improve accordion styling */
  .accordion .card {
    margin-bottom: 0.5rem;
  }

  /* Better progress bar visibility */
  .progress {
    height: 1rem;
  }
}

  /* Articles Slider Mobile */
  .articles-swiper {
    padding: 0 20px;
  }

  .article-slider {
    min-height: 400px;
  }

  .article-slider .article-image img {
    height: 180px;
  }

  .article-slider .article-content {
    padding: 1.25rem;
  }

  .article-slider .article-title {
    font-size: 1.125rem;
  }

  .article-slider .article-excerpt {
    font-size: 0.9rem;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }

  .articles-swiper-button-next,
  .articles-swiper-button-prev {
    width: 36px;
    height: 36px;
  }

  .articles-swiper-button-next::after,
  .articles-swiper-button-prev::after {
    font-size: 14px;
  }

  .articles-swiper-button-next {
    right: 5px;
  }

  .articles-swiper-button-prev {
    left: 5px;
  }

  .article-featured .article-title {
    font-size: 1.25rem;
  }

  .article-featured .article-image img {
    height: 200px;
  }

  .article-featured .article-content {
    padding: 1.5rem;
  }

  /* Horizontal articles become vertical on mobile */
  .article-horizontal .row {
    flex-direction: column !important;
  }

  .article-horizontal .col-5,
  .article-horizontal .col-7 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

  .article-horizontal .article-image img {
    height: 150px;
  }

  .article-horizontal .article-title {
    font-size: 1rem;
  }

  .article-horizontal .article-excerpt {
    font-size: 0.875rem;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }

  .article-related {
    flex-direction: column;
  }

  .article-related .article-image {
    width: 100%;
  }

  .article-related .article-image img {
    height: 150px;
    width: 100%;
  }

  .articles-filter-wrapper {
    padding: 1rem;
  }

  .filter-categories .btn-group {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .filter-categories .btn {
    flex: 1;
    min-width: auto;
  }
}

/* Article Slider Responsive */
@media (max-width: 768px) {
  .articles-swiper {
    padding: 0 20px;
  }

  .article-slider {
    min-height: 500px;
  }

  .article-slider .article-image img {
    height: 200px;
  }

  .article-slider .article-content {
    padding: 1.25rem;
  }

  .article-slider .article-title {
    font-size: 1.1rem;
    height: 2.8em;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }

  .article-slider .article-excerpt {
    font-size: 0.9rem;
    height: 4.8em;
  }
}

@media (max-width: 575.98px) {
  /* Extra small mobile improvements */
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .section {
    padding: 30px 0;
  }

  /* Hero Section Extra Small */
  .hero__v6 {
    padding: 50px 0 30px !important;
  }

  .hero__v6 .hero-title {
    font-size: 24px;
    line-height: 1.3;
  }

  .hero__v6 .hero-description {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
  }

  .hero__v6 .hero-subtitle {
    font-size: 0.7rem;
    padding: 4px 10px;
  }

  /* About Section Extra Small */
  .about__v4 .features li {
    flex-basis: 100%;
    margin-bottom: 0.5rem;
  }

  .about__v4 .mission-statement {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem !important;
  }

  .about__v4 .mission-icon {
    margin-bottom: 0.75rem;
    align-self: center;
  }

  /* Features Section Extra Small */
  .features__v2 .content {
    padding: 1.5rem !important;
  }

  .features__v2 h2 {
    font-size: 1.5rem;
  }

  .features__v2 .col-sm-6 {
    text-align: center;
    margin-bottom: 2rem;
  }

  /* Stats Section Extra Small */
  .stats__v3 .content {
    padding: 1.5rem;
  }

  .stats__v3 .stat-item h3 {
    font-size: 2.2rem;
  }

  /* Button improvements for mobile */
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

  /* Form improvements */
  .form-control {
    padding: 0.75rem;
    font-size: 0.9rem;
  }

  /* Card improvements */
  .card {
    margin-bottom: 1.5rem;
  }

  .card-body {
    padding: 1.25rem;
  }

  /* Navigation improvements */
  .navbar-nav .nav-link {
    padding: 0.75rem 1rem;
    text-align: left;
  }

  /* Customer service floating extra small */
  .cs-floating {
    bottom: 70px;
    right: 10px;
    padding: 0.5rem;
  }

  .cs-floating .cs-img {
    width: 40px;
    height: 40px;
  }

  /* Text size adjustments */
  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  h4 {
    font-size: 1.1rem;
  }

  p {
    font-size: 0.9rem;
  }

  .fs-1 {
    font-size: 2rem !important;
  }

  .fs-2 {
    font-size: 1.5rem !important;
  }

  .fs-3 {
    font-size: 1.25rem !important;
  }

  /* App store links improvements */
  .app-store-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .app-store-link {
    min-width: 140px;
    font-size: 0.8rem;
  }

  .articles-swiper {
    padding: 0 15px;
  }

  .article-slider {
    min-height: 470px;
  }

  .article-slider .article-image img {
    height: 180px;
  }

  .article-slider .article-title {
    font-size: 1rem;
    height: 2.6em;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }

  .article-slider .article-excerpt {
    font-size: 0.85rem;
    height: 4.4em;
  }
}
