:root {
  --primary-color: #4f46e5;
  --primary-hover: #4338ca;
  --secondary-color: #ec4899;
  --accent-color: #06b6d4;
  --bg-body: #ffffff;
  --bg-body-rgb: 255, 255, 255;
  --bg-light: #f8fafc;
  --bg-card: #ffffff;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --border-color: #e2e8f0;
  --gradient-primary: linear-gradient(135deg, #4f46e5 0%, #ec4899 100%);
  --gradient-text: linear-gradient(to right, #4f46e5, #ec4899);
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-neon: 0 0 20px rgba(79, 70, 229, 0.3);
  --bs-body-color: var(--text-main);
  --bs-body-bg: var(--bg-body);
  --bs-secondary-color: var(--text-muted);
  --bs-link-color: var(--primary-color);
  --bs-link-hover-color: var(--primary-hover);
  --bs-dropdown-bg: var(--bg-card);
  --bs-dropdown-link-color: var(--text-main);
  --bs-dropdown-link-hover-bg: var(--bg-light);
  --bs-dropdown-link-hover-color: var(--text-main);
  --bs-dropdown-border-color: var(--border-color);
}

[data-theme=dark] {
  --bg-body: #0f172a;
  --bg-body-rgb: 15, 23, 42;
  --bg-light: #1e293b;
  --bg-card: #1e293b;
  --text-main: #f1f5f9;
  --text-muted: #94a3b8;
  --border-color: #334155;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.3);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.4), 0 2px 4px -2px rgb(0 0 0 / 0.4);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.5), 0 4px 6px -4px rgb(0 0 0 / 0.5);
  --shadow-neon: 0 0 25px rgba(79, 70, 229, 0.5);
  --bs-body-color: var(--text-main);
  --bs-body-bg: var(--bg-body);
  --bs-secondary-color: var(--text-muted);
  --bs-link-color: var(--primary-color);
  --bs-link-hover-color: var(--primary-hover);
  --bs-dropdown-bg: var(--bg-card);
  --bs-dropdown-link-color: var(--text-main);
  --bs-dropdown-link-hover-bg: rgba(255, 255, 255, 0.06);
  --bs-dropdown-link-hover-color: var(--text-main);
  --bs-dropdown-border-color: rgba(241, 245, 249, 0.25);
}

[data-palette=purple] {
  --primary-color: #7c3aed;
  --primary-hover: #6d28d9;
  --secondary-color: #a855f7;
  --accent-color: #22d3ee;
  --gradient-primary: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  --gradient-text: linear-gradient(to right, #7c3aed, #ec4899);
}

[data-palette=neon] {
  --primary-color: #14b8a6;
  --primary-hover: #0d9488;
  --secondary-color: #22d3ee;
  --accent-color: #a78bfa;
  --gradient-primary: linear-gradient(135deg, #14b8a6 0%, #a78bfa 100%);
  --gradient-text: linear-gradient(to right, #14b8a6, #a78bfa);
}

.btn {
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
.btn-primary {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}
.btn-primary:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  box-shadow: var(--shadow-neon);
  transform: translateY(-2px);
}
.btn-gradient {
  background: var(--gradient-primary);
  color: white;
  border: none;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.btn-gradient::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #ec4899 0%, #4f46e5 100%);
  opacity: 0;
  z-index: -1;
  transition: all 0.3s ease-in-out;
}
.btn-gradient:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-neon);
}
.btn-gradient:hover::before {
  opacity: 1;
}
.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.2);
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

[data-theme=dark] .navbar .navbar-brand span {
  color: #fff;
}

[data-theme=dark] .hero-section p,
[data-theme=dark] .section-title p,
[data-theme=dark] .card-feature p {
  color: #e5e7eb;
}

.card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease-in-out;
}
.card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}
.card-feature {
  padding: 2rem;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.card-feature .icon-box {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: rgba(79, 70, 229, 0.1);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.navbar {
  padding: 1rem 0;
  transition: all 0.3s ease-in-out;
  background-color: transparent;
}
.navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%231e293b' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
[data-theme=dark] .navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23f1f5f9' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.navbar.scrolled {
  background-color: rgba(var(--bg-body-rgb), 0.9);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 0.8rem 0;
}
[data-theme=dark] .navbar.scrolled {
  background-color: rgba(15, 23, 42, 0.9);
}
[data-theme=light] .navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.9);
}
.navbar .nav-link {
  color: var(--text-main);
  font-weight: 500;
}
.navbar .nav-link:hover, .navbar .nav-link.active {
  color: var(--primary-color);
}

