/*
 * AILA Tech Bundled CSS File
 * Generated: 2026-01-24 11:15:23
 * 
 * This file combines multiple CSS files into one for better performance.
 * Do not edit directly - edit source files and re-run merge_assets.py
 */


/* ========== modern-service-cards.css ========== */
/* 🎨 Premium Modern Service Cards Redesign for AILA Tech
 * Beautiful, engaging, and professional card design with icons
 * All CSS in static files - no inline styles
 */

/* ============================================
   PAGE LAYOUT - Navbar & Footer Spacing
   ============================================ */
body.services-page #main-content,
body.main-services #main-content {
  padding-top: 0;
  margin-top: 0;
  min-height: calc(100vh - 200px);
}

/* Ensure services section doesn't overlap with navbar */
.pricing-plans {
  scroll-margin-top: 100px; /* For anchor links */
}

/* ============================================
   GRID LAYOUT - Proper Spacing with Navbar & Footer
   ============================================ */
.pricing-plans {
  padding: 5rem 0 6rem;
  background: linear-gradient(to bottom, #F8FAFC 0%, #FFFFFF 100%);
  min-height: calc(100vh - 400px); /* Account for navbar and footer */
  position: relative;
  margin: 0;
  width: 100%;
  box-sizing: border-box;
}

/* Ensure proper spacing from navbar */
#main-content {
  padding-top: 0;
  margin-top: 0;
}

/* Decorative background pattern */
.pricing-plans::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(16, 185, 129, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* Container for proper alignment */
.pricing-plans .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
  width: 100%;
  box-sizing: border-box;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2.5rem;
  padding: 0;
  margin: 0;
  width: 100%;
  position: relative;
  z-index: 1;
}

@media (max-width: 1200px) {
  .pricing-plans .container {
    padding: 0 1.5rem;
  }
  
  .pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .pricing-plans {
    padding: 3rem 0 4rem;
    min-height: auto;
  }
  
  .pricing-plans .container {
    padding: 0 1rem;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0;
  }
}

@media (max-width: 480px) {
  .pricing-plans {
    padding: 2rem 0 3rem;
  }
  
  .pricing-plans .container {
    padding: 0 0.75rem;
  }
}

/* ============================================
   PREMIUM CARD DESIGN
   ============================================ */
.pricing-card {
  position: relative;
  background: #FFFFFF;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.04),
    0 0 0 1px rgba(226, 232, 240, 0.5);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  isolation: isolate;
  font-family: 'Noto Sans Lao', 'Phetsarath OT', 'Saysettha OT', 'Plus Jakarta Sans', sans-serif;
  cursor: pointer;
  border: 2px solid transparent;
}

/* Decorative background pattern */
.pricing-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.04) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
  z-index: 0;
}

/* Top accent bar with gradient - always visible */
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #2563EB 0%, #3B82F6 50%, #60A5FA 100%);
  z-index: 10;
  transform: scaleX(1);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

/* Hover effect - enhanced */
.pricing-card:hover {
  transform: translateY(-16px) scale(1.04);
  box-shadow: 
    0 48px 96px -16px rgba(37, 99, 235, 0.25),
    0 24px 48px -8px rgba(37, 99, 235, 0.18),
    0 0 0 2px rgba(37, 99, 235, 0.15);
  border-color: rgba(37, 99, 235, 0.2);
}

.pricing-card:hover::after {
  opacity: 1;
}

.pricing-card:hover::before {
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.4);
  height: 8px;
}

/* Card variants with distinct colors */
.pricing-card.basic {
  border-top: 6px solid #2563EB;
}

