/*

*/
:root,
[data-bs-theme=light] {
  --bs-body-bg: #ffffff;
  --bs-body-color: #494B5B;
  --bs-primary: #c4161c;
  --bs-lumina-primary: #c4161c;
  --bs-lumina-secondary: #003a66;
   --bs-primary-rgb: 196, 22, 28;
  /* --bs-primary-rgb: 33, 92, 92; */
  --bs-primary-hover: #c4161c;
  --bs-primary-hover-rgb: 20, 75, 75;
  --bs-secondary: #CCE8C9;
  --bs-secondary-rgb: 204, 232, 201;
  --bs-heading-color: #16181B;
  --inverse-color: #494B5B;
  --inverse-color-rgb: 73, 75, 91;
  --bs-link-color: var(--bs-primary);
  --nav-bg: #ffffff;
  --bg-black: #000000;
  --nav-color: #fff;
  --nav-hover-color: #1f6bff;
  --dropdown-bg: #ffffff;
  --dropdown-color: #1f6bff;
  --dropdown-hover-bg: #f7f7f7;
  --nav-inverse: #000000;
  --nav-inverse-alt: #ffffff;
}
html {
    overflow-y: auto;
}
body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bs-body-bg);
  color: var(--bs-body-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Button size utilities */
.btn-md {
  padding: 10px 20px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.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);
}

/* Font Consistency - Based on Pricing Page Ideal Sizes */
.section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.section h3 {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.section h4 {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.section p,
.section .lead {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
}

.section .lead {
  font-size: 1rem;
  font-weight: 400;
}

/* Button Combinations - Red & Black */
.btn-primary {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 8px 20px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #a01218;
  border-color: #a01218;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(var(--bs-primary-rgb), 0.3);
}

.btn-primary:disabled,
.btn-primary.disabled {
  background-color: var(--bs-primary) !important;
  border-color: var(--bs-primary) !important;
  color: #fff !important;
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.btn-dark {
  background-color: #171710;
  border-color: #171710;
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 8px 20px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn-dark:hover {
  background-color: #000;
  border-color: #000;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-outline-primary {
  border-color: var(--bs-primary);
  color: var(--bs-primary);
  background-color: transparent;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 8px 20px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-dark {
  border-color: #171710;
  color: #171710;
  background-color: transparent;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 8px 20px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn-outline-dark:hover {
  background-color: #171710;
  border-color: #171710;
  color: #fff;
  transform: translateY(-2px);
}

/* Override Bootstrap font-size utilities to match pricing page */
.section .fs-5 {
  font-size: 1.15rem !important;
}

.section .fs-4 {
  font-size: 1.35rem !important;
}

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

/* Responsive Font Sizes */
@media (max-width: 991px) {
  .section h2 {
    font-size: 1.35rem;
  }
  
  .section h3 {
    font-size: 1.05rem;
  }
  
  .section h4 {
    font-size: 1rem;
  }
  
  .section .fs-5 {
    font-size: 1.05rem !important;
  }
}

@media (max-width: 767px) {
  .section h2 {
    font-size: 1.25rem;
  }
  
  .section h3 {
    font-size: 1rem;
  }
  
  .section h4 {
    font-size: 0.95rem;
  }
  
  .section p,
  .section .lead {
    font-size: 0.9rem;
  }
  
  .section .fs-5 {
    font-size: 1rem !important;
  }
}

.container {
  max-width: 1140px;
}

.section {
  padding: 50px 0;
  scroll-margin-top: 40px;
  box-shadow: 0 0.1875rem 0.375rem rgba(var(--bs-black-rgb), 0.05) !important;
}
@media (max-width: 767.98px) {
  .section {
    padding: 40px 0;
  }
}
/* .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: 8px;
  padding-bottom: 8px;
  padding-left: 12px;
  padding-right: 12px;
  border-width: 1px;
  font-size: 16px;
  background-color: transparent;
  border-color: rgba(var(--inverse-color-rgb), 0.1);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  -webkit-box-shadow: 0 0 0 3px rgba(var(--bs-primary-rgb), 0.1);
          box-shadow: 0 0 0 3px rgba(var(--bs-primary-rgb), 0.1);
  border-color: var(--bs-primary);
  background-color: #fff;
}

/* Custom Select with Dropdown Icon */
.form-group.position-relative .custom-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23494B5B' d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
  border-radius: 6px;
}

.form-group.position-relative .custom-select:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23c4161c' d='M8 11L3 6h10z'/%3E%3C/svg%3E");
}

/* Improved Form Styling - Additional properties */

.contact_input_area .form-control::placeholder {
  color: rgba(var(--inverse-color-rgb), 0.5);
  font-size: 15px;
}

.contact_input_area .form-control:hover {
  border-color: rgba(var(--inverse-color-rgb), 0.2);
}

.contact_input_area textarea.form-control {
  resize: vertical;
  min-height: 50px;
}

/* Enhanced Contact Form Design */
.contact_input_area {
  padding: 0;
}

.contact_input_area .form-group {
  margin-bottom: 1rem;
}

.contact_input_area .form-control {
  background-color: #fff;
  border: 1px solid rgba(var(--inverse-color-rgb), 0.15);
  font-size: 15px;
  line-height: 1.5;
  color: #171710 !important;
  font-weight: 400;
}

.contact_input_area .form-control:focus {
  background-color: #fff;
  border-color: var(--bs-primary);
  box-shadow: 0 0 0 3px rgba(var(--bs-primary-rgb), 0.1);
  color: #171710 !important;
}

.contact_input_area .form-control::placeholder {
  color: rgba(var(--inverse-color-rgb), 0.5) !important;
  font-weight: 400;
}

.contact_input_area select.form-control,
.contact_input_area select.custom-select {
  color: #171710 !important;
  font-weight: 400;
}

.contact_input_area select.form-control:focus,
.contact_input_area select.custom-select:focus {
  color: #171710 !important;
}

.contact_input_area select.form-control option,
.contact_input_area select.custom-select option {
  color: #171710 !important;
  background-color: #fff !important;
  padding: 8px !important;
}

.contact_input_area select.form-control option:hover,
.contact_input_area select.form-control option:focus,
.contact_input_area select.form-control option:checked,
.contact_input_area select.custom-select option:hover,
.contact_input_area select.custom-select option:focus,
.contact_input_area select.custom-select option:checked {
  background-color: rgba(var(--bs-primary-rgb), 0.1) !important;
  color: var(--bs-primary) !important;
}

.contact_input_area select.form-control optgroup,
.contact_input_area select.custom-select optgroup {
  color: var(--bs-primary) !important;
  font-weight: 600 !important;
  background-color: rgba(var(--bs-primary-rgb), 0.05) !important;
  padding: 6px 8px !important;
}

/* Fix intl-tel-input width to match other inputs */
.contact_input_area .iti {
  width: 100% !important;
  display: block;
  position: relative;
}

.contact_input_area .form-group .iti {
  width: 100%;
}

.contact_input_area .iti__selected-flag {
  padding: 0 8px 0 12px;
  width: auto;
  min-width: 52px;
}

.contact_input_area .iti__selected-dial-code {
  padding-right: 6px;
  min-width: 35px;
}

.contact_input_area .iti input {
  width: 100% !important;
  padding-left: 95px !important;
  padding-top: 8px !important;
  padding-bottom: 8px !important;
  padding-right: 12px !important;
  font-size: 15px !important;
  line-height: 1.5 !important;
  border: 1px solid rgba(var(--inverse-color-rgb), 0.15) !important;
  border-radius: 6px !important;
  background-color: #fff !important;
  color: #171710 !important;
  box-sizing: border-box !important;
}

.contact_input_area .iti input::placeholder {
  color: rgba(var(--inverse-color-rgb), 0.5) !important;
  opacity: 1 !important;
  font-size: 15px !important;
}

.contact_input_area .iti input:focus {
  border-color: var(--bs-primary) !important;
  box-shadow: 0 0 0 3px rgba(var(--bs-primary-rgb), 0.1) !important;
  outline: none !important;
}

/* Service dropdown with search - Better styling */
.contact_input_area select.form-control,
.contact_input_area select.custom-select {
  background-color: #fff !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23c4161c' d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
}

.contact_input_area select.form-control:hover,
.contact_input_area select.custom-select:hover {
  background-color: #f8f9fa !important;
  border-color: rgba(var(--inverse-color-rgb), 0.25);
}

.contact_input_area select.form-control:focus,
.contact_input_area select.custom-select:focus {
  background-color: #fff !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23c4161c' d='M8 11L3 6h10z'/%3E%3C/svg%3E");
}

.contact_input_area .btn-primary {
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.contact_input_area .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(var(--bs-primary-rgb), 0.3);
}

.contact_input_area .btn-primary:disabled,
.contact_input_area .btn-primary.disabled {
  background-color: var(--bs-primary) !important;
  border-color: var(--bs-primary) !important;
  color: #fff !important;
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.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: 999;
  width: 100%;
  /* background-color: transparent !important; */
  background-color: var(--nav-bg) !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;
  font-weight: 600;
  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; */
  background: rgb(224 36 84);
  -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;
  z-index: 1050;
  cursor: pointer;
  pointer-events: auto;
}
@media (max-width: 991.98px) {
  .fbs__net-navbar .fbs__net-navbar-toggler {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 1050;
  }
}
.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: 220px;
    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;
  }
}

/* Override animation for mega dropdown so it doesn't slide oddly */
@media (min-width: 992px) {
  .fbs__net-navbar .navbar-nav .mega-dropdown:hover > .dropdown-menu.mega-dropdown-menu {
    -webkit-animation: none;
            animation: none;
  }
}
@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:not(.fbs__net-navbar-toggler) {
    display: none;
  }
  .fbs__net-navbar .header-social .fbs__net-navbar-toggler {
    display: flex !important;
  }
}
.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;
  height: 48px;
  max-height: 50px;
}
.footer-logo img{
  height: 48px;
    max-height: 50px;
    margin-bottom: 1rem;
}

