:root {
  --primary-color: #000000; /* Pure black */
  --primary-dark: #1a1a1a; /* Dark black */
  --secondary-color: #333333; /* Dark gray */
  --secondary-light: #666666; /* Medium gray */
  --accent-color: #f5f5f5; /* Light gray/almost white */
  --accent-dark: #e0e0e0; /* Slightly darker light gray */
  --text-color: #333333;
  --light-color: #ffffff;
  --dark-color: #000000;
  --border-color: #e0e0e0;
  --shadow-color: rgba(0, 0, 0, 0.1);
  --highlight-color: #f5f5f5; /* Light gray highlight */
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
  --card-bg: rgba(255, 255, 255, 0.98);
  --card-hover-bg: rgba(255, 255, 255, 1);
  --success-color: #4caf50;
  --error-color: #f44336;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--light-color);
  scroll-behavior: smooth;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

h2:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

.text-center h2:after {
  left: 50%;
  transform: translateX(-50%);
}

.lead {
  font-weight: 300;
  letter-spacing: 0.01em;
  font-size: 1.2rem;
  line-height: 1.8;
}

/* Navbar Styles */
.navbar {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  padding: 15px 0;
  transition: all 0.4s ease;
  z-index: 1000;
}

.navbar.scrolled {
  padding: 10px 0;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.navbar-brand img {
  height: 40px;
  transition: transform 0.3s ease;
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

.nav-link {
  color: var(--text-color);
  font-weight: 500;
  margin: 0 12px;
  position: relative;
  padding: 5px 0;
  transition: all 0.3s;
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s cubic-bezier(0.65, 0, 0.35, 1);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  color: var(--primary-color);
  font-weight: 600;
}

.nav-link.active::after {
  width: 100%;
}

/* Custom toggler styling */
.custom-toggler {
  border: none;
  background: transparent;
  position: relative;
  z-index: 1100;
  width: 40px;
  height: 40px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-toggler:focus {
  outline: none;
  box-shadow: none;
}

.custom-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  transition: all 0.3s ease;
}

.custom-toggler .close-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  font-size: 28px;
  color: #000;
  opacity: 0;
  transition: all 0.3s ease;
}

.custom-toggler.active .navbar-toggler-icon {
  opacity: 0;
  transform: scale(0);
}

.custom-toggler.active .close-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Mobile menu overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile menu styling */
@media (max-width: 991px) {
  .navbar-collapse {
      position: fixed;
      top: 0;
      right: -300px;
      width: 280px;
      height: 100vh;
      background-color: white;
      z-index: 1050;
      padding: 80px 20px 30px;
      transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
      overflow-y: auto;
      box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
  }
  
  .navbar-collapse.show {
      right: 0;
  }
  
  .navbar-nav {
      margin-bottom: 30px;
  }
  
  .nav-item {
      margin: 0;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .nav-link {
      color: #000 !important;
      padding: 15px 0;
      font-size: 16px;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
  }
  
  .nav-link:after {
      display: none;
  }
  
  .nav-link:hover {
      color: rgba(0, 0, 0, 0.7) !important;
  }
  
  .dropdown-toggle:after {
      content: '\f107';
      font-family: 'Font Awesome 5 Free';
      font-weight: 900;
      border: none;
      font-size: 16px;
      transition: transform 0.3s ease;
  }
  
  .dropdown-toggle.show:after {
      transform: rotate(180deg);
  }
  
  .dropdown-menu {
      position: static !important;
      float: none;
      width: 100%;
      padding: 0;
      margin: 0;
      border: none;
      border-radius: 0;
      box-shadow: none;
      background-color: rgba(0, 0, 0, 0.02);
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
      transform: none !important;
  }
  
  .dropdown-menu.show {
      max-height: 300px;
  }
  
  .dropdown-item {
      padding: 12px 15px;
      color: rgba(0, 0, 0, 0.8);
      border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  }
  
  .dropdown-item:hover {
      background-color: rgba(0, 0, 0, 0.05);
  }
  
  .nav-buttons {
      flex-direction: column;
      width: 100%;
  }
  
  .nav-buttons .btn {
      margin: 5px 0;
      width: 100%;
      text-align: center;
  }
  
  .btn-outline-primary {
      margin-right: 0 !important;
      margin-bottom: 10px;
  }
  
  /* Prevent body scrolling when menu is open */
  body.menu-open {
      overflow: hidden;
  }
}

/* Enhanced button styles */
.btn {
  border-radius: 8px;
  font-weight: 500;
  padding: 12px 28px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
}

.btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: -1;
}

.btn:hover:before {
  left: 0;
}

.btn-outline-primary {
  color: #000;
  border: 2px solid #000;
  background-color: transparent;
}

.btn-outline-primary:hover {
  background-color: rgba(0, 0, 0, 0.05);
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-accent {
  background-color: #000;
  border-color: #000;
  color: white;
}

.btn-accent:hover {
  background-color: rgba(0, 0, 0, 0.9);
  border-color: #000;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  color: #f5f5f5;
}

.btn-lg {
  padding: 14px 36px;
  font-size: 1rem;
  border-radius: 10px;
}
/* Hero Section - Enhanced Design */
.hero-section {
  padding: 180px 0 130px;
  background-color: var(--light-color);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.02) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-shape-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 1;
}

.hero-shape-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 120px;
}

.hero-shape-divider .shape-fill {
  fill: #f9f9f9;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: rgba(0, 0, 0, 0.05);
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: 30px;
  margin-bottom: 25px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.hero-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: translateX(-100%);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 28px;
  color: var(--primary-color);
  line-height: 1.2;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.hero-description {
  font-size: 1.3rem;
  margin-bottom: 35px;
  color: var(--secondary-color);
  max-width: 90%;
  line-height: 1.8;
}

.hero-stats {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.hero-stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  background-color: rgba(255, 255, 255, 0.9);
}

.hero-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.hero-stat-label {
  font-size: 1rem;
  color: var(--secondary-color);
  font-weight: 500;
}

.hero-buttons {
  margin-top: 45px;
  position: relative;
  z-index: 1;
  display: flex;
  gap: 15px;
}

.hero-image-container {
  position: relative;
  z-index: 2;
}

.hero-image-wrapper {
  position: relative;
  perspective: 1000px;
}

.hero-image {
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: perspective(1000px) rotateY(-5deg);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.hero-image:hover {
  transform: perspective(1000px) rotateY(0deg) translateY(-15px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.18);
}

.hero-floating-element {
  position: absolute;
  background-color: white;
  border-radius: 15px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: float 6s ease-in-out infinite;
  z-index: 3;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.hero-floating-element i {
  font-size: 1.5rem;
  color: var(--primary-color);
  background-color: rgba(0, 0, 0, 0.03);
  width: 45px;
  height: 45px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-floating-element span {
  font-weight: 600;
  font-size: 1rem;
}

.hero-element-1 {
  top: 20%;
  right: -30px;
  animation-delay: 0s;
}

.hero-element-2 {
  bottom: 25%;
  right: 10%;
  animation-delay: 1s;
}

.hero-element-3 {
  top: 60%;
  left: -20px;
  animation-delay: 2s;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Solution Section */
.solution-section {
  padding: 140px 0;
  background-color: #f9f9f9;
  position: relative;
}

.solution-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.01);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  z-index: 0;
}

.solution-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.05), transparent);
}

.solution-card {
  background-color: var(--card-bg);
  border-radius: 16px;
  padding: 45px 35px;
  height: 100%;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  z-index: 1;
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.solution-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
  z-index: -1;
}

.solution-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.1);
  background-color: var(--card-hover-bg);
}

