    .intro-badge .badge {
      font-size: 1rem;
      font-weight: 600;
      letter-spacing: 0.5px;
    }

    .content-card {
      background: #ffffff;
      border-radius: 16px;
      padding: 2rem;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
      border: 1px solid #f1f3f5;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .content-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #007bff, #6c757d, #28a745, #17a2b8);
      transform: translateY(-100%);
      transition: transform 0.3s ease;
    }

    .content-card:hover::before {
      transform: translateY(0);
    }

    .content-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    }

    .card-icon {
      display: flex;
      align-items: center;
      justify-content: flex-start;
    }

    .card-text {
      font-size: 1.1rem;
      line-height: 1.7;
      color: #495057;
      margin-bottom: 0;
    }
    .why-invest-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.why-invest-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle, rgba(0,123,255,0.05) 0%, transparent 70%);
  z-index: 1;
}

.content-wrapper {
  position: relative;
  z-index: 2;
}

/* Add left margin for larger screens */
@media (min-width: 992px) {
  .content-wrapper {
    margin-left: 100px;
  }
}

.section-badge .badge {
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 50px;
  background: linear-gradient(45deg, #007bff, #0056b3);
  border: none;
}

.stat-alert {
  background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
  border: 1px solid #ffc107;
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.2);
}

.alert-icon i {
  font-size: 2rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.benefit-icon i {
  font-size: 2rem;
}

.visual-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-image-card {
  position: relative;
  max-width: 630px;
  width: 100%;
}

.main-image-card img {
  width: 100%;
  height: auto;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.main-image-card:hover img {
  transform: scale(1.02);
}

.floating-stats {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.stat-card {
  position: absolute;
  background: white;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  animation: float 3s ease-in-out infinite;
}

.stat-1 {
  top: 10%;
  right: -10%;
  animation-delay: 0s;
}

.stat-2 {
  bottom: 11%;
  left: -8%;
  animation-delay: 1s;
}

.stat-3 {
  top: 50%;
  right: -5%;
  animation-delay: 2s;
}

.stat-card i {
  font-size: 1.5rem;
}

.stat-card strong {
  font-size: 1.1rem;
  display: block;
  line-height: 1.2;
}

.stat-card small {
  color: #6c757d;
  font-size: 0.8rem;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    text-align: center;
  }
  
  .cta-buttons .btn {
    display: block;
    margin: 0.5rem 0;
  }
  
  .stat-card {
    position: relative;
    margin: 1rem 0;
    right: auto !important;
    left: auto !important;
    top: auto !important;
    bottom: auto !important;
  }
  
  .floating-stats {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
  }
}
.modern-features-section {
  /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Animated Background */
.animated-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.bg-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: -5%;
  animation-delay: 0s;
}

.shape-2 {
  width: 200px;
  height: 200px;
  top: 60%;
  right: -5%;
  animation-delay: 2s;
}

.shape-3 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
}

.float-element {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  animation: twinkle 3s infinite;
}

.element-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.element-2 {
  top: 50%;
  right: 15%;
  animation-delay: 1s;
}

.element-3 {
  bottom: 30%;
  left: 60%;
  animation-delay: 2s;
}


@keyframes twinkle {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.5); }
}

.container {
  z-index: 2;
}

