/* Hero Section with Particles */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
}

#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.3), transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(138, 35, 135, 0.3), transparent 50%);
  z-index: 1;
}

.animated-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.5;
  animation: blob 7s infinite;
}

.blob-1 {
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.3);
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: rgba(138, 35, 135, 0.4);
  bottom: 10%;
  right: 15%;
  animation-delay: 2s;
}

.blob-3 {
  width: 250px;
  height: 250px;
  background: rgba(240, 147, 251, 0.3);
  top: 50%;
  right: 30%;
  animation-delay: 4s;
}

@keyframes blob {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -50px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  animation: fadeInUp 1.2s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  animation: fadeInUp 1s ease 0.4s backwards;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-title .gradient-text {
  background: linear-gradient(90deg, #fff, #f0f0f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  max-width: 650px;
  animation: fadeInUp 1s ease 0.6s backwards;
  line-height: 1.8;
}

.hero-cta {
  animation: fadeInUp 1s ease 0.8s backwards;
}

.btn-primary-hero {
  padding: 18px 45px;
  font-size: 1.1rem;
  border-radius: 50px;
  background: white;
  color: #667eea;
  border: none;
  font-weight: 700;
  transition: all 0.4s ease;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary-hero::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;
}

.btn-primary-hero:hover::before {
  left: 100%;
}

.btn-primary-hero:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  color: #667eea;
}

.btn-outline-hero {
  background: transparent;
  color: white;
  border: 2px solid white;
  margin-left: 20px;
}

.btn-outline-hero:hover {
  background: white;
  color: #667eea;
  transform: translateY(-5px) scale(1.05);
}

.hero-image-wrapper {
  position: relative;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  transition: all 0.5s ease;
  /* Remove the perspective transform */
}

.hero-image:hover {
  transform: scale(1.05);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.5);
}

/* Animated Background Elements */
.floating-element {
  position: absolute;
  animation: floatRandom 15s infinite ease-in-out;
}

@keyframes floatRandom {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(50px, -30px) rotate(90deg);
  }
  50% {
    transform: translate(-30px, 40px) rotate(180deg);
  }
  75% {
    transform: translate(40px, 30px) rotate(270deg);
  }
}

/* Enhanced Features Section */
.features-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 10% 20%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(240, 147, 251, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 8px 25px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  color: #2d3748;
  margin-bottom: 20px;
  line-height: 1.3;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #718096;
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.8;
}

.feature-card {
  background: white;
  border-radius: 24px;
  padding: 45px 35px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  border: 1px solid rgba(102, 126, 234, 0.1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.05) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover::after {
  width: 500px;
  height: 500px;
}

.feature-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 
    0 20px 60px rgba(102, 126, 234, 0.15),
    0 0 0 1px rgba(102, 126, 234, 0.2);
  border-color: rgba(102, 126, 234, 0.3);
}

.feature-icon {
  width: 90px;
  height: 90px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  font-size: 2.8rem;
  position: relative;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 1;
}

/* Multi-Gradient Icon Backgrounds */
.feature-card:nth-child(1) .feature-icon {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.35);
}

.feature-card:nth-child(2) .feature-icon {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 50%, #30cfd0 100%);
  box-shadow: 0 12px 35px rgba(250, 112, 154, 0.35);
}

.feature-card:nth-child(3) .feature-icon {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 50%, #43e97b 100%);
  box-shadow: 0 12px 35px rgba(79, 172, 254, 0.35);
}

.feature-card:nth-child(4) .feature-icon {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 50%, #feca57 100%);
  box-shadow: 0 12px 35px rgba(240, 147, 251, 0.35);
}

.feature-icon i {
  color: white;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.feature-card:hover .feature-icon {
  transform: rotateY(360deg) scale(1.1);
  box-shadow: 0 18px 45px rgba(102, 126, 234, 0.45);
}

/* Icon Shine Effect */
.feature-icon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 70%
  );
  transform: rotate(45deg);
  transition: all 0.6s;
}

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

/* Icon Pulse Animation */
.feature-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 22px;
  background: inherit;
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: -1;
}