.icon-wrapper {
  width: 75px;
  height: 75px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  font-size: 1.8rem;
  transform: rotate(0deg);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.icon-wrapper::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.solution-card:hover .icon-wrapper {
  transform: rotate(10deg) scale(1.1);
  background-color: var(--primary-dark);
}

.solution-card:hover .icon-wrapper::after {
  opacity: 1;
}

.solution-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.solution-card:hover h3 {
  transform: translateX(5px);
}

.solution-card p {
  color: var(--secondary-color);
  font-weight: 300;
  line-height: 1.8;
  transition: opacity 0.3s ease;
}

.solution-card:hover p {
  opacity: 0.9;
}

/* Free Trial Section */
.free-trial-section {
  padding: 140px 0;
  background-color: #000000;
  position: relative;
  overflow: hidden;
  color: white;
}

.free-trial-section::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
}

.free-trial-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  z-index: 0;
}

.free-trial-section h2 {
  color: white;
  font-size: 2.8rem;
  margin-bottom: 30px;
  position: relative;
}

.free-trial-section h2:after {
  background-color: white;
  width: 80px;
  height: 4px;
}

.trial-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 45px;
}

.trial-benefits li {
  margin-bottom: 22px;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
  color: rgba(255, 255, 255, 0.9);
}

.trial-benefits li:hover {
  transform: translateX(5px);
  color: white;
}

