/* Variables */
:root {
  --primary: #70b8ff;
  --primary-dark: #004c99;
  --primary-light: #e6f0ff;
  --secondary: #f8f9fb;
  --success: #28a745;
  --text-dark: #222;
  --text-muted: #6c757d;
  --border-light: #f0f0f0;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
}

/* Base Styles */
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--text-dark);
  background: #fff;
  overflow-x: hidden;
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
}

.display-4 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
}

/* Buttons */
.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  transition: var(--transition);
  font-weight: 500;
}

.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary);
}

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

/* Navigation */

.navbar {
  background: rgba(15, 15, 35, 0.44);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  padding: 0.75rem 0;
}

.navbar.scrolled {
  background: rgba(15, 15, 35, 0.65);
  padding: 0.5rem 0;
}

.brand-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  transition: all 0.3s ease;
}

.brand-icon i {
  color: white;
  font-size: 1.25rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
}

.brand-slogan {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.navbar-brand {
  padding: 0;
}

.navbar-brand:hover .brand-icon {
  transform: scale(1.1) rotate(-15deg);
  box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
}

.nav-link {
  color: rgba(255, 255, 255, 0.8) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: white !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: linear-gradient(90deg, #4f46e5, #7c3aed);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.navbar-toggler {
  border: none;
  padding: 0;
  width: 40px;
  height: 40px;
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: none;
  position: relative;
  width: 24px;
  height: 2px;
  background: white;
  transition: all 0.3s ease;
  margin: 0 auto;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: white;
  transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
  top: -6px;
}

.navbar-toggler-icon::after {
  bottom: -6px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  transform: rotate(45deg);
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  transform: rotate(-45deg);
  bottom: 0;
}

.mega-menu {
  border: none;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  margin-top: 0;
}

.mega-menu .dropdown-item {
  transition: all 0.3s ease;
  border: 0px solid transparent;
}

.mega-menu .dropdown-item:hover {
  background: var(--bs-primary-bg-subtle);
  border-color: var(--bs-primary-border-subtle);
  transform: translateX(5px);
}

.mega-menu .dropdown-header {
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.btn {
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-top: 1rem;
  }

  .mega-menu {
    box-shadow: none;
    padding: 0 !important;
  }

  .mega-menu .dropdown-item {
    padding: 0.5rem 1rem !important;
  }

  .mega-menu img {
    display: none;
  }

  .navbar .nav-link::after {
    display: none;
  }

  .d-flex {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    margin: 0.25rem 0;
  }
}

.dropdown-item {
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.dropdown-item i {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bs-primary-bg-subtle);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.dropdown-item:hover i {
  transform: scale(1.1);
  background: var(--bs-primary);
  color: white !important;
}

.dropdown-item:hover {
  background: var(--bs-primary-bg-subtle);
  border-color: var(--bs-primary-border-subtle);
  transform: translateX(5px);
}

.menu-item .dropdown-item {
  white-space: normal;
}

@media (max-width: 991.98px) {
  .dropdown-item {
    padding: 0.75rem !important;
  }

  .dropdown-item i {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
}

.carousel-item {
  transition: transform 0.6s ease-in-out;
}

.carousel-item .position-relative {
  overflow: hidden;
  border-radius: 1rem;
}

.carousel-item img {
  transition: transform 0.6s ease;
}

.carousel-item:hover img {
  transform: scale(1.05);
}

.bg-gradient-dark {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.carousel-indicators {
  margin-bottom: 1rem;
}

.carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--bs-primary);
  opacity: 0.5;
  transition: all 0.3s ease;
}

.carousel-indicators button.active {
  width: 12px;
  height: 12px;
  opacity: 1;
}

.carousel-control-prev,
.carousel-control-next {
  width: 40px;
  height: 40px;
  background: var(--bs-primary);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.3s ease;
}

.carousel-control-prev {
  left: 1rem;
}

.carousel-control-next {
  right: 1rem;
}

#heroSlider:hover .carousel-control-prev,
#heroSlider:hover .carousel-control-next {
  opacity: 0.8;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1 !important;
  background: var(--bs-primary-dark);
}

.py-120 {
  padding-top: 120px;
  padding-bottom: 120px;
}

@media (max-width: 991.98px) {
  .py-120 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media (max-width: 767.98px) {
  .py-120 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.hero-container {
  padding-top: 130px;
  position: relative;
  background: linear-gradient(135deg, #1E3A8A 0%, #625ED0 50%, #4D8BCC 100%);
  overflow: hidden;
}

.hero-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(79, 70, 229, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(124, 58, 237, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.floating-shapes {
  top: 180px;
  position: relative;
  z-index: 1;
}

/* Back to Top Button Styles */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  border: none;
  cursor: pointer;
  display: none;
  z-index: 999;
  background: none;
  padding: 0;
}

.button-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.9) 0%, rgba(124, 58, 237, 0.9) 100%);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.button-icon {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.button-text {
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
}

.back-to-top:hover .button-content {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(79, 70, 229, 0.4);
}

.back-to-top:hover .button-icon {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(-45deg);
}

.back-to-top:hover .button-text {
  opacity: 1;
  transform: translateX(0);
}

.back-to-top i {
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

@media (max-width: 767.98px) {
  .back-to-top {
    bottom: 20px;
    right: 20px;
  }

  .button-content {
    padding: 0.75rem;
  }

  .button-text {
    display: none;
  }
}

.features-section {
  position: relative;
  padding: 8rem 2rem;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 50%, #2d1b69 100%);
  min-height: 100vh;
}

.features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 25% 25%, rgba(79, 70, 229, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(236, 72, 153, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 0.2s forwards;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  background: linear-gradient(135deg, #fff 0%, #a855f7 50%, #ccb1be 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 2rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  opacity: 0;
  transform: translateY(50px);
  animation: slideInUp 0.8s ease-out forwards;
}

.feature-card:nth-child(1) {
  animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
  animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
  animation-delay: 0.3s;
}

.feature-card:nth-child(4) {
  animation-delay: 0.4s;
}

.feature-card:nth-child(5) {
  animation-delay: 0.5s;
}

.feature-card:nth-child(6) {
  animation-delay: 0.6s;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #142848, #5745d9, #293c60);
  border-radius: 24px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.feature-icon-container {
  position: relative;
  margin-bottom: 2rem;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #ccb1be 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.feature-card:hover .feature-icon {
  transform: rotate(10deg) scale(1.1);
  box-shadow: 0 15px 30px rgba(79, 70, 229, 0.4);
}

.feature-card:hover .feature-icon::before {
  left: 100%;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.feature-card:hover .feature-title {
  background: linear-gradient(135deg, #fff 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.feature-list {
  list-style: none;
}

.feature-list-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  padding: 0.5rem 0;
  position: relative;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.feature-list-item:hover {
  background: rgba(255, 255, 255, 0.05);
  padding-left: 1rem;
}

.check-icon {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  font-size: 0.8rem;
  color: white;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.feature-list-item:hover .check-icon {
  transform: scale(1.2);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.feature-list-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.feature-list-item:hover .feature-list-text {
  color: white;
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.floating-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  animation: float 8s ease-in-out infinite;
}

.floating-circle:nth-child(1) {
  width: 60px;
  height: 60px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.floating-circle:nth-child(2) {
  width: 40px;
  height: 40px;
  top: 70%;
  right: 10%;
  animation-delay: 2s;
  animation-duration: 6s;
}

.floating-circle:nth-child(3) {
  width: 80px;
  height: 80px;
  bottom: 15%;
  left: 15%;
  animation-delay: 4s;
  animation-duration: 10s;
}

.demo-button {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.8rem 2rem;
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
}

.demo-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.demo-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(79, 70, 229, 0.4);
}

.demo-button:hover::before {
  left: 100%;
}

.interactive-showcase {
  margin-top: 6rem;
  text-align: center;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.showcase-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2rem 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.showcase-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.showcase-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #4f46e5 0%, #ccb1be 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.showcase-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
  }

  .feature-card {
    padding: 2.5rem 2rem;
  }
}

@media (max-width: 768px) {
  .features-section {
    padding: 4rem 1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-card {
    padding: 2rem 1.5rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .section-subtitle {
    font-size: 1.1rem;
  }

  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .features-section {
    padding: 3rem 1rem;
  }

  .feature-card {
    padding: 1.5rem 1rem;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .feature-title {
    font-size: 1.25rem;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .timeline-step {
    padding: 2rem 1rem !important;
    margin: 0 !important;
  }
}

.timeline-container {
  position: relative;
  max-width: 1200px;
  margin: 4rem auto;
  padding: 2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.timeline-container::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 50px;
  right: 50px;
  height: 4px;
  background: linear-gradient(90deg,
      rgba(79, 70, 229, 0.3) 0%,
      rgba(124, 58, 237, 0.3) 50%,
      rgba(236, 72, 153, 0.3) 100%);
  z-index: 0;
}

.timeline-step {
  position: relative;
  flex: 1;
  max-width: 350px;
  margin: 0 1rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease-out forwards;
  z-index: 1;
}

.timeline-icon {
  position: relative;
  margin: 0 auto 2rem;
  width: fit-content;
}

.icon-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #ccb1be 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  position: relative;
  transition: all 0.3s ease;
  margin: 0 auto;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.icon-circle::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #ccb1be 100%);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.3;
  transition: all 0.3s ease;
}

.timeline-step:hover .icon-circle::before {
  transform: scale(1.2);
}

.step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 35px;
  height: 35px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #4f46e5;
  border: 3px solid #4f46e5;
  z-index: 2;
}

.timeline-content {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2rem 1rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  min-height: 100px;
}

.timeline-content:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.timeline-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: white;
}

.timeline-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.timeline-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.timeline-list li:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(10px);
}

@media (max-width: 991px) {
  .timeline-container {
    flex-direction: column;
    align-items: center;
  }

  .timeline-container::before {
    display: none;
  }

  .timeline-step {
    width: 100%;
    padding: 2rem 1.5rem;
    margin: 3rem;
  }

  .timeline-step:last-child {
    margin-bottom: 0;
  }

  .timeline-content {
    text-align: center;
  }

  .timeline-list {
    max-width: 400px;
    margin: 0 auto;
  }
}

.cta-container {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 4rem;
}

.cta-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #fff 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(79, 70, 229, 0.4);
  color: white;
}

.cta-button i {
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.cta-button:hover i {
  transform: translateX(5px);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1087px) {
  .timeline-content {
    padding: 2rem 10px;
  }

  .timeline-step {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
}

.pricing-section {
  position: relative;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 50%, #2d1b69 100%);
  color: white;
  overflow: hidden;
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 25% 25%, rgba(79, 70, 229, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.pricing-toggle {
  margin-top: 2rem;
}

.toggle-container {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  position: relative;
}

.toggle-option {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  padding: 0.5rem 1rem;
}

.save-badge {
  position: absolute;
  top: -10px;
  right: -20px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  transition: 0.4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 24px;
  width: 24px;
  left: 3px;
  bottom: 3px;
  background: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked+.slider {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
}

input:checked+.slider:before {
  transform: translateX(30px);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
  position: relative;
  z-index: 1;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.pricing-card.popular {
  border: 2px solid rgba(79, 70, 229, 0.5);
  transform: scale(1.05);
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-10px);
}

.popular-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.card-header {
  padding: 2rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-container {
  margin-bottom: 1rem;
}

.price-monthly,
.price-annual {
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

/* Initial states */
.price-monthly:not(.d-none) {
  display: flex !important;
}

.price-annual {
  display: none;
}

.currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
}

.amount {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.period {
  color: rgba(255, 255, 255, 0.7);
}

.plan-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin: 0;
}

.feature-list {
  padding: 2rem;
  margin-bottom: 0;
}

.feature-list ul {
  margin-bottom: 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateX(5px);
  color: white;
}

.feature-item i {
  color: #10b981;
  font-size: 1.2rem;
}

.card-footer {
  padding: 2rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
  justify-content: center;
}

.pricing-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(79, 70, 229, 0.4);
  color: white;
}

.guarantee {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.enterprise-section {
  margin-top: 4rem;
}

.enterprise-content {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 2rem;
  transition: all 0.3s ease;
}

.enterprise-content:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.enterprise-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  flex-shrink: 0;
}

.enterprise-info {
  flex-grow: 1;
}

.enterprise-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #fff 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.enterprise-info p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.enterprise-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.enterprise-cta:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 991px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card.popular {
    transform: scale(1);
  }

  .pricing-card.popular:hover {
    transform: translateY(-10px);
  }

  .enterprise-content {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }

  .enterprise-icon {
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .toggle-container {
    flex-direction: column;
    padding: 1rem;
  }

  .save-badge {
    position: static;
    margin-top: 0.5rem;
  }
}

/* Add these styles after your existing navbar styles */
.dropdown-preview {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 1rem;
}

.preview-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.1);
  transition: all 0.4s ease-in-out;
}

.preview-image.active {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 991.98px) {
  .dropdown-preview {
    display: none;
  }
}

.modal-content {
  background-color: transparent;
  border-radius: 20px;
}

.how-it-works-section {
  position: relative;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 50%, #2d1b69 100%);
  color: white;
  overflow: hidden;
}

.how-it-works-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 25% 25%, rgba(79, 70, 229, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  background: linear-gradient(135deg, #fff 0%, #a855f7 50%, #ccb1be 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.timeline-container {
  position: relative;
  max-width: 100%;
  margin: 4rem auto;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.timeline-container::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 50px;
  right: 50px;
  height: 4px;
  background: linear-gradient(90deg,
      rgba(79, 70, 229, 0.3) 0%,
      rgba(124, 58, 237, 0.3) 50%,
      rgba(236, 72, 153, 0.3) 100%);
  z-index: 0;
}

.timeline-step {
  position: relative;
  flex: 1;
  max-width: 350px;
  margin: 0 1rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease-out forwards;
  z-index: 1;
}

.timeline-icon {
  position: relative;
  margin: 0 auto 2rem;
  width: fit-content;
}

.icon-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #ccb1be 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  position: relative;
  transition: all 0.3s ease;
  margin: 0 auto;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.icon-circle::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #ccb1be 100%);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.3;
  transition: all 0.3s ease;
}

.timeline-step:hover .icon-circle::before {
  transform: scale(1.2);
}

.step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 35px;
  height: 35px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #4f46e5;
  border: 3px solid #4f46e5;
  z-index: 2;
}

.timeline-content {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2rem 1rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  min-height: 380px;
}

.timeline-content:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.timeline-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: white;
}

.timeline-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.timeline-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.timeline-list li:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(10px);
}

@media (max-width: 991px) {
  .timeline-container {
    flex-direction: column;
    align-items: center;
  }

  .timeline-container::before {
    display: none;
  }

  .timeline-step {
    max-width: 100%;
    margin: 0 0 3rem 0;
  }

  .timeline-step:last-child {
    margin-bottom: 0;
  }

  .timeline-content {
    text-align: center;
  }

  .timeline-list {
    max-width: 400px;
    margin: 0 auto;
  }
}

.cta-container {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 4rem;
}

.cta-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #fff 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(79, 70, 229, 0.4);
  color: white;
}

.cta-button i {
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.cta-button:hover i {
  transform: translateX(5px);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1087px) {
  .timeline-content {
    padding: 2rem 10px;
  }

  .timeline-step {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
}


.navbar {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-sm);
}

.navbar-brand {
  transition: var(--transition);
}

.navbar-brand:hover {
  transform: translateY(-2px);
}

/* Mega Menu */
.mega-menu {
  width: 100%;
  /* max-width: 1200px; */
  left: 50% !important;
  transform: translateX(-50%) !important;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  background: #fff;
  border: none;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mega-menu.show {
  opacity: 1;
  visibility: visible;
}

.dropdown-menu.mega-menu .dropdown-header {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.dropdown-item {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  transition: var(--transition);
}

.dropdown-item:hover {
  background: var(--primary-light);
  transform: translateX(5px);
}

/* Hero Section */
.hero-section {
  background: var(--secondary);
  min-height: 90vh;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(45deg, var(--primary-light), transparent);
  opacity: 0.1;
  z-index: 0;
}

/* Stats Cards */
.stat-card {
  padding: 2rem;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.stat-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
}

/* Customer Logos */
.customer-logos {
  display: flex;
  gap: 3rem;
  align-items: center;
  flex-wrap: wrap;
}

.customer-logos img {
  height: 32px;
  filter: grayscale(1) brightness(0.8);
  transition: var(--transition);
  cursor: pointer;
}

.customer-logos img:hover {
  filter: grayscale(0) brightness(1);
  transform: scale(1.1);
}

/* Features Section */
.feature-card {
  padding: 2rem;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1.5rem;
}

/* Testimonials */
.testimonial-card {
  padding: 2rem;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* Pricing Cards */
.pricing-card {
  padding: 2rem;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 2px solid transparent;
}

.pricing-card.popular {
  border-color: var(--primary);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.6s ease forwards;
}

/* Responsive Design */
@media (max-width: 1199.98px) {
  .mega-menu {
    max-width: 960px;
  }
}

@media (max-width: 991.98px) {
  .mega-menu {
    width: 100% !important;
    left: 0 !important;
    transform: none !important;
    padding: 1rem !important;
    border-radius: 0;
  }

  .display-4 {
    font-size: 2.5rem;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    padding: 4rem 0;
    min-height: auto;
  }

  .customer-logos {
    gap: 2rem;
    justify-content: center;
  }

  .stat-card {
    margin-bottom: 1rem;
  }
}

@media (max-width: 575.98px) {
  .display-4 {
    font-size: 2rem;
  }

  .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .customer-logos img {
    height: 24px;
  }
}

.hero-container {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 150px 2rem 80px 2rem;
  background: linear-gradient(135deg, #1E3A8A 0%, #625ED0 50%, #4D8BCC 100%);
  overflow: hidden;
}

.hero-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 6s ease-in-out infinite;
}

.shape:nth-child(1) {
  width: 100px;
  height: 100px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.shape:nth-child(2) {
  width: 60px;
  height: 60px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
  animation-duration: 8s;
}

.shape:nth-child(3) {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
  animation-duration: 7s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.main-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0rem;
  align-items: center;
}

.left-content {
  animation: slideInLeft 1s ease-out;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  line-height: 1.6;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2rem 1rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.stat-card::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: left 0.5s;
}

.stat-card:hover::before {
  left: 100%;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-icon {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 0rem;
  display: block;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.btn {
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary {
  background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
  color: white;
  box-shadow: 0 0px 25px rgba(255, 107, 107, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(255, 107, 107, 0.6);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(20px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

.trust-badge {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.client-section {
  animation: fadeInUp 1s ease-out 0.5s both;
}

.client-text {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.client-logos {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0.8;
}

.client-logos img {
  height: 30px;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.client-logos img:hover {
  opacity: 1;
}

.right-content {
  animation: slideInRight 1s ease-out 0.3s both;
  position: relative;
}

.visual-container {
  position: relative;
  height: auto;
  perspective: 1000px;
}

.phone-mockup {
  position: absolute;
  width: 300px;
  height: 600px;
  background: linear-gradient(145deg, #2c3e50, #34495e);
  border-radius: 40px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotateY(-15deg);
  box-shadow:
    0 50px 100px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
  animation: phoneFloat 3s ease-in-out infinite;
}

.phone-screen {
  margin: 20px;
  height: calc(100% - 40px);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 30px;
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.screen-content {
  color: white;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.app-header {
  text-align: center;
  margin-bottom: 2rem;
}

.app-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.app-subtitle {
  font-size: 0.9rem;
  opacity: 0.8;
}

.call-visualization {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.call-ring {
  width: 100%;
  /*height: 120px;*/
  border: 3px solid rgba(255, 255, 255, 0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: pulse 2s infinite;
}

.call-ring::before,
.call-ring::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(255, 255, 255, 0);
  border-radius: 50%;
  animation: ripple 2s infinite;
}

.call-ring::after {
  animation-delay: 1s;
}

.call-icon {
  font-size: 3rem;
  color: white;
}

.incoming-call {
  text-align: center;
}

.caller-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.caller-number {
  font-size: 0.9rem;
  opacity: 0.8;
}

.floating-cards {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 1rem;
  color: white;
  font-size: 0.85rem;
  animation: cardFloat 4s ease-in-out infinite;
}

.floating-card:nth-child(1) {
  top: 25%;
  right: 0%;
  animation-delay: 0s;
}

.floating-card:nth-child(2) {
  bottom: 45%;
  left: 20%;
  animation-delay: 2s;
}

.floating-card:nth-child(3) {
  top: 60%;
  right: -3%;
  animation-delay: 1s;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes phoneFloat {

  0%,
  100% {
    transform: translate(-50%, -50%) rotateY(-15deg) translateY(0px);
  }

  50% {
    transform: translate(-50%, -50%) rotateY(-15deg) translateY(-10px);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

@keyframes cardFloat {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(2deg);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .main-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .visual-container {
    height: 500px;
  }

  .phone-mockup {
    width: 250px;
    height: 500px;
  }
}

@media (max-width: 768px) {
  .hero-container {
    padding: 1rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .client-logos {
    justify-content: center;
    gap: 1rem;
  }

  .visual-container {
    height: 400px;
  }

  .phone-mockup {
    width: 200px;
    height: 400px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .stats-grid {
    gap: 0.5rem;
  }

  .stat-card {
    padding: 1.5rem 0.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }
}