
/* assets/css/style.css */
:root{
  --bc-primary: #0d6efd;
  --bc-dark: #0b1220;
  --bc-muted: #6c757d;
}

html { scroll-behavior: smooth; }

.topbar { background: #fff; }

.brand-mark{
  width: 34px; height: 34px;
  display: inline-flex;
  align-items: center; justify-content: center;
  border-radius: 10px;
  background: var(--bc-primary);
  color: #fff;
  font-weight: 800;
}

.section-padding{
  padding: 72px 0;
}

.hero-section{
  background: radial-gradient(1200px 500px at 10% 20%, rgba(13,110,253,0.15), transparent 55%),
              radial-gradient(900px 500px at 90% 15%, rgba(25,135,84,0.12), transparent 60%),
              linear-gradient(180deg, #ffffff 0%, #fbfbff 100%);
}

.hero-card{
  border-radius: 18px;
}

.hero-blur{
  position:absolute;
  filter: blur(60px);
  opacity: .5;
  z-index: 0;
  border-radius: 999px;
}
.hero-blur-1{
  width: 320px; height: 320px;
  background: rgba(13,110,253,.35);
  top: -120px; left: -80px;
}
.hero-blur-2{
  width: 280px; height: 280px;
  background: rgba(25,135,84,.25);
  bottom: -140px; right: -90px;
}

.hero-section .container{ position: relative; z-index: 2; }

.icon-circle{
  width: 48px; height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center; justify-content: center;
  background: rgba(13,110,253,.12);
  color: var(--bc-primary);
  font-size: 22px;
}

.icon-circle-sm{
  width: 40px; height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center; justify-content: center;
  background: rgba(13,110,253,.12);
  color: var(--bc-primary);
  font-size: 18px;
}

.hover-lift{
  transition: transform .18s ease, box-shadow .18s ease;
}
.hover-lift:hover{
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,.08) !important;
}

.avatar{
  width: 38px; height: 38px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center; justify-content: center;
  font-weight: 800;
}

.cta{
  background: linear-gradient(135deg, rgba(13,110,253,0.10), rgba(25,135,84,0.08));
  border-radius: 20px;
}

.back-to-top{
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: none;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}

.object-fit-cover{ object-fit: cover; }
``
