.about {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
  }
  
  .about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
      radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.15), transparent 40%),
      radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.1), transparent 40%);
    pointer-events: none;
  }
  
  .about::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233b82f6' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
  }
  
  .bg-primary-soft {
    background-color: rgba(59, 130, 246, 0.1);
  }
  
  .badge.bg-primary-soft {
    background: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
    font-weight: 500;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
  }
  
  .badge.bg-primary-soft:hover {
    background: rgba(59, 130, 246, 0.15);
    transform: translateY(-2px);
  }
  
  .section-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .section-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .image-wrapper {
    position: relative;
    z-index: 1;
    padding: 2rem;
  }
  
  .main-image {
    position: relative;
    z-index: 2;
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: all 0.5s ease;
    border-radius: 20px;
    transform: perspective(1000px) rotateY(-5deg);
  }
  
  .main-image:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-10px);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.6);
  }
  
  .floating-shape {
    position: absolute;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.1), rgba(96, 165, 250, 0.1));
    backdrop-filter: blur(10px);
    z-index: 1;
    border: 1px solid rgba(59, 130, 246, 0.1);
  }
  
  .shape-1 {
    width: 180px;
    height: 180px;
    top: -30px;
    right: -30px;
    animation: float 8s ease-in-out infinite;
  }
  
  .shape-2 {
    width: 120px;
    height: 120px;
    bottom: 30px;
    left: -40px;
    animation: float 10s ease-in-out infinite;
  }
  
  .floating-card {
    transition: all 0.3s ease;
    z-index: 10;
    min-width: 200px;
  }
  
  .floating-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }
  
  .card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
  }
  
  .stats-number {
    font-size: 1.75rem;
    line-height: 1;
    margin-bottom: 0.25rem;
  }
  
  .stats-text {
    font-size: 0.875rem;
    opacity: 0.8;
  }
  
  .feature-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
  }
  
  .feature-card:hover::before {
    opacity: 1;
  }
  
  .feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  
  .feature-card:hover .feature-icon {
    transform: scale(1.1);
    background: rgba(59, 130, 246, 0.2);
  }
  
  .feature-icon i {
    font-size: 1.5rem;
  }
  
  .testimonial-item {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .testimonial-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }
  
  .testimonial-item:hover::before {
    opacity: 1;
  }
  
  .client-img-wrapper {
    position: relative;
  }
  
  .status-indicator {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12px;
    height: 12px;
    background-color: #10B981;
    border: 2px solid #0f172a;
    border-radius: 50%;
  }
  
  .btn-light.btn-opacity-10 {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transition: all 0.3s ease;
  }
  
  .btn-light.btn-opacity-10:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
  }
  
  @keyframes float {
    0%, 100% {
      transform: translateY(0) rotate(0deg) scale(1);
    }
    50% {
      transform: translateY(-20px) rotate(5deg) scale(1.05);
    }
  }
  
  @media (max-width: 991.98px) {
    .about {
      padding: 80px 0;
    }
    
    .section-title {
      font-size: 2rem;
    }
    
    .main-image {
      transform: none;
    }
    
    .main-image:hover {
      transform: translateY(-5px);
    }
    
    .floating-shape {
      display: none;
    }
  }