.section-badge .badge {
  font-size: 0.9rem;
  font-weight: 600;
  background: linear-gradient(45deg, #ffd700, #ffed4a);
  color: #333;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
  border: none;
}

.text-gradient {
  background: linear-gradient(45deg, #ffd700, #ffed4a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Modern Feature Cards */
.modern-feature-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.modern-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modern-feature-card:hover::before {
  opacity: 1;
}

.modern-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.4);
}

.card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modern-feature-card:hover .card-glow {
  opacity: 1;
  animation: rotate 4s linear infinite;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.feature-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.feature-icon-modern {
  position: relative;
  display: inline-block;
}

.icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.icon-wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(45deg);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.icon-particles {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: orbit 3s linear infinite;
}

.particle:nth-child(1) {
  top: 0;
  left: 50%;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  top: 50%;
  right: 0;
  animation-delay: 1s;
}

.particle:nth-child(3) {
  bottom: 0;
  left: 50%;
  animation-delay: 2s;
}

@keyframes orbit {
  0% { transform: rotate(0deg) translateX(40px) rotate(0deg); }
  100% { transform: rotate(360deg) translateX(40px) rotate(-360deg); }
}

.feature-title {
  color: #fff;
  font-weight: 700;
  font-size: 1.4rem;
}

.feature-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 0.95rem;
}

.feature-stats {
  display: flex;
  gap: 2rem;
  margin-top: auto;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffd700;
  display: block;
  margin-bottom: 0.2rem;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Modern CTA Card */
.modern-cta-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(30px);
  border-radius: 24px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.cta-title {
  color: #fff;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Modern Buttons */
.btn-modern-primary,
.btn-modern-outline {
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
}

.btn-modern-primary {
  background: linear-gradient(45deg, #ffd700, #ffed4a);
  color: #333;
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.3);
}

.btn-modern-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
}

.btn-modern-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
  color: #fff;
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
}

.btn-modern-primary:hover .btn-shine,
.btn-modern-outline:hover .btn-shine {
  left: 100%;
}

.btn-modern-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255, 215, 0, 0.4);
}

.btn-modern-outline:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.2);
}

.btn-text {
  position: relative;
  z-index: 2;
}

/* Responsive Design */
@media (max-width: 768px) {
  .modern-features-section {
    min-height: auto;
    padding: 4rem 0;
  }
  
  .modern-feature-card {
    padding: 2rem;
  }
  
  .feature-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem;
    border-radius: 12px;
  }
  
  .stat-item .stat-value,
  .stat-item .stat-label {
    margin: 0;
  }
  
  .modern-cta-card {
    padding: 2rem;
  }
  
  .cta-title {
    font-size: 1.5rem;
  }
  
  .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn-modern-primary,
  .btn-modern-outline {
    width: 100%;
  }
}

/* Animation delays for staggered effect */
.modern-feature-card:nth-child(1) { animation-delay: 0.1s; }
.modern-feature-card:nth-child(2) { animation-delay: 0.2s; }
.modern-feature-card:nth-child(3) { animation-delay: 0.3s; }
.modern-feature-card:nth-child(4) { animation-delay: 0.4s; }
.modern-feature-card:nth-child(5) { animation-delay: 0.5s; }
.modern-feature-card:nth-child(6) { animation-delay: 0.6s; }
/* Benefits Section Styles */
.benefits-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

/* Background Elements */
.benefits-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.bg-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.1), rgba(25, 135, 84, 0.1));
  animation: float 8s ease-in-out infinite;
}

.circle-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  left: -150px;
  animation-delay: 0s;
}

.circle-2 {
  width: 200px;
  height: 200px;
  top: 20%;
  right: -100px;
  animation-delay: 2s;
}

.circle-3 {
  width: 150px;
  height: 150px;
  bottom: -75px;
  left: 20%;
  animation-delay: 4s;
}

.floating-dots {
  position: absolute;
  width: 100%;
  height: 100%;
}

.dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(13, 110, 253, 0.3);
  border-radius: 50%;
  animation: twinkle 4s infinite;
}

.dot-1 {
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}

.dot-2 {
  top: 60%;
  right: 20%;
  animation-delay: 1s;
}

.dot-3 {
  bottom: 30%;
  left: 30%;
  animation-delay: 2s;
}

.dot-4 {
  top: 40%;
  left: 60%;
  animation-delay: 3s;
}

/* @keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
} */

@keyframes twinkle {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.8); }
}

.container {
  position: relative;
  z-index: 2;
}

.section-badge .badge {
  font-size: 0.9rem;
  font-weight: 600;
  background: linear-gradient(45deg, #25d366, #128c7e);
  border: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

/* Benefit Cards */
.benefit-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #007bff, #28a745, #ffc107, #dc3545, #6f42c1, #20c997);
  transform: scaleX(0);
  transition: transform 0.6s ease;
  transform-origin: left;
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 1);
}

