:root {
  --primary-color: #436aff;
  --secondary-color: rgb(58, 213, 240);
  --white-color: #fff;
  --black-color: #000;
  --text-color: #646a73;
  --border-color: #ddd;
  --gradient: linear-gradient(
      93deg,
      rgb(67, 106, 255) 52%,
      rgb(58, 213, 240) 100%
    )
    rgba(0, 0, 0, 0);
}

html,
body {
  font-family: "Open Sans", sans-serif;
  overflow-x: hidden;
}
body {
  background-color: #efefef;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Open Sans", sans-serif;
}
p {
  font-family: "Open Sans", sans-serif;
}
span {
  font-family: "Open Sans", sans-serif;
}

a {
  text-decoration: none;
  color: var(--black-color);
  cursor: pointer !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.text-primary {
  color: var(--primary-color) !important;
}

.text-secondary {
  color: var(--text-color) !important;
}
/* Section */
.section-header {
  display: flex;
  flex: none;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  text-align: center;
}
.section-title {
  font-size: 32px;
  font-weight: bold;
  color: var(--black-color);
}
.section-subtitle {
  font-size: 16px;
  color: #646a73;
  font-weight: 500;
  line-height: 1.2;
}
/* Navbar */
.header .navbar {
  height: 64px;
  overflow: visible;
  padding: 0;
}
.header .navbar-brand img {
  max-height: 30px;
}

.header .navbar-nav .nav-item {
  display: flex;
  align-items: center;
  height: 64px;
  border-bottom: 2px solid transparent;
}
.header .navbar-nav .nav-item:hover {
  border-bottom: 2px solid var(--primary-color);
}
.header .navbar-nav .nav-link {
  color: #1f2329;
  font-size: 14px;
  font-weight: 600;
}

.header .navbar-nav .nav-link:hover {
  border-bottom-color: var(--primary-color);
}
.header .navbar-nav .btn-login:hover,
.header .navbar-nav .btn-download:hover {
  color: var(--primary-color);
}

.header .navbar-nav .dropdown-menu {
  top: 100%;
}

.header .navbar-nav .dropdown:hover .dropdown-menu {
  display: block;
}
.header .navbar-nav .nav-link.dropdown-toggle i {
  transform-origin: center;
}

.header .navbar-nav .nav-item.dropdown:hover .nav-link i {
  animation: rotate-in 0.4s forwards;
}

.header .navbar-nav .nav-item.dropdown .nav-link i {
  animation: rotate-out 0.4s forwards;
}

.header .navbar-nav .btn {
  padding: 7px 15px;
  font-weight: 600;
}

/* Mega Menu */
.mega-menu {
  position: fixed;
  display: none;
  width: 1136px;
  top: 85px;
  left: 50%;
  transform: translateX(-50%);
  border: none;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  border-radius: 1rem;
  margin-top: 0;
  background-color: var(--white-color);
  z-index: 1040;
}

.mega-menu::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 40px;
  background-color: transparent;
}

#mega-menu-product .mega-menu-item {
  display: flex;
  align-items: center;
  padding: 10px;
  border-radius: 8px;
  transition: background-color 0.3s;
  color: var(--text-color);
  text-decoration: none;
}

#mega-menu-product .mega-menu-item:hover {
  background-color: #f8f9fa;
  color: var(--primary-color);
}

#mega-menu-product .mega-menu-item .text-content .title {
  font-size: 14px;
  font-weight: bold;
}

#mega-menu-product .mega-menu-item .text-content .description {
  font-size: 12px;
  color: #6c757d;
  font-weight: 500;
}

#mega-menu-product .mega-menu-links li a,
#mega-menu-solutions .mega-menu-links li a,
#mega-menu-home .mega-menu-links li a {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  color: var(--black-color);
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s;
}

#mega-menu-solutions .mega-menu-links li a,
#mega-menu-home .mega-menu-links li a {
  font-size: 14px;
  font-weight: 500;
}

#mega-menu-product .mega-menu-links li a:hover,
#mega-menu-solutions .mega-menu-links li a:hover,
#mega-menu-home .mega-menu-links li a:hover {
  background-color: #f8f9fa;
  color: var(--primary-color);
}

.action-button {
  font-size: 14px;
  font-weight: 600;
  color: rgb(31, 35, 41);
}

.action-button:hover {
  color: var(--black-color);
}