.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;
  max-height: 50px;
}

.fbs__net-navbar .offcanvas-header .offcanvas-header-logo .logo-link .logo.light {
  display: none;
  max-height: 50px;
}


@-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: 6rem 0 0rem 0 !important;
    box-shadow: 0 0.1875rem 0.375rem rgba(var(--bs-black-rgb), 0.05) !important;
}
.hero__v6 .hero-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;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero__v6 .hero-title {
  font-size: 48px;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
  color: var(--bs-heading-color);
  font-family: inherit;
}
@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 .hero-img {
  position: relative;
  overflow: hidden;
}
.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;
}
@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;
  }
}

.hero__v6 .hero-img .heroBannerSwiper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero__v6 .hero-img .heroBannerSwiper .swiper-wrapper {
  position: relative;
  height: 100%;
}

.hero__v6 .hero-img .heroBannerSwiper .swiper-slide {
  width: 100%;
  height: auto;
  visibility: hidden;
  opacity: 0;
}

.hero__v6 .hero-img .heroBannerSwiper .swiper-slide:first-child {
  visibility: visible;
  opacity: 1;
}

.hero__v6 .hero-img .heroBannerSwiper.swiper-initialized .swiper-slide {
  visibility: visible;
  opacity: 1;
}

.hero__v6 .hero-img .heroBannerSwiper .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.hero__v6 .hero-title .typed-text {
  color: var(--bs-heading-color);
  font-weight: 700;
  font-family: inherit;
  display: inline-block;
  vertical-align: baseline;
}

.hero__v6 .hero-title .typed-cursor {
  display: inline-block !important;
  width: 3px;
  height: 1em;
  background-color: var(--bs-heading-color);
  margin-left: 4px;
  margin-right: 2px;
  vertical-align: baseline;
  animation: blinkCursor 1s infinite;
  opacity: 1 !important;
  visibility: visible !important;
}


@keyframes blinkCursor {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.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);
}

