:root {
  --brand: #4f46e5;
  --brand-dark: #3730a3;
  --dark: #111827;
  --muted: #6b7280;
  --light-bg: #f9fafb;
}
body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
}
h1, h2, h3, h4, h5, h6, .brand-text {
  font-family: 'Poppins', sans-serif;
}
.brand-text { font-size: 1.4rem; font-weight: 700; color: var(--brand); }

/* Header */
.site-header { box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.navbar-nav .nav-link { font-weight: 500; color: var(--dark); margin: 0 4px; }
.navbar-nav .nav-link.active, .navbar-nav .nav-link:hover { color: var(--brand); }
.btn-primary { background-color: var(--brand); border-color: var(--brand); }
.btn-primary:hover { background-color: var(--brand-dark); border-color: var(--brand-dark); }
.text-brand { color: var(--brand) !important; }
.bg-brand { background-color: var(--brand) !important; }

/* Hero */
.hero {
  background: linear-gradient(135deg, #eef2ff 0%, #ffffff 60%);
  padding: 100px 0 80px;
}
.hero h1 { font-size: 2.75rem; font-weight: 800; line-height: 1.2; }
.hero p.lead { color: var(--muted); font-size: 1.15rem; }

/* Section spacing */
.section { padding: 80px 0; }
.section-title { font-weight: 700; margin-bottom: 0.75rem; }
.section-subtitle { color: var(--muted); max-width: 620px; margin: 0 auto 3rem; }
.bg-light-section { background-color: var(--light-bg); }

/* Cards */
.card { border: 1px solid #eef0f3; border-radius: 14px; transition: transform .2s ease, box-shadow .2s ease; }
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(17,24,39,0.08); }
.service-icon {
  width: 60px; height: 60px; border-radius: 14px;
  background: rgba(79,70,229,0.1); color: var(--brand);
  display: flex; align-items: center; justify-content: center; font-size: 1.6rem;
}
.portfolio-thumb, .blog-thumb { width: 100%; height: 220px; object-fit: cover; border-radius: 14px 14px 0 0; }
.badge-category { background: rgba(79,70,229,0.1); color: var(--brand); font-weight: 500; }

/* Team */
.team-photo { width: 100%; height: 260px; object-fit: cover; border-radius: 14px 14px 0 0; background:#eee; }
.team-social a { color: var(--muted); margin-right: 10px; }
.team-social a:hover { color: var(--brand); }

/* Testimonials */
.testimonial-card { background: #fff; border-radius: 14px; padding: 32px; border: 1px solid #eef0f3; }
.testimonial-card .stars { color: #f59e0b; }

/* CTA */
.cta-section { background: var(--brand); color: #fff; border-radius: 20px; }

/* Footer */
.site-footer { background: var(--dark); }
.footer-text { color: #9ca3af; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #d1d5db; text-decoration: none; }
.footer-links a:hover { color: #fff; }
.footer-divider { border-color: rgba(255,255,255,0.1); margin: 2rem 0 1.5rem; }
.social-icon {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08);
  color: #fff; display: flex; align-items: center; justify-content: center; text-decoration: none;
}
.social-icon:hover { background: var(--brand); }

/* Misc */
.page-banner { background: linear-gradient(135deg, #eef2ff 0%, #ffffff 100%); padding: 60px 0; }
.stat-number { font-size: 2.4rem; font-weight: 800; color: var(--brand); }
.pagination .page-link { color: var(--brand); }
.pagination .page-item.active .page-link { background-color: var(--brand); border-color: var(--brand); }