#mega-menu-solutions .mega-menu-title,
#mega-menu-home .mega-menu-title {
  font-size: 1rem;
  font-weight: 500;
  color: rgb(100, 106, 115);
}

@keyframes rotate-in {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(180deg);
  }
}

@keyframes rotate-out {
  from {
    transform: rotate(180deg);
  }
  to {
    transform: rotate(0deg);
  }
}
#mega-menu-resources .resource-cate {
  padding: 0;
  margin: 0;
}
#mega-menu-resources .cate-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: bold;
  color: #555;
  cursor: pointer;
  margin-bottom: 4px;
  transition: background 0.2s, color 0.2s;
  background: transparent;
  position: relative;
}
#mega-menu-resources .cate-item::after {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #555;
  margin-left: 12px;
  font-size: 14px;
  display: inline-block;
  transition: color 0.2s;
}
#mega-menu-resources .cate-item.active {
  background: #f0f4ff;
  color: #1664ff;
  font-weight: 600;
}
#mega-menu-resources .cate-item.active::after {
  color: #1664ff;
}
#mega-menu-resources .cate-item:not(.active):hover {
  background: #f5f7fa;
  color: #1664ff;
}
#mega-menu-resources .cate-item:not(.active):hover::after {
  color: #1664ff;
}
#mega-menu-resources .cate-item:not(.active) {
  color: #555;
  font-weight: 500;
}
#mega-menu-resources .cate-item:last-child {
  margin-bottom: 0;
}
#mega-menu-resources .cate-item i {
  display: none !important;
}

.card {
  border-radius: 12px;
  overflow: hidden;
  border: none;
}
.card:hover {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.card .card-img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 0;
}
.card .card-body {
  padding: 16px 12px;
}
.card .card-title {
  color: rgb(31, 35, 41);
  font-size: 16px;
  font-weight: 600;
}
.card .card-text {
  color: rgb(100, 106, 115);
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}
.card .card-link {
  color: rgb(4, 66, 210);
  font-size: 12px;
  font-weight: bold;
}
.resource-title {
  font-size: 16px;
  font-weight: 600;
  color: gray;
}
.resource-view-all {
  font-size: 14px;
  color: rgb(4, 66, 210);
}
#mega-menu-resources .resource-content {
  display: none;
}
#mega-menu-resources .resource-content.active {
  display: block;
}
.template-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.template-item:hover {
  background-color: #f0f4ff;
}
.template-title {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}
.template-description {
  font-size: 12px;
  color: #666;
}
.template-icon {
  background: #436aff;
  border-radius: 8px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
}
.template-icon i {
  font-size: 18px;
  color: var(--white-color);
  width: 18px;
  height: 18px;
  text-align: center;
  line-height: 1;
}
/* Blog */
.blog-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px;
  border-radius: 8px;
}
.blog-img {
  height: 54px;
  width: 72px;
  object-fit: cover;
  border-radius: 4px;
}
.blog-item:hover {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.blog-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--black-color);
}
/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  background: url(assets/images/hero.png) no-repeat center center;
  background-size: cover;
}

.hero-logos {
  margin-top: 80px;
}

.logo-box {
  height: 60px;
  width: 128px;
  background: var(--white-color);
  border-radius: 8px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-title {
  font-size: 40px;
  font-weight: bold;
  color: var(--black-color);
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: 16px;
  color: #646a73;
  font-weight: 500;
  line-height: 1.2;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}

.ratings {
  font-size: 14px;
  font-weight: 500;
}

.btn-with-animation {
  position: relative;
  display: inline-block;
  width: 280px;
  height: 96px;
  overflow: hidden;
}

.btn-with-animation .btn-stars-bg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(1.5);
  z-index: 1;
  pointer-events: none;
  width: 100%;
  max-width: 220px;
  height: auto;
  animation: rotate-stars 10s linear infinite;
  padding: 0;
}

@keyframes rotate-stars {
  100% {
    transform: translate(-50%, -50%) scale(1.5) rotate(360deg);
  }
}

.btn-try-free {
  position: relative;
  z-index: 1;
  background: var(--gradient);
  color: var(--white-color);
  font-weight: 600;
  border-radius: 99px;
  padding: 6px 10px 6px 26px;
  font-size: 20px;
  height: 60px;
  transition: background 0.3s, color 0.3s;
}
.btn-try-free::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 10000px;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(
    271deg,
    rgba(0, 164, 240, 0.2) 0%,
    rgba(71, 82, 230, 0.3) 100%
  );
  box-shadow: 0 0 24px 0 rgba(0, 164, 240, 0.15);
}
.btn-try-free span {
  z-index: 2;
}
.btn-try-free:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.arrow-circle {
  background: var(--white-color);
  color: var(--primary-color);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-left: 8px;
  transition: background 0.2s, color 0.2s;
}