.stats__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;
}

.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: #ffffff;
  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);
}

.service-hidden {
  display: none !important;
}

.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;
}

.industries-intro .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;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.city-services-intro {
  padding-top: 40px;
  padding-bottom: 50px;
}

.city-services-intro .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;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.city-services-intro h2 {
  color: #171710;
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.city-services-intro .lead {
  color: #333;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.city-services-intro p {
  color: #666;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  .city-services-intro {
    padding-top: 30px;
    padding-bottom: 40px;
  }
  
  .city-services-intro h2 {
    font-size: 1.5rem;
  }
  
  .city-services-intro .lead {
    font-size: 1rem;
  }
  
  .city-services-intro p {
    font-size: 0.95rem;
  }
}

.why-choose-section .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;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Subtitle with Icon Support */
.subtitle .title-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
}

/* When subtitle has icon, make it flex */
.subtitle:has(.title-icon) {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
}

.portfolio-section .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;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.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%;
}


/* Legacy Footer Support */
.footer {
  background-color: #0a0a0a;
  /* background-image: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>'); */
  background-image: url("data:image/svg+xml,%3Csvg width='50' height='50' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='grid' width='50' height='50' patternUnits='userSpaceOnUse'%3E%3Cpath d='M 50 0 L 0 0 0 50' fill='none' stroke='rgba(255,255,255,0.05)' stroke-width='1'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23grid)'/%3E%3C/svg%3E");
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
}

.footer h2, .footer h3, .footer h4 {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.footer h2::after, .footer h3::after, .footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--bs-primary), transparent);
  border-radius: 2px;
}
.footer ul li {
  padding: 0;
  margin: 0 0 10px 0;
}
.footer p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 400;
}
.footer a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
}
.footer a:hover {
  color: #ffffff;
}
.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: #ffffff;
}
.footer .text-muted {
  color: rgba(255, 255, 255, 0.7) !important;
}

#back-to-top {
  position: fixed;
  bottom: 0px;
  right: 20px;
  visibility: hidden;
  opacity: 0;
  background-color: var(--bs-primary);
  color: white;
  border: none;
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 1000;
  width: 40px;
  height: 40px;
}
#back-to-top i {
  font-size: 24px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
#back-to-top.show {
  bottom: 20px;
  opacity: 1;
  visibility: visible;
}

.request-form {
    /* background-color: #fff; */
    /* padding: 1rem 2rem; */
    /* border-radius: 10px; */
    box-shadow: 0 0 16px #7d7c7c36;
    /* color: #333; */
    border: 1px solid rgba(var(--inverse-color-rgb), 0.2);
    padding: 1.5rem !important;
    border-radius: var(--bs-border-radius-xl)!important;
    text-align: center;
    /* max-width: 380px; */
    /* float: right; */
    width: 100%;
}
.request-form .title {    
    font-size: 1.6rem;
    line-height: 16px;
    font-weight: 500;
    text-align: center;
    margin: 10px 0px;
    color: #16181B;
}
.request-form p {
    font-size: 0.6rem;
    font-weight: 600;
    margin: 10px 0px 15px 0px;
    text-transform: uppercase;
    background-color: #c4161c17;
    color: #c4161c;
    padding: 5px;
    border-radius: 15px;
}

.theme-color-primary{
  color: var(--bs-lumina-primary) !important;
}

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

.pagetitle__v1 {
    padding-top: 140px;
    padding-bottom: 60px;
    background-color: #000000;
    background-image: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    background-repeat: repeat;
    background-size: 100px 100px;
    background-position: center;
    position: relative;
    overflow: hidden;
}
.pagetitle__v1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(135deg, rgba(var(--bs-primary-rgb), 0.1) 0%, rgba(var(--bs-primary-rgb), 0.05) 100%); */
    z-index: 0;
}
.pagetitle__v1 .container {
    position: relative;
    z-index: 1;
}
.pagetitle__v1 h1 {
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 20px;
}
.pagetitle__v1 .breadcrumb-container {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    width: 100%;
}
.pagetitle__v1 .breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    backdrop-filter: blur(10px);
    justify-content: center;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}
.pagetitle__v1 .breadcrumb-item {
    font-size: 14px;
    display: flex;
    align-items: center;
    line-height: 1.5;
}
.pagetitle__v1 .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.pagetitle__v1 .breadcrumb-item a:hover {
    color: #ffffff;
    text-decoration: underline;
}
.pagetitle__v1 .breadcrumb-item a i {
    font-size: 13px;
    vertical-align: middle;
    line-height: 1;
    color: rgba(255, 255, 255, 0.9);
}
.pagetitle__v1 .breadcrumb-item.active {
    color: #ffffff;
    font-weight: 500;
    display: flex;
    align-items: center;
}
.pagetitle__v1 .breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: rgba(255, 255, 255, 0.6);
    opacity: 1;
    padding: 0 12px;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    line-height: 1;
}

/* Sticky Form - Guaranteed Working Solution */
/* Only apply to about-section and category pages, NOT contact-us */
body:not(.contact-page) #sidebar.request-form {
    z-index: 997 !important;
    background-color: #fff !important;
    box-shadow: 0 0 16px #7d7c7c36 !important;
}

/* When form is fixed/sticky, ensure proper styling */
body:not(.contact-page) #sidebar.request-form[style*="position: fixed"],
body:not(.contact-page) #sidebar.request-form[style*="position:fixed"] {
    z-index: 997 !important;
    background-color: #fff !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
    border-radius: var(--bs-border-radius-xl) !important;
    padding: 1.5rem !important;
}

/* Ensure parent containers don't break sticky - Only for about-section on homepage */
/* Only apply when about-section is directly in main (homepage), not category pages */
main > section.about__v4 .container .row {
    align-items: flex-start;
    position: relative;
}

main > section.about__v4 .container .row > .col-lg-4 {
    position: relative;
}

/* Category pages - don't force row alignment, let Bootstrap handle it */
body:not(.contact-page) section.about__v4:not(main > section.about__v4) .container .row {
    align-items: stretch;
}