[data-theme=dark] .navbar .nav-link.dropdown-toggle.show,
[data-theme=dark] .navbar .nav-link.dropdown-toggle:focus {
  color: #fff;
}

.dropdown-menu {
  background-color: var(--bs-dropdown-bg);
  color: var(--bs-dropdown-link-color);
  border: 1px solid var(--bs-dropdown-border-color);
  box-shadow: var(--shadow-sm);
}
.dropdown-item {
  color: var(--bs-dropdown-link-color);
}
.dropdown-item:hover, .dropdown-item:focus {
  background-color: var(--bs-dropdown-link-hover-bg);
  color: var(--bs-dropdown-link-hover-color);
}
.dropdown-divider {
  border-color: var(--bs-dropdown-border-color);
  opacity: 0.6;
}

@media (max-width: 991.98px) {
  .navbar .navbar-collapse {
    background-color: rgba(var(--bg-body-rgb), 0.95);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem;
    box-shadow: var(--shadow-sm);
  }
  .navbar .navbar-collapse .navbar-nav {
    align-items: center;
    gap: 0.25rem;
  }
  .navbar .navbar-collapse .nav-link {
    width: 100%;
    text-align: center;
    padding: 0.75rem 1rem;
  }
  .navbar .dropdown-menu {
    position: static;
    float: none;
    margin: 0.25rem 0 0;
    box-shadow: none;
    border-radius: 10px;
  }
  .navbar .dropdown-item {
    text-align: center;
  }
  .navbar .navbar-collapse .d-flex {
    justify-content: center;
    margin-top: 0.75rem;
    width: 100%;
  }
}

.section-title {
  margin-bottom: 3rem;
  text-align: center;
}
.section-title .subtitle {
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  font-size: 0.875rem;
  display: block;
  margin-bottom: 0.5rem;
}
.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-main);
}
.section-title h2 span {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-title p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.theme-toggle {
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
  color: var(--text-main);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease-in-out;
}
.theme-toggle:hover {
  background: var(--border-color);
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--bg-body);
  color: var(--text-main);
  overflow-x: hidden;
  transition: background-color 0.3s ease;
  color-scheme: light dark;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
  color: var(--text-main);
}

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

img {
  max-width: 100%;
  height: auto;
}

.hero-section {
  padding: 8rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  z-index: -1;
}
.hero-section::after {
  content: "";
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  z-index: -1;
}
.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }
}
.hero-section .lead {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.hero-section .hero-img-container {
  position: relative;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}
.hero-section .hero-img-container img {
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}
.footer {
  background-color: var(--bg-light);
  padding: 5rem 0 2rem;
  margin-top: 5rem;
}
.footer .footer-brand {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: inline-block;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer h5 {
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.footer ul {
  list-style: none;
  padding: 0;
}
.footer ul li {
  margin-bottom: 0.75rem;
}
.footer ul li a {
  color: var(--text-muted);
}
.footer ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}
.footer .social-links a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  color: var(--text-muted);
  border-radius: 50%;
  margin-right: 0.5rem;
  border: 1px solid var(--border-color);
}
.footer .social-links a:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.integrations-section .logo-wall {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  opacity: 0.7;
}
.integrations-section .logo-wall img, .integrations-section .logo-wall svg, .integrations-section .logo-wall i {
  height: 40px;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}
.integrations-section .logo-wall img:hover, .integrations-section .logo-wall svg:hover, .integrations-section .logo-wall i:hover {
  filter: grayscale(0%);
  transform: scale(1.1);
}

.bg-light-alt {
  background-color: var(--bg-light);
}

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

[dir=rtl] body {
  direction: rtl;
  text-align: right;
}
[dir=rtl] .section-title {
  text-align: right;
}
[dir=rtl] .section-title p {
  margin-left: 0;
  margin-right: 0;
}

/*# sourceMappingURL=style.css.map */