.btn-book-demo {
  background: none;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 20px;
  border: none;
  padding: 0;
  transition: color 0.2s;
  text-decoration: none;
  transition: transform 0.2s;
}

.btn-book-demo:hover i {
  transform: translateX(6px);
}

.btn-book-demo i {
  font-size: 20px;
  margin-left: 4px;
}
.hero-images {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-images .hero-main {
  width: 80%;
  height: auto;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 20px 40px rgba(67, 106, 255, 0.15),
    0 8px 16px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: rotateY(-5deg) rotateX(2deg) translateZ(20px);
}
.hero-images .hero-2nd {
  height: 220px;
  object-fit: cover;
  border: 2.5px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 15px 30px rgba(67, 106, 255, 0.12),
    0 6px 12px rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  position: absolute;
  bottom: 15%;
  left: 0;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: rotateY(3deg) rotateX(-1deg) translateZ(15px);
}
.hero-images .hero-3rd {
  position: absolute;
  bottom: -8%;
  right: 0;
  width: 220px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 12px 24px rgba(67, 106, 255, 0.1), 0 4px 8px rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: rotateY(4deg) rotateX(1deg) translateZ(10px);
}

/* Business Section */
.business-section {
  background: var(--white-color);
}

.business-section .section-subtitle {
  max-width: 60%;
}
.all-in-one-section .section-subtitle {
  max-width: 70%;
}
.business-tabs {
  border: none;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.business-tabs .nav-link {
  border-radius: 0;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  padding: 16px 24px;
  color: var(--black-color);
  border: 1px solid var(--black-color);
  background-color: var(--white-color);
  border-radius: 12px;
}
.business-tabs .nav-link.active {
  background-color: var(--black-color);
  color: var(--white-color);
  border-color: var(--black-color);
}
.tab-img-group {
  border-radius: 24px;
  overflow: hidden;
}
.tab-img-main {
  position: relative;
}
.tab-img-abs {
  position: absolute;
  bottom: 10%;
  left: -5%;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(67, 106, 255, 0.15),
    0 8px 16px rgba(0, 0, 0, 0.1);
  border: 3px solid rgba(255, 255, 255, 0.7);
}
.tab-content-box {
  background: url("assets/images/bg-tabs.png") no-repeat center center;
  background-size: cover;
  border-radius: 24px;
  height: 100%;
  min-height: 545px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  padding: 0 7rem 0 4rem;
}

.tab-content-title {
  font-size: 32px;
  font-weight: bold;
  color: var(--black-color);
  margin-bottom: 2rem;
}
.tab-content-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.tab-content-detail {
  font-size: 16px;
  font-weight: 600;
  color: #646a73;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.tab-content-detail-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #d0d3d6;
  padding: 12px;
  flex-shrink: 0;
}
/* Testimonials Section */
.testimonials-section {
  background: url("assets/images/testimonials-bg.png") no-repeat center center;
  background-size: cover;
}
.testimonial-wrapper {
  padding: 1.5rem 0 0 0;
}
.testimonial-card {
  background-color: rgb(255, 255, 255);
  width: 100%;
  border-radius: 12px;
  box-shadow: rgba(176, 191, 231, 0.15) 0px 15px 30px 0px;
  will-change: auto;
  transform: none;
  transform-origin: 50% 50% 0px;
  display: block;
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  transform: rotateY(0deg) rotateX(0deg) translateZ(18px) scale(1.03);
  box-shadow: 0 24px 48px rgba(67, 106, 255, 0.16),
    0 8px 24px rgba(0, 0, 0, 0.1);
  z-index: 2;
  border-color: rgba(255, 255, 255, 0.95);
}

.testimonial-header {
  align-items: center;
  display: flex;
  flex: none;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 16px;
  height: min-content;
  justify-content: flex-start;
  overflow: visible;
  padding: 32px;
  position: relative;
}
.testimonial-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 80%;
  height: 1px;
  background: var(--gradient);
}
.testimonial-avatar {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 50%;
}
.testimonial-avatar-special {
  height: 200px;
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(-100%);
}
.testimonial-name {
  font-size: 18px;
  font-weight: bold;
  color: var(--black-color);
}

.testimonial-position {
  font-size: 14px;
  color: #646a73;
  font-weight: 600;
}
.testimonial-content {
  padding: 32px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}
.testimonial-content.special {
  background: url("assets/images/testimonial-card-bg.png") no-repeat center
    center;
  background-size: cover;
}

.testimonial-stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}
.testimonial-stat-value {
  font-size: 40px;
  font-weight: bold;
}
.testimonial-stat-logo {
  height: 40px;
  width: auto;
  object-fit: cover;
}
.testimonial-stat-label {
  font-size: 16px;
  font-weight: 600;
  color: #646a73;
}
.testimonial-quote {
  font-size: 16px;
  font-weight: 600;
  color: #646a73;
  margin-top: 24px;
}