.pricing-card.basic::before {
  background: linear-gradient(90deg, #2563EB 0%, #3B82F6 50%, #60A5FA 100%);
}

.pricing-card.lite {
  border-top: 6px solid #10B981;
  box-shadow: 
    0 12px 48px rgba(16, 185, 129, 0.18),
    0 6px 20px rgba(16, 185, 129, 0.12),
    0 0 0 1px rgba(16, 185, 129, 0.3);
  position: relative;
}

.pricing-card.lite::before {
  background: linear-gradient(90deg, #10B981 0%, #059669 50%, #0D9488 100%);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
}

.pricing-card.lite::after {
  background: 
    radial-gradient(circle at 20% 30%, rgba(16, 185, 129, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(5, 150, 105, 0.06) 0%, transparent 50%);
}

.pricing-card.lite:hover {
  box-shadow: 
    0 56px 112px -16px rgba(16, 185, 129, 0.3),
    0 28px 56px -8px rgba(16, 185, 129, 0.25),
    0 0 0 2px rgba(16, 185, 129, 0.2);
  border-color: rgba(16, 185, 129, 0.25);
}

.pricing-card.lite:hover::before {
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.5);
  height: 8px;
}

/* ============================================
   CARD HEADER - Enhanced with Icon Area
   ============================================ */
.pricing-card-header {
  position: relative;
  padding: 2.5rem 2rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, #FAFBFC 0%, #FFFFFF 50%, #F8FAFC 100%);
  border-bottom: 1px solid rgba(226, 232, 240, 0.4);
  z-index: 1;
  overflow: hidden;
}

/* Icon container - decorative background */
.pricing-card-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  transition: all 0.6s ease;
}

.pricing-card.lite .pricing-card-header::before {
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
}

.pricing-card:hover .pricing-card-header::before {
  transform: scale(1.5);
  opacity: 0.6;
}

/* Recommended badge - premium design with animation */
.pricing-plan-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: white;
  padding: 0.625rem 1.25rem;
  border-radius: 28px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 
    0 6px 20px rgba(16, 185, 129, 0.4),
    0 3px 10px rgba(16, 185, 129, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  z-index: 5;
  font-family: 'Noto Sans Lao', 'Phetsarath OT', 'Saysettha OT', 'Plus Jakarta Sans', sans-serif;
  animation: badgePulse 3s ease-in-out infinite;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes badgePulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 
      0 6px 20px rgba(16, 185, 129, 0.4),
      0 3px 10px rgba(16, 185, 129, 0.25),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 
      0 8px 24px rgba(16, 185, 129, 0.5),
      0 4px 12px rgba(16, 185, 129, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
}

/* Service title - larger and bolder */
.pricing-plan-name {
  font-size: 1.875rem;
  font-weight: 800;
  color: #0F172A;
  margin: 0 0 1.25rem 0;
  line-height: 1.2;
  font-family: 'Noto Sans Lao', 'Phetsarath OT', 'Saysettha OT', 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.03em;
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.pricing-card.lite .pricing-plan-name {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2rem;
}

/* Price section - enhanced badge design */
.pricing-plan-price {
  margin: 0.75rem 0;
  position: relative;
  z-index: 2;
}

.pricing-plan-price .amount {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-family: 'Noto Sans Lao', 'Phetsarath OT', 'Saysettha OT', 'Plus Jakarta Sans', sans-serif;
  padding: 0.5rem 1.125rem;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(59, 130, 246, 0.08) 100%);
  border-radius: 16px;
  display: inline-block;
  border: 1px solid rgba(37, 99, 235, 0.15);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.1);
  transition: all 0.3s ease;
}

.pricing-card:hover .pricing-plan-price .amount {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(59, 130, 246, 0.12) 100%);
  border-color: rgba(37, 99, 235, 0.25);
  transform: scale(1.05);
}

.pricing-card.lite .pricing-plan-price .amount {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.12) 100%);
  border-color: rgba(16, 185, 129, 0.2);
  color: #059669;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.15);
}

.pricing-card.lite:hover .pricing-plan-price .amount {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(5, 150, 105, 0.15) 100%);
  border-color: rgba(16, 185, 129, 0.3);
}

/* Description - better typography */
.pricing-plan-description {
  margin-top: 1.5rem;
  color: #475569;
  font-size: 0.9375rem;
  line-height: 1.75;
  font-family: 'Noto Sans Lao', 'Phetsarath OT', 'Saysettha OT', 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  padding: 0 0.5rem;
  position: relative;
  z-index: 2;
}

/* ============================================
   FEATURES SECTION - Premium Design
   ============================================ */
.pricing-plan-features {
  flex: 1;
  padding: 2rem 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 1;
  position: relative;
  background: linear-gradient(to bottom, #FFFFFF 0%, #FAFBFC 100%);
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.8) 0%, rgba(241, 245, 249, 0.6) 100%);
  border-radius: 14px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1.5px solid transparent;
  position: relative;
  overflow: hidden;
}

.pricing-feature::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #10B981 0%, #059669 100%);
  transform: scaleY(0);
  transition: transform 0.4s ease;
  border-radius: 0 4px 4px 0;
}

.pricing-card:hover .pricing-feature {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.06) 0%, rgba(59, 130, 246, 0.04) 100%);
  border-color: rgba(37, 99, 235, 0.15);
  transform: translateX(6px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.08);
}

.pricing-card:hover .pricing-feature::before {
  transform: scaleY(1);
}

.pricing-card.lite:hover .pricing-feature {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(5, 150, 105, 0.06) 100%);
  border-color: rgba(16, 185, 129, 0.2);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.12);
}