/* Ensure parent column has relative positioning for absolute form positioning */
body:not(.contact-page) section.about__v4 .container .row > .col-lg-4 {
    position: relative;
}

/* Mobile - disable sticky */
@media (max-width: 991.98px) {
    #sidebar.request-form {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        width: 100% !important;
        z-index: auto !important;
    }
}

/* Desktop sticky form scrollbar */
@media (min-width: 992px) {
    #sidebar.request-form {
        max-height: calc(100vh - 120px);
        overflow-y: auto;
    }
    
    #sidebar.request-form::-webkit-scrollbar {
        width: 6px;
    }
    
    #sidebar.request-form::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }
    
    #sidebar.request-form::-webkit-scrollbar-thumb {
        background: #c4161c;
        border-radius: 10px;
    }
    
    #sidebar.request-form::-webkit-scrollbar-thumb:hover {
        background: #a01217;
    }
}

.blog__v1 .blog-entry .thumbnail {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 370px;
          flex: 0 0 370px;
}
.blog__v1 .blog-entry .thumbnail a {
  display: block;
  overflow: hidden;
  position: relative;
  width: 100%;
}
@media (max-width: 767.98px) {
  .blog__v1 .blog-entry .thumbnail {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
.blog__v1 .blog-entry .thumbnail img {
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  width: 370px;
  height: 250px;
  -webkit-transform: scale(1);
          transform: scale(1);
}
@media (max-width: 767.98px) {
  .blog__v1 .blog-entry .thumbnail img {
    width: 100%;
  }
}
.blog__v1 .blog-entry h3 a {
  color: var(--bs-heading-color);
  text-decoration: none;
}
.blog__v1 .blog-entry .post-author {
  color: var(--bs-heading-color);
  text-decoration: none;
  font-size: 14px;
}
.blog__v1 .blog-entry .post-author img {
  width: 50px;
  height: 50px;
}
.blog__v1 .blog-entry .post-author strong {
  margin-bottom: 6px;
}
.blog__v1 .blog-entry .post-author .date {
  color: rgba(var(--inverse-color-rgb), 0.8);
}
.blog__v1 .blog-entry:hover .thumbnail img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.blog__v2 .blog-entry .thumbnail {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
.blog__v2 .blog-entry .thumbnail a {
  display: block;
  overflow: hidden;
  position: relative;
  width: 100%;
}
@media (max-width: 767.98px) {
  .blog__v2 .blog-entry .thumbnail {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
.blog__v2 .blog-entry .thumbnail img {
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  width: 100%;
  height: 250px;
  -webkit-transform: scale(1);
          transform: scale(1);
}
@media (max-width: 767.98px) {
  .blog__v2 .blog-entry .thumbnail img {
    width: 100%;
  }
}
.blog__v2 .blog-entry h3 a {
  color: var(--bs-heading-color);
  text-decoration: none;
}
.blog__v2 .blog-entry .post-author {
  color: var(--bs-heading-color);
  text-decoration: none;
  font-size: 14px;
}
.blog__v2 .blog-entry .post-author img {
  width: 50px;
  height: 50px;
}
.blog__v2 .blog-entry .post-author strong {
  margin-bottom: 6px;
}
.blog__v2 .blog-entry .post-author .date {
  color: rgba(var(--inverse-color-rgb), 0.8);
}
.blog__v2 .blog-entry:hover .thumbnail > a > img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.blog__v2 .category a {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid rgba(var(--inverse-color-rgb), 0.1);
  color: rgba(var(--inverse-color-rgb), 0.7);
}
.blog__v2 .category a:hover {
  -webkit-box-shadow: 0 2px 5px 0px rgba(var(--inverse-color-rgb), 0.2);
          box-shadow: 0 2px 5px 0px rgba(var(--inverse-color-rgb), 0.2);
  border: 1px solid rgba(var(--inverse-color-rgb), 0.25);
  color: rgba(var(--inverse-color-rgb), 1);
}
.blog__v2 .highlight-post {
  position: relative;
  z-index: 2;
}
.blog__v2 .highlight-post:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 1;
  background-color: rgba(var(--bs-black-rgb), 0.3);
}
.blog__v2 .highlight-post .post-content {
  z-index: 4;
  z-index: 99;
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
}
.blog__v2 .highlight-post .post-content h3 {
  color: var(--bs-white);
}
.blog__v2 .highlight-post .post-content .post-author strong, .blog__v2 .highlight-post .post-content .post-author span {
  color: var(--bs-white);
}

.blog__v3 .blog-entry .thumbnail {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 270px;
          flex: 0 0 270px;
}
.blog__v3 .blog-entry .thumbnail a {
  display: block;
  overflow: hidden;
  position: relative;
  width: 100%;
}
@media (max-width: 767.98px) {
  .blog__v3 .blog-entry .thumbnail {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
.blog__v3 .blog-entry .thumbnail img {
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  width: 270px;
  height: 250px;
  -webkit-transform: scale(1);
          transform: scale(1);
}
@media (max-width: 767.98px) {
  .blog__v3 .blog-entry .thumbnail img {
    width: 100%;
  }
}
.blog__v3 .blog-entry h3 a {
  color: var(--bs-heading-color);
  text-decoration: none;
}
.blog__v3 .blog-entry .post-author {
  color: var(--bs-heading-color);
  text-decoration: none;
  font-size: 14px;
}
.blog__v3 .blog-entry .post-author img {
  width: 50px;
  height: 50px;
}
.blog__v3 .blog-entry .post-author strong {
  margin-bottom: 6px;
}
.blog__v3 .blog-entry .post-author .date {
  color: rgba(var(--inverse-color-rgb), 0.8);
}
.blog__v3 .blog-entry:hover .thumbnail img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.aside__v1 .border-top {
  border-color: rgba(var(--inverse-color-rgb), 0.1) !important;
}
.aside__v1 .post-entry {
  text-decoration: none;
}
.aside__v1 .post-entry .thumbnail {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100px;
          flex: 0 0 100px;
}
.aside__v1 .post-entry .thumbnail img {
  width: 100px;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.aside__v1 .post-entry .date {
  color: rgba(var(--inverse-color-rgb), 0.7);
  font-size: 14px;
}
.aside__v1 .post-entry:hover .thumbnail img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.aside-subscribe-sticky {
  top: 65px;
}
.content__v1 .share {
    top: 100px !important;
}
.content__v1 .article figure figcaption {
    text-align: center;
    font-size: 12px;
    color: rgba(var(--inverse-color-rgb), 0.7);
}


.page404__v1 {
  background-size: cover;
  background-position: center center;
  height: 100vh;
  min-height: 550px;
  position: relative;
}
.page404__v1 > .container {
  position: relative;
}
.page404__v1 .astronaut {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  width: 200px;
}
@media (max-width: 767.98px) {
  .page404__v1 .astronaut {
    width: 120px;
  }
}
@media (max-width: 575.98px) {
  .page404__v1 .astronaut {
    width: 100px;
  }
}
.page404__v1 h1 {
  font-size: 18rem;
}
@media (max-width: 991.98px) {
  .page404__v1 h1 {
    font-size: 15rem;
  }
}
@media (max-width: 767.98px) {
  .page404__v1 h1 {
    font-size: 10rem;
  }
}
@media (max-width: 575.98px) {
  .page404__v1 h1 {
    font-size: 8rem;
  }
}

/* Thank You Page Styles */
.thankyou__v1 {
  background-size: cover;
  background-position: center center;
  height: 100vh;
  min-height: 550px;
  position: relative;
}
.thankyou__v1 > .container {
  position: relative;
}
.thankyou__v1 h1 {
  font-size: 4rem;
  font-weight: 700;
}
@media (max-width: 991.98px) {
  .thankyou__v1 h1 {
    font-size: 3.5rem;
  }
}
@media (max-width: 767.98px) {
  .thankyou__v1 h1 {
    font-size: 2.5rem;
  }
}
@media (max-width: 575.98px) {
  .thankyou__v1 h1 {
    font-size: 2rem;
  }
}

/* ✅ Shake animation */
@keyframes shake {
    0%, 100% {
        transform: rotate(0deg);
    }
    10% {
        transform: rotate(15deg);
    }
    20% {
        transform: rotate(-15deg);
    }
    30% {
        transform: rotate(15deg);
    }
    40% {
        transform: rotate(-15deg);
    }
    50% {
        transform: rotate(0deg);
    }
}

/* ✅ Apply shake to the icon only */
.animation i {
    animation: shake 2s infinite;
    display: inline-block;
    transform-origin: center;
}
.bg-dark {
    background-color: var(---bg-black) !important;
}
.dropdown-item.active, .dropdown-item:active a{
    text-decoration: none;
    background-color: var(--dropdown-hover-bg) !important;
    color: var(--bs-white) !important;
}
.list-style-type-none{
    list-style: none!important;
}


/* Mega Dropdown - All Services */
@media (min-width: 992px) {
  .fbs__net-navbar .navbar-nav .mega-dropdown {
    position: static;
  }

  .fbs__net-navbar .navbar-nav .mega-dropdown .dropdown-menu.mega-dropdown-menu {
    left: 50%;
    transform: translateX(-50%);
    width: min(1140px, 100%);
    margin-top: 0;
    border-radius: 16px;
    border: 1px solid rgba(var(--inverse-color-rgb), 0.1);
    box-shadow: 0 18px 45px rgba(var(--bs-black-rgb), 0.18);
    background-color: var(--nav-bg);
    max-height: 80vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: transparent transparent;
  }
  
  /* Column Partition Shadow - Light separator */
  .mega-dropdown-menu .row > div:not(:last-child) {
    position: relative;
  }
  
  .mega-dropdown-menu .row > div:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -0.5rem;
    top: 0.5rem;
    bottom: 0.5rem;
    width: 1px;
    background: linear-gradient(to bottom, 
      transparent 0%, 
      rgba(var(--inverse-color-rgb), 0.1) 5%, 
      rgba(var(--inverse-color-rgb), 0.12) 50%, 
      rgba(var(--inverse-color-rgb), 0.1) 95%, 
      transparent 100%);
    pointer-events: none;
    opacity: 0.6;
  }
  
  /* Add subtle box-shadow for better separation */
  .mega-dropdown-menu .row > div:not(:last-child) {
    box-shadow: 2px 0 4px -2px rgba(var(--inverse-color-rgb), 0.05);
  }
  
  /* Custom Scrollbar for Mega Dropdown - Subtle & Modern */
  .mega-dropdown-menu::-webkit-scrollbar {
    width: 4px;
  }
  
  .mega-dropdown-menu::-webkit-scrollbar-track {
    background: transparent;
  }
  
  .mega-dropdown-menu::-webkit-scrollbar-thumb {
    background: rgba(var(--inverse-color-rgb), 0.15);
    border-radius: 10px;
    transition: background 0.3s ease;
  }
  
  .mega-dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: rgba(var(--inverse-color-rgb), 0.25);
  }
  
  /* Hide scrollbar when not scrolling */
  .mega-dropdown-menu {
    scrollbar-width: thin;
    scrollbar-color: rgba(var(--inverse-color-rgb), 0.15) transparent;
  }
  
  /* Smooth scroll behavior */
  .mega-dropdown-menu {
    scroll-behavior: smooth;
  }
}

.mega-dropdown-menu .mega-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--bs-heading-color);
}

/* Mega Column Header with Icon */
.mega-column-header {
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(var(--inverse-color-rgb), 0.1);
}

.mega-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(var(--bs-primary-rgb), 0.1) 0%, rgba(var(--bs-primary-rgb), 0.05) 100%);
  border-radius: 10px;
  margin-bottom: 0.5rem;
}

.mega-icon {
  font-size: 1.25rem;
  color: var(--bs-primary);
}

.mega-dropdown-menu .mega-links {
  margin: 0;
  padding: 0;
}

.mega-dropdown-menu .mega-links li {
  list-style: none;
  margin-bottom: 0.25rem;
}

.mega-dropdown-menu .mega-links .dropdown-item {
  padding: 0.5rem 0.75rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  border-radius: 6px;
  position: relative;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  margin-bottom: 0;
  text-decoration: none;
  color: var(--bs-body-color);
  white-space: nowrap;
}

.mega-dropdown-menu .mega-links .dropdown-item i {
  font-size: 0.875rem;
  color: var(--bs-primary);
  width: 18px;
  min-width: 18px;
  text-align: left;
  transition: all 0.3s ease;
  margin-right: 0.5rem;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
}

.mega-dropdown-menu .mega-links .dropdown-item::before {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  left: 0.75rem;
  bottom: 0px;
  background: var(--bs-primary);
  border-radius: 4px;
  -webkit-transition: width 0.35s ease-out;
  transition: width 0.35s ease-out;
}

.mega-dropdown-menu .mega-links .dropdown-item:hover {
  background-color: rgba(var(--bs-primary-rgb), 0.05) !important;
  color: var(--bs-primary);
  padding-left: 1rem;
}

.mega-dropdown-menu .mega-links .dropdown-item:hover i {
  color: var(--bs-primary);
}

.mega-dropdown-menu .mega-links .dropdown-item:hover::before {
  width: calc(100% - 1.5rem);
}

.mega-dropdown-menu .mega-links .dropdown-item.active {
  background-color: rgba(var(--bs-primary-rgb), 0.08) !important;
  color: var(--bs-primary);
  font-weight: 500;
}

.mega-dropdown-menu .mega-links .dropdown-item.active i {
  color: var(--bs-primary);
}

/* Creative Menu Headers */
.mega-dropdown-menu .dropdown-item-text {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  padding-bottom: 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--bs-primary);
  margin-bottom: 0.75rem;
  border-bottom: 2px solid rgba(var(--bs-primary-rgb), 0.15);
  position: relative;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.mega-dropdown-menu .dropdown-item-text::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--bs-primary), rgba(var(--bs-primary-rgb), 0.3));
  transition: width 0.3s ease;
}