.trusted-title {
  font-size: 16px;
  font-weight: 600;
  color: #646a73;
  text-transform: uppercase;
}
.trusted-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  max-width: 80%;
  margin: 0 auto;
}
.trusted-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white-color);
  border-radius: 12px;
  height: 60px;
  width: 128px;
  padding: 8px;
  position: relative;
  transition: all 0.3s ease;
}
.trusted-item img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.trusted-item .see-more-label {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
  background: var(--white-color);
  border-radius: 12px;
  z-index: 2;
  gap: 4px;
}
.trusted-item:hover img {
  opacity: 0;
}
.trusted-item:hover .see-more-label {
  display: flex;
}
.trusted-item .see-more-label .arrow {
  font-size: 12px;
  margin-top: 4px;
}
/* All-in-one Section */
.all-in-one-section {
  background: url("assets/images/bg.png") no-repeat center center;
  background-size: cover;
}

.embla {
  overflow: hidden;
  margin-bottom: 20px;
}

.embla__container {
  display: flex;
  padding: 1rem 0;
}

.embla__slide {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 112px;
  height: 112px;
  margin-right: 12px;
  background-color: transparent;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s;
}

.embla__slide.active {
  background-color: var(--white-color);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.embla__slide img {
  height: 40px;
  width: 40px;
  object-fit: cover;
}

.all-in-one-content-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--black-color);
}
.all-in-one-content-description {
  font-size: 16px;
  color: #646a73;
  line-height: 1.5;
  font-weight: 500;
  margin-top: 16px;
}

/* Pricing Section */
.pricing-tab-switcher {
  display: inline-flex;
  border: 1px solid var(--primary-color);
  border-radius: 999px;
  overflow: hidden;
  background: var(--white-color);
  padding: 2px;
}

.pricing-tab-switcher .nav-link {
  border: none !important;
  background: transparent !important;
  color: #6b7280;
  font-weight: 500;
  border-radius: 999px !important;
  padding: 6px 18px;
  transition: background 0.2s, color 0.2s;
  font-size: 16px;
  box-shadow: none !important;
}

.pricing-tab-switcher .nav-link.active,
.pricing-tab-switcher .nav-link:focus {
  background: #f5f7fa !important;
  color: #111827 !important;
  font-weight: 700;
  box-shadow: none !important;
}

.pricing-tab-switcher .nav-link span {
  font-weight: 600;
  margin-left: 2px;
  font-size: 16px;
}

.pricing-section .card {
  background-color: rgb(246, 246, 251);
  border-radius: 12px;
  position: relative;
  overflow: visible;
  align-items: center;
  display: flex;
  flex: none;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 32px;
  justify-content: flex-start;
  overflow: visible;
  padding: 40px;
  width: 100%;
  cursor: pointer;
  border: 2px solid #e5e7eb;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(67, 106, 255, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
}
.pricing-section .card:hover {
  background-color: rgb(250, 250, 255);
  border-color: var(--primary-color);
  box-shadow: 0 8px 24px rgba(67, 106, 255, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.pricing-section .card-body {
  position: relative;
}

.pricing-section .card-icon {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-120%);
}

.pricing-section .card-title {
  font-size: 28px;
  font-weight: bold;
  color: var(--black-color);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}
.pricing-section .card-description {
  font-size: 16px;
  color: var(--text-color);
  line-height: 1.5;
  font-weight: 500;
}

.pricing-section .card-badge {
  font-size: 8px;
  font-weight: 600;
  background-color: #ffd141;
  padding: 4px 8px;
  border-radius: 12px;
  color: var(--black-color);
}

.pricing-section .card-divider {
  width: 100%;
  height: 1px;
  background: var(--gradient);
  margin: 16px auto;
}
.pricing-section .card-price {
  font-size: 22px;
  font-weight: bold;
  color: var(--black-color);
}
.pricing-section .card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-color);
}
.pricing-section .card-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-color);
  padding: 4px 0;
}
.pricing-section .card-list li i {
  font-size: 12px;
  color: var(--primary-color);
}
/* FAQ Section */
.accordion-item {
  border: none;
  border-bottom: 1px solid #f1f1f1;
  border-radius: 0;
  color: var(--black-color);
}