.pricing-card.lite:hover .pricing-feature::before {
  background: linear-gradient(180deg, #10B981 0%, #059669 100%);
}

.pricing-feature i {
  color: #10B981;
  font-size: 1.375rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
  width: 26px;
  text-align: center;
  filter: drop-shadow(0 2px 4px rgba(16, 185, 129, 0.25));
  transition: all 0.3s ease;
}

.pricing-card:hover .pricing-feature i {
  transform: scale(1.15) rotate(5deg);
  filter: drop-shadow(0 4px 8px rgba(16, 185, 129, 0.35));
}

.pricing-card.lite .pricing-feature i {
  color: #059669;
}

.feature-content {
  flex: 1;
}

.feature-name {
  color: #334155;
  font-size: 0.9375rem;
  line-height: 1.65;
  font-weight: 500;
  font-family: 'Noto Sans Lao', 'Phetsarath OT', 'Saysettha OT', 'Plus Jakarta Sans', sans-serif;
  transition: all 0.3s ease;
}

.pricing-card:hover .feature-name {
  color: #1E293B;
  font-weight: 600;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.pricing-card {
  animation: cardFadeIn 0.9s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.pricing-card:nth-child(1) {
  animation-delay: 0.1s;
}

.pricing-card:nth-child(2) {
  animation-delay: 0.2s;
}

.pricing-card:nth-child(3) {
  animation-delay: 0.3s;
}

.pricing-card:nth-child(4) {
  animation-delay: 0.4s;
}

.pricing-card:nth-child(5) {
  animation-delay: 0.5s;
}

.pricing-card:nth-child(6) {
  animation-delay: 0.6s;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .pricing-card-header {
    padding: 2rem 1.5rem 1.5rem;
  }

  .pricing-plan-name {
    font-size: 1.625rem;
  }

  .pricing-card.lite .pricing-plan-name {
    font-size: 1.75rem;
  }

  .pricing-plan-features {
    padding: 1.5rem 1.5rem 2rem;
    gap: 0.875rem;
  }

  .pricing-feature {
    padding: 0.875rem 1rem;
  }

  .pricing-plan-badge {
    top: 1rem;
    right: 1rem;
    font-size: 0.6875rem;
    padding: 0.5rem 1rem;
  }
}

@media (max-width: 480px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .pricing-card {
    border-radius: 28px;
  }
}

/* ============================================
   PAGINATION STYLES - Proper Spacing
   ============================================ */
.pricing-pagination {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 4rem;
  padding: 2.5rem 0 1rem;
  width: 100%;
  box-sizing: border-box;
}

.pricing-pagination.visible {
  display: flex;
}

@media (max-width: 768px) {
  .pricing-pagination {
    margin-top: 3rem;
    padding: 2rem 0 0.5rem;
    gap: 1rem;
    flex-wrap: wrap;
  }
}

.pagination-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 1.75rem;
  background: #FFFFFF;
  border: 2px solid #E2E8F0;
  border-radius: 14px;
  color: #475569;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Noto Sans Lao', 'Phetsarath OT', 'Saysettha OT', 'Plus Jakarta Sans', sans-serif;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.pagination-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #2563EB 0%, #3B82F6 100%);
  color: white;
  border-color: #2563EB;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

.pagination-btn:active:not(:disabled) {
  transform: translateY(-1px);
}

.pagination-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.pagination-info {
  color: #64748B;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Noto Sans Lao', 'Phetsarath OT', 'Saysettha OT', 'Plus Jakarta Sans', sans-serif;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(59, 130, 246, 0.06) 100%);
  border-radius: 12px;
  border: 1px solid rgba(37, 99, 235, 0.1);
}

/* ============================================
   LOADING STATE
   ============================================ */
.pricing-grid .loading-wrapper {
  grid-column: 1 / -1;
  text-align: center;
  padding: 6rem 1.25rem;
}

.pricing-grid .loading-container {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.pricing-grid .loading-spinner {
  position: relative;
  width: 72px;
  height: 72px;
}

.pricing-grid .loading-spinner > div:first-child {
  position: absolute;
  inset: 0;
  border: 5px solid rgba(37, 99, 235, 0.1);
  border-radius: 50%;
}

.pricing-grid .loading-spinner > div:nth-child(2) {
  position: absolute;
  inset: 0;
  border: 5px solid transparent;
  border-top-color: #2563EB;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.pricing-grid .loading-spinner > div:nth-child(3) {
  position: absolute;
  inset: 10px;
  border: 4px solid transparent;
  border-top-color: #3B82F6;
  border-radius: 50%;
  animation: spin 0.8s linear infinite reverse;
}

.pricing-grid .loading-container p:first-of-type {
  color: #1E293B;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: 'Noto Sans Lao', 'Phetsarath OT', 'Saysettha OT', 'Plus Jakarta Sans', sans-serif;
}

.pricing-grid .loading-container p:last-of-type {
  color: #64748B;
  font-size: 0.9375rem;
  font-family: 'Noto Sans Lao', 'Phetsarath OT', 'Saysettha OT', 'Plus Jakarta Sans', sans-serif;
}

/* Initial loading message */
.pricing-grid > p {
  text-align: center;
  color: #64748B;
  font-size: 1.0625rem;
  padding: 3rem 0;
  font-family: 'Noto Sans Lao', 'Phetsarath OT', 'Saysettha OT', 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}


/* ========== enhanced-service-cards.css ========== */
/* 🎨 Enhanced Beautiful Service Cards for AILA Tech */

/* ===== BEAUTIFUL GRADIENT CARD SYSTEM ===== */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 50px;
  padding: 60px 0;
  position: relative;
}

/* Background Pattern */
.solutions-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(29, 78, 216, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(16, 185, 129, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

/* ===== ENHANCED CARD DESIGN ===== */
.solution-card {
  position: relative;
  height: auto;
  min-height: 600px;
  opacity: 0;
  transform: translateY(40px) rotateX(10deg);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  perspective: 1000px;
}

.solution-card.animate-in {
  opacity: 1;
  transform: translateY(0) rotateX(0deg);
}

.solution-card:nth-child(odd) {
  animation-delay: 0.1s;
}

.solution-card:nth-child(even) {
  animation-delay: 0.2s;
}

/* ===== CARD INNER WITH GLASSMORPHISM ===== */
.solution-card-inner {
  position: relative;
  background: linear-gradient(145deg, 
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 255, 255, 0.8) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
  transform-style: preserve-3d;
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.1),
    0 2px 8px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.solution-card:hover .solution-card-inner {
  transform: translateY(-15px) rotateY(5deg) scale(1.03);
  box-shadow: 
    0 25px 80px rgba(0, 0, 0, 0.15),
    0 10px 30px rgba(59, 130, 246, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

/* ===== DYNAMIC GRADIENT HEADERS ===== */
.solution-header {
  position: relative;
  height: 160px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

/* Different gradient themes for each service */
.solution-card:nth-child(1) .solution-header {
  background: linear-gradient(135deg, #1E40AF 0%, #2563EB 50%, #1D4ED8 100%);
}

.solution-card:nth-child(2) .solution-header {
  background: linear-gradient(135deg, #10b981 0%, #059669 50%, #0d9488 100%);
}

.solution-card:nth-child(3) .solution-header {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 50%, #dc2626 100%);
}

.solution-card:nth-child(4) .solution-header {
  background: linear-gradient(135deg, #1E40AF 0%, #2563EB 50%, #3B82F6 100%);
}

/* Animated background pattern */
.solution-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  animation: backgroundFloat 8s ease-in-out infinite;
}

@keyframes backgroundFloat {
  0%, 100% { 
    transform: rotate(0deg) scale(1);
    opacity: 0.6;
  }
  50% { 
    transform: rotate(180deg) scale(1.1);
    opacity: 0.8;
  }
}

/* ===== FLOATING ICON DESIGN ===== */
.solution-icon-wrapper {
  position: relative;
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
}

.solution-icon {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: white;
  position: relative;
  z-index: 3;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.solution-card:hover .solution-icon {
  transform: scale(1.15) rotateY(10deg);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 
    0 15px 50px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* Animated glow effect */
.icon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  animation: iconPulse 3s ease-in-out infinite;
  z-index: 1;
}

@keyframes iconPulse {
  0%, 100% { 
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  50% { 
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0.9;
  }
}

/* ===== IMPROVED TYPOGRAPHY ===== */
.solution-category {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.solution-title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  letter-spacing: -0.02em;
}

.solution-description {
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 1.1rem;
  text-align: center;
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* ===== ENHANCED DETAILS SECTION ===== */
.solution-details {
  background: linear-gradient(135deg, 
    rgba(248, 250, 252, 0.8) 0%,
    rgba(241, 245, 249, 0.6) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(226, 232, 240, 0.4);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}

.detail-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.detail-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
  transition: left 0.5s ease;
}

.detail-item:hover::before {
  left: 100%;
}

.detail-item:hover {
  transform: translateY(-3px) scale(1.02);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.detail-label {
  color: #64748b;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.detail-value {
  color: #1e293b;
  font-weight: 700;
  font-size: 16px;
}

/* ===== BEAUTIFUL FEATURES LIST ===== */
.solution-features {
  margin-bottom: 30px;
}

.solution-features h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}

.solution-features h4::before,
.solution-features h4::after {
  content: '';
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #3b82f6, transparent);
  border-radius: 2px;
}

.solution-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.solution-features li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #64748b;
  font-size: 15px;
  font-weight: 500;
  padding: 12px 16px;
  background: rgba(248, 250, 252, 0.8);
  border-radius: 12px;
  border: 1px solid rgba(226, 232, 240, 0.4);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
  position: relative;
  overflow: hidden;
}

.solution-features li::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.1), transparent);
  transition: left 0.6s ease;
}

.solution-features li:hover::before {
  left: 100%;
}

.solution-features li:hover {
  color: #1e293b;
  transform: translateX(8px) scale(1.02);
  background: rgba(16, 185, 129, 0.05);
  border-color: rgba(16, 185, 129, 0.2);
}

.solution-features i {
  color: #10b981;
  font-size: 16px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.2));
  padding: 8px;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
  transition: all 0.3s ease;
}

.solution-features li:hover i {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.3));
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

/* ===== PREMIUM ACTION BUTTONS ===== */
.solution-actions {
  background: linear-gradient(135deg, 
    rgba(248, 250, 252, 0.9) 0%,
    rgba(241, 245, 249, 0.7) 100%);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(226, 232, 240, 0.3);
  padding: 30px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  border-radius: 0 0 24px 24px;
  position: relative;
  overflow: hidden;
}

.solution-actions::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
}

.btn {
  flex: 1;
  min-width: 140px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  border: none;
  cursor: pointer;
  font-size: 14px;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Shimmer effect for buttons */
.btn::before {
  content: '';
  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:hover::before {
  left: 100%;
}

/* Primary button - AILA Blue */
.btn-primary {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  box-shadow: 
    0 8px 25px rgba(59, 130, 246, 0.4),
    0 3px 10px rgba(59, 130, 246, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 
    0 15px 40px rgba(59, 130, 246, 0.5),
    0 8px 20px rgba(59, 130, 246, 0.3);
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
}

/* Outline button */
.btn-outline {
  background: rgba(255, 255, 255, 0.8);
  color: #3b82f6;
  border: 2px solid #3b82f6;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.btn-outline::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.btn-outline:hover {
  color: white;
  transform: translateY(-4px) scale(1.02);
  border-color: transparent;
  box-shadow: 
    0 12px 30px rgba(59, 130, 246, 0.4),
    0 5px 15px rgba(59, 130, 246, 0.2);
}

.btn-outline:hover::after {
  opacity: 1;
}

/* Secondary button */
.btn-secondary {
  background: linear-gradient(135deg, #64748b 0%, #475569 100%);
  color: white;
  box-shadow: 
    0 8px 25px rgba(100, 116, 139, 0.3),
    0 3px 10px rgba(100, 116, 139, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 
    0 15px 40px rgba(100, 116, 139, 0.4),
    0 8px 20px rgba(100, 116, 139, 0.3);
  background: linear-gradient(135deg, #475569 0%, #334155 100%);
}

/* ===== STATUS BADGE ===== */
.solution-status {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 4;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.status-badge.active {
  background: linear-gradient(135deg, 
    rgba(16, 185, 129, 0.9) 0%, 
    rgba(5, 150, 105, 0.9) 100%);
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.status-badge.active::before {
  content: '●';
  animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* ===== FLOATING CARDS SHADOW ===== */
.card-shadow {
  position: absolute;
  bottom: -25px;
  left: 25px;
  right: 25px;
  height: 25px;
  background: radial-gradient(ellipse at center, 
    rgba(59, 130, 246, 0.15) 0%, 
    transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 1;
  filter: blur(15px);
}

.solution-card:hover .card-shadow {
  opacity: 1;
  transform: scale(1.1);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .solutions-grid {
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
  }
  
  .solution-card-inner {
    border-radius: 20px;
  }
}

@media (max-width: 768px) {
  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 0;
  }
  
  .solution-card {
    min-height: auto;
  }
  
  .solution-header {
    height: 140px;
  }
  
  .solution-icon {
    width: 80px;
    height: 80px;
    font-size: 32px;
  }
  
  .solution-title {
    font-size: 1.6rem;
  }
  
  .solution-actions {
    flex-direction: column;
    gap: 12px;
  }
  
  .btn {
    width: 100%;
    min-width: auto;
  }
  
  .solution-details {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
  
  .solution-features ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .solution-content {
    padding: 24px;
  }
  
  .solution-actions {
    padding: 24px;
  }
  
  .solution-header {
    height: 120px;
  }
  
  .solution-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  
  .solution-title {
    font-size: 1.4rem;
  }
  
  .solution-description {
    font-size: 1rem;
  }
}

/* ===== SPECIAL HOVER EFFECTS ===== */
@media (hover: hover) {
  .solution-card:hover {
    z-index: 10;
  }
  
  .solution-card:hover .solution-card-inner {
    border-color: rgba(59, 130, 246, 0.3);
  }
  
  .solution-card:hover .solution-header::before {
    animation-duration: 4s;
  }
  
  .solution-card:hover .icon-glow {
    animation-duration: 1.5s;
  }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  .solution-card,
  .solution-card-inner,
  .solution-icon,
  .btn,
  .detail-item,
  .solution-features li {
    transition: none;
    animation: none;
  }
  
  .solution-header::before,
  .icon-glow,
  .status-badge.active::before {
    animation: none;
  }
}

/* ===== FOCUS STATES FOR ACCESSIBILITY ===== */
.btn:focus {
  outline: 3px solid rgba(59, 130, 246, 0.5);
  outline-offset: 2px;
}

.solution-card:focus-within {
  transform: translateY(-5px);
  z-index: 10;
}

.solution-card:focus-within .solution-card-inner {
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.12),
    0 8px 25px rgba(59, 130, 246, 0.2),
    0 0 0 3px rgba(59, 130, 246, 0.3);
}












/* ========== professional-service-cards.css ========== */
/*
 * Professional Service Cards - AILA Tech Solutions
 * Modern, clean, and professional design
 */

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

/* Modern Professional Card Design - Override existing styles */
.solutions-grid .solution-card {
  background: #ffffff !important;
  border-radius: 20px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  border: 1px solid rgba(99, 102, 241, 0.1) !important;
  overflow: hidden !important;
  position: relative !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  margin-bottom: 0 !important;
}

.solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1E40AF, #2563EB, #3B82F6);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.solution-card:hover::before {
  opacity: 1;
}

.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
  border-color: rgba(99, 102, 241, 0.2);
}

.solution-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
}

/* Image Container Styles */
.solution-image-container,
.service-image-container {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.solution-image,
.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.solution-card:hover .solution-image,
.professional-service-card:hover .service-image {
  transform: scale(1.05);
}

.solution-icon-fallback,
.service-icon-fallback {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  font-size: 3rem;
}

/* Header Section - Override existing styles */
.solutions-grid .solution-card .solution-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  padding: 2rem 1rem !important;
  text-align: center !important;
  position: relative !important;
  color: white !important;
  border-radius: 0 !important;
  margin: 0 !important;
  min-height: 200px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
}

.solution-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.solutions-grid .solution-card .solution-icon-wrapper {
  position: relative !important;
  display: inline-block !important;
  margin: 2rem 0 1rem 0 !important;
  z-index: 5 !important;
}

.solutions-grid .solution-card .solution-icon {
  width: 80px !important;
  height: 80px !important;
  background: rgba(255, 255, 255, 0.15) !important;
  border-radius: 20px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.solutions-grid .solution-card .solution-icon i {
  font-size: 2.5rem !important;
  color: white !important;
  display: block !important;
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
}

/* Ensure icons work in Lao language */
.lao-text .solution-icon i,
html[lang="la"] .solution-icon i,
html[lang="lao"] .solution-icon i {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
  display: block !important;
  color: white !important;
}

.solutions-grid .solution-card .solution-title {
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  margin: 0 0 0.5rem 0 !important;
  color: white !important;
  letter-spacing: 0.02em !important;
  position: relative !important;
  z-index: 5 !important;
  text-align: center !important;
  padding: 0 2rem !important;
}

.solutions-grid .solution-card .solution-status {
  position: absolute !important;
  top: 1rem !important;
  right: 1rem !important;
  z-index: 10 !important;
}

.solutions-grid .solution-card .status-badge {
  background: rgba(16, 185, 129, 0.9) !important;
  color: white !important;
  padding: 0.25rem 0.75rem !important;
  border-radius: 20px !important;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  content: none !important;
}

.solutions-grid .solution-card .status-badge::before {
  content: none !important;
}

.solutions-grid .solution-card .status-badge::after {
  content: none !important;
}

/* Force badge text to display correctly */
.solutions-grid .solution-card .status-badge.active {
  background: rgba(16, 185, 129, 0.9) !important;
  color: white !important;
}

.solutions-grid .solution-card .status-badge.active::before {
  content: none !important;
}

.solutions-grid .solution-card .status-badge.active::after {
  content: none !important;
}

/* Content Section - Override existing styles */
.solutions-grid .solution-card .solution-content {
  padding: 2rem !important;
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  background: white !important;
}

.solution-description {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

/* Details Grid */
.solution-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #6366f1;
}

.detail-item {
  display: flex;
  flex-direction: column;
}

.detail-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.detail-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1e293b;
}

/* Features Section */
.solution-features {
  margin-top: auto;
  padding-top: 1rem;
}

.solution-features h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.solution-features h4::before {
  content: '✨';
  font-size: 1.2rem;
}

.solution-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.solution-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #475569;
  padding: 0.5rem;
  background: rgba(99, 102, 241, 0.05);
  border-radius: 8px;
  transition: background-color 0.2s ease;
}

.solution-features li:hover {
  background: rgba(99, 102, 241, 0.1);
}

.solution-features li i {
  color: #10b981;
  font-size: 0.875rem;
  width: 16px;
  flex-shrink: 0;
}

/* Action Buttons */
.solutions-grid .solution-card .solution-actions {
  padding: 0 2rem 2rem !important;
  display: flex !important;
  gap: 1rem !important;
  margin-top: auto !important;
}

.solutions-grid .solution-card .solution-actions i {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
  display: inline-block !important;
}

.solutions-grid .solution-card .btn-primary-modern {
  flex: 1 !important;
  background: linear-gradient(135deg, #1E40AF, #2563EB) !important;
  color: white !important;
  border: none !important;
  padding: 0.875rem 1.5rem !important;
  border-radius: 12px !important;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  text-decoration: none !important;
}

.btn-primary-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.solutions-grid .solution-card .btn-secondary-modern {
  flex: 1 !important;
  background: white !important;
  color: #6366f1 !important;
  border: 2px solid #6366f1 !important;
  padding: 0.875rem 1.5rem !important;
  border-radius: 12px !important;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  text-decoration: none !important;
}

.btn-secondary-modern:hover {
  background: #6366f1;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

/* Category Badge */
.solutions-grid .solution-card .solution-category {
  position: absolute !important;
  top: 1rem !important;
  left: 1rem !important;
  background: rgba(255, 255, 255, 0.2) !important;
  color: white !important;
  padding: 0.25rem 0.75rem !important;
  border-radius: 20px !important;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  z-index: 10 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1rem 0;
  }
  
  .solution-header {
    padding: 1.5rem;
  }
  
  .solution-content {
    padding: 1.5rem;
  }
  
  .solution-details {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 1rem;
  }
  
  .solution-actions {
    flex-direction: column;
    padding: 0 1.5rem 1.5rem;
  }
}

/* Animation for new cards */
.solution-card[data-dynamic="true"] {
  opacity: 0;
  transform: translateY(30px);
  animation: cardSlideIn 0.6s ease forwards;
}

@keyframes cardSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Different gradient themes for different categories */
.solution-card[data-category="AL_1"] .solution-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.solution-card[data-category="AL_0"] .solution-header {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.solution-card[data-category="AL_2"] .solution-header {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

/* Lao language specific adjustments */
.lao-text .solution-title,
.lao-text .solution-description,
.lao-text .detail-value {
  font-family: 'Noto Sans Lao', sans-serif !important;
  line-height: 1.7;
  letter-spacing: 0.02em;
}

/* Premium badge for enhanced visual appeal */
.premium-badge {
  position: absolute;
  top: -8px;
  right: 20px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #92400e;
  padding: 0.5rem 1rem;
  border-radius: 0 0 12px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 8px rgba(255, 215, 0, 0.3);
}


/* ========== beautiful-cards.css ========== */
/* 🎨 Beautiful Service Cards - Easy Integration */

/* Replace the existing solution card styles with these enhanced versions */

/* ===== MAIN CARD CONTAINER ===== */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  padding: 60px 0;
  position: relative;
}

.solution-card {
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: fit-content;
}

.solution-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* ===== ENHANCED CARD DESIGN ===== */
.solution-card-inner {
  background: linear-gradient(145deg, 
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.85) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  position: relative;
  z-index: 2;
}

.solution-card:hover .solution-card-inner {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.12),
    0 12px 30px rgba(59, 130, 246, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

/* ===== BEAUTIFUL HEADERS WITH GRADIENTS ===== */
.solution-header {
  position: relative;
  height: 150px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

/* Different colors for each card */
.solution-card:nth-child(1) .solution-header {
  background: linear-gradient(135deg, #1E40AF 0%, #2563EB 50%, #1D4ED8 100%);
}

.solution-card:nth-child(2) .solution-header {
  background: linear-gradient(135deg, #10b981 0%, #059669 50%, #0d9488 100%);
}

.solution-card:nth-child(3) .solution-header {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 50%, #dc2626 100%);
}

.solution-card:nth-child(4) .solution-header {
  background: linear-gradient(135deg, #1E40AF 0%, #2563EB 50%, #3B82F6 100%);
}

/* Animated background */
.solution-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  animation: headerFloat 8s ease-in-out infinite;
}

@keyframes headerFloat {
  0%, 100% { 
    transform: rotate(0deg) scale(1);
    opacity: 0.6;
  }
  50% { 
    transform: rotate(180deg) scale(1.1);
    opacity: 0.8;
  }
}

/* ===== ENHANCED ICON DESIGN ===== */
.solution-icon-wrapper {
  position: relative;
  width: 90px;
  height: 90px;
  margin-bottom: 15px;
}

.solution-icon {
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: white;
  position: relative;
  z-index: 3;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.solution-card:hover .solution-icon {
  transform: scale(1.1) rotateY(10deg);
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 
    0 15px 50px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.icon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110px;
  height: 110px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: iconGlow 3s ease-in-out infinite;
  z-index: 1;
}

@keyframes iconGlow {
  0%, 100% { 
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  50% { 
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.9;
  }
}

.solution-category {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.95);
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* ===== STATUS BADGE ===== */
.solution-status {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 4;
}

.status-badge.active {
  background: linear-gradient(135deg, 
    rgba(16, 185, 129, 0.9) 0%, 
    rgba(5, 150, 105, 0.9) 100%);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
  display: flex;
  align-items: center;
  gap: 4px;
}

.status-badge.active::before {
  content: '●';
  animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* ===== CONTENT STYLING ===== */
.solution-content {
  padding: 32px;
}

.solution-title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 18px;
  text-align: center;
  background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.01em;
}

.solution-description {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 28px;
  font-size: 1rem;
  text-align: center;
  font-weight: 400;
}

/* ===== ENHANCED DETAILS GRID ===== */
.solution-details {
  background: linear-gradient(135deg, 
    rgba(248, 250, 252, 0.7) 0%,
    rgba(241, 245, 249, 0.5) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(226, 232, 240, 0.4);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.detail-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.detail-item:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.1);
}

.detail-label {
  color: #64748b;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}

.detail-value {
  color: #1e293b;
  font-weight: 700;
  font-size: 14px;
}

/* ===== BEAUTIFUL FEATURES ===== */
.solution-features h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.solution-features h4::before,
.solution-features h4::after {
  content: '';
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #3b82f6, transparent);
  border-radius: 2px;
}

.solution-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.solution-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #64748b;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 12px;
  margin-bottom: 8px;
  background: rgba(248, 250, 252, 0.7);
  border-radius: 10px;
  border: 1px solid rgba(226, 232, 240, 0.4);
  transition: all 0.3s ease;
}

.solution-features li:hover {
  color: #1e293b;
  transform: translateX(5px);
  background: rgba(16, 185, 129, 0.05);
  border-color: rgba(16, 185, 129, 0.2);
}

.solution-features i {
  color: #10b981;
  font-size: 14px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.2));
  padding: 6px;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(16, 185, 129, 0.2);
}

/* ===== ENHANCED BUTTONS ===== */
.solution-actions {
  background: linear-gradient(135deg, 
    rgba(248, 250, 252, 0.8) 0%,
    rgba(241, 245, 249, 0.6) 100%);
  backdrop-filter: blur(15px);
  border-top: 1px solid rgba(226, 232, 240, 0.3);
  padding: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  flex: 1;
  min-width: 130px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  border: none;
  cursor: pointer;
  font-size: 13px;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.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.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.4);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.7);
  color: #3b82f6;
  border: 2px solid #3b82f6;
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  color: white;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
  border-color: transparent;
}

.btn-secondary {
  background: linear-gradient(135deg, #64748b 0%, #475569 100%);
  color: white;
  box-shadow: 0 6px 20px rgba(100, 116, 139, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(100, 116, 139, 0.4);
}

/* ===== CARD SHADOW EFFECT ===== */
.card-shadow {
  position: absolute;
  bottom: -20px;
  left: 20px;
  right: 20px;
  height: 20px;
  background: radial-gradient(ellipse at center, 
    rgba(59, 130, 246, 0.15) 0%, 
    transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 1;
  filter: blur(10px);
}

.solution-card:hover .card-shadow {
  opacity: 1;
  transform: scale(1.1);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .solution-header {
    height: 130px;
  }
  
  .solution-icon {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }
  
  .solution-title {
    font-size: 1.5rem;
  }
  
  .solution-actions {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    min-width: auto;
  }
  
  .solution-details {
    grid-template-columns: 1fr;
  }
}

/* ===== ACCESSIBILITY ===== */
.btn:focus {
  outline: 2px solid rgba(59, 130, 246, 0.5);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .solution-card,
  .solution-card-inner,
  .solution-icon,
  .btn,
  .detail-item {
    transition: none;
    animation: none;
  }
  
  .solution-header::before,
  .icon-glow,
  .status-badge.active::before {
    animation: none;
  }
}











