@import url("https://fonts.googleapis.com/css2?family=Berkshire+Swash&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --bs-white: #ffffff;
  --bs-primary: #161f60;
  --bs-secondary: #ef5829;
  --bs-dark: #212529;
  --bs-light: #f8f9fa;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

/* *** Font Styles *** */
.facilior {
  font-family: "Berkshire Swash", serif;
  font-weight: 400;
  font-style: normal;
}
.poppins {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}

.fs-11{
  font-size: 11px;
}
.fs-12{
  font-size: 12px;
}

.text-yellow {
  color: #f25b22 !important;
}

.text-primary {
  color: #133d95 !important;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: #ffffff !important;
}

.breadcrumb-item.active {
  color: #ffc107 !important;
}
/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.5s ease-out,
    visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition:
    opacity 0.5s ease-out,
    visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
  /* Fallback: Auto-hide after 3 seconds */
  animation: autoHide 3s forwards;
}

/* CSS Animation fallback to hide spinner */
@keyframes autoHide {
  0% {
    opacity: 1;
    visibility: visible;
  }
  90% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
/*** Spinner End ***/

.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 29px;
  display: flex;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  z-index: 99;
}

@media (max-width: 991.98px) {
  .back-to-top.btn {
    display: none !important;
  }
}

/*** Button Start ***/
.btn {
  font-weight: 600;
  transition: 0.5s;
}

.btn-square {
  width: 32px;
  height: 32px;
}

.btn-sm-square {
  width: 34px;
  height: 34px;
}

.btn-md-square {
  width: 44px;
  height: 44px;
}

.btn-lg-square {
  width: 56px;
  height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
  padding: 0;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 50%;
}

.btn.btn-primary {
  box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-primary:hover {
  box-shadow: inset 300px 0 0 0 var(--bs-light) !important;
  color: var(--bs-primary) !important;
}

.btn.btn-light {
  box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-light:hover {
  box-shadow: inset 300px 0 0 0 var(--bs-primary);
  color: var(--bs-light) !important;
}

.btn-hover {
  transition: 0.5s;
}

.btn-hover:hover {
  color: var(--bs-secondary) !important;
}

/*** Section Title Start ***/
.section-title {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  color: var(--bs-white);
}

.section-title::before {
  content: "";
  width: 50px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  margin-right: -50px;
  border: 1px solid var(--bs-primary) !important;
}

.section-title::after {
  content: "";
  width: 50px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  margin-left: -50px;
  border: 1px solid var(--bs-primary) !important;
}

/*** Topbar Start ***/
.fixed-top .container {
  transition: 0.5s;
}

.topbar {
  padding: 2px 10px 2px 20px;
  background: var(--bs-primary) !important;
}

.topbar a,
.topbar a i {
  transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
  color: var(--bs-secondary) !important;
}

@media (max-width: 768px) {
  .topbar {
    display: none;
  }
}
/*** Topbar End ***/

/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
  position: relative;
  padding: 35px 15px;
  color: var(--bs-white) !important;
  font-size: 14px;
  font-weight: 400;
  outline: none;
  transition: 0.5s;
  margin: 0px 1px;
  border-bottom: 1px solid transparent;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
  padding: 20px 15px;
  color: var(--bs-dark) !important;
  border-bottom: 1px solid transparent;
}

.sticky-top.navbar-light .navbar-nav .nav-link:hover,
.sticky-top.navbar-light .navbar-nav .nav-link.active {
  border-bottom: 1px solid var(--bs-secondary);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--bs-white) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  border-bottom: 1px solid var(--bs-secondary);
}

.navbar-light .navbar-brand h1 {
  color: var(--bs-white);
}

.sticky-top.navbar-light .navbar-brand h1 {
  color: var(--bs-primary);
}

.sticky-top.navbar-light .navbar-brand img {
  max-height: 62px;
  height: 62px;
  width: auto;
  transition: 0.3s;
  background: url("../img/facilior-blue-logo.svg") no-repeat center center;
  background-size: contain;
}

.navbar-light .navbar-brand img {
  max-height: 89px;
  height: 89px;
  width: auto;
  transition: 0.3s;
  background-size: contain;
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

@media (min-width: 1200px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    border: 0;
    border-radius: 10px;
    transition: 0.5s;
    opacity: 0;
  }
}

.dropdown .dropdown-menu a:hover {
  background: var(--bs-primary);
  color: var(--bs-white);
}

.dropdown .dropdown-menu a:hover i {
  color: var(--bs-white) !important;
}

.dropdown .dropdown-menu a i {
  width: 14px;
  height: 14px;
  font-size: 14px;
  min-width: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #161f60 !important;
}

.navbar .nav-item:hover .dropdown-menu {
  transform: rotateX(0deg);
  visibility: visible;
  background: var(--bs-light);
  transition: 0.5s;
  opacity: 1;
}

@media (max-width: 991.98px) {
  .navbar-light {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bs-white);
    z-index: 1050;
  }

  .sticky-top.navbar-light {
    position: fixed;
    background: var(--bs-white);
  }

  .navbar-light .navbar-brand h1 {
    color: var(--bs-primary);
  }

  .navbar.navbar-expand-lg .navbar-toggler {
    padding: 10px 20px;
    border: 1px solid var(--bs-primary);
    color: var(--bs-primary);
  }

  .navbar-light .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bs-white);
    margin-top: 0;
    border-top: 1px solid #dddddd;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  .navbar-light .navbar-nav .nav-link,
  .sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 15px 20px;
    color: var(--bs-dark) !important;
    border-bottom: 1px solid transparent;
  }

  .navbar-light .navbar-nav .nav-link:hover,
  .navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-primary) !important;
    border-bottom: 0;
  }

  .sticky-top.navbar-light .navbar-nav .nav-link:hover,
  .sticky-top.navbar-light .navbar-nav .nav-link.active {
    border-bottom: 1px solid var(--bs-secondary);
  }

  .navbar-light .navbar-brand img {
    max-height: 45px;
    background: url("../img/facilior-blue-logo.svg") no-repeat center center;
    background-size: contain;
  }

  .sticky-top.navbar-light .navbar-brand img {
    max-height: 35px;
    background: url("../img/facilior-blue-logo.svg") no-repeat center center;
    background-size: contain;
  }

  /* Add top padding to body to account for fixed navbar */
  body {
    padding-top: 76px;
  }
}

@media (min-width: 992px) {
  .navbar-light {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    z-index: 999;
  }

  .sticky-top.navbar-light {
    position: fixed;
    background: var(--bs-light);
    border-bottom: none;
  }

  .navbar-light .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    bottom: -1px;
    left: 0;
    background: var(--bs-primary);
    transition: 0.5s;
    z-index: -1;
  }

  .navbar-light .navbar-nav .nav-link:hover::before,
  .navbar-light .navbar-nav .nav-link.active::before {
    height: calc(100% + 1px);
    /* left: 1px; */
  }

  .navbar-light .navbar-nav .nav-link.nav-contact::before {
    display: none;
  }
}