.trial-benefits i {
  color: white;
  margin-right: 18px;
  font-size: 1.2rem;
  background-color: rgba(255, 255, 255, 0.1);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.trial-benefits li:hover i {
  background-color: white;
  color: black;
  transform: rotate(360deg);
}

.free-trial-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.free-trial-section strong {
  color: white;
  font-weight: 600;
}

.trial-form-container {
  background-color: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 45px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  overflow: hidden;
}

.trial-form-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
  z-index: -1;
}

.trial-form-container::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background-color: rgba(255, 255, 255, 0.03);
  transform: rotate(45deg);
  z-index: -2;
}

.trial-form-container:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
}

.trial-form .form-control {
  height: 58px;
  border-radius: 10px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.05);
  color: white;
}

.trial-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.trial-form .form-control:focus {
  border-color: white;
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  background-color: rgba(255, 255, 255, 0.1);
}

.trial-form .btn-accent {
  background-color: white;
  color: black;
  border: none;
  height: 58px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.trial-form .btn-accent::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.6s ease;
  z-index: -1;
}

.trial-form .btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  background-color: white;
}

.trial-form .btn-accent:hover::before {
  left: 100%;
}

/* Floating elements for free trial section */
.free-trial-floating {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  z-index: 0;
}

.floating-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: 10%;
  animation: float 15s ease-in-out infinite;
}

.floating-2 {
  width: 200px;
  height: 200px;
  bottom: 50px;
  left: 10%;
  animation: float 20s ease-in-out infinite reverse;
}

.floating-3 {
  width: 100px;
  height: 100px;
  top: 30%;
  right: 20%;
  animation: float 12s ease-in-out infinite 2s;
}

/* Free trial badge */
.free-trial-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: 30px;
  margin-bottom: 25px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.free-trial-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: translateX(-100%);
  animation: shimmer 3s infinite;
}
/* Features Section */
.features-section {
  padding: 140px 0;
  background-color: white;
  position: relative;
}

.features-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 10% 10%, rgba(0, 0, 0, 0.01) 0%, transparent 30%),
    radial-gradient(circle at 90% 50%, rgba(0, 0, 0, 0.01) 0%, transparent 30%),
    radial-gradient(circle at 30% 90%, rgba(0, 0, 0, 0.01) 0%, transparent 30%);
  z-index: 0;
}

.feature-category {
  margin-bottom: 120px;
  position: relative;
  z-index: 1;
}

.feature-category:last-child {
  margin-bottom: 0;
}

.feature-category-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 60px;
  text-align: center;
  position: relative;
  padding-bottom: 20px;
}

.feature-category-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 3px;
  background: var(--primary-color);
}

.feature-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
  position: relative;
  perspective: 1000px;
}

.feature-image-container::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  z-index: -1;
  transform: translateZ(-50px);
}

.feature-image {
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  transform: translateZ(0);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-image:hover {
  transform: translateY(-15px) translateZ(30px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.15);
  border-color: rgba(0, 0, 0, 0.1);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 15px;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}

.feature-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.02);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.feature-item:hover {
  transform: translateX(10px);
  border-color: rgba(0, 0, 0, 0.05);
}

.feature-item:hover::before {
  opacity: 1;
}

.feature-item i {
  font-size: 1.7rem;
  color: var(--primary-color);
  margin-top: 5px;
  background-color: rgba(0, 0, 0, 0.03);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-item:hover i {
  background-color: var(--primary-color);
  color: white;
  transform: rotateY(180deg);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-item h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.feature-item:hover h4 {
  transform: translateX(5px);
}

.feature-item p {
  color: var(--secondary-color);
  font-weight: 300;
  line-height: 1.7;
}

/* Pricing Section */
.pricing-section {
  padding: 140px 0;
  background-color: #f9f9f9;
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.02) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.pricing-section::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background-color: rgba(0, 0, 0, 0.01);
  border-radius: 50%;
  transform: translate(200px, 200px);
}

.pricing-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.05), transparent);
}