.benefit-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(13, 110, 253, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.benefit-card:hover .benefit-glow {
  opacity: 1;
  animation: rotate 6s linear infinite;
}

/* Icon Styles */
.benefit-icon-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.benefit-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.benefit-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(13, 110, 253, 0.2);
  z-index: 1;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1.8); opacity: 0; }
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Content Styles */
.benefit-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.benefit-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.benefit-description {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.benefit-tag {
  display: flex;
  justify-content: center;
}

.tag {
  background: linear-gradient(45deg, #007bff, #0056b3);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

/* CTA Section */
.benefits-cta {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  padding: 3rem;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.benefits-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: shimmer 4s infinite;
}

@keyframes shimmer {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.benefits-cta h3 {
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.benefits-cta p {
  font-size: 1.1rem;
  opacity: 0.9;
  position: relative;
  z-index: 2;
}

.cta-buttons {
  position: relative;
  z-index: 2;
}

.cta-buttons .btn {
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-buttons .btn::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.6s ease;
}

.cta-buttons .btn:hover::before {
  left: 100%;
}

.cta-buttons .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-outline-primary {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: white;
}

.btn-outline-primary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .benefit-card {
    padding: 2rem;
  }
  
  .benefit-title {
    font-size: 1.3rem;
  }
  
  .benefit-description {
    font-size: 0.95rem;
  }
  
  .benefits-cta {
    padding: 2rem;
  }
  
  .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
}

/* Gradient Backgrounds */
.bg-gradient-primary {
  background: linear-gradient(135deg, #007bff, #0056b3);
}

.bg-gradient-success {
  background: linear-gradient(135deg, #28a745, #1e7e34);
}

.bg-gradient-warning {
  background: linear-gradient(135deg, #ffc107, #e0a800);
}

.bg-gradient-info {
  background: linear-gradient(135deg, #17a2b8, #138496);
}

.bg-gradient-danger {
  background: linear-gradient(135deg, #dc3545, #c82333);
}

.bg-gradient-secondary {
  background: linear-gradient(135deg, #6c757d, #545b62);
}
.pricing-section-enhanced {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Enhanced Background */
.pricing-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.pricing-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.1), rgba(25, 135, 84, 0.1));
  animation: pricing-float 8s ease-in-out infinite;
}

.pricing-shape.shape-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  left: -150px;
  animation-delay: 0s;
}

.pricing-shape.shape-2 {
  width: 200px;
  height: 200px;
  top: 20%;
  right: -100px;
  animation-delay: 2s;
}

.pricing-shape.shape-3 {
  width: 250px;
  height: 250px;
  bottom: -125px;
  left: 20%;
  animation-delay: 4s;
}

.pricing-shape.shape-4 {
  width: 180px;
  height: 180px;
  top: 60%;
  right: 15%;
  animation-delay: 6s;
}

.pricing-shape.shape-5 {
  width: 150px;
  height: 150px;
  top: 30%;
  left: 60%;
  animation-delay: 8s;
}

@keyframes pricing-float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(120deg); }
  66% { transform: translateY(-10px) rotate(240deg); }
  100% { transform: translateY(0px) rotate(360deg); }
}

/* Floating Elements */
.pricing-floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
}

.pricing-float-element {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(13, 110, 253, 0.4);
  border-radius: 50%;
  animation: pricing-twinkle 4s infinite;
}

.pricing-float-element.element-1 { top: 20%; left: 15%; animation-delay: 0s; }
.pricing-float-element.element-2 { top: 60%; right: 20%; animation-delay: 1s; }
.pricing-float-element.element-3 { bottom: 30%; left: 30%; animation-delay: 2s; }
.pricing-float-element.element-4 { top: 40%; left: 70%; animation-delay: 3s; }
.pricing-float-element.element-5 { bottom: 50%; right: 40%; animation-delay: 4s; }
.pricing-float-element.element-6 { top: 80%; left: 50%; animation-delay: 5s; }

@keyframes pricing-twinkle {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.8); }
}

/* Floating Icons */
.pricing-floating-icons {
  position: absolute;
  width: 100%;
  height: 100%;
}

.pricing-icon {
  position: absolute;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(13, 110, 253, 0.6);
  font-size: 1.5rem;
  animation: pricing-icon-float 10s infinite linear;
}

.pricing-icon.icon-1 { top: 15%; left: 10%; animation-delay: 0s; }
.pricing-icon.icon-2 { top: 70%; right: 10%; animation-delay: 2.5s; }
.pricing-icon.icon-3 { bottom: 20%; left: 70%; animation-delay: 5s; }
.pricing-icon.icon-4 { top: 45%; right: 35%; animation-delay: 7.5s; }

@keyframes pricing-icon-float {
  0% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-20px) rotate(90deg); }
  50% { transform: translateY(-10px) rotate(180deg); }
  75% { transform: translateY(-25px) rotate(270deg); }
  100% { transform: translateY(0) rotate(360deg); }
}