/*** Carousel Hero Header Start ***/
.carousel-header .carousel-control-prev,
.carousel-header .carousel-control-next {
  background: transparent;
}

.carousel-header .carousel-control-prev .carousel-control-prev-icon {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  padding: 25px 30px;
  border-top-left-radius: 0;
  border-top-right-radius: 50px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 50px;
  background-size: 60% 60%;
}

.carousel-header .carousel-control-next .carousel-control-next-icon {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  padding: 25px 30px;
  border-top-left-radius: 50px;
  border-top-right-radius: 0;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 0;
  background-size: 60% 60%;
}

.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li {
  opacity: 0;
}

.carousel-header .carousel-inner .carousel-item {
  position: relative;
  min-height: 100vh;
}

.carousel-header .carousel-inner .carousel-item img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-header .carousel-inner .carousel-item .carousel-caption {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(rgba(22, 31, 96, 0.75), rgba(0, 0, 0, 0.8));
  background-size: cover;
}

@media (max-width: 768px) {
  .carousel-header .carousel-inner .carousel-item img,
  .carousel-header .carousel-inner .carousel-item .carousel-caption {
    height: 700px;
    margin-top: -100px;
  }

  .carousel-header {
    height: 600px !important;
  }

  .carousel-header .carousel-control-prev .carousel-control-prev-icon,
  .carousel-header .carousel-control-next .carousel-control-next-icon {
    opacity: 0;
  }

  .search-bar {
    margin-top: -100px;
    transition: 0.5s;
  }
}
/*** Carousel Hero Header End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
  background-position: center center;
  /* background-attachment: fixed; */
  background-repeat: no-repeat;
  background-size: cover;
  padding: 150px 0 50px 0;
}
.bg-breadcrumb.aboutus {
  background:
    linear-gradient(rgb(0 22 69 / 50%), rgb(0 33 101 / 61%)),
    url(../img/breadcrumb-bg.jpg);
}
.bg-breadcrumb.career {
  background:
    linear-gradient(rgb(0 22 69 / 50%), rgb(0 33 101 / 61%)),
    url(../img/career-breadcrumb-bg.jpg);
}
.bg-breadcrumb.services {
  background:
    linear-gradient(rgb(0 22 69 / 50%), rgb(0 33 101 / 61%)),
    url(../img/services-breadcrumb-bg.jpg);
}
.bg-breadcrumb.contact {
  background:
    linear-gradient(rgb(0 22 69 / 50%), rgb(0 33 101 / 61%)),
    url(../img/contact-breadcrumb-bg.jpg);
}
.bg-breadcrumb.industries {
  background:
    linear-gradient(rgb(0 22 69 / 50%), rgb(0 33 101 / 61%)),
    url(../img/ind-breadcrumb-bg.jpg);
}
.bg-breadcrumb.privacy {
  background:
    linear-gradient(rgb(0 22 69 / 61%), rgb(0 24 73 / 72%)),
    url(../img/privacy-breadcrumb-bg.jpg);
}
.bg-breadcrumb.terms {
  background:
    linear-gradient(rgb(0 22 69 / 81%), rgb(0 24 75 / 63%)),
    url(../img/terms-breadcrumb-bg.jpg);
}

.bg-breadcrumb .breadcrumb-item a {
  color: var(--bs-white) !important;
}
/*** Single Page Hero Header End ***/

/*** About Start ***/
.about .values img {
  width: 69px;
  height: auto;
}
.about p {
  line-height: 1.7;
}

.about .about-img img {
  border-radius: 12px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  transition: 0.3s ease;
}

.about .container .section-about-title,
.services .container .section-about-title {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  color: var(--bs-primary);
}

.about .container .section-about-title::before,
.services .container .section-about-title::before {
  content: "";
  width: 50px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  margin-right: -50px;
  border: 1px solid var(--bs-primary) !important;
}
.about .container .white.section-about-title::before,
.testimonial .container .white.section-about-title::before,
.services .container .white.section-about-title::before,
.testimonial .container .white.section-title::after {
  border: 1px solid var(--bs-white) !important;
}

.about-features .feature-item .feature-icon-img {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/*** About End ***/

/*** Services End ***/
.quality-services {
  padding: 100px 0;
  background: #ffffff;
  position: relative;
}

.quality-services .container {
  position: relative;
  z-index: 10;
}

.quality-services .overlay {
  position: absolute;
  inset: 0;
  background: #161f60;
  z-index: 0;
}

.quality-services .overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/facilior-services-bg.jpg") center/cover no-repeat;
  opacity: 0.2;
  z-index: 1;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.quality-services .overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/h1-bg-01.png") center/cover no-repeat;
  /* background: url('https://demo2.themelexus.com/growsee/wp-content/uploads/2025/04/footer-demo4.png') center/cover no-repeat; */
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  opacity: 0.8;
  z-index: 2;
}

.quality-services .sticky-box {
  position: sticky;
  top: 120px;
}

.quality-services .sticky-box h2 {
  font-weight: 700;
}

.quality-services .portfolio-card .icon img {
  filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%)
    hue-rotate(346deg) brightness(104%) contrast(97%);
  -webkit-filter: brightness(0) saturate(100%) invert(27%) sepia(51%)
    saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%);
}
.quality-services .portfolio-card:hover {
  transform: translateY(-8px);
}

.quality-services .portfolio-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f5f5f7;
  border-radius: 20px;
  overflow: hidden;
  gap: 4px;
  padding: 10px;
  transition: 0.4s;
}

.quality-services .card-content {
  flex: 1;
  padding: 16px;
}

.quality-services .card-content h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 1rem;
}

.quality-services .card-content p {
  color: #666;
  max-width: 400px;
  font-size: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.quality-services .card-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-top: 40px;
  background: transparent;
  border: none;
  padding: 0px;
}

.quality-services .icon img {
  width: 53px;
  height: 53px;
  /* Change SVG color using CSS filter */
  filter: brightness(0) saturate(100%) invert(1);
}

.quality-services .learn-more {
  text-decoration: none;
  font-weight: 500;
  color: #000;
  font-size: 12px;
  transition: color 0.3s ease;
}

.quality-services .learn-more:hover,
.quality-services .learn-more:hover span {
  color: #ef5829;
}

.quality-services .learn-more span {
  margin-left: 5px;
  color: #000;
}

.quality-services .card-image {
  flex: 1;
  max-width: 350px;
}

.quality-services .card-image img {
  width: 100%;
  height: 247px;
  border-radius: 20px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .quality-services .portfolio-card {
    flex-direction: column;
  }

  .quality-services .card-image {
    max-width: 100%;
  }
}

.service-card {
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 40px 20px;
  border-radius: 15px;
  color: #fff;
  transition: 0.4s;
  backdrop-filter: blur(6px);
}

.service-card .icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.service-card h5 {
  color: #ffffff !important;
}

.service-card p {
  color: #ffc928;
  margin-bottom: 5px;
  font-size: 12px;
}