.pricing-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}

.pricing-benefit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  background-color: white;
  padding: 12px 22px;
  border-radius: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-benefit:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.1);
}

.pricing-benefit i {
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.pricing-benefit:hover i {
  transform: scale(1.2);
}

.pricing-card {
  background-color: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.07);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transform-style: preserve-3d;
  perspective: 1000px;
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
  z-index: 1;
}

.pricing-card:hover {
  transform: translateY(-20px) rotateX(5deg);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.12);
  border-color: rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
  border: 2px solid var(--primary-color);
  transform: scale(1.05);
  z-index: 2;
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-20px) rotateX(5deg);
}

.pricing-badge {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--primary-color);
  color: white;
  padding: 10px 25px;
  font-weight: 600;
  font-size: 0.9rem;
  border-bottom-left-radius: 20px;
  z-index: 10;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pricing-header {
  background-color: var(--primary-color);
  color: white;
  padding: 45px 35px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 30%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 30%);
}

.pricing-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.pricing-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

.price {
  font-size: 3.5rem;
  font-weight: 800;
  position: relative;
  line-height: 1;
}

.price span {
  font-size: 1.1rem;
  font-weight: 400;
  opacity: 0.8;
  margin-left: 5px;
}

.pricing-body {
  padding: 45px 35px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.pricing-features li {
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 300;
  color: var(--secondary-color);
  transition: transform 0.3s ease;
}

.pricing-features li:hover {
  transform: translateX(5px);
}

.pricing-features li strong {
  color: var(--primary-color);
  font-weight: 600;
}

.pricing-features i {
  color: var(--primary-color);
  background-color: rgba(0, 0, 0, 0.03);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.pricing-features li:hover i {
  background-color: var(--primary-color);
  color: white;
  transform: rotate(360deg);
}

.btn-block {
  display: block;
  width: 100%;
}

/* Contact Section */
.contact-section {
  padding: 140px 0;
  background-color: white;
  position: relative;
}

.contact-form .form-control {
  height: 58px;
  border-radius: 10px;
  padding: 0 20px;
  border: 1px solid var(--border-color);
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.02);
}

.contact-form textarea.form-control {
  height: auto;
  padding: 20px;
}

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.contact-info {
  background-color: var(--card-bg);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  background-color: rgba(0, 0, 0, 0.03);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--primary-color);
}

.contact-item p,
.contact-item a {
  color: var(--secondary-color);
  margin: 0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--primary-color);
}

.contact-map {
  margin-top: 40px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* About Section */
.about-section {
  padding: 140px 0;
  background-color: #f9f9f9;
  position: relative;
}

.about-image {
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.about-image:hover {
  transform: translateY(-15px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.15);
  border-color: rgba(0, 0, 0, 0.1);
}

.about-content p {
  margin-bottom: 25px;
  font-size: 1.1rem;
  color: var(--secondary-color);
  line-height: 1.8;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.value-item {
  background-color: white;
  border-radius: 16px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.value-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.1);
}

.value-item i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.value-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
}

/* Reviews Section */
/* Reviews Section */
.reviews-section {
  padding: 140px 0;
  background-color: white;
  position: relative;
}

.review-card {
  background-color: white;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.review-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.1);
}

.review-stars {
  margin-bottom: 20px;
  color: var(--primary-color);
  font-size: 1.2rem;
}

.review-text {
  font-style: italic;
  margin-bottom: 30px;
  color: var(--secondary-color);
  line-height: 1.8;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-color);
}

.review-author h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--primary-color);
}

.review-author p {
  font-size: 0.9rem;
  color: var(--secondary-light);
  margin: 0;
}

/* Review Initials Avatar Styling */
.review-initials {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.1rem;
  border: 2px solid var(--primary-color);
  transition: all 0.3s ease;
}

.review-card:hover .review-initials {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Enhanced Footer Styles */
.footer {
  background-color: var(--primary-dark);
  color: white;
  padding: 120px 0 30px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.03) 0%, transparent 30%),
    radial-gradient(circle at 90% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 30%),
    radial-gradient(circle at 20% 90%, rgba(255, 255, 255, 0.03) 0%, transparent 30%);
  z-index: 0;
}