/* Enhanced Section Header */
.pricing-badge .badge {
  font-size: 0.9rem;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

.badge-glow-pricing {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50px;
  background: radial-gradient(circle, rgba(25, 135, 84, 0.4) 0%, transparent 70%);
  animation: pricing-pulse-glow 2s infinite;
}

.badge-pulse-pricing {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 50px;
  border: 2px solid rgba(25, 135, 84, 0.5);
  animation: pricing-pulse-ring 3s infinite;
}

@keyframes pricing-pulse-glow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

@keyframes pricing-pulse-ring {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.3); opacity: 0; }
}

/* Enhanced Title */
.text-gradient-pricing {
  background: linear-gradient(45deg, #198754, #20c997, #0dcaf0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.title-underline-pricing {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #198754, transparent);
  animation: pricing-underline-expand 3s infinite;
}

@keyframes pricing-underline-expand {
  0%, 100% { width: 50px; opacity: 0.5; }
  50% { width: 150px; opacity: 1; }
}

/* Floating Stats Preview */
.pricing-stats-preview {
  margin-top: 2rem;
}

.pricing-stat-bubble {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  padding: 1rem 1.5rem;
  border-radius: 25px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.pricing-stat-bubble:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.pricing-stat-bubble .bubble-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #198754;
  margin-bottom: 0.25rem;
}

.pricing-stat-bubble .bubble-label {
  font-size: 0.8rem;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Enhanced Pricing Cards */
.pricing-card-enhanced {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 30px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #007bff, #28a745, #ffc107, #dc3545, #6f42c1, #20c997);
  transform: scaleX(0);
  transition: transform 0.6s ease;
  transform-origin: left;
}

.pricing-card-enhanced:hover::before {
  transform: scaleX(1);
}

.pricing-card-enhanced:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 1);
}

/* Featured Card */
.pricing-card-featured {
  border: 2px solid #ffc107;
  position: relative;
}

.popular-badge {
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

/* Card Glow Effects */
.pricing-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(13, 110, 253, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pricing-card-enhanced:hover .pricing-glow {
  opacity: 1;
  animation: pricing-rotate 6s linear infinite;
}

@keyframes pricing-rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Card Sparkles */
.pricing-sparkles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pricing-card-enhanced:hover .pricing-sparkles {
  opacity: 1;
}

.pricing-sparkles .sparkle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #ffc107;
  border-radius: 50%;
  animation: pricing-sparkle-twinkle 2s infinite;
}

.sparkle-1 { top: 20%; left: 20%; animation-delay: 0s; }
.sparkle-2 { top: 60%; right: 20%; animation-delay: 0.7s; }
.sparkle-3 { bottom: 20%; left: 60%; animation-delay: 1.4s; }

@keyframes pricing-sparkle-twinkle {
  0%, 100% { opacity: 0; transform: scale(0); }
  50% { opacity: 1; transform: scale(1); }
}

/* Plan Header */
.pricing-header {
  text-align: center;
  position: relative;
  z-index: 2;
}

.plan-icon-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.plan-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.plan-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(13, 110, 253, 0.2);
  z-index: 1;
  animation: pricing-plan-pulse 2s infinite;
}

@keyframes pricing-plan-pulse {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1.8); opacity: 0; }
}

.plan-name {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.plan-subtitle {
  color: #6c757d;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 1rem;
}

.plan-price .currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: #198754;
}

.plan-price .amount {
  font-size: 3rem;
  font-weight: 700;
  color: #198754;
  margin: 0 0.25rem;
}

.plan-price .period {
  font-size: 1.2rem;
  color: #6c757d;
}