/* HOVER EFFECT */
.service-card:hover {
  transform: translateY(-8px);
  border-color: #ef5829 !important;
  background: rgba(255, 255, 255, 0.08);
}

/*** Services End ***/
.btn-slip {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: transparent;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  border-radius: 69px;
  font-weight: 400;
  text-transform: uppercase;
  border: 2px solid #ffffff64;
}
.btn-slip:hover {
  border-color: #ef5829 !important;
  color: #fff !important;
}

/* TEXT WRAPPER */
.btn-inner {
  position: relative;
  height: 24px;
  overflow: hidden;
}

/* BOTH TEXT LAYERS */
.btn-text {
  display: block;
  transition: transform 0.4s ease;
}

/* SECOND TEXT */
.btn-text-hover {
  position: absolute;
  top: 100%;
  left: 0;
}

/* HOVER TEXT SLIDE */
.btn-slip:hover .btn-text {
  transform: translateY(-100%);
}

.btn-slip:hover .btn-text-hover {
  transform: translateY(-100%);
}

/* ICON */
.btn-icon {
  display: inline-block;
  transition: transform 0.3s ease;
}

/* ICON MOVE */
.btn-slip:hover .btn-icon {
  transform: translateX(5px);
}
/*** Services Start ***/
.service .service-content-inner {
  transition: 0.5s;
}

/*** Service End ***/

/*** Destination Start ***/
.destination .tab-class .tab-content .tab-pane .destination-img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  z-index: 1;
}

.destination
  .tab-class
  .tab-content
  .tab-pane
  .destination-img
  .destination-overlay {
  position: absolute;
  bottom: -100%;
  left: 0;
  z-index: 3;
  transition: 0.5s;
}

.destination .tab-class .tab-content .tab-pane .destination-img .search-icon {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  display: flex;
  justify-content: end;
  padding: 20px 20px 0 0;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: 0.5s;
}

.destination
  .tab-class
  .tab-content
  .tab-pane
  .destination-img
  .search-icon
  a
  i {
  opacity: 0;
  transition: 0.5s;
}

.destination .tab-class .nav-item {
  padding: 0 0 20px 0;
}
.destination .tab-class .nav-item a.active {
  background: var(--bs-primary) !important;
}

.destination .tab-class .nav-item a.active span {
  color: var(--bs-white) !important;
}

.destination .tab-class .tab-content .destination-img:hover .search-icon {
  background: rgba(19, 53, 123, 0.4);
}

.destination
  .tab-class
  .tab-content
  .destination-img:hover
  .destination-overlay {
  bottom: 0;
}

.destination .tab-class .tab-content .destination-img:hover .search-icon a i {
  opacity: 1;
}

.destination .tab-class .tab-content .destination-img img {
  transition: 0.5s;
}

.destination .tab-class .tab-content .destination-img:hover img {
  transform: scale(1.2);
}
/*** Destination End ***/

/*** Packages Start ***/
.packages .packages-item .packages-img {
  position: relative;
  overflow: hidden;
  transition: 0.5s;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  z-index: 1;
}

.packages .packages-item .packages-img .packages-info {
  background: rgba(0, 0, 0, 0.3);
}

.packages .packages-item .packages-img .packages-info small,
.packages .packages-item .packages-img .packages-info small i {
  color: var(--bs-white);
  transition: 0.5s;
}

.packages .packages-item .packages-img::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 0px solid;
  border-radius: 10px !important;
  visibility: hidden;
  transition: 0.7s;
  z-index: 3;
}

.packages .packages-item .packages-img:hover.packages-img::after {
  width: 100%;
  height: 100%;
  border: 300px solid;
  border-color: rgba(19, 53, 123, 0.6) rgba(19, 53, 123, 0.6)
    rgba(19, 53, 123, 0.6) rgba(19, 53, 123, 0.6);
  visibility: visible;
}

.packages .packages-item .packages-img small,
.packages .packages-item .packages-img small i {
  transition: 0.5s;
}

.packages .packages-item .packages-img:hover small,
.packages .packages-item .packages-img:hover small i {
  color: var(--bs-white) !important;
}

.packages .packages-item .packages-img img {
  transition: 0.5s;
}

.packages .packages-item .packages-img:hover img {
  transform: scale(1.3);
}

.packages .packages-item .packages-img .packages-price {
  position: absolute;
  width: 100px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  background: var(--bs-primary);
  color: var(--bs-white);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  z-index: 5;
}

.packages .packages-carousel {
  position: relative;
}

.packages .packages-carousel .owl-nav .owl-prev {
  position: absolute;
  top: -50px;
  left: 0;
  padding: 5px 30px;
  border: 1px solid var(--bs-primary);
  border-radius: 30px;
  transition: 0.5s;
}

.packages .packages-carousel .owl-nav .owl-next {
  position: absolute;
  top: -50px;
  right: 0;
  padding: 5px 30px;
  border: 1px solid var(--bs-primary);
  border-radius: 30px;
  transition: 0.5s;
}

.packages .packages-carousel .owl-nav .owl-prev i,
.packages .packages-carousel .owl-nav .owl-next i {
  color: var(--bs-primary);
  font-size: 17px;
  transition: 0.5s;
}

.packages .packages-carousel .owl-nav .owl-prev:hover,
.packages .packages-carousel .owl-nav .owl-next:hover {
  background: var(--bs-primary);
}

.packages .packages-carousel .owl-nav .owl-prev:hover i,
.packages .packages-carousel .owl-nav .owl-next:hover i {
  color: var(--bs-white);
}
/*** Packages End ***/

/*** Explore Tour Start ***/
.ExploreTour .tab-class .nav-item {
  padding: 0 0 20px 0;
}
.ExploreTour .tab-class .nav-item a.active {
  background: var(--bs-primary) !important;
}

.ExploreTour .tab-class .nav-item a.active span {
  color: var(--bs-white) !important;
}

/* National Tour Start */
.ExploreTour #NationalTab-1 .national-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.ExploreTour #NationalTab-1 .national-item img {
  transition: 0.5s;
}

.ExploreTour #NationalTab-1 .national-item:hover img {
  transform: scale(1.2);
}

.ExploreTour #NationalTab-1 .national-item .national-content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 10px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: end;
  justify-content: center;
  transition: 0.5s;
}

.ExploreTour #NationalTab-1 .national-item:hover .national-content {
  background: rgba(19, 53, 123, 0.6);
}

.ExploreTour #NationalTab-1 .national-item .national-plus-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
  opacity: 0;
}

.ExploreTour #NationalTab-1 .national-item:hover .national-plus-icon {
  opacity: 1;
}

.ExploreTour #NationalTab-1 .national-item .tour-offer {
  position: absolute;
  top: -1px;
  left: -1px;
  padding: 20px;
  border-top-right-radius: 40px;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 80px;
  background: var(--bs-primary);
  color: var(--bs-white);
}