.mega-dropdown-menu .dropdown-item-text:hover::before {
  width: 100%;
}

.mega-dropdown-menu .dropdown-item-text i {
  font-size: 1.1rem;
  color: var(--bs-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, rgba(var(--bs-primary-rgb), 0.1) 0%, rgba(var(--bs-primary-rgb), 0.05) 100%);
  border-radius: 8px;
  padding: 0.4rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.mega-dropdown-menu .dropdown-item-text:hover i {
  background: linear-gradient(135deg, rgba(var(--bs-primary-rgb), 0.2) 0%, rgba(var(--bs-primary-rgb), 0.1) 100%);
  transform: scale(1.1);
  box-shadow: 0 2px 8px rgba(var(--bs-primary-rgb), 0.2);
}

.mega-dropdown-menu .dropdown-item-text:hover {
  color: var(--bs-primary);
  padding-left: 1.1rem;
}

/* Apply same styling to regular dropdown menus (About Us dropdown) */
.fbs__net-navbar .navbar-nav .dropdown-menu.mega-links {
  padding: 0.5rem;
  min-width: 200px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.fbs__net-navbar .navbar-nav .dropdown-menu.mega-links .dropdown-item {
  padding: 0.5rem 0.75rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  border-radius: 6px;
  position: relative;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  margin-bottom: 0.25rem;
  text-decoration: none;
  color: var(--bs-body-color);
  white-space: nowrap;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
}

.fbs__net-navbar .navbar-nav .dropdown-menu.mega-links .dropdown-item i {
  font-size: 0.875rem;
  color: var(--bs-primary);
  width: 18px;
  min-width: 18px;
  text-align: left;
  transition: all 0.3s ease;
  margin-right: 0.5rem;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
}

.fbs__net-navbar .navbar-nav .dropdown-menu.mega-links .dropdown-item::before {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  left: 0.75rem;
  bottom: 0px;
  background: var(--bs-primary);
  border-radius: 4px;
  transition: width 0.35s ease-out;
}

.fbs__net-navbar .navbar-nav .dropdown-menu.mega-links .dropdown-item:hover {
  background-color: rgba(var(--bs-primary-rgb), 0.05) !important;
  color: var(--bs-primary);
  padding-left: 1rem;
}

.fbs__net-navbar .navbar-nav .dropdown-menu.mega-links .dropdown-item:hover i {
  color: var(--bs-primary);
}

.fbs__net-navbar .navbar-nav .dropdown-menu.mega-links .dropdown-item:hover::before {
  width: calc(100% - 1.5rem);
}

.fbs__net-navbar .navbar-nav .dropdown-menu.mega-links .dropdown-item.active {
  background-color: rgba(var(--bs-primary-rgb), 0.08) !important;
  color: var(--bs-primary);
  font-weight: 500;
}

.fbs__net-navbar .navbar-nav .dropdown-menu.mega-links .dropdown-item.active i {
  color: var(--bs-primary);
}

/* About Us Menu - Smaller Font Size */
.fbs__net-navbar .navbar-nav .dropdown-menu.mega-links .dropdown-item {
  font-size: 0.875rem;
}

.mega-dropdown-menu .btn {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.mega-dropdown-menu .btn.btn-primary,
.mega-dropdown-menu .btn.btn-primary span,
.mega-dropdown-menu .btn.btn-primary *,
.mega-dropdown-menu a.btn.btn-primary,
.mega-dropdown-menu a.btn.btn-primary span,
.mega-dropdown-menu a.btn.btn-primary * {
  color: #ffffff !important;
}

.mega-dropdown-menu .btn.btn-primary:hover,
.mega-dropdown-menu .btn.btn-primary:hover span,
.mega-dropdown-menu .btn.btn-primary:hover *,
.mega-dropdown-menu a.btn.btn-primary:hover,
.mega-dropdown-menu a.btn.btn-primary:hover span,
.mega-dropdown-menu a.btn.btn-primary:hover * {
  color: #ffffff !important;
}

.mega-dropdown-menu .btn.btn-primary i,
.mega-dropdown-menu a.btn.btn-primary i {
  color: #ffffff !important;
}

.mega-dropdown-menu .btn.btn-primary:hover i,
.mega-dropdown-menu a.btn.btn-primary:hover i {
  color: #ffffff !important;
}

.mega-dropdown-menu .btn i {
  font-size: 14px;
  line-height: 1;
  vertical-align: middle;
  display: inline-flex;
  align-items: center;
}

.mega-dropdown-menu .btn span {
  display: inline-block;
  vertical-align: middle;
}

/* Dropdown Icon Rotation on Hover and Open */
.mega-dropdown .dropdown-toggle i.bi-chevron-down,
.fbs__net-navbar .navbar-nav .dropdown .dropdown-toggle i.bi-chevron-down {
  display: inline-block;
  transition: transform 0.3s ease;
  transform-origin: center;
  margin-left: 0.25rem;
}

.mega-dropdown:hover .dropdown-toggle i.bi-chevron-down,
.mega-dropdown .dropdown-toggle:hover i.bi-chevron-down,
.fbs__net-navbar .navbar-nav .dropdown:hover .dropdown-toggle i.bi-chevron-down,
.fbs__net-navbar .navbar-nav .dropdown .dropdown-toggle:hover i.bi-chevron-down {
  transform: rotate(180deg);
}

.mega-dropdown.show .dropdown-toggle i.bi-chevron-down,
.fbs__net-navbar .navbar-nav .dropdown.show .dropdown-toggle i.bi-chevron-down {
  transform: rotate(180deg);
}

/* Also apply to regular dropdown-toggle in navbar */
.fbs__net-navbar .navbar-nav .mega-dropdown .dropdown-toggle i.bi-chevron-down {
  display: inline-block;
  transition: transform 0.3s ease;
  transform-origin: center;
}

.fbs__net-navbar .navbar-nav .mega-dropdown:hover .dropdown-toggle i.bi-chevron-down,
.fbs__net-navbar .navbar-nav .mega-dropdown .dropdown-toggle:hover i.bi-chevron-down {
  transform: rotate(180deg);
}

.fbs__net-navbar .navbar-nav .mega-dropdown.show .dropdown-toggle i.bi-chevron-down {
  transform: rotate(180deg);
}


@media (max-width: 991.98px) {
  .fbs__net-navbar .navbar-nav .mega-dropdown .dropdown-menu.mega-dropdown-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    border-radius: 10px;    
    margin-top: 0.5rem;
  }
}

.mega-badges .badge-link {
  display: inline-block;
  background-color: rgba(var(--bs-secondary-rgb), 0.4);
  color: var(--bs-heading-color);
  font-size: 0.7rem;
  letter-spacing: 0.02em;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
}

.mega-badges .badge-link:hover,
.mega-badges .badge-link.active {
  background-color: rgba(var(--bs-primary-rgb), 0.08);
  border-color: rgba(var(--bs-primary-rgb), 0.5);
  color: var(--bs-primary);
}



/* Add this to your stylesheet */

/* Modal backdrop with blur effect */
.modal-backdrop {
    background-color: rgba(0, 0, 0, 0.5) !important;
}

.modal-backdrop.show {
    opacity: 1 !important;
}

/* Add blur effect to backdrop */
.modal-backdrop::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    background-color: rgba(0, 0, 0, 0.1);
}

/* Prevent body scroll when modal is open */
body.modal-open {
    overflow: hidden !important;
    padding-right: 0 !important;
}

/* Smooth modal transitions */
.modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
    transform: translate(0, -50px);
}