.feature-card:hover .feature-icon::after {
  animation: iconPulse 1.5s ease-out;
}

@keyframes iconPulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 16px;
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
}

.feature-card:hover h3 {
  color: #667eea;
}

.feature-card p {
  color: #718096;
  line-height: 1.8;
  margin-bottom: 0;
  font-size: 1.05rem;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.feature-card:hover p {
  color: #4a5568;
}

/* Floating particles effect */
.feature-card .floating-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
}

.feature-card:hover .floating-particle {
  animation: floatParticle 2s ease-out;
}

@keyframes floatParticle {
  0% {
    transform: translateY(0) scale(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) scale(1);
    opacity: 0;
  }
}

/* Staggered reveal animation */
.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;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .feature-card {
    padding: 40px 30px;
  }
  
  .feature-icon {
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .feature-card {
    padding: 35px 25px;
    margin-bottom: 20px;
  }
  
  .feature-icon {
    width: 70px;
    height: 70px;
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
  
  .feature-card h3 {
    font-size: 1.3rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
}

/* Services Grid */
/* Updated Services Section Styles */
.services-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 10% 20%, rgba(102, 126, 234, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(240, 147, 251, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.services-content {
  position: relative;
  z-index: 1;
}

.services-description {
  font-size: 1.1rem;
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 20px;
}

.services-stats {
  display: flex;
  gap: 40px;
  padding: 30px 0;
  border-top: 2px solid #e2e8f0;
  border-bottom: 2px solid #e2e8f0;
}

.stat-item {
  flex: 1;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(black);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.95rem;
  color: #718096;
  margin: 0;
}

/* New Service Cards Grid */
.services-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 10% 20%, rgba(102, 126, 234, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(240, 147, 251, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.services-content {
  position: relative;
  z-index: 1;
  padding-right: 20px;
}

.services-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 24px;
  line-height: 1.3;
}

.services-description {
  font-size: 1.05rem;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 18px;
}

.services-stats {
  display: flex;
  gap: 50px;
  padding: 25px 0;
  margin: 30px 0;
  border-top: 2px solid #e2e8f0;
  border-bottom: 2px solid #e2e8f0;
}

.stat-item {
  flex: 1;
}

/* .stat-value {
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 5px;
  line-height: 1;
} */

.stat-label {
  font-size: 0.9rem;
  color: #718096;
  margin: 0;
  font-weight: 500;
}

/* New Service Cards Grid */
.services-grid {
  position: relative;
  z-index: 1;
}

.service-card-new {
  background: white;
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  border: 2px solid rgba(102, 126, 234, 0.08);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.service-card-new:hover::before {
  opacity: 1;
}

.service-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
  border-color: #667eea;
}

.service-icon-new {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.6rem;
  color: white;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.25);
}

.service-card-new:hover .service-icon-new {
  background: white;
  color: #667eea;
  transform: scale(1.08) rotate(5deg);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

.service-card-new h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 10px;
  transition: color 0.4s ease;
  position: relative;
  z-index: 1;
  line-height: 1.3;
}

.service-card-new:hover h4 {
  color: white;
}

.service-card-new p {
  font-size: 0.92rem;
  color: #718096;
  line-height: 1.6;
  margin-bottom: 14px;
  transition: color 0.4s ease;
  position: relative;
  z-index: 1;
}

.service-card-new:hover p {
  color: rgba(255, 255, 255, 0.9);
}

.service-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #667eea;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.service-card-new:hover .service-arrow {
  background: white;
  transform: translateX(4px);
}

.service-arrow i {
  transition: transform 0.3s ease;
}

.service-card-new:hover .service-arrow i {
  transform: translateX(2px);
}

/* Animation delays for staggered reveal */
.services-grid .row:nth-child(1) {
  animation-delay: 0.1s;
}

.services-grid .row:nth-child(2) {
  animation-delay: 0.2s;
}

/* Responsive Design */
@media (max-width: 991px) {
  .services-content {
    text-align: center;
    padding-right: 0;
    margin-bottom: 40px;
  }
  
  .services-stats {
    justify-content: center;
  }
  
  .services-grid {
    max-width: 650px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 70px 0;
  }
  
  .services-title {
    font-size: 1.8rem;
  }
  
  .services-stats {
    gap: 30px;
    padding: 20px 0;
    margin: 25px 0;
  }
  
  .stat-value {
    font-size: 1.9rem;
  }
  
  .service-card-new {
    padding: 28px 24px;
    margin-bottom: 15px;
  }
  
  .service-icon-new {
    width: 56px;
    height: 56px;
    font-size: 1.4rem;
  }
  
  .service-card-new h4 {
    font-size: 1.1rem;
  }
  
  .service-card-new p {
    font-size: 0.88rem;
  }
}

@media (max-width: 576px) {
  .services-title {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
  
  .services-description {
    font-size: 0.98rem;
  }
  
  .services-stats {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

/* Stats Section */
.stats-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>');
  opacity: 0.3;
}

.stat-card {
  text-align: center;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.stat-card:hover {
  transform: translateY(-10px) scale(1.05);
  background: rgba(255, 255, 255, 0.2);
}

.stat-number {
  font-size: 4rem;
  font-weight: 800;
  color: white;
  margin-bottom: 10px;
  display: block;
}

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

.stat-icon {
  font-size: 3rem;
  color: white;
  margin-bottom: 20px;
  opacity: 0.8;
}

/* Pricing Section */
.pricing-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.pricing-card {
  background: white;
  border-radius: 25px;
  padding: 50px 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  position: relative;
  border: 2px solid transparent;
}

.pricing-card.featured {
  border-color: #667eea;
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
}

.featured-badge {
  position: absolute;
  top: -15px;
  right: 40px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 8px 25px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.pricing-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 15px;
}

.pricing-price {
  font-size: 3.5rem;
  font-weight: 800;
  color: #667eea;
  margin: 25px 0;
}

.pricing-price span {
  font-size: 1.2rem;
  font-weight: 500;
  color: #718096;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.pricing-features li {
  padding: 15px 0;
  color: #4a5568;
  font-size: 1.05rem;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li i {
  color: #667eea;
  margin-right: 12px;
  font-size: 1.2rem;
}

.pricing-features li.disabled {
  color: #cbd5e0;
}

.pricing-features li.disabled i {
  color: #cbd5e0;
}

.btn-pricing {
  width: 100%;
  padding: 15px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid #667eea;
  background: transparent;
  color: #667eea;
}

.btn-pricing:hover {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.pricing-card.featured .btn-pricing {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border: none;
}

/* Testimonials */
.testimonials-section {
  padding: 100px 0;
  background: white;
}

.testimonial-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 25px;
  padding: 45px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  border: 2px solid transparent;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  border-color: #667eea;
}

.quote-icon {
  font-size: 3rem;
  color: #667eea;
  opacity: 0.3;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 1.15rem;
  color: #4a5568;
  line-height: 1.9;
  margin-bottom: 30px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-image {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-right: 20px;
  border: 3px solid #667eea;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  font-size: 2.5rem;
}

.author-info h5 {
  margin: 0 0 5px 0;
  font-weight: 700;
  color: #2d3748;
  font-size: 1.1rem;
}

.author-info p {
  margin: 0;
  color: #718096;
}

.rating {
  color: #fbbf24;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

/* CTA Section */
.cta-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
  animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 25px;
}

.cta-section p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .btn-outline-hero {
    margin-left: 0;
    margin-top: 15px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .slider-image {
    height: 400px;
  }
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.position-relative:hover .image-overlay {
  opacity: 1;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Products Section Styles */
.products-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 10% 20%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(240, 147, 251, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.products-slider {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

.products-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card {
  flex: 0 0 calc(33.333% - 20px);
  background: white;
  border-radius: 24px;
  padding: 45px 35px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(102, 126, 234, 0.1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-card:hover {
  transform: translateY(-12px);
  box-shadow: 
    0 20px 60px rgba(102, 126, 234, 0.15),
    0 0 0 1px rgba(102, 126, 234, 0.2);
  border-color: rgba(102, 126, 234, 0.3);
}

.product-image-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  margin: 0 auto 28px;
  overflow: hidden;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 5px;
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.25);
  transition: all 0.5s ease;
  position: relative;
}

.product-image-circle::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 70%
  );
  transform: rotate(45deg);
  transition: all 0.6s;
}

.product-card:hover .product-image-circle::before {
  left: 100%;
}

.product-image-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image-circle {
  transform: scale(1.08);
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.35);
}

.product-card:hover .product-image-circle img {
  transform: scale(1.1);
}

.product-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 16px;
  transition: color 0.3s ease;
}

.product-card:hover .product-title {
  color: #667eea;
}

.product-description {
  font-size: 1rem;
  color: #718096;
  line-height: 1.7;
  margin: 0;
  transition: color 0.3s ease;
}

.product-card:hover .product-description {
  color: #4a5568;
}

/* Navigation Buttons */
.product-slider-prev,
.product-slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: white;
  border: 2px solid #667eea;
  color: #667eea;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease;
  z-index: 10;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

.product-slider-prev {
  left: -25px;
}

.product-slider-next {
  right: -25px;
}

.product-slider-prev:hover,
.product-slider-next:hover {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.35);
}

.product-slider-prev:disabled,
.product-slider-next:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  background: #f8f9fa;
  border-color: #e2e8f0;
  color: #cbd5e0;
}

.product-slider-prev:disabled:hover,
.product-slider-next:disabled:hover {
  transform: translateY(-50%);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

/* Responsive Design */
@media (max-width: 992px) {
  .product-card {
    flex: 0 0 calc(50% - 15px);
  }
  
  .product-image-circle {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 768px) {
  .products-section {
    padding: 70px 0 !important;
  }
  
  .product-card {
    flex: 0 0 100%;
    padding: 40px 30px;
  }
  
  .product-image-circle {
    width: 160px;
    height: 160px;
  }
  
  .product-slider-prev {
    left: 10px;
  }
  
  .product-slider-next {
    right: 10px;
  }
  
  .product-slider-prev,
  .product-slider-next {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
}

/* ===== PROCESS/HOW WE WORK SECTION ===== */
.process-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 10% 20%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(240, 147, 251, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

/* Main Container */
.process-container {
  display: grid;
  grid-template-columns: 300px 1.5fr;
  gap: 50px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
  margin-top: 50px;
}

/* ===== LEFT SIDE - COMPACT BOX CARDS ===== */
.process-cards-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.process-card-box {
  background: white;
  border-radius: 14px;
  padding: 20px 18px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 2px solid #e2e8f0;
  cursor: pointer;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.process-card-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.process-card-box:hover {
  transform: translateY(-5px);
  border-color: #667eea;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.12);
}

.process-card-box:hover::before {
  transform: scaleX(1);
}

.process-card-box.active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-color: #667eea;
  color: white;
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.25);
  transform: scale(1.03);
}

/* Card Icon */
.card-box-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.6rem;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(102, 126, 234, 0.2);
}

.process-card-box.active .card-box-icon {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.process-card-box:hover .card-box-icon {
  transform: scale(1.08) rotate(-5deg);
}

/* Card Text */
.process-card-box h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2d3748;
  margin: 0 0 6px 0;
  transition: color 0.3s ease;
}

.process-card-box.active h3 {
  color: white;
}

.process-card-box p {
  font-size: 0.8rem;
  color: #718096;
  margin: 0;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.process-card-box.active p {
  color: rgba(255, 255, 255, 0.85);
}

/* ===== PROCESS SECTION BASE STYLES ===== */
.process-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.process-container {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 50px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== LEFT SIDE - PROCESS CARDS ===== */
.process-cards-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 100px;
}

.process-card-box {
  background: white;
  border-radius: 16px;
  padding: 20px 18px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: flex;
  align-items: center;
  gap: 16px;
}

.process-card-box:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.process-card-box.active {
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-color: #667eea;
  transform: translateX(8px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.card-box-icon {
  flex-shrink: 0;
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #f5f7fa, #e8ecf1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #667eea;
  transition: all 0.3s ease;
}

.process-card-box.active .card-box-icon {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.process-card-box h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2d3748;
  margin: 0 0 4px 0;
  transition: color 0.3s ease;
}

.process-card-box.active h3 {
  color: white;
}

.process-card-box p {
  font-size: 0.85rem;
  color: #718096;
  margin: 0;
  transition: color 0.3s ease;
}

.process-card-box.active p {
  color: rgba(255, 255, 255, 0.9);
}

/* ===== RIGHT SIDE - IMAGE SLIDER ===== */
.process-images-container {
  position: relative;
  height: 710px;
}

.process-image-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.process-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: translateX(50px);
}

.process-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Slide Image Wrapper */
.slide-image-wrapper {
  position: relative;
  width: 100%;
  height: 65%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
  margin-bottom: 20px;
}

.slide-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.process-slide.active .slide-image-wrapper img {
  transform: scale(1.05);
}

/* Slide Content */
.slide-content {
  background: white;
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  height: auto;
  min-height: 180px;
  display: flex;
  flex-direction: column;
}

.slide-content h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2d3748;
  margin: 0 0 12px 0;
}

.slide-content p {
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.6;
  margin: 0 0 16px 0;
}

.slide-details {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.slide-details li {
  font-size: 0.85rem;
  color: white;
  background: linear-gradient(135deg, #667eea, #764ba2);
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 500;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Large Desktop (1400px and up) - Default styles apply */

/* Desktop (1200px - 1399px) */
@media (max-width: 1399px) {
  .process-container {
    grid-template-columns: 300px 1fr;
    gap: 40px;
  }
  
  .process-images-container {
    height: 680px;
  }
}

/* Laptop (992px - 1199px) */
@media (max-width: 1199px) {
  .process-section {
    padding: 80px 0;
  }
  
  .process-container {
    grid-template-columns: 280px 1fr;
    gap: 35px;
  }
  
  .process-cards-container {
    top: 80px;
  }
  
  .process-card-box {
    padding: 18px 16px;
  }
  
  .card-box-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .process-card-box h3 {
    font-size: 1.05rem;
  }
  
  .process-card-box p {
    font-size: 0.8rem;
  }
  
  .process-images-container {
    height: 650px;
  }
  
  .slide-content h4 {
    font-size: 1.2rem;
  }
  
  .slide-content p {
    font-size: 0.9rem;
  }
}

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
  .process-section {
    padding: 70px 0;
  }
  
  .process-container {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 700px;
  }
  
  .process-cards-container {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    max-width: 100%;
  }
  
  .process-card-box {
    flex-direction: column;
    text-align: center;
    padding: 18px 14px;
  }
  
  .process-card-box:hover {
    transform: translateY(-4px);
  }
  
  .process-card-box.active {
    transform: translateY(-4px);
  }
  
  .card-box-icon {
    margin-bottom: 8px;
  }
  
  .process-card-box h3 {
    font-size: 1rem;
  }
  
  .process-card-box p {
    font-size: 0.8rem;
  }
  
  .process-images-container {
    height: 600px;
    max-width: 100%;
  }
  
  .slide-image-wrapper {
    height: 60%;
    margin-bottom: 18px;
  }
  
  .slide-content {
    padding: 20px;
    min-height: 160px;
  }
  
  .slide-content h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
  }
  
  .slide-content p {
    font-size: 0.88rem;
    margin-bottom: 14px;
  }
  
  .slide-details li {
    font-size: 0.8rem;
    padding: 7px 14px;
  }
}

/* Mobile Landscape (576px - 767px) */
@media (max-width: 767px) {
  .process-section {
    padding: 60px 0;
  }
  
  .process-container {
    gap: 35px;
  }
  
  .process-cards-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .process-card-box {
    padding: 16px 12px;
  }
  
  .card-box-icon {
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
    margin-bottom: 8px;
  }
  
  .process-card-box h3 {
    font-size: 0.95rem;
    margin-bottom: 4px;
  }
  
  .process-card-box p {
    font-size: 0.75rem;
  }
  
  .process-images-container {
    height: 550px;
  }
  
  .slide-image-wrapper {
    height: 58%;
    margin-bottom: 16px;
    border-radius: 14px;
  }
  
  .slide-content {
    padding: 18px;
    min-height: 150px;
    border-radius: 12px;
  }
  
  .slide-content h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  
  .slide-content p {
    font-size: 0.85rem;
    margin-bottom: 12px;
  }
  
  .slide-details {
    gap: 8px;
  }
  
  .slide-details li {
    font-size: 0.75rem;
    padding: 6px 12px;
  }
}

/* Mobile Portrait (480px - 575px) */
@media (max-width: 575px) {
  .process-section {
    padding: 50px 0;
  }
  
  .process-container {
    gap: 30px;
  }
  
  .process-cards-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .process-card-box {
    padding: 14px 10px;
  }
  
  .card-box-icon {
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
    margin-bottom: 6px;
  }
  
  .process-card-box h3 {
    font-size: 0.9rem;
    margin-bottom: 3px;
  }
  
  .process-card-box p {
    font-size: 0.7rem;
  }
  
  .process-images-container {
    height: 500px;
  }
  
  .slide-image-wrapper {
    height: 55%;
    margin-bottom: 14px;
    border-radius: 12px;
  }
  
  .slide-content {
    padding: 16px;
    min-height: 140px;
  }
  
  .slide-content h4 {
    font-size: 1.05rem;
    margin-bottom: 8px;
  }
  
  .slide-content p {
    font-size: 0.82rem;
    line-height: 1.5;
    margin-bottom: 10px;
  }
  
  .slide-details {
    gap: 6px;
  }
  
  .slide-details li {
    font-size: 0.72rem;
    padding: 5px 10px;
  }
}

/* Small Mobile (375px - 479px) */
@media (max-width: 479px) {
  .process-section {
    padding: 45px 0;
  }
  
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .process-container {
    gap: 25px;
  }
  
  .process-cards-container {
    gap: 8px;
  }
  
  .process-card-box {
    padding: 12px 8px;
  }
  
  .card-box-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    margin-bottom: 6px;
    border-radius: 10px;
  }
  
  .process-card-box h3 {
    font-size: 0.85rem;
  }
  
  .process-card-box p {
    font-size: 0.68rem;
  }
  
  .process-images-container {
    height: 480px;
  }
  
  .slide-image-wrapper {
    height: 52%;
    margin-bottom: 12px;
  }
  
  .slide-content {
    padding: 14px;
    min-height: 130px;
  }
  
  .slide-content h4 {
    font-size: 1rem;
    margin-bottom: 8px;
  }
  
  .slide-content p {
    font-size: 0.8rem;
    margin-bottom: 10px;
  }
  
  .slide-details li {
    font-size: 0.7rem;
    padding: 5px 9px;
  }
}

/* Extra Small Mobile (below 375px) */
@media (max-width: 374px) {
  .process-section {
    padding: 40px 0;
  }
  
  .process-cards-container {
    gap: 8px;
  }
  
  .process-card-box {
    padding: 10px 8px;
  }
  
  .card-box-icon {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }
  
  .process-card-box h3 {
    font-size: 0.8rem;
  }
  
  .process-card-box p {
    font-size: 0.65rem;
  }
  
  .process-images-container {
    height: 450px;
  }
  
  .slide-image-wrapper {
    height: 50%;
  }
  
  .slide-content {
    padding: 12px;
    min-height: 120px;
  }
  
  .slide-content h4 {
    font-size: 0.95rem;
    margin-bottom: 6px;
  }
  
  .slide-content p {
    font-size: 0.78rem;
    margin-bottom: 8px;
  }
  
  .slide-details {
    gap: 5px;
  }
  
  .slide-details li {
    font-size: 0.68rem;
    padding: 4px 8px;
  }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  .process-card-box,
  .process-slide,
  .slide-image-wrapper img {
    transition: none;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .process-card-box {
    -webkit-tap-highlight-color: transparent;
  }
  
  .process-card-box:active {
    transform: scale(0.98);
  }
}