/* assets/css/styles.css */
:root { 
  --brand: #4f46e5; 
  --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --gradient-4: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
  --gradient-5: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
  --shadow-colorful: 0 10px 40px rgba(0,0,0,0.1), 0 0 30px rgba(103, 126, 234, 0.2);
  --shadow-hover: 0 20px 60px rgba(0,0,0,0.15), 0 0 40px rgba(103, 126, 234, 0.3);
}

* {
  box-sizing: border-box;
}

body {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  min-height: 100vh;
}

.hero-gradient {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #ec4899 100%);
  min-height: auto;
}



.card {
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}

.card::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.5s;
}

.card:hover::before {
  left: 100%;
}

.card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0,0,0,0.18), 0 4px 16px rgba(0,0,0,0.12);
}

.service-card-1 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.service-card-2 {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.service-card-3 {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.case-study-1 {
  border-left: 6px solid #ef4444;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(255, 255, 255, 1) 100%);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.case-study-2 {
  border-left: 6px solid #06b6d4;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.15) 0%, rgba(255, 255, 255, 1) 100%);
  border: 1px solid rgba(6, 182, 212, 0.2);
}

.case-study-3 {
  border-left: 6px solid #3b82f6;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(255, 255, 255, 1) 100%);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.tech-badge {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.tech-badge:hover {
  transform: scale(1.1) rotate(2deg);
  box-shadow: 0 5px 15px rgba(67, 233, 123, 0.4);
}

.btn-primary {
  background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  border: none;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.4);
}

.btn-primary::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:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245, 158, 11, 0.6);
}

.btn-secondary {
  border: 2px solid #4f46e5;
  background: white;
  color: #4f46e5;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(79, 70, 229, 0.2);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
}

.chatbot-demo {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  border: 3px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 32px rgba(79, 70, 229, 0.3);
}

.chat-message {
  animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

.section-title {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 1rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(103, 126, 234, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(103, 126, 234, 0); }
  100% { box-shadow: 0 0 0 0 rgba(103, 126, 234, 0); }
}

.icon-1 { background: var(--gradient-1); }
.icon-2 { background: var(--gradient-2); }
.icon-3 { background: var(--gradient-3); }

.stats-counter {
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.shape {
  position: absolute;
  opacity: 0.1;
  animation: float-shapes 20s infinite linear;
}

.shape-1 {
  top: 20%;
  left: 10%;
  width: 80px;
  height: 80px;
  background: var(--gradient-1);
  border-radius: 50%;
  animation-delay: 0s;
}

.shape-2 {
  top: 60%;
  right: 10%;
  width: 60px;
  height: 60px;
  background: var(--gradient-2);
  transform: rotate(45deg);
  animation-delay: 5s;
}

.shape-3 {
  bottom: 20%;
  left: 20%;
  width: 100px;
  height: 100px;
  background: var(--gradient-3);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  animation-delay: 10s;
}

@keyframes float-shapes {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
  100% { transform: translateY(0px) rotate(360deg); }
}

.glass-effect {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.neon-border {
  border: 2px solid #4f46e5;
  box-shadow: 
    0 0 20px rgba(79, 70, 229, 0.4),
    inset 0 0 20px rgba(79, 70, 229, 0.15);
}

/* Mobile Marquee Animation - Right to Left */
@keyframes marquee-rtl {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

.animate-marquee-rtl {
  animation: marquee-rtl 15s linear infinite;
}

/* Pause animation on hover */
.animate-marquee-rtl:hover {
  animation-play-state: paused;
}