.modal.show .modal-dialog {
    transform: translate(0, 0);
}

/* Ensure modal content stays sharp */
.modal-content {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
}

/* Custom close button styling */
.modal-header .btn-close {
    width: 25px;
    height: 25px;
    background-color: #000;
    border-radius: 50%;
    opacity: 0.7;
    transition: all 0.3s ease;
    position: relative;
}

.modal-header .btn-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.modal-header .btn-close:focus {
    box-shadow: none;
    outline: none;
}

/* Make the close icon white */
.modal-header .btn-close::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 2px;
    background-color: white;
    transform: translate(-50%, -50%) rotate(45deg);
}

.modal-header .btn-close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 2px;
    background-color: white;
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* Blog Swiper Styles */
.blogSwiper {
    padding: 20px 60px 40px;
    position: relative;
    overflow: visible;
}

.blogSwiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

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

.blogSwiper .blog-entry {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-navigation {
    position: relative;
    margin-top: 20px;
    z-index: 10;
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
}

.blog-button-next,
.blog-button-prev {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.1);
    color: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 11;
    opacity: 1;
}

.blog-button-next {
    right: 0;
}

.blog-button-prev {
    left: 0;
}

.blog-button-next:hover,
.blog-button-prev:hover {
    background: var(--bs-primary);
    color: #fff;
    border-color: var(--bs-primary);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    opacity: 1;
}