.faq-section .icon-plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-right: 18px;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
  transition: transform 0.2s;
}
.faq-section .icon-plus::before {
  content: "+";
  display: block;
  color: var(--black-color);
}
.faq-section .accordion-button:not(.collapsed) .icon-plus::before {
  content: "-";
}

.faq-section .accordion-button::after {
  display: none;
}
.faq-section .accordion-button:focus,
.faq-section .accordion-button:not(.collapsed) {
  background: none;
  box-shadow: none;
}
.faq-section .accordion-body {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-color);
  line-height: 1.5;
  padding-left: 4.2rem;
}
.faq-info-box {
  background-color: #f6f6fb;
  padding: 24px;
  border-radius: 12px;
  height: 232px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.faq-info-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--black-color);
}
.faq-info-description {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-color);
}
.faq-info-box .btn {
  width: auto;
  align-self: flex-start;
}
/* Support Floating Button */
.support-fab,
.go-to-top {
  position: fixed;
  right: 32px;
  bottom: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white-color);
  box-shadow: 0 4px 24px rgba(67, 106, 255, 0.1),
    0 1.5px 6px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  z-index: 9999;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s;
}
.go-to-top {
  display: none;
  left: 32px;
}

.support-fab:hover {
  box-shadow: 0 8px 32px rgba(67, 106, 255, 0.18),
    0 3px 12px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px) scale(1.05);
}
.support-menu {
  position: fixed;
  right: 32px;
  bottom: 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 10000;
  animation: supportMenuFadeIn 0.2s;
}
@keyframes supportMenuFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.support-menu-box {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(67, 106, 255, 0.1),
    0 1.5px 6px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0;
  width: 80px;
  padding: 12px 8px;
}
.support-menu-contact {
  margin-bottom: 0;
}
.support-menu-contact img,
.support-menu-action img {
  margin-bottom: 4px;
}
.support-menu-label {
  font-size: 12px;
  font-weight: bold;
  color: var(--black-color);
  text-align: center;
  margin-top: 4px;
}

.support-menu-action {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.support-menu-divider {
  width: 100%;
  height: 1px;
  background: #e5e7eb;
  margin: 12px 0;
}

/* Support Popover */
.support-menu-demo {
  position: relative;
}

.support-demo-popover {
  position: absolute;
  right: 88px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white-color);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(67, 106, 255, 0.18),
    0 3px 12px rgba(0, 0, 0, 0.12);
  z-index: 11000;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  min-width: 320px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, visibility 0.18s ease;
}

.support-demo-popover.show {
  opacity: 1;
  visibility: visible;
}
@keyframes supportPopoverFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.support-demo-popover .popover-title {
  font-size: 18px;
  font-weight: bold;
  color: #222;
}
.support-demo-popover .popover-arrow {
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: transparent;
}
.support-demo-popover .popover-arrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  background: var(--white-color);
  box-shadow: 0 2px 8px rgba(67, 106, 255, 0.1);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

/* Support Contact Social Popover */
.support-menu-contact-social {
  position: relative;
}

.support-contact-social-popover {
  position: absolute;
  right: 88px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white-color);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(67, 106, 255, 0.18),
    0 3px 12px rgba(0, 0, 0, 0.12);
  z-index: 11000;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, visibility 0.18s ease;
}

.support-contact-social-popover.show {
  opacity: 1;
  visibility: visible;
}

.support-contact-social-popover .popover-title {
  font-size: 16px;
  font-weight: bold;
  color: #222;
  margin-bottom: 12px;
}