/* International Tour Start */
.ExploreTour #InternationalTab-2 .international-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.ExploreTour #InternationalTab-2 .international-item img {
  transition: 0.5s;
}

.ExploreTour #InternationalTab-2 .international-item:hover img {
  transform: scale(1.2);
}

.ExploreTour #InternationalTab-2 .international-item .tour-offer {
  position: absolute;
  top: -1px;
  left: -1px;
  padding: 20px;
  border-top-right-radius: 30px;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 80px;
  background: var(--bs-primary);
  color: var(--bs-white);
}

.ExploreTour #InternationalTab-2 .international-item .international-content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 10px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: end;
  justify-content: center;
  transition: 0.5s;
}

.ExploreTour
  #InternationalTab-2
  .international-item:hover
  .international-content {
  background: rgba(19, 53, 123, 0.6);
}

.ExploreTour
  #InternationalTab-2
  .international-item
  .international-content
  .international-info
  a {
  font-size: 14px;
}

.ExploreTour #InternationalTab-2 .international-item .international-plus-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
  opacity: 0;
}

.ExploreTour
  #InternationalTab-2
  .international-item:hover
  .international-plus-icon {
  opacity: 1;
}

/* carousel Start */
.ExploreTour
  #InternationalTab-2
  .InternationalTour-carousel
  .international-item {
  position: relative;
  overflow: hidden;
}

.ExploreTour #InternationalTab-2 .InternationalTour-carousel .owl-dots {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ExploreTour #InternationalTab-2 .InternationalTour-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  background: var(--bs-light);
  border: 1px solid var(--bs-primary);
  border-radius: 10px;
  transition: 0.5s;
}

.ExploreTour #InternationalTab-2 .InternationalTour-carousel .owl-dot.active {
  width: 40px;
  background: var(--bs-primary);
}
/*** Explore Tour End ***/

/*** Gallery Start ***/
.gallery .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.gallery .gallery-item img {
  min-height: 300px;
  object-fit: cover;
}

.gallery .gallery-item .gallery-content {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  padding: 15px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  transition: 0.5s;
}

.gallery .gallery-item .gallery-content .gallery-info {
  position: relative;
  margin-bottom: -100%;
  opacity: 0;
  transition: 0.5s;
}

.gallery .gallery-item .gallery-plus-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
  opacity: 0;
}

.gallery .gallery-item:hover .gallery-content .gallery-info,
.gallery .gallery-item:hover .gallery-plus-icon {
  opacity: 1;
  margin: 0;
}

.gallery .gallery-item img {
  transition: 0.5s;
}

.gallery .gallery-item:hover img {
  transform: scale(1.2);
}

.gallery .gallery-item:hover .gallery-content {
  background: rgba(19, 53, 123, 0.8);
}

.gallery .tab-class .nav-item {
  padding: 0 0 20px 0;
}
.gallery .tab-class .nav-item a.active {
  background: var(--bs-primary) !important;
}

.gallery .tab-class .nav-item a.active span {
  color: var(--bs-white) !important;
}

/*** Gallery End ***/

/*** Careers Start ***/
/* .career {
  background:
    linear-gradient(rgba(19, 53, 123, 0.8), rgba(19, 53, 123, 0.8)),
    url(../img/tour-booking-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
} */

.career .container .section-career-title {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  color: var(--bs-primary);
}

.career .container .section-career-title::before {
  content: "";
  width: 50px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  margin-right: -50px;
  border: 1px solid var(--bs-primary) !important;
}