.blog-button-next i,
.blog-button-prev i {
    font-size: 20px;
    font-weight: bold;
}

.blog-pagination {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: auto !important;
    margin: 0;
    z-index: 10;
    height: 40px;
    bottom: 0 !important;
    top: auto !important;
}

.blog-pagination.swiper-pagination-horizontal,
.swiper-horizontal > .blog-pagination.swiper-pagination-bullets {
    bottom: 0 !important;
    top: auto !important;
}

.blog-pagination .blog-pagination-bullet,
.blog-pagination .swiper-pagination-bullet {
    background: #ddd;
    opacity: 1;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 4px !important;
}

.blog-pagination .blog-pagination-bullet-active,
.blog-pagination .swiper-pagination-bullet-active {
    background: var(--bs-primary, #c4161c);
    opacity: 1;
    width: 24px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .blogSwiper {
        padding: 20px 50px 80px;
    }
    
    .blog-button-next,
    .blog-button-prev {
        width: 35px;
        height: 35px;
    }
    
    .blog-button-next {
        right: 0;
    }
    
    .blog-button-prev {
        left: 0;
    }
    
    .blog-button-next i,
    .blog-button-prev i {
        font-size: 16px;
    }
    
    .blog-pagination {
        bottom: 15px;
    }
}

/* Blog Sidebar Styles */
.blog-sidebar-scroll {
    padding-right: 8px;
}

.blog-sidebar-scroll::-webkit-scrollbar {
    width: 6px;
}

.blog-sidebar-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.blog-sidebar-scroll::-webkit-scrollbar-thumb {
    background: var(--bs-primary);
    border-radius: 10px;
}

.blog-sidebar-scroll::-webkit-scrollbar-thumb:hover {
    background: var(--bs-primary-hover);
}

.blog-sidebar-link {
    transition: all 0.3s ease;
    padding: 6px 0;
    display: block;
}

.blog-sidebar-link:hover {
    color: var(--bs-primary) !important;
    padding-left: 5px;
}

.blog-sidebar-link:hover .text-muted {
    color: var(--bs-primary) !important;
}

.transition-all {
    transition: all 0.3s ease;
}

/* Footer Styles */
/* .footer {
    background-color: #f8f9fa;
} */

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid transparent;
    margin: -4px -8px;
    font-size: 14px;
    font-weight: 400;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #ffffff;
    transform: translateX(5px);
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.footer-links a i {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    opacity: 1;
    margin-right: 8px;
}

.footer-links a:hover i {
    opacity: 1;
    transform: scale(1.1);
    color: #ffffff;
}

.footer-contact i {
    font-size: 18px;
    width: 20px;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.9);
}

