:root {
  --brand:#7D5DE1;
  --brand-2:#F00203;
  --bg-soft:#FDFFF9;
}
body {background:var(--bg-soft);}
/* Navbar modern look */
.custom-nav {
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.9);
  border-radius: 0 0 20px 20px;
}

/* Brand logo circle */
.brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand);
  color: #fff;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 18px;
  font-weight: 700;
}

/* Cool underline effect */
.cool-link {
  position: relative;
  font-weight: 500;
  color: #333 !important;
  transition: color 0.3s;
}
.cool-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.cool-link:hover::after {
  transform: scaleX(1);
}
.cool-link:hover {
  color: var(--brand) !important;
}

/* Mobile toggler */
.navbar-toggler {
  border: none;
}
.navbar-toggler:focus {
  box-shadow: none;
}

.hero {
  background: radial-gradient(1200px 600px at 10% 10%, rgba(125,93,225,.15), transparent),
              radial-gradient(1000px 600px at 90% 30%, rgba(240,2,3,.08), transparent),
              linear-gradient(180deg, #fff, var(--bg-soft));
}
.hero .avatar {
  width:120px; height:120px; border-radius:50%;
  box-shadow:0 10px 30px rgba(0,0,0,.08); object-fit:cover;
}
.section-title {font-weight:800; letter-spacing:.5px}
.badge-skill {
  background:rgba(125,93,225,.1);
  color:#5237cc;
  border:1px solid rgba(125,93,225,.25)
}
.card-project {transition:transform .25s ease, box-shadow .25s ease}
.card-project:hover {transform:translateY(-4px); box-shadow:0 1rem 2rem rgba(0,0,0,.08)}
.timeline:before {
  content:""; position:absolute; left:1rem; top:0; bottom:0;
  width:2px; background:linear-gradient(var(--brand), transparent)
}
.timeline-item {position:relative; padding-left:3rem}
.timeline-item:before {
  content:""; position:absolute; left:.95rem; top:.6rem;
  width:.75rem; height:.75rem; background:var(--brand);
  border-radius:50%; box-shadow:0 0 0 4px rgba(125,93,225,.15)
}
.btn-brand {background:var(--brand); color:#fff}
.btn-brand:hover {background:#6c4ed6; color:#fff}
.btn-outline-brand {border-color:var(--brand); color:var(--brand)}
.btn-outline-brand:hover {background:var(--brand); color:#fff}
.footer {background:#fff}
.chip {
  border:1px solid rgba(0,0,0,.08);
  border-radius:1.5rem;
  padding:.4rem .8rem;
  background:#fff
}
.sticky-cta {position:fixed; right:1rem; bottom:1rem; z-index:1030}
.shadow-soft {box-shadow:0 1rem 2rem rgba(0,0,0,.06)}
.link-underline {position:relative;}
.link-underline:after {
  content:""; position:absolute; left:0; right:0; bottom:-2px; height:2px;
  background:linear-gradient(90deg,var(--brand),var(--brand-2));
  transform:scaleX(0); transform-origin:left; transition:transform .25s
}
.link-underline:hover:after {transform:scaleX(1)}

.pagination .page-link { padding: .25rem .5rem; font-size: .875rem; }
  .pagination .page-item { margin: 0 .125rem; }
