/* =====================================================
  GLOBAL BASE
===================================================== */
html {
  scroll-behavior: smooth;
  font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #4a4a4a;
 }
 
 
 body {
  margin: 0;
 }
 
 
 /* =====================================================
   HERO / PROFILE (LOCKED – DO NOT SCALE)
 ===================================================== */
 .has-bg-image {
  background-image: url('../images/hero.jpeg');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  min-height: 88vh;
  position: relative;
 }
 
 
 .has-bg-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.9);
  pointer-events: none;
 }
 
 
 .has-bg-image .container,
 .has-bg-image .hero-body,
 .has-bg-image .content {
  position: relative;
  z-index: 1;
 }
 
 
 img.profile {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
 }
 
 
 /* =====================================================
   SUMMARY / ABOUT
 ===================================================== */
 .summary-text {
  max-width: 36em;
  margin: 0 auto;
  line-height: 1.7;
 }
 
 
 .interests {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
 }
 
 
 /* =====================================================
   SKILLS (SAFE)
 ===================================================== */
 .skill-card {
  height: 100%;
 }
 
 
 .skill-card p {
  font-size: 0.85rem;
  line-height: 1.45;
 }
 
 
 /* =====================================================
   CERTIFICATIONS
 ===================================================== */
 .credly-badge,
 .credly-badge img {
  max-width: 140px !important;
  max-height: 140px !important;
 }
 
 
 .credly-badge {
  cursor: pointer;
 }
 
 
 /* =====================================================
   SOCIAL ICONS
 ===================================================== */
 .hero .icon i {
  color: #ffffff;
  font-size: 2rem;
  text-shadow: 0 0 6px rgba(255,255,255,0.8);
 }
 
 
 .hero .icon i:hover {
  color: #00ffff;
  text-shadow: 0 0 10px rgba(0,255,255,0.9);
  transition: all 0.25s ease;
 }
 
 
 /* =====================================================
   BULMA TIMELINE – FINAL, CORRECT FIX
   (THIS IS THE IMPORTANT PART)
 ===================================================== */
 
 
 /* Base timeline spacing */
 .timeline {
  margin-top: 2rem;
 }
 
 
 /* SAME WIDTH BOTH SIDES */
 .timeline .timeline-content {
  max-width: 28em;
  text-align: left;
 }
 
 
 /* LEFT SIDE (odd items) */
 .timeline-item:nth-child(odd) .timeline-content {
  margin-left: auto;
  margin-right: 3rem;
 }
 
 
 /* RIGHT SIDE (even items) */
 .timeline-item:nth-child(even) .timeline-content {
  margin-left: 3rem;
  margin-right: auto;
 }
 
 
 /* Date text */
 .timeline-content .heading {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
 }
 
 
 /* Company / school name */
 .timeline-content .title {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
 }
 
 
 /* Paragraph consistency */
 .timeline-content p {
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0.35rem 0;
 }
 
 
 /* Bullet lists (summary arrays) */
 .timeline-content ul {
  margin: 0;
  padding-left: 1.2rem;
 }
 
 
 .timeline-content li {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
 }
 
 
 /* =====================================================
   END – DO NOT ADD MORE TIMELINE RULES
 ===================================================== */
 img.profile {
  display: block;
  margin-left: auto;
  margin-right: auto;
 }
 

 .hero .social-icon {
  color: #ffffff !important;
  font-size: 2.2rem !important;
  text-shadow:
    0 0 10px rgba(255,255,255,0.9),
    0 0 18px rgba(255,255,255,0.75);
}

/* =====================================================
   HERO SOCIAL ICONS — CLOUD MATCH (SVG SAFE)
===================================================== */

.hero .icon svg {
  width: 2.2rem;
  height: 2.2rem;

  fill: #ffffff !important;
  color: #ffffff !important;
  opacity: 1 !important;

  filter:
    brightness(4)
    drop-shadow(0 0 6px rgba(255,255,255,0.95))
    drop-shadow(0 0 14px rgba(255,255,255,0.85));
}

/* Hover */
.hero .icon svg:hover {
  fill: #00ffff !important;
  color: #00ffff !important;

  filter:
    brightness(5)
    drop-shadow(0 0 8px rgba(0,255,255,0.95))
    drop-shadow(0 0 18px rgba(0,255,255,0.8));

  transition: all 0.25s ease;
}

/* ===============================
   BULMA TIMELINE — FINAL FIX
   (LEFT + RIGHT BALANCED)
================================ */

/* Control content width */
.timeline .timeline-content {
  max-width: 28em;
}

/* LEFT side — pull toward center */
.timeline .timeline-item.is-left .timeline-content {
  margin-left: auto !important;
  margin-right: 1.5rem !important;
  text-align: right;
}

/* RIGHT side — pull toward center */
.timeline .timeline-item.is-right .timeline-content {
  margin-left: 1.5rem !important;
  margin-right: auto !important;
  text-align: left;
}

.cert-verification {
  margin-top: 0.35rem;
  font-size: 0.75rem;
  text-align: center;
}

.cert-verification a {
  color: #3273dc;
  text-decoration: underline;
}

.cert-verification a:hover {
  color: #00ffff;
}