/* Social Media Links Styles */
.social-area {
    margin: 0;
    padding: 0;
    gap: 0.2rem !important;
}

.social-area li {
    list-style: none;
    margin: 0;
}

/* Base social link styles */
.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

/* Footer social links - white icons on dark background */
.footer .social-link {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.footer .social-link i,
.footer .social-link svg {
    font-size: 16px;
    width: 16px;
    height: 16px;
    color: #ffffff;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Contact page and other light background pages - dark icons */
.contact-us .social-link {
    background-color: rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.15);
    color: #000000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-us .social-link i,
.contact-us .social-link svg {
    font-size: 16px;
    width: 16px;
    height: 16px;
    color: #000000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Common hover effect for all social links */
.social-link:hover {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    color: #fff !important;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(var(--bs-primary-rgb), 0.4);
}

.social-link:hover i,
.social-link:hover svg {
    color: #fff !important;
    transform: scale(1.1);
}

/* ======= Content Protection ======= */
/* Disable image dragging */
img {
    -webkit-user-drag: none !important;
    -khtml-user-drag: none !important;
    -moz-user-drag: none !important;
    -o-user-drag: none !important;
    -webkit-touch-callout: none !important; /* Disable iOS callout */
    pointer-events: auto;
}

/* Disable text selection (will be overridden by JS for inputs) */
* {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    -webkit-touch-callout: none !important;
}

/* Allow text selection in form fields */
input, textarea, [contenteditable], select {
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    user-select: text !important;
}

/* Watermark container for images (Disabled - can be enabled if needed) */
/* .watermarked {
    position: relative;
    display: inline-block;
}

.image-watermark {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 8px;
    font-size: 11px;
    font-family: 'Poppins', sans-serif;
    border-radius: 3px;
    pointer-events: none;
    z-index: 10;
    opacity: 0.8;
} */

.social-media-section h6 {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Footer Credits Bottom Section - Outside Container */
.footer-credits-bottom {
    background-color: #0a0a0a;
    /* background-image: url("data:image/svg+xml,%3Csvg width='50' height='50' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='grid' width='50' height='50' patternUnits='userSpaceOnUse'%3E%3Cpath d='M 50 0 L 0 0 0 50' fill='none' stroke='rgba(255,255,255,0.05)' stroke-width='1'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23grid)'/%3E%3C/svg%3E"); */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-credits-bottom p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

.footer-credits-bottom .emoji {
    filter: none;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    display: inline-block;
    margin-left: 4px;
}

/* Hide the default close icon */
.modal-header .btn-close span {
    display: none;
}

.modal-footer {
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;    
}

img.wp-smiley, img.emoji {
  display: inline !important;
  border: none !important;
  box-shadow: none !important;
  height: 1em !important;
  width: 1em !important;
  margin: 0 0.07em !important;
  vertical-align: -0.1em !important;
  background: none !important;
  padding: 0 !important;
}

/* Footer Credits/Badges Section */
.footer-credits-section {
  margin-top: 0;
  /* border-top: 1px solid rgba(255, 255, 255, 0.1) !important; */
}

.footer-credits-wrapper {
  gap: 1rem !important;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.footer-credit-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  opacity: 0.8;
  flex-shrink: 0;
  cursor: default;
  margin: 0;
  padding: 0;
}

.footer-credit-item:hover {
  opacity: 1;
}

.footer-credit-img {
  width: 100px;
  height: auto;
  max-height: 50px;
  object-fit: contain;
  transition: all 0.3s ease;
  margin: 0;
  padding: 0;
  border: 0.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  padding: 4px;
  background-color: rgba(255, 255, 255, 0.03);
}

.footer-credit-item:hover .footer-credit-img {
  opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .footer-credits-wrapper {
    gap: 0.875rem !important;
  }
  
  .footer-credit-img {
    width: 90px;
    max-height: 45px;
  }
}

@media (max-width: 768px) {
  .footer-credits-wrapper {
    gap: 0.75rem !important;
  }
  
  .footer-credit-img {
    width: 80px;
    max-height: 40px;
  }
}

@media (max-width: 576px) {
  .footer-credits-wrapper {
    gap: 0.625rem !important;
  }
  
  .footer-credit-img {
    width: 70px;
    max-height: 35px;
  }
}