.career .container form .btn.btn-primary {
  box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.career .container form .btn.btn-primary:hover {
  box-shadow: inset 800px 0 0 0 var(--bs-light) !important;
  color: var(--bs-primary) !important;
}

.career .container .form-floating input {
  background: #fff !important;
  border: 1px solid #ccc !important;
  color: var(--bs-dark) !important;
}

.file-input-custom {
  height: 52px;
  padding: 10px;
  background-color: #f8f9fa;
  border-radius: 10px;
  border: 1px solid #dee2e6;
  display: flex;
  align-items: center;
}

.file-input-custom::file-selector-button {
  background-color: #2d2a63;
  color: #fff;
  border: none;
  padding: 6px 14px;
  border-radius: 6px;
  margin-right: 10px;
  cursor: pointer;
}

.file-input-custom::file-selector-button:hover {
  background-color: #1f1c4a;
}
/*** Career End ***/

/*** Travel Guide Start ***/
.guide .guide-item .guide-img {
  position: relative;
}

.guide .guide-item .guide-img .guide-icon {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-bottom: -50px;
  display: flex;
  justify-content: center;
  border: 1px solid var(--bs-primary);
  background: var(--bs-light);
  z-index: 9;
}

.guide .guide-item .guide-img .guide-img-efects {
  position: relative;
  overflow: hidden;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}

.guide .guide-item .guide-img .guide-img-efects::after {
  content: "";
  width: 100%;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.5s;
}

.guide .guide-item:hover .guide-img-efects::after {
  height: 100%;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  background: rgba(19, 53, 123, 0.5);
}

.guide .guide-item .guide-img-efects img {
  transition: 0.5s;
}
.guide .guide-item:hover .guide-img-efects img {
  transform: scale(1.1);
}

.guide .guide-item .guide-title {
  position: relative;
  background: var(--bs-light);
  transition: 0.5s;
}

.guide .guide-item .guide-title::after {
  content: "";
  width: 100%;
  height: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  transition: 0.5s;
}

.guide .guide-item:hover .guide-title::after {
  height: 100%;
  background: var(--bs-primary) !important;
  color: var(--bs-white);
}

.guide .guide-item .guide-title .guide-title-inner,
.guide .guide-item:hover .guide-title .guide-title-inner h4 {
  transition: 0.5s;
}

.guide .guide-item:hover .guide-title .guide-title-inner {
  position: relative;
  color: var(--bs-white) !important;
  z-index: 2;
}

.guide .guide-item:hover .guide-title .guide-title-inner h4 {
  color: var(--bs-white);
}
/*** Travel Guide End ***/

/*** Blog Start ***/
.blog .blog-item .blog-img {
  position: relative;
}

.blog .blog-item .blog-img .blog-info {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  display: flex;
  background: rgba(255, 255, 255, 0.2);
  color: var(--bs-white);
}

.blog .blog-item .blog-img .blog-img-inner {
  position: relative;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}

.blog .blog-item .blog-img .blog-img-inner .blog-icon {
  position: absolute;
  width: 100%;
  height: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}

.blog .blog-item .blog-img .blog-img-inner .blog-icon a {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.5s;
}

.blog .blog-item .blog-img:hover .blog-img-inner .blog-icon a {
  opacity: 1;
}

.blog .blog-item .blog-img:hover .blog-img-inner .blog-icon {
  height: 100%;
  background: rgba(19, 53, 123, 0.6);
  opacity: 1;
}

.blog .blog-item .blog-img .blog-img-inner {
  overflow: hidden;
}

.blog .blog-item .blog-img .blog-img-inner img {
  transition: 0.5s;
}

.blog .blog-item .blog-img:hover .blog-img-inner img {
  transform: scale(1.2);
}
/*** Blog End ***/

/*** Testimonial Start ***/

.testimonial {
  background:
    linear-gradient(rgba(19, 53, 123, 0.2), rgba(19, 53, 123, 0.3)),
    url(../img/testimonial-bg.jpg);
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.testimonial .testimonial-carousel {
  position: relative;
}

.testimonial .testimonial-carousel .testimonial-item .testimonial-img {
  position: relative;
  width: 100px;
  height: 100px;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 3px solid var(--bs-secondary);
  border-style: dotted;
  border-radius: 50%;
}

.testimonial .testimonial-carousel .testimonial-item h5 {
  color: var(--bs-white) !important;
}

.testimonial .testimonial-carousel .owl-dots {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial .testimonial-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  background: var(--bs-light);
  border: 1px solid var(--bs-primary);
  border-radius: 10px;
  transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-dot.active {
  width: 40px;
  background: #f25b22;
  border: 1px solid #f25b22;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev {
  position: absolute;
  top: -55px;
  left: 0;
  padding: 5px 30px;
  border: 1px solid #4d61f1;
  border-radius: 30px;
  transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-next {
  position: absolute;
  top: -55px;
  right: 0;
  padding: 5px 30px;
  border: 1px solid #4d61f1;
  border-radius: 30px;
  transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev i,
.testimonial .testimonial-carousel .owl-nav .owl-next i {
  color: #9a9a9a;
  font-size: 17px;
  transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover {
  background: var(--bs-primary);
}

.testimonial .testimonial-carousel .owl-nav .owl-prev:hover i,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover i {
  color: var(--bs-white);
}

.testimonial
  .testimonial-carousel
  .owl-item.center
  .testimonial-item
  .testimonial-comment {
  background: #6270d8 !important;
  color: var(--bs-white);
  transition: 0.5s;
}

.testimonial
  .testimonial-carousel
  .owl-item.center
  .testimonial-item
  .testimonial-img {
  border: 3px solid var(--bs-white);
  border-style: dotted;
  transition: 0.5s;
}
/*** Testimonial End ***/

/*** Contact Start ***/
.contact .container form .btn.btn-primary {
  box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.contact .container form .btn.btn-primary:hover {
  box-shadow: inset 1000px 0 0 0 var(--bs-light) !important;
  color: var(--bs-primary) !important;
}

.contact-address .container {
  position: relative;
}

.contact-address .overlay {
  position: absolute;
  inset: 0;
  background: #161f60;
  z-index: 0;

  border-radius: 25px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
}

.contact-address .overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/contact-bg.jpg") center/cover no-repeat;
  opacity: 0.2;
  z-index: 1;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  border-radius: 25px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
}

.contact-address .overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/blue-orange.png") center/cover no-repeat;
  /* background: url('https://demo2.themelexus.com/growsee/wp-content/uploads/2025/04/footer-demo4.png') center/cover no-repeat; */
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  opacity: 0.6;
  z-index: 2;

  border-radius: 25px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
}

/* Contact Support Image Styling */
.contact-address .col-md-6:last-child {
  display: flex;
  align-items: stretch;
}

.contact-address .col-md-6 img[alt="Contact Support"] {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  object-position: center;
  border-radius: 15px;
}

.contact-info-section {
  color: #fff;
}

.contact-info-section .title {
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffffff;
}

.contact-info-section p {
  margin: 0;
  color: #ffffff;
  font-size: 15px;
}

/* ICON CIRCLE */
.contact-info-section .icon-box {
  width: 60px;
  height: 60px;
  background: rgb(255 255 255 / 18%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ICON STYLE */
.contact-info-section .icon-box i {
  color: #ef5829;
  font-size: 27px;
}

/*** Contact End ***/

/*** Subscribe Start ***/
.subscribe {
  background:
    linear-gradient(rgba(19, 53, 123, 0.6), rgba(19, 53, 123, 0.6)),
    url(../img/subscribe-img.jpg);
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.subscribe .subscribe-title {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  color: var(--bs-white);
}

.subscribe .subscribe-title::before {
  content: "";
  width: 50px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  margin-right: -50px;
  border: 1px solid var(--bs-white) !important;
}

.subscribe .subscribe-title::after {
  content: "";
  width: 50px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  margin-left: -50px;
  border: 1px solid var(--bs-white) !important;
}
/*** Subscribe End ***/

/*** Footer Start ***/
.footer-section {
  background: #0a0f2f;
}

.footer .footer-item a {
  line-height: 30px;
  color: var(--bs-white);
  transition: 0.5s;
}

.footer .footer-item a:hover {
  letter-spacing: 2px;
  color: var(--bs-primary);
}

.footer-section h5 {
  font-family: "Berkshire Swash", serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 5px;
  font-size: 1.65rem;
}

.logo-icon {
  color: #ef5829;
}

.stars {
  color: #ffb400;
  letter-spacing: 3px;
}

.footer-section h2 {
  font-size: 28px;
  font-weight: 500;
  color: var(--bs-white);
}

.footer-section .terms {
  color: #3748c0;
}
.footer-section .terms:hover {
  color: var(--bs-white);
}

.cta-text {
  display: inline-block;
  background: #222;
  padding: 6px 12px;
  border-radius: 4px;
  background: #161f606e;
}

.social i {
  color: #1f51b7;
  transition: 0.5s;
}
.social i:hover {
  color: #fff;
}

.footer-links a {
  margin: 0 15px;
  color: #ccc;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}
.cta-box {
  background: var(--bs-secondary);
  padding: 15px 20px;
  border-radius: 15px;
  color: #071153 !important;
  height: 100%;
  transition: 0.3s;
}
a.cta-box {
  color: #071153 !important;
}

.cta-box i {
  font-size: 26px;
}

.cta-box h5 {
  font-size: 20px;
  font-weight: 600;
  font-family: "poppins", sans-serif;
  letter-spacing: 0px;
  color: #0a0f2f;
}

.cta-box p {
  font-size: 14px;
  color: #000000;
  font-weight: 500;
}
.cta-box:hover {
  transform: translateY(-5px);
}

.area-btn {
  border: 1px solid #161f60;
  background: #161f606e;
  color: #fff;
  padding: 6px 12px;
  margin: 3px;
  transition: 0.3s;
  border-radius: 6px;
  text-transform: uppercase;
}

.area-btn:hover {
  background: #ef5829;
  border-color: #ef5829;
}

.divider {
  background-color: #212f93 !important;
}
/*** Footer End ***/

/* Content Reveal */

.reveal-text1 {
  background: linear-gradient(to right, #fff 50%, #ff8989 50%);
  background-size: 200% 100%;
  background-position: 0% 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.reveal-text {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.4;
  background: linear-gradient(to right, #fff 50%, #444 50%);
  background-size: 200% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#text {
  background: linear-gradient(
    to right,
    #ffffff 0%,
    #ffffff 50%,
    rgb(247, 90, 90) 90%
  );
  background-size: 200% 100%;
  background-position: 0% 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Vertical Scroll at Homepage */

/* ===== DESKTOP LAYOUT ===== */
.project-section {
  height: 400vh;
}

.project-wrapper {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  overflow: hidden;
}
.project-left h1 {
  color: var(--bs-white);
}

.project-left {
  width: 30%;
  background: #161f60;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-left: 3%;
  padding-right: 3%;
  z-index: 2;
  position: relative;
}

.project-left::before {
  content: "";
  position: absolute;
  inset: 0;
  background-attachment: fixed;
  opacity: 0.8;
  z-index: 0; /* VERY IMPORTANT */

  background: #075091;
  background: linear-gradient(326deg, #0e1361, #562492);
}

.project-right {
  width: 70%;
  display: flex;
  align-items: center;
}

.project-track {
  display: flex;
  padding: 0 50px;
  will-change: transform;
}

.project-card {
  flex-shrink: 0;
  width: 500px;
  height: 60vh;
  margin-right: 40px;
  /* background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1); */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  padding: 20px;

  /* Animation base state */
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

/* When card becomes visible */
.project-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.project-card.is-visible img {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  /* border: 1px solid #b6c7d5; */
  border-radius: 15px;
  margin-bottom: 15px;
  box-shadow: 0 10px 30px rgb(63 81 181 / 24%);
}

.project-card.is-visible h6 {
  padding: 10px 10px !important;
  margin: 0;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
}

/* ===== TABLET & MOBILE FIXES ===== */
@media (max-width: 1024px) {
  .project-section {
    height: auto !important;
  }

  .project-wrapper {
    position: static;
    height: auto;
    flex-direction: column;
  }

  .project-left {
    width: 100%;
    padding: 80px 20px;
    justify-content: center;
    box-sizing: border-box;
  }

  .project-right {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
  }

  .project-track {
    display: flex;
    flex-direction: column;
    padding: 0;
    width: 100%;
    transform: none !important;
  }

  .project-card {
    width: 100%;
    height: 260px;
    margin: 0 0 30px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

/* ** VIDEO BACKGROUND ** */
.video-background {
  overflow: hidden;
  padding-bottom: 100px !important;
  padding-top: 50px !important;
  background: #162061;
  position: relative;
}

.video-background::after {
  content: "";
  position: absolute;
  inset: 0;

  background: url("../img/h1-bg-01.png") center/cover no-repeat;
  background-attachment: fixed;

  opacity: 0.8;
}

.video-background .title {
  color: #fff;
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  margin: 13px 13px;
  transition:
    transform 0.6s ease,
    opacity 0.6s ease;
}

.video-background .title.fade {
  opacity: 0;
  transform: translateY(25px);
}

.video-background .slider-wrap {
  max-width: 1400px;
  margin: auto;
}

.video-background .swiper {
  overflow: visible;
}

.video-background .swiper-slide {
  width: 75%;
  transition: 0.5s;
  opacity: 0.4;
  transform: scale(0.92);
}

.video-background .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}

.video-background .card {
  background: #e5e5e5;
  padding: 10px;
  border-radius: 34px;
  overflow: hidden;
}

.video-background .card img {
  height: 613px;
}

@media (max-width: 768px) {
  .video-background .card img {
    height: auto;
  }
}

.video-background .card video {
  height: auto;
}
.video-background .card img,
.video-background .card video {
  width: 100%;
  /* height: 550px; */
  object-fit: cover;
  border-radius: 26px;
  display: block;
}

.video-background .video-container {
  position: relative;
  display: inline-block;
  width: 100%;
}

.video-background .mute-btn {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s ease;
  z-index: 10;
}

.video-background .mute-btn:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: translateY(-50%) scale(1.1);
}
/* pagination container */
.video-background .swiper-pagination {
  position: absolute;
  bottom: -40px !important;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}

/* normal bullets */
.video-background .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 20px;
  opacity: 1;
  position: relative;
  overflow: hidden;
}

/* active bullet becomes progress bar */
.video-background .swiper-pagination-bullet-active {
  width: 40px;
  background: #000000;
}

/* progress fill */
.video-background .swiper-pagination-bullet-active span {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: #fff;
}
/* ** End Video Background ** */

/* ****About Us video Section**** */

/* HERO SECTION */
.about-video-hero {
  position: relative;
  height: 100vh;
  background: url("../img/facilior-aboutus.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* DARK OVERLAY */
.about-video-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(3px);
}

/* CENTER VIDEO CIRCLE */
.about-video-circle {
  position: relative;
  width: 160px;
  height: 160px;
  z-index: 2;
  border: 1px solid #ffffff12;

  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 100px;
}

/* ROTATING TEXT */
.about-rotating-text {
  width: 100%;
  height: 100%;
  animation: rotate 20s linear infinite;
}

.about-rotating-text text {
  font-size: 11px;
  letter-spacing: 2.2px;
  fill: #fff;
  text-transform: uppercase;
}

/* PLAY BUTTON */
.about-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 70px;
  height: 70px;
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  transition: 0.3s;
}

/* TRIANGLE ICON */
.about-play-btn span {
  width: 0;
  height: 0;
  border-left: 14px solid #fff;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

/* HOVER EFFECT */
.about-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(255, 255, 255, 0.3);
}

/* ROTATION ANIMATION */
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

/* RIGHT CONTENT BOX */
.about-hero-card {
  position: absolute;
  right: 5%;
  bottom: 15%;
  z-index: 2;

  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);

  padding: 30px;
  border-radius: 15px;
  color: #fff;
  max-width: 320px;
}

.about-hero-card h3 {
  font-size: 24px;
  font-weight: 300;
  color: var(--bs-white);
}

.about-hero-card a {
  color: #ff5722;
  text-decoration: none;
  font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-hero-card {
    position: static;
    margin-top: 30px;
  }

  .about-video-hero {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 20px;
  }
}

/* *****   INDUSTRY PARTNERS   ***** */

/* HERO */
/* Industries Section */
.container-fluid.indust {
  background: transparent;
  position: relative;
  overflow: hidden;
}

.indust .hero-section {
  position: relative;
  overflow: hidden;
}

/* Background layers */
.indust .bg-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition:
    opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.6s ease;
  will-change: opacity, transform;
}

.indust .bg-default {
  background-image: url("../img/corporante.png");
  z-index: 1;
  opacity: 1;
  border-radius: 5px;
}

.indust .bg-hover {
  z-index: 2;
  opacity: 0;
  transform: scale(1);
}

/* Dark overlay */
.indust .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 3;
  transition: background 0.3s ease;
  pointer-events: none;
  border-radius: 5px;
}

/* Content */
.indust .content {
  position: relative;
  z-index: 4;
  padding: 50px 0;
}

/* Card positioning for proper hover detection */
.indust .card-box {
  /* Layout & positioning */
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 20px;
  cursor: pointer;
  position: relative;
  z-index: 5;
  backdrop-filter: blur(6px);
  background: transparent;
  min-height: 304px !important;

  /* Visual styling */
  backdrop-filter: blur(4px);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);

  /* Animation properties */
  transition: all 0.4s ease;
  will-change: transform;
  backface-visibility: hidden;
  perspective: 1000px;
}

.indust .card-box h6 {
  color: var(--bs-white);
  font-size: 1rem;
  font-weight: 300;
}
.indust .card-box img.icon,
.indust .card-box i {
  width: 66px;
  height: 66px;
  background-color: #f3f3f353;
  opacity: 0.8;
  padding: 5px;
}

.indust .card-box i {
  font-size: 34px;
  display: grid;
  align-items: center;
  text-align: center;
  vertical-align: middle;
  border-radius: 10px;
}

.indust .card-box h3 {
  color: #ffee58;
  font-size: 1rem;
  font-weight: 400;
  margin-top: 15px;
}

.indust .card-box p {
  color: var(--bs-white);
  font-size: 0.8rem;
  font-weight: 300;
  margin-top: 10px;
}
.indust .card-box img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.4s ease;
}

/* Smooth Animation Keyframes */
@keyframes cardPulse {
  0% {
    transform: translateY(-8px) scale(1.02);
  }
  50% {
    transform: translateY(-12px) scale(1.05);
  }
  100% {
    transform: translateY(-8px) scale(1.02);
  }
}

@keyframes cardEnter {
  0% {
    transform: translateY(-5px) scale(0.95);
    opacity: 0.8;
  }
  100% {
    transform: translateY(-8px) scale(1.02);
    opacity: 1;
  }
}

@keyframes cardExit {
  0% {
    transform: translateY(-8px) scale(1.02);
    opacity: 1;
  }
  100% {
    transform: translateY(-5px) scale(1);
    opacity: 0.9;
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) skewX(-15deg);
  }
  100% {
    transform: translateX(100%) skewX(-15deg);
  }
}

/* Background layer smooth transitions */
.indust .bg-layer {
  will-change: opacity, transform;
  backface-visibility: hidden;
}

/* Mobile optimizations */
@media (max-width: 768px) {
  .indust .card-box:hover {
    transform: translateY(-4px) scale(1.01);
  }

  @keyframes cardPulse {
    0% {
      transform: translateY(-4px) scale(1.01);
    }
    50% {
      transform: translateY(-6px) scale(1.02);
    }
    100% {
      transform: translateY(-4px) scale(1.01);
    }
  }
}

@keyframes cardPulse {
  0% {
    transform: translateY(-4px) scale(1.01);
  }
  50% {
    transform: translateY(-6px) scale(1.02);
  }
  100% {
    transform: translateY(-4px) scale(1.01);
  }
}

/* *** SERVICE PAGE - Growth *** */

/* IMAGE */
.growth-section img {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* DIVIDER */
.growth-section .divider {
  border-top: 1px solid #ddd;
  margin: 30px 0;
}

/* BUTTON */
.growth-section .btn-custom {
  border: 1px solid #ddd;
  border-radius: 30px;
  padding: 10px 25px;
  transition: 0.3s;
}

.growth-section .btn-custom:hover {
  background: #ff5722;
  color: #fff;
  border-color: #ff5722;
}

/* TOP LABEL */
.service-page .section-label {
  font-size: 13px;
  letter-spacing: 2px;
  color: #999;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.service-page .section-label span {
  color: #ff4d2d;
  font-size: 18px;
  margin-right: 6px;
}

/* HEADING */
.service-page .section-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}

/* RIGHT TEXT */
.service-page .section-desc {
  color: #777;
  font-size: 16px;
  line-height: 1.7;
}

/* CARD */
.service-page .service-card,
.commonservices .card {
  background: #fff;
  border-radius: 20px;
  padding: 18px 20px;
  border: 1px solid #e5e5e5;
  transition: all 0.35s ease;
  height: 100%;
  display: block;
  text-decoration: none;
  box-shadow:
    0 2px 1px #2911000d,
    0 10px 20px #2911000a;
  background: conic-gradient(
    from 204.79deg at 79.55% 86.06%,
    #fff,
    #ebedff 360deg
  );
}

.commonservices h5{
  color: #133d95 !important;
}
/* ICON BOX */
.service-page .icon-box {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  border: 2px solid #ff4d2d;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff4d2d;
  font-size: 24px;
  margin-bottom: 20px;
  transition: 0.3s;
}

.service-page .icon-box img {
  width: 32px;
  height: 32px;
  object-fit: cover;
}
/* TITLE */
.service-page .service-title {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  margin-bottom: 15px;
  transition: 0.3s;
}

/* TEXT */
.service-page .service-text {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

/* HOVER EFFECT */
.service-page .service-card:hover {
  border-color: #ff4d2d;
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

/* ICON HOVER */
.service-page .service-card:hover .icon-box {
  background: var(--bs-white);
  color: var(--bs-white);
  border-color: var(--bs-primary);
}

/* TITLE HOVER */
.service-page .service-card:hover .service-title {
  color: #ff4d2d;
}

.service-text {
  display: -webkit-box;
  -webkit-line-clamp: 2; /* LIMIT TO 2 LINES */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
ul.services-list {
  list-style: none;
  padding: 0;
}

ul.services-list li {
  margin-bottom: 3px;
}
ul.services-list li.active a {
  color: #ff4d2d;
  font-weight: 500;
  background-color: #eff0f9;
  border-radius: 9px;
}

ul.services-list li a {
  text-decoration: none;
  color: #000;
  font-weight: 400;
  display: block;
  transition: all 0.45s ease;
  padding: 8px;
  -webkit-transition: all 0.45s ease;
  -moz-transition: all 0.45s ease;
  -ms-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
}

ul.services-list li a:hover {
  color: #ff4d2d;
  transform: translateY(-6px);
  background-color: #eff0f9;
  border-radius: 9px;
  -webkit-border-radius: 9px;
  -moz-border-radius: 9px;
  -ms-border-radius: 9px;
  -o-border-radius: 9px;
}

/* Mobile optimizations for services list */
@media (max-width: 768px) {
  .commonservices .card {
    margin-bottom: 20px;
    padding: 16px 18px;
  }

  ul.services-list li {
    margin-bottom: 2px;
  }

  ul.services-list li a {
    padding: 12px 10px;
    font-size: 14px;
    line-height: 1.4;
    /* Remove transform on mobile for better touch experience */
    transform: none !important;
  }

  ul.services-list li a:hover,
  ul.services-list li a:active,
  ul.services-list li a:focus {
    transform: none !important;
    /* Better touch feedback */
    background-color: #eff0f9;
    color: #ff4d2d;
  }

  ul.services-list li.active a {
    font-weight: 500;
    padding: 12px 10px;
  }

  /* Improve touch targets */
  ul.services-list li a i {
    margin-right: 12px !important;
    font-size: 12px;
  }
}

/* Tablet optimizations */
@media (min-width: 769px) and (max-width: 991px) {
  ul.services-list li a {
    padding: 10px;
    font-size: 15px;
  }

  ul.services-list li a:hover {
    transform: translateY(-3px);
  }
}

.ser-list {
  list-style: none;
  /* padding: 0;
margin: 0; */
}

.ser-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  color: #555;
}

.ser-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: #ff4d2d;
  border-radius: 50%;
}

/* INLINE STYLE */
.ser-inline {
  color: #555;
  line-height: 1.8;
}


/* ***** CONTACT US *** */


button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}

[type="checkbox"],
[type="radio"],
[type="range"] {
  appearance: none;
  flex-shrink: 0;
  padding: 0;
  user-select: none;
}

[type="checkbox"]:focus,
[type="radio"]:focus,
[type="range"]:focus {
  outline: none;
}

/** Components **/

.fs-form {
  display: grid;
  row-gap: 1.5rem;
}

.fs-form:where(.fs-layout__2-column) {
  column-gap: 1.5rem;
  grid-template-columns: 1fr 1fr;
}

fieldset {
  display: grid;
  margin: 1.5rem 0;
  row-gap: 1.5rem;
}

.fs-form:where(.fs-layout__2-column) fieldset {
  column-gap: 1.5rem;
  grid-template-columns: 1fr 1fr;
  grid-column: 1 / -1;
}

.fs-fieldset-title {
  color: var(--color-text-default);
  font-family: var(--font-family-display);
  font-size: 1.25rem;
  line-height: 1.75rem;
  margin-bottom: 1.5rem;
  grid-column: 1 / -1;
}

.fs-field {
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
}

.fs-label {
  color: var(--color-text-default);
  display: block;
  font-family: var(--font-family-display);
  font-size: 1rem;
  line-height: 1.25rem;
}

.fs-description {
  color: var(--color-text-muted);
  display: block;
  font-size: 1rem;
  line-height: 1.25rem;
}

.fs-button-group {
  display: flex;
  flex-direction: row-reverse;
  column-gap: 1.5rem;
}

.fs-form:where(.fs-layout__2-column) .fs-button-group {
  grid-column: 1 / -1;
}

.fs-button {
  background-color: var(--color-primary);
  border-radius: 9999px;
  color: white;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.5rem;
  padding: 0.75rem 2rem;
  transition-duration: 200ms;
  transition-property: background-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.fs-button:hover {
  background-color: var(--color-primary-active);
}

.fs-button:focus-visible {
  background-color: var(--color-primary-active);
  outline: 4px solid var(--color-highlight);
}

.fs-input,
.fs-select {
  appearance: none;
  border-radius: 9999px;
  border-width: 0;
  box-shadow: var(--color-border-default) 0 0 0 1px inset;
  color: var(--color-text-default);
  font-size: 1rem;
  height: 3rem;
  line-height: 1.5rem;
  outline: none;
  padding-left: 1rem;
  padding-right: 1rem;
}

.fs-input:focus-visible,
.fs-select:focus-visible {
  box-shadow: var(--color-border-active) 0 0 0 1px inset;
}

.fs-input::placeholder {
  color: var(--color-text-muted);
}

.fs-checkbox-group,
.fs-radio-group {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}

.fs-checkbox-field,
.fs-radio-field {
  column-gap: 0.5rem;
  display: flex;
}

:is(.fs-checkbox-field, .fs-radio-field) .fs-label + .fs-description {
  margin-top: 0.25rem;
}

.fs-checkbox-wrapper,
.fs-radio-wrapper {
  align-items: center;
  display: flex;
  height: 1.25rem;
}

.fs-checkbox,
.fs-radio {
  background-color: #fff;
  border: 1px solid var(--color-border-default);
  height: 1.25rem;
  width: 1.25rem;
}

.fs-checkbox {
  border-radius: 0.25rem;
}

.fs-radio {
  border-radius: 100%;
}

.fs-checkbox:checked,
.fs-radio:checked {
  background-color: var(--color-primary);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border-color: transparent;
}

.fs-checkbox:checked {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
}

.fs-radio:checked {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
}

.fs-checkbox:focus-visible,
.fs-radio:focus-visible {
  border-color: var(--color-border-active);
  outline: 4px solid var(--color-highlight);
  outline-offset: 0;
}

.fs-checkbox:checked:focus-visible,
.fs-radio:checked:focus-visible {
  border-color: transparent;
}

.fs-select {
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.75rem center;
  background-repeat: no-repeat;
  background-size: 1.625em 1.625em;
  padding-right: 2.875rem;
}

.fs-slider {
  background: transparent;
  cursor: pointer;
  height: 1.25rem;
  width: 100%;
}

.fs-slider::-moz-range-track {
  background-color: var(--color-background);
  border-radius: 0.5rem;
  height: 0.5rem;
}

.fs-slider::-webkit-slider-runnable-track {
  background-color: var(--color-background);
  border-radius: 0.5rem;
  height: 0.5rem;
}

.fs-slider::-moz-range-thumb {
  background-color: var(--color-primary);
  border: none; /* Removes extra border that FF applies */
  border-radius: 50%;
  height: 1.25rem;
  width: 1.25rem;
}

.fs-slider::-webkit-slider-thumb {
  appearance: none;
  background-color: var(--color-primary);
  border-radius: 50%;
  height: 1.25rem;
  margin-top: -0.375rem; /* Centers thumb on the track */
  width: 1.25rem;
}

.fs-slider:focus-visible::-moz-range-thumb {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.fs-slider:focus-visible::-webkit-slider-thumb {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.fs-switch {
  background-color: var(--color-background-alt);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2.75' fill='white'/%3e%3c/svg%3e");
  background-position: left center;
  background-repeat: no-repeat;
  border-radius: 1.25rem;
  cursor: pointer;
  height: 1.25rem;
  transition-duration: 200ms;
  transition-property: background-color, background-position;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  width: 2.5rem;
}

.fs-switch:checked {
  background-color: var(--color-primary);
  background-position: right center;
}

.fs-switch:focus-visible {
  outline: 4px solid var(--color-highlight);
  outline-offset: 0;
}

.fs-textarea {
  appearance: none;
  border-radius: 0.75rem;
  border-width: 0;
  box-shadow: var(--color-border-default) 0 0 0 1px inset;
  color: var(--color-text-default);
  font-size: 1rem;
  line-height: 1.5rem;
  outline: none;
  padding: 0.5rem 0.75rem;
  resize: vertical;
}

.fs-textarea:focus-visible {
  box-shadow: var(--color-border-active) 0 0 0 1px inset;
}

.fs-textarea::placeholder {
  color: var(--color-text-muted);
}

/** Utilities **/

.col-span-full {
  grid-column: 1 / -1;
}

.fs-textarea::placeholder {
  color: var(--color-text-muted);
}

.slider-label-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 0.25rem;
}

.slider-label-text {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-align: center;
  white-space: nowrap;
}