* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #8231d3;
  --primary-dark: #4f46e5;
  --secondary-color: #10b981;
  --accent-color: #f59e0b;
  --text-primary: #1f2937;
  --text-secondary: #6b7280;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --border-color: #e5e7eb;
  --shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-heavy: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}
.primary-color {
  color: var(--primary-color);
}
.primary-bgcolor {
  background-color: var(--primary-color);
}
/* Remove body padding that might interfere */
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  overflow-x: hidden;
}

.padding {
  padding: 0 5rem;
}

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

.mb-16 {
  margin-bottom: 4rem;
}

.text-5xl {
  font-size: 3.5rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 1.5rem;
}

.text-xl {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 32rem;
  margin: 0 auto;
}

/* Regular sections keep the 5rem padding from body */
.section-container {
  /* max-width: 1400px; */
  /* margin: 0 auto; */
  /* padding: 4rem 2rem; */
  position: relative;
}

/* Full-width swiper section - override body padding */
.swiper-section {
  margin: 0 -5rem; /* Negative margin to counteract body padding */
  padding: 4rem 0;
  position: relative;
  width: calc(100% + 10rem); /* Compensate for negative margins */
}

.swiper-section .section-content {
  max-width: 1400px;
  margin: 0 auto;
  padding-bottom: 2rem;
  text-align: center;
}

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

.mb-16 {
  margin-bottom: 4rem;
}

.text-5xl {
  font-size: 3.5rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 1.5rem;
}

.text-xl {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 32rem;
  margin: 0 auto;
}

.slider-container {
  position: relative;
  overflow: hidden;
  width: 100%;
}

/* Reduced width fade overlays */
.fade-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px; /* Reduced from 150px */
  z-index: 15;
  pointer-events: none;
}

.fade-left {
  left: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(255, 255, 255, 0) 100%
  );
}

.fade-right {
  right: 0;
  background: linear-gradient(
    to left,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(255, 255, 255, 0) 100%
  );
}

/* Swiper Styles - Full width */
.swiper {
  width: 100vw;
  height: 400px;
  padding: 0 40px;
  overflow: visible;
}

.swiper-wrapper {
  align-items: center;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 320px;
  transition: all 0.3s ease;
}

/* Peek effect - show partial next/prev slides on both sides */
.swiper-slide:not(.swiper-slide-active) {
  opacity: 0.7;
  transform: scale(0.92);
}

.card {
  width: 314px;
  height: 350px;
  border-radius: 1.5rem;
  padding: 2rem;
  color: white;
  position: relative;
  overflow: hidden;
  /* box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); */
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 35px 60px -12px rgba(0, 0, 0, 0.35);
}

.card-content {
  position: relative;
  z-index: 10;
  flex: 1;
}

.card h3 {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.card p {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.card-badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  backdrop-filter: blur(4px);
}

.badge-icon {
  width: 1.5rem;
  height: 1.5rem;
  background: white;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-text {
  font-size: 0.875rem;
  font-weight: 500;
}

/* Gradient Backgrounds */
.gradient-cyan {
  background: linear-gradient(135deg, #06b6d4 0%, #22d3ee 100%);
}

.gradient-red {
  background: linear-gradient(135deg, #ef4444 0%, #f87171 100%);
}

.gradient-navy {
  background: linear-gradient(135deg, #1e1b4b 0%, #3730a3 100%);
}

.gradient-blue {
  background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
}

.gradient-purple {
  background: linear-gradient(135deg, #a855f7 0%, #c084fc 100%);
}

/* Background Decorations */
.bg-decoration-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 8rem;
  height: 8rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(4rem, -4rem);
}

.bg-decoration-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 6rem;
  height: 6rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(3rem, 3rem);
}

/* Navigation Buttons */
.custom-nav-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  border: none;
  backdrop-filter: blur(10px);
}

.custom-nav-btn:hover {
  background: rgba(0, 0, 0, 1);
  transform: translateY(-50%) scale(1.1);
}

.custom-prev {
  left: 20px;
}

.custom-next {
  right: 20px;
}

.card-gradient {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.dotted-line {
  border-top: 2px dotted #8b5cf6;
  position: relative;
}
.dotted-line::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 8px;
  height: 8px;
  background: #8b5cf6;
  border-radius: 50%;
}
.dotted-line::after {
  content: "";
  position: absolute;
  top: -4px;
  right: 0;
  width: 8px;
  height: 8px;
  background: #8b5cf6;
  border-radius: 50%;
}
.transaction-item {
  transition: all 0.3s ease;
}
.transaction-item:hover {
  transform: translateX(4px);
  background-color: #f9fafb;
}

/* Glass effect backgrounds */
.glass-card {
  position: relative;
  background: white;
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.glass-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(
    to top,
    rgba(139, 92, 246, 0.15) 0%,
    rgba(139, 92, 246, 0.08) 40%,
    rgba(139, 92, 246, 0.02) 70%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
}

.glass-card-purple {
  position: relative;
  background: white;
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.glass-card-purple::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70%;
  background: linear-gradient(
    to top,
    rgba(139, 92, 246, 0.2) 0%,
    rgba(139, 92, 246, 0.12) 35%,
    rgba(139, 92, 246, 0.05) 60%,
    rgba(139, 92, 246, 0.01) 80%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
}

.glass-card-light {
  position: relative;
  background: white;
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.glass-card-light::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(
    to top,
    rgba(139, 92, 246, 0.1) 0%,
    rgba(139, 92, 246, 0.05) 30%,
    rgba(139, 92, 246, 0.02) 60%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
}

.glass-card-management {
  position: relative;
  background: white;
  backdrop-filter: blur(10px);
  overflow: hidden;
}

  .glass-card-management::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80%;
    background: linear-gradient(
      to top,
      rgba(139, 92, 246, 0.12) 0%,
      rgba(139, 92, 246, 0.08) 25%,
      rgba(139, 92, 246, 0.04) 50%,
      rgba(139, 92, 246, 0.01) 75%,
      transparent 100%
    );
    pointer-events: none;
    z-index: 1;
  }

/* Content positioning */
.card-content {
  position: relative;
  z-index: 2;
}
/* Responsive */
@media (max-width: 1024px) {
  /* body {
    padding: 0 3rem;
  } */
  .padding{
    padding: 0 20px;
  }
  .swiper-section {
    margin: 0 -3rem;
    width: calc(100% + 6rem);
  }

  .swiper {
    padding: 0 50px;
  }

  .fade-overlay {
    width: 60px;
  }
}

@media (max-width: 768px) {
  /* body {
    padding: 0 2rem;
  } */
  .padding{
    padding: 0 15px;
  }
  .swiper-section {
    margin: 0 -2rem;
    width: calc(100% + 4rem);
  }

  .swiper {
    padding: 0 40px;
  }

  .text-5xl {
    font-size: 2.5rem;
  }

  .fade-overlay {
    width: 50px;
  }

  .custom-nav-btn {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 640px) {
  .padding{
    padding: 0 10px;
  }
  p{
    font-size: 16px !important;
  }
  .swiper-section {
    margin: 0 -1rem;
    width: calc(100% + 2rem);
  }

  .swiper {
    padding: 0 30px;
  }

  .swiper-slide {
    width: 280px;
  }

  .card {
    width: 280px;
    height: 320px;
  }

  .fade-overlay {
    width: 40px;
  }

  .section-container {
    padding: 2rem 1rem;
  }
}