.plan-description {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Features List */
.pricing-features {
  position: relative;
  z-index: 2;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border-radius: 10px;
  transition: background-color 0.3s ease;
}

.feature-item:hover {
  background: rgba(13, 110, 253, 0.05);
}

.feature-item i {
  font-size: 1.2rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.feature-item span {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #495057;
}

/* CTA Buttons */
.pricing-cta {
  position: relative;
  z-index: 2;
}

.pricing-cta .btn {
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
}

.pricing-cta .btn:hover .btn-shine {
  left: 100%;
}

.pricing-cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Bottom CTA */
.pricing-bottom-cta {
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 30px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.pricing-bottom-cta h3 {
  color: #2c3e50;
  font-weight: 700;
}

.pricing-bottom-cta .lead {
  color: #6c757d;
}

.btn-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover .btn-ripple {
  width: 300px;
  height: 300px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .pricing-section-enhanced {
    min-height: auto;
    padding: 4rem 0;
  }
  
  .pricing-card-enhanced {
    padding: 2rem;
  }
  
  .plan-name {
    font-size: 1.5rem;
  }
  
  .plan-price .amount {
    font-size: 2.5rem;
  }
  
  .pricing-stats-preview {
    flex-direction: column;
    gap: 1rem;
  }
  
  .pricing-stat-bubble {
    padding: 0.75rem 1rem;
  }
  
  .pricing-bottom-cta {
    padding: 2rem 1rem;
  }
  
  .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .pricing-floating-icons,
  .pricing-floating-elements {
    display: none;
  }
}
/* Minimal Custom CSS */
.text-white-75 {
  color: rgba(255, 255, 255, 0.85) !important;
}

.backdrop-blur {
  backdrop-filter: blur(10px);
}

/* Industry Cards - Same Size with Bootstrap Grid */
.industry-card-modern {
  padding: 1.5rem 1rem;
  border-radius: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  backdrop-filter: blur(15px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  height: 140px; /* Fixed height for same size */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.industry-card-modern:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
}

.industry-icon-modern {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.industry-name-modern {
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.3;
}

.text-pink { color: #e91e63 !important; }
.text-purple { color: #9c27b0 !important; }
.text-indigo { color: #673ab7 !important; }
.text-cyan { color: #00bcd4 !important; }
.text-teal { color: #009688 !important; }
.text-orange { color: #ff9800 !important; }

.bg-pink { background-color: #e91e63 !important; }
.bg-purple { background-color: #9c27b0 !important; }
.bg-indigo { background-color: #673ab7 !important; }
.bg-cyan { background-color: #00bcd4 !important; }
.bg-teal { background-color: #009688 !important; }
.bg-orange { background-color: #ff9800 !important; }
.bg-purple-subtle { background-color: rgba(156, 39, 176, 0.1) !important; }
.text-purple { color: #9c27b0 !important; }

/* Background Animation */
@keyframes float-shape {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-15px) rotate(120deg); }
  66% { transform: translateY(-25px) rotate(240deg); }
  100% { transform: translateY(0px) rotate(360deg); }
}

/* Additional opacity classes for varied circle effects */
.bg-opacity-8 { --bs-bg-opacity: 0.08; }
.bg-opacity-6 { --bs-bg-opacity: 0.06; }
.bg-opacity-5 { --bs-bg-opacity: 0.05; }
.bg-opacity-4 { --bs-bg-opacity: 0.04; }

/* Pulse Ring Animation */
.pulse-ring-industries {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border: 2px solid rgba(255, 193, 7, 0.6);
  border-radius: 50px;
  animation: pulse-ring-industries 2s infinite;
}

@keyframes pulse-ring-industries {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

/* Responsive Design */
@media (max-width: 992px) {
  .d-flex.align-items-center {
    flex-direction: column;
  }
  
  .industry-card-modern {
    height: 120px;
    padding: 1rem 0.75rem;
  }
  
  .industry-icon-modern {
    font-size: 1.75rem;
  }
  
  .industry-name-modern {
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .industry-card-modern {
    height: 100px;
    padding: 0.75rem 0.5rem;
  }
  
  .industry-icon-modern {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  .industry-name-modern {
    font-size: 0.75rem;
  }
}