.footer-logo {
  height: 50px;
  margin-bottom: 25px;
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
  font-size: 1.1rem;
  max-width: 90%;
  line-height: 1.6;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.social-icon {
  width: 45px;
  height: 45px;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-size: 1.1rem;
  position: relative;
  overflow: hidden;
}

.social-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.social-icon:hover {
  background-color: white;
  color: var(--primary-dark);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.social-icon:hover::before {
  opacity: 1;
}

.footer-heading {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
  color: white;
}

.footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.3);
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 15px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  padding-left: 0;
}

.footer-links a::before {
  content: "→";
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: white;
  padding-left: 20px;
}

.footer-links a:hover::before {
  opacity: 1;
  left: 0;
}

.footer-contact a:hover {
  color: white;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.footer-contact i {
  color: rgba(255, 255, 255, 0.6);
  margin-top: 5px;
  transition: all 0.3s ease;
}

.footer-contact li:hover i {
  color: white;
}

.footer-newsletter {
  margin-top: 20px;
}

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
}

.newsletter-form {
  display: flex;
  max-width: 100%;
}

.newsletter-input {
  flex: 1;
  height: 45px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px 0 0 8px;
  padding: 0 15px;
  color: white;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.newsletter-input:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-button {
  height: 45px;
  padding: 0 20px;
  background-color: white;
  color: var(--primary-dark);
  border: none;
  border-radius: 0 8px 8px 0;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-button:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-bottom-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

.footer-bottom-links a:hover {
  color: white;
}
/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 999;
  overflow: hidden;
}

.back-to-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
  z-index: -1;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--primary-dark);
  color: white;
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

/* Dark Mode Styles */
body.dark {
  background-color: #121212;
  color: #f5f5f5;
}

body.dark .navbar {
  background-color: rgba(18, 18, 18, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

body.dark .nav-link {
  color: #f5f5f5;
}

body.dark .solution-card,
body.dark .pricing-card,
body.dark .review-card,
body.dark .trial-form-container,
body.dark .contact-form {
  background-color: #1e1e1e;
  border-color: rgba(255, 255, 255, 0.05);
}

body.dark .solution-card p,
body.dark .feature-item p,
body.dark .pricing-features li,
body.dark .review-text {
  color: #adb5bd;
}

body.dark .solution-section,
body.dark .free-trial-section,
body.dark .pricing-section,
body.dark .about-section {
  background-color: #121212;
}

body.dark .features-section,
body.dark .reviews-section,
body.dark .contact-section {
  background-color: #1a1a1a;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .hero-section {
    padding: 140px 0 100px;
    text-align: center;
  }

  .hero-section h1 {
    font-size: 3rem;
  }

  .hero-section .lead {
    max-width: 100%;
    margin: 0 auto 30px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    margin-top: 60px;
    transform: perspective(1000px) rotateY(0);
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-floating-element {
    display: none;
  }

  .solution-card,
  .pricing-card,
  .review-card {
    margin-bottom: 30px;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-20px) rotateX(5deg);
  }

  .feature-image-container {
    margin-bottom: 50px;
  }

  .feature-item:hover {
    transform: translateX(5px);
  }

  .trial-title {
    font-size: 2.8rem;
  }

  .trial-form-container {
    margin-top: 60px;
    padding: 30px;
  }
}

@media (max-width: 767px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .feature-category-title {
    font-size: 1.8rem;
  }

  .feature-item h4 {
    font-size: 1.2rem;
  }

  .contact-info {
    margin-top: 60px;
  }

  .about-values {
    gap: 20px;
  }

  .value-item {
    padding: 20px 15px;
  }

  .pricing-benefit {
    width: 100%;
    justify-content: center;
  }

  .trial-title {
    font-size: 2.2rem;
  }

  .free-trial-section {
    padding: 100px 0;
  }
}

@media (max-width: 575px) {
  .hero-section h1 {
    font-size: 2.2rem;
  }

  .hero-section .hero-description {
    font-size: 1.1rem;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 8px 16px;
  }

  .hero-stat-number {
    font-size: 2rem;
  }

  .btn-lg {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .solution-section,
  .features-section,
  .pricing-section,
  .contact-section,
  .about-section,
  .reviews-section {
    padding: 100px 0;
  }

  .pricing-benefits {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .trial-form-container,
  .contact-form {
    padding: 35px 25px;
  }

  .feature-item i {
    width: 45px;
    height: 45px;
    font-size: 1.4rem;
  }

  .hero-shape-divider {
    height: 60px;
  }
}