.support-contact-social-popover .contact-option {
  color: #555;
  padding: 8px 0;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.support-contact-social-popover .contact-option:hover {
  background-color: #f8f9fa;
  color: var(--primary-color);
  transform: translateX(4px);
}

.support-contact-social-popover .popover-arrow {
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: transparent;
}

.support-contact-social-popover .popover-arrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  background: var(--white-color);
  box-shadow: 0 2px 8px rgba(67, 106, 255, 0.1);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
/* Footer Section - Moved to footer.html template */
@media (max-width: 992px) {
  .section-title {
    font-size: 24px;
  }
  .business-section .section-header {
    max-width: 100%;
  }

  .navbar-toggler {
    border: none;
    background: none;
    padding: 0;
    margin: 0;
  }
  .navbar-toggler:focus {
    box-shadow: none;
  }
  /* Mobile Offcanvas Menu */
  .mobile-menu {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    width: 100%;
    height: 430px;
    background: var(--white-color);
    z-index: 1050;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-40px);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
      opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
  }
  .mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .icon-close {
    font-size: 28px;
  }
  .mobile-menu-list {
    padding: 0;
    list-style: none;
    margin: 0;
  }
  .mobile-menu-item.expanded > .mobile-menu-link {
    background: #f0f4ff;
  }
  .mobile-menu-item.expanded > .mobile-menu-link i {
    transform: rotate(180deg);
    transition: transform 0.3s;
  }

  .mobile-menu-link {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 12px 40px;
    font-size: 18px;
    font-weight: 600;
    color: var(--black-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    position: relative;
  }
  .mobile-menu-link::after {
    content: "";
    position: absolute;
    left: 40px;
    right: 40px;
    bottom: 0;
    height: 1px;
    background: #d0d3d6;
    pointer-events: none;
  }
  .mobile-menu-item.expanded > .mobile-menu-link::after {
    display: none;
  }
  .mobile-menu-link i {
    margin-left: 8px;
    font-size: 12px;
  }
  .mobile-menu-item.has-sub .mobile-submenu {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s;
    will-change: max-height, opacity;
    background: var(--white-color);
    padding: 0 0 0 2rem;
  }

  .mobile-menu-item.expanded .mobile-submenu {
    display: block;
    max-height: 500px;
    opacity: 1;
  }

  .mobile-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .mobile-submenu li a {
    display: block;
    padding: 6px 12px;
    font-size: 16px;
    color: #646a73;
    font-weight: 500;
    text-decoration: none;
  }
  .mobile-menu-actions {
    padding: 0 40px;
  }
  .mobile-menu-icon {
    height: 20px;
    width: 20px;
    margin-right: 10px;
    vertical-align: middle;
    display: inline-block;
  }
  /* Hero Section */
  .hero-title {
    font-size: 26px;
  }
  .btn-try-free {
    padding: 10px 24px 10px 24px;
    font-size: 16px;
  }
  .btn-book-demo {
    font-size: 16px;
  }

  .logo-box {
    height: 44px;
    width: 94px;
  }
  .hero-images .hero-main {
    width: 90%;
  }
  .hero-images .hero-2nd {
    height: 110px;
    bottom: -10%;
  }

  .hero-logos {
    margin-top: 20px;
  }

  .btn-with-animation .btn-stars-bg {
    display: none;
  }
  /* Business Section */
  .business-section .section-subtitle,
  .all-in-one-section .section-subtitle {
    max-width: 100%;
  }
  .business-title {
    font-size: 24px;
  }
  .business-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 8px 0;
  }
  .business-tabs .nav-link {
    font-size: 14px;
    text-wrap: nowrap;
  }
  .tab-content-box {
    padding: 0 1rem;
    min-height: 400px;
  }
  .tab-content-title {
    display: none;
  }

  /* Testimonials Section */
  .testimonial-wrapper {
    overflow-x: auto;
    padding: 65px 0 0 0;
  }
  .testimonial-header {
    padding: 28px;
  }
  .testimonial-position {
    font-size: 12px;
  }
  .testimonial-avatar.special {
    height: 160px;
  }
  .testimonial-content {
    padding: 28px;
  }
  .testimonial-stat-value {
    font-size: 32px;
  }
  .testimonial-stat-logo {
    height: 30px;
  }
  .testimonial-stat-label {
    font-size: 14px;
  }
  .testimonial-quote {
    font-size: 14px;
  }

  .trusted-logos {
    gap: 8px;
    max-width: 100%;
  }

  .support-demo-popover {
    min-width: 272px;
  }
  .support-demo-popover .popover-video iframe {
    width: 240px;
    height: 135px;
  }
}
