@font-face {
    font-family: "Noto Sans";
    src: url(../fonts/NotoSans-Regular.ttf);
}
@font-face {
    font-family: "Noto Sans Bold";
    src: url(../fonts/NotoSans-SemiBold.ttf);
}
@font-face {
    font-family: "Noto Sans Medium";
    src: url(../fonts/NotoSans-Medium.ttf);
}
@font-face {
    font-family: "Noto Sans Thin";
    src: url(../fonts/NotoSans-Thin.ttf);
}
@font-face {
    font-family: "Libre";
    src: url(../fonts/LibreBaskerville-Regular.ttf);
}
@font-face {
    font-family: "Libre Bold";
    src: url(../fonts/LibreBaskerville-Bold.ttf);
}
@font-face {
    font-family: "Libre Italic";
    src: url(../fonts/LibreBaskerville-Italic.ttf);
}

html { scroll-behavior: smooth; }

body {
      font-family: 'Noto Sans Bold', sans-serif;
      background-color: #f9fafb;
      color: #333;
    }

:root {
    --link-underline-padding: .5em;
    --dark-blue: #0042ac;
    --blue: #3971b5;
    --general-dark-color: #3f3f56;
}

.logo {
  font-family: 'Libre Bold';
  font-size: 22px;
  color: var(--blue);
}
.logo img{
  height: 30px;
}
.decorations-none {
  text-decoration: none;
}

    header {
      background: #fff;
      border-bottom: 1px solid #e5e7eb;
    }
    header nav a {
      margin-left: 1rem;
      text-decoration: none;
      color: var(--dark-blue);
      font-weight: 500;
      display: inline-block;
      padding: 0 var(--link-underline-padding);
    }
    header nav a:after {
      background-color: var(--blue);
      content: '';
      display: block;
      height: .1em;
      margin-left: calc(var(--link-underline-padding) * -1);
      margin-top: .2em;
      transition: width .5s;
      width: 0;
    }
    header nav a:hover {
      color: var(--blue)!important;
    }
    header nav a:hover:after {
      width: calc(100% + var(--link-underline-padding) * 2)!important;
    }
    .active {
      color: var(--blue)!important;
    }
    .active:after {
      width: calc(100% + var(--link-underline-padding) * 2)!important;
    }
    .hero {
  margin-top: 30px;
  background: linear-gradient(135deg, #93c5fd, #dbeafe);
  padding: 4rem 2rem;
}

.hero-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
}

.hero-card img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

/* Social icons */
.social-icons {
  font-size: 22px;
  color: var(--dark-blue);
  transition: color 0.2s ease;
}
.social-icons:hover {
  color: var(--blue);
}

/* ✅ Hero text refinements */
.hero h1 {
  margin-bottom: 1rem;
}
.hero p {
  margin-bottom: 2rem;
}

/* ✅ Buttons */
.hero .btn {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 8px;
  font-weight: 500;
  min-width: 200px;
}

/* Stack buttons neatly on mobile */
@media (max-width: 576px) {
  .hero .btn {
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
}
.justify-content-right {
  justify-content: right;
}

    .icon-tile {
      border: none;
      background: none;
      display: flex;
      justify-content: center; /* Centers horizontally */
      align-items: center;    /* Centers vertically */
    }
    .icon-tile svg {
      height: 40px;
    }
    .icon-tile:hover {
      color: var(--dark-blue);
    }
    .timeline {
      position: relative;
      margin-left: 1rem;
      padding-left: 2rem;
    }
    .timeline-item {
      margin-bottom: 2rem;
      position: relative;
    }
    .timeline-item::before {
      content: "\f19d";
      font-family: "Font Awesome 7 Free";
      font-weight: 900;
      position: absolute;
      left: -55px;
      top: 0;
      font-size: 1.25rem;
      color: var(--blue);
      background: #fff;
      border-radius: 50%;
      padding: 0.4rem;
      border: 2px solid var(--blue);
    }
    .cert-card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 6px rgba(0,0,0,0.05);
      text-align: center;
      padding: 1.5rem;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .cert-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    }
    .cert-card img {
      max-width: 80px;
      margin-bottom: 1rem;
    }
    .icon-primary {
      color: var(--blue);
      fill: var(--blue);
      text-align: center;
    }
    .bg-blue {
      background-color: var(--blue);
    }
    .light-border-blue {
      border: 1px solid var(--blue);
    }
    .btn-bg-blue {
      background-color: var(--blue);
    }
    .btn-border-blue {
      border: 1px solid var(--blue);
    }
    .btn-bg-blue:hover {
      background-color: var(--dark-blue);
    }
    .hover-bg-dark-blue:hover {
      background-color: var(--dark-blue);
    }
    .btn-border-blue:hover {
      border: 1px solid var(--dark-blue);
    }
    .color-dark-blue {
      color: var(--dark-blue);
    }
    .fw-bold {
      color: var(--general-dark-color);
    }
    .lead {
      color: var(--general-dark-color);
    }
    .experience-item {
      margin-bottom: 2rem;
      background: #ffffff;
      border-radius: 12px;
      padding: 1.5rem;
      box-shadow: 0 4px 6px rgba(0,0,0,0.05);
      position: relative;
    }
    .experience-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: -10px;
      width: 4px;
      height: 100%;
      background: linear-gradient(to bottom, #3b82f6, #06b6d4);
      border-radius: 2px;
    }
    .experience-title {
      font-weight: 600;
      font-size: 1.25rem;
      margin-bottom: 0.5rem;
    }
    .experience-responsibilities {
      margin: 0;
      padding-left: 1.25rem;
      list-style-type: disc;
    }
    .experience-responsibilities li{
      font-family: "Noto Sans", sans-serif;
    }
    .engagement-cards li{
      font-family: "Noto Sans", sans-serif;
      margin-top: 1rem;
    }
    .noto-reg {
      font-family: "Noto Sans", sans-serif;
    }
    .project-card {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      flex-wrap: nowrap;
      align-items: center;
      background: #ffffff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    }
    .project-card .row {
        align-items: stretch !important;
    }
    .project-card .col-md-4,
    .project-card .col-md-8 {
        display: flex;
        flex-direction: column;
    }

    .project-card-content {
      padding: 1rem 1.5rem;
    }
    .project-card-content h3 {
      margin-top: 0;
      margin-bottom: 0.5rem;
      font-size: 1.25rem;
      color: #1e3a8a;
    }
    .project-logo {
      width:24px;
      height:24px;
      object-fit:contain;
    }
    .bg-light-grey {
      background: #ececec;
    }
    .text-justify {
      text-align: justify;
    }
    #skills {
      position: relative;
      top: -50px; /* Adjust this value to match your header's height */
    }
    #certifications {
      position: relative;
      top: -50px; /* Adjust this value to match your header's height */
    }
    #education {
      position: relative;
      top: -50px; /* Adjust this value to match your header's height */
    }
    #about {
      position: relative;
      top: -50px; /* Adjust this value to match your header's height */
    }
    .fs-rem-125{
      font-size: 1.25rem;
    }
    .fs-rem-1{
      font-size: 1rem;
    }