/* Modern Custom Styles */
:root {
  --gradient-primary: linear-gradient(135deg, var(--bs-primary) 0%, #1f2a2e 100%);
  --gradient-overlay: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, #c1ff2e 100%);
}

/* Glassmorphism Effect */
.glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
}

/* Modern Banner with Gradient Overlay */
.banner-modern {
  position: relative;
  min-height: 60vh;
  background-size: cover;
  background-position: center;
}

.banner-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-overlay);
  z-index: 1;
}

.banner-modern .container {
  position: relative;
  z-index: 2;
}

/* Product Card Modern */
.product-card-modern {
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.product-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  height: 400px;
}

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

.product-card-modern:hover .product-image-wrapper img {
  transform: scale(1.08);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product-card-modern:hover .product-overlay {
  opacity: 1;
}

/* Modern Badge */
.badge-modern {
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 500;
  font-size: 13px;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ec 100%);
  border: 1px solid #d1d9e0;
  color: #2d3748;
  transition: all 0.3s ease;
}

.badge-modern:hover {
  background: var(--gradient-primary);
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
}

/* Modern Button */
.btn-modern {
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-modern::before {
  content: '';
  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-modern:hover::before {
  width: 300px;
  height: 300px;
}

/* Floating Animation */
@keyframes float {

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

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

.animate-float {
  animation: float 6s ease-in-out infinite;
}

/* Tech Stack Grid */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.tech-item {
  padding: 24px;
  background: white;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid #f0f0f0;
}

.tech-item:hover {
  transform: translateY(-5px);
  border-color: var(--bs-primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Stats Counter */
.stat-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  border: 2px solid #f0f0f0;
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: var(--bs-primary);
  transform: translateY(-5px);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* CTA Section Modern */
.cta-modern {
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.cta-modern::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: -250px;
  right: -250px;
}

.cta-modern::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  bottom: -150px;
  left: -150px;
}

/* Product Content Wrapper */
.product-content {
  padding: 40px;
}

.product-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 16px;
  line-height: 1.2;
}

.product-description {
  font-size: 1.1rem;
  color: #718096;
  line-height: 1.8;
  margin-bottom: 24px;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  color: var(--bs-primary);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 16px;
}

.section-description {
  font-size: 1.1rem;
  color: #718096;
  max-width: 600px;
  margin: 0 auto;
}

.bg-light-gray {
  background: #f5f7fa;
}

.process-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.process-card h4 {
  color: #1c1c1c;
  font-weight: 600;
  margin-bottom: 12px;
}

.process-card p {
  color: #6c757d;
  margin: 0;
}

/* Step Label */
.step-number {
  font-size: 13px;
  font-weight: 700;
  color: var(--bs-primary);
  margin-bottom: 10px;
  letter-spacing: 1px;
}

/* Hover Effect */
.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--bs-primary);
}

/* Hover Title Color */
.process-card:hover h4 {
  color: var(--bs-primary);
}

