:root{
  --brand: #0b5ed7;      /* bootstrap primary-ish; we can match your exact logo blue later */
  --brand-2: #0a58ca;
  --text: #0f172a;
  --muted: #64748b;
  --soft: #f6f8fb;
  --border: rgba(15, 23, 42, 0.08);
}

body{
  color: var(--text);
  background: #fff;
}

a { text-decoration: none; }
.link-muted { color: var(--muted); }
.link-muted:hover { color: var(--text); }

.brand-mark{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  display: inline-block;
}

.navbar .nav-link{
  color: #334155;
  font-weight: 500;
}
.navbar .nav-link.active, .navbar .nav-link:hover{
  color: var(--brand);
}

.hero{
  background: radial-gradient(1200px 600px at 10% 10%, rgba(11,94,215,.10), transparent 55%),
              radial-gradient(900px 500px at 90% 0%, rgba(11,94,215,.08), transparent 55%);
}

.py-lg-6{ padding-top: 5rem!important; padding-bottom: 5rem!important; }

.section{
  padding: 4rem 0;
}
.section-head{
  margin-bottom: 2.5rem;
}

.card-soft {
    transition: transform .25s ease, box-shadow .25s ease;
}

.card-soft:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.btn {
    transition: all .2s ease;
}

.icon-pill{
    width:44px;
    height:44px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:14px;
    background: rgba(13,110,253,.08);
    color:#0d6efd;
    font-size:20px;
}

.partner-logo {
    font-weight: 600;
    font-size: 1.1rem;
}

.partner-tile{
  border: 1px dashed var(--border);
  border-radius: 14px;
  background: #fff;
  padding: 14px 16px;
  font-weight: 600;
  color: #334155;
}

.site-footer{
  background: #fff;
}

.hero-card{
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
}

.hero-slide{
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-slide-icon{
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(11,94,215,.12);
  color: var(--brand);
  font-size: 24px;
  margin-bottom: 14px;
}

.carousel-indicators [data-bs-target]{
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.cta{
  border-radius: 22px;
}

/* =========================
   HERO SECTION
========================= */
.hero-section {
    background: linear-gradient(
        180deg,
        #f8fafc,
        #ffffff,
        #f8f9fb
    );
    padding: 4rem 0;
}

.hero-section .badge {
    font-size: 0.85rem;
    letter-spacing: 0.04em;
}

.hero-section h1 {
    line-height: 1.15;
}

.min-vh-75 {
    min-height: 75vh;
}

.hero-image {
    max-height: 420px;
}

/* =========================
   FOOTER
========================= */
.site-footer{
  background: #0b1220; /* deep navy (pairs well with your brand blue) */
  color: rgba(255,255,255,.92);
}

.site-footer .text-light-emphasis{
  color: rgba(255,255,255,.72) !important;
}

.footer-link{
  color: rgba(255,255,255,.72);
  text-decoration: none;
}

.footer-link:hover{
  color: #fff;
  text-decoration: underline;
}

.footer-social{
  color: rgba(255,255,255,.72);
}

.footer-social:hover{
  color: #fff;
}

.site-footer hr{
  border-color: rgba(255,255,255,.16);
}

