/* Best Universal Global — Website Styles */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --brand-600: #4f5de7;
  --brand-700: #3d4ccc;
  --primary-600: #2563eb;
  --gold-500: #f59e0b;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Plus Jakarta Sans', 'Inter', sans-serif; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

/* Navigation */
.nav-link {
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  transition: all 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav-link:hover, .nav-link.active {
  background: #eff2ff;
  color: var(--brand-600);
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--brand-600), var(--primary-600));
  color: white;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.9375rem;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(79,93,231,0.35);
  text-decoration: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(79,93,231,0.5);
}
.btn-primary-sm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--brand-600), var(--primary-600));
  color: white;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.2s;
  box-shadow: 0 2px 10px rgba(79,93,231,0.3);
  text-decoration: none;
}
.btn-primary-sm:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(79,93,231,0.4); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--brand-600);
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9375rem;
  border: 2px solid var(--brand-600);
  transition: all 0.2s;
  text-decoration: none;
}
.btn-outline:hover { background: var(--brand-600); color: white; transform: translateY(-2px); }
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--brand-700);
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.9375rem;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  text-decoration: none;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: white;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9375rem;
  border: 2px solid rgba(255,255,255,0.6);
  transition: all 0.2s;
  text-decoration: none;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: white; }

/* Hero */
.hero-gradient {
  background: linear-gradient(135deg, #0d1b6e 0%, #1a237e 30%, #1e3a8a 60%, #1d4ed8 100%);
}
.hero-mesh {
  background-image: radial-gradient(at 40% 20%, rgba(99,102,241,0.3) 0px, transparent 50%),
    radial-gradient(at 80% 0%, rgba(37,99,235,0.2) 0px, transparent 50%),
    radial-gradient(at 0% 50%, rgba(139,92,246,0.2) 0px, transparent 50%);
}

/* Section Labels */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #eff2ff;
  color: var(--brand-600);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Section Title */
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 800;
  color: #111827;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.section-title span { color: var(--brand-600); }
.section-subtitle {
  font-size: 1.0625rem;
  color: #6b7280;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

/* Cards */
.service-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  border: 1.5px solid #f1f5f9;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  border-color: transparent;
  box-shadow: 0 20px 60px rgba(79,93,231,0.12);
  transform: translateY(-4px);
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(79,93,231,0.03), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover::before { opacity: 1; }

/* Stats */
.stat-number {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(135deg, #fff, rgba(255,255,255,0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Feature List */
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
}
.feature-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-600), var(--primary-600));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Industry Cards */
.industry-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.industry-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.industry-card:hover img { transform: scale(1.05); }
.industry-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
  transition: background 0.3s;
}
.industry-card:hover .overlay { background: linear-gradient(to top, rgba(30,58,138,0.9) 0%, rgba(30,58,138,0.5) 50%, rgba(30,58,138,0.1) 100%); }

/* Testimonials */
.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1.5px solid #f1f5f9;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 80px;
  line-height: 1;
  color: #eff2ff;
  font-family: Georgia, serif;
  font-weight: 900;
}

/* Process Steps */
.process-step {
  position: relative;
  text-align: center;
  padding: 0 16px;
}
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 28px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-600), transparent);
  z-index: 0;
}

/* Forms */
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 0.9375rem;
  font-family: inherit;
  background: white;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
  color: #111827;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--brand-600);
  box-shadow: 0 0 0 4px rgba(79,93,231,0.1);
}
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
}
.form-group { margin-bottom: 1.25rem; }

/* Badges */
.badge-primary { background: #eff2ff; color: var(--brand-700); padding: 3px 10px; border-radius: 100px; font-size: 0.75rem; font-weight: 600; }
.badge-gold { background: #fffbeb; color: #92400e; padding: 3px 10px; border-radius: 100px; font-size: 0.75rem; font-weight: 600; }
.badge-green { background: #f0fdf4; color: #166534; padding: 3px 10px; border-radius: 100px; font-size: 0.75rem; font-weight: 600; }

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, var(--brand-600), #7c3aed, var(--primary-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Animations */
@keyframes float { 0%,100% { transform: translateY(0px); } 50% { transform: translateY(-12px); } }
@keyframes bounce-slow { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes pulse-ring { 0% { transform: scale(0.95); opacity: 0.7; } 100% { transform: scale(1.2); opacity: 0; } }
.animate-float { animation: float 4s ease-in-out infinite; }
.animate-bounce-slow { animation: bounce-slow 3s ease-in-out infinite; }

/* FAQ Accordion */
.faq-item { border-bottom: 1.5px solid #f1f5f9; }
.faq-question { padding: 20px 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; color: #111827; }
.faq-answer { padding-bottom: 20px; color: #6b7280; line-height: 1.7; }

/* Breadcrumb */
.breadcrumb-nav { background: #f8faff; border-bottom: 1px solid #e8eeff; padding: 14px 0; }

/* Page Hero (inner pages) */
.page-hero {
  background: linear-gradient(135deg, #0d1b6e 0%, #1e3a8a 50%, #1d4ed8 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(99,102,241,0.2) 0%, transparent 70%);
}

/* Floating shapes */
.shape { position: absolute; border-radius: 50%; }

/* Responsive */
@media (max-width: 768px) {
  .section-title { font-size: 1.75rem; }
  .btn-primary, .btn-outline, .btn-white { padding: 12px 24px; font-size: 0.875rem; }
}

/* Print */
@media print { header, footer, .whatsapp-float, #back-to-top { display: none !important; } }
