@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&display=swap');
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}


h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
blockquote {
  font-family: 'DM Serif Display', serif;
}

h1, .h1 {
  font-size: 65px;
}

h2, .h2 {
  font-size: 45px;
}

img {
  max-width: 100%;
}

blockquote {
  font-size: 28px;
}

sup, .sup {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 16px;
}

.underline::after {
  content: ' ';
  border-bottom: 3px solid;
  position: relative;
  display: block;
  width: 50px;
  padding-top: 1rem;
}

.fi {
  border-radius: 8px;       /* controls the curve — try 50% for circular */
  overflow: hidden;         /* hides the edges cleanly */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15); /* soft shadow for depth */
  margin-right: 8px;        /* small spacing between flags */
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out;
}


.fi::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.2), rgba(0,0,0,0.1));
  border-radius: inherit;
  pointer-events: none;
}

.toast {
  bottom: 1rem;
  right: 1rem;
}

.underline.text-center::after {
  margin-left: auto;
  margin-right: auto;
}

.section-inverse {
  margin-top: 0px;
  padding: 200px 0px;

}

.section-inverse > div {
  margin-top: -150px;
  margin-bottom: -150px;
}

.card-footer {
  background-color: white;
  padding: 1rem 1rem;
}

.background-image {
  background-position: center center;
  background-size: cover;
}

.navbar-light .navbar-nav .nav-link {
  text-transform: uppercase;
  padding-right: 1rem;
  padding-left: 1rem;
  color: #CBD5E1
}

.nav-link :hover {
  color: #0d6efd;
  transform: translateY(-2px);
  transition: transform 0.2s ease-in-out;
}

.nav-link :after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #0d6efd;
  border-radius: 2px;
  transition: width 0.15s ease-out;
}

.circle {
  border-radius: 50%;
  width: 250px;
  height: 250px;
  object-fit: cover;
  object-position: center top; 
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  padding: auto;
}

header.p-section {
  padding: 120px 0px 50px;
}

/* Make ONLY the first header fill the whole viewport */
header.section-bg {
  min-height: 100vh;               /* full screen */
  display: flex;
  align-items: center;             /* vertically center content */
  padding: 0;                      /* override header.p-section padding */
}

/* Put padding INSIDE the header content so it doesn't shrink the section height */
header.section-bg > .container-fluid {
  width: 100%;
  padding-top: calc(var(--nav-space, 0px) + 40px); /* keeps space under fixed navbar */
  padding-bottom: 40px;
}
.p-section {
  padding: 20px 20px;
  padding-bottom: 20px;
}

.p-section-lg {
  padding: 50px 50px;
}

.portrait-frame {
  width: 500px;          /* tweak as you like; respects container width */
  max-width: 100%;
  aspect-ratio: 4 / 5;   /* keeps a steady rectangle; change ratio if needed */
  border-radius: 1.2rem;
  overflow: hidden;      /* ensures images never spill out of the frame */
  box-shadow: 0 16px 32px rgba(0,0,0,.2);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.portrait-frame img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;      /* fills frame, crops gracefully */
  opacity: 0;
  transition: opacity .5s linear; /* fade speed */
  will-change: opacity;
  display: block;
}

.portrait-frame img.active {
  opacity: 1;
}

.portrait-frame:hover { cursor: pointer; 
transform: scale(1.05);
box-shadow: 0 20px 40px rgba(0,0,0,.25);
}

#contact {
  padding: 20px 0;
  background-color: #000; /* or var(--bs-black) */
  color: white;
}

.container-lg {
  max-width: 900px;
}

.w-md {
  max-width: 600px;
}

.w-sm {
  max-width: 400px;
}

.btn {
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .85rem 1.5rem;
}

.btn-group-lg>.btn, .btn-lg {
  padding: .75rem 2rem;
}

.btn-group-sm>.btn, .btn-sm {
  padding: .30rem .75rem;
}

.testimonial-item {
  max-width: 800px;
  padding: 40px;
}

.testimonial-item:nth-child(even) {
  margin-left: auto;
}

.testimonial-image {
  max-width: 100px;
  float: left;
  margin-right: 25px;
}

.marker-highlight {
  position: relative;
  display: inline-block;
}

.marker-highlight:before {
  content: "";
  background-color: #0b6efd87;
  width: 102%;
  height: 0.2em;
  position: absolute;
  z-index: -2;
  filter: url(#marker-shape);
  left: -0.05em;
  padding: 0 0.25em;
  bottom: 0.2em;
}

/* --- Carousel outer wrapper: hides overflow, sets height --- */
.logo-carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 1.5rem 0;
  /* optional subtle border on top/bottom */
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* --- Track that actually moves left --- */
.logo-carousel-track {
  display: flex;
  align-items: center;
  gap: 3rem; /* space between logos */
  animation: scroll-left 20s linear infinite;
  /* prevent logos from wrapping to next line */
  white-space: nowrap;
  transition: transform 0.3s ease;
}

/* --- Individual logo blocks --- */
.logo-item {
  flex: 0 0 auto;           /* don't shrink */
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;         /* keeps spacing consistent */
}

/* --- Image sizing rules --- */
.logo-item img {
  max-height: 60px;         /* this fixes the height */
  height: 60px;
  width: auto;              /* keep aspect ratio */
  object-fit: contain;
  filter: grayscae(0%);    /* you can change this to 100% for greyed-out style */
  opacity: 0.9;
  transition: transform 0.15s ease-out, opacity 0.15s ease-out, filter 0.15s ease-out;
}

.logo-item img.shadowed {
  filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.6));
}

/* hover effect on logos */
.logo-item img:hover {
  transform: scale(1.07);
  opacity: 1;
  filter: grayscale(0%);
}

/* --- Animation keyframes --- */
/* We move the whole track to the left by 50%, which is exactly one copy of the logo list */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive tweak: smaller spacing on phones */
@media (max-width: 576px) {
   .logo-carousel-shell {
    padding: 1rem 2.5rem;
  }

  .logo-carousel-track {
    gap: 2rem;
  }

  .logo-item {
    min-width: 110px;
  }

  .logo-item img {
    max-height: 48px;
    height: 48px;
  }

  .carousel-btn {
    height: 32px;
    width: 32px;
    font-size: 1rem;
  }
}

.logo-carousel-shell {
  position: relative;
  border-top: 1px solid rgba(0,0,0,0.07);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  padding: 1.5rem 2.5rem; /* extra horizontal padding so logos don't kiss the arrows */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* The window: what is visible */
.logo-carousel-window {
  overflow: hidden;
  width: 100%;
  max-width: 1100px; /* keeps things nicely centered on large screens */
}

/* Arrow buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 40px;
  width: 40px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.15);
  background-color: #ffffff;
  color: #333;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: all 0.15s ease-out;
  user-select: none;
}

.carousel-btn:hover {
  background-color: #0d6efd;
  color: #fff;
  border-color: #0d6efd;
  box-shadow: 0 12px 24px rgba(13,110,253,0.3);
}

.carousel-btn-left {
  left: 0.5rem;
}

.carousel-btn-right {
  right: 0.5rem;
}

/* --- Portfolio grid --- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem; /* space between cards */
}

/* Responsive: 2 cols on tablets, 1 on phones */
@media (max-width: 992px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .portfolio-grid { grid-template-columns: 1fr; }
}

/* --- Card --- */
.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  border: 1px solid rgba(0,0,0,0.08);
  background: #fff;
  min-height: 240px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

/* Background image with low opacity via ::before */
.project-card::before {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  opacity: 0.75;               /* low opacity preview */
  transition: opacity 0.2s ease-out, transform 0.2s ease-out;
}
.project-card:hover::before {
  opacity: 0.2;
  transform: scale(1.03);
}

/* Text content on top */
.project-content {
  position: relative;
  z-index: 1;
  padding: 1.25rem 1.25rem 3.25rem; /* leave space for the button */
}
.project-content h3 {
  margin: 0 0 .2rem;
  font-size: 1.8rem;
  color: #00277a; -webkit-text-stroke: 0.5px rgba(0, 104, 136, 0.3);
  opacity: 1;
  
}
.project-content p {
  margin: 0;
  color: #4b5563;
}

/* Details button (bottom-right) */
.project-details {
  position: absolute;
  right: .9rem; bottom: .9rem;
  z-index: 2;
  display: inline-block;
  padding: .55rem .9rem;
  background: #0d6efd;     /* blue */
  color: #fff;
  font-weight: 600;
  font-size: 1.2rem;
  border-radius: .5rem;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(13,110,253,0.25);
  transition: transform .12s ease-out, box-shadow .12s ease-out, background .12s ease-out;
}
.project-details:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(13,110,253,0.35);
  background: #f5f5f5;     /* slightly darker on hover */
}

#contact {
  padding: 80px 0;
  background-color: #000;
  color: white;
}

/* ================================
   ACHIEVEMENTS SECTION
================================ */


.achievement-carousel {
  display: flex;
  gap: 3rem;
  align-items: center;
}

/* LEFT IMAGE */
.achievement-image {
  width: min(520px, 42vw);
  flex: 0 0 auto;
  --ar: 3 / 4;
  aspect-ratio: var(--ar);

  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  overflow: hidden;
}

/* switch aspect-ratio when image is landscape/wide */
.achievement-image[data-orient="landscape"]{ --ar: 4 / 3; }
.achievement-image[data-orient="wide"]{ --ar: 16 / 9; }

.achievement-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;        /* small inner rounding */
  display: block;
  background: rgba(255,255,255,0.04);
}

/* RIGHT CONTENT */
.achievement-content {
  flex: 1;
}

.achievement-content h3 {
  font-size: 2rem;
  color: #F8FAFC; /* matches portfolio heading tone */
  margin-bottom: .75rem;
}

.achievement-content p {
  font-size: 1.1rem;
  color: #CBD5E1;
  max-width: 600px;
}

/* ===== First-time reveal animation ===== */
#achievements .achv-reveal{
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  filter: blur(14px);
  transition: opacity 900ms ease, transform 900ms cubic-bezier(.22,.61,.36,1), filter 900ms ease;
}

#achievements.is-visible .achv-reveal{
  opacity: 1;
  transform: none;
  filter: blur(0);
  trasnsition-property: opacity
}

/* stagger */
#achievements.is-visible .achv-reveal.delay-1{ transition-delay: 120ms; }
#achievements.is-visible .achv-reveal.delay-2{ transition-delay: 220ms; }
#achievements.is-visible .achv-reveal.delay-3{ transition-delay: 320ms; }

/* ===== Swipe transitions for content changes ===== */
.achv-swipe-out-left{ animation: achvOutLeft 220ms ease both; }
.achv-swipe-out-right{ animation: achvOutRight 220ms ease both; }
.achv-swipe-in-left{ animation: achvInLeft 420ms cubic-bezier(.22,.61,.36,1) both; }
.achv-swipe-in-right{ animation: achvInRight 420ms cubic-bezier(.22,.61,.36,1) both; }

@keyframes achvOutLeft{
  to{ opacity: 0; transform: translateX(-28px); filter: blur(10px); }
}
@keyframes achvOutRight{
  to{ opacity: 0; transform: translateX(28px); filter: blur(10px); }
}
@keyframes achvInLeft{
  from{ opacity: 0; transform: translateX(40px); filter: blur(12px); }
  to{ opacity: 1; transform: translateX(0); filter: blur(0); }
}
@keyframes achvInRight{
  from{ opacity: 0; transform: translateX(-40px); filter: blur(12px); }
  to{ opacity: 1; transform: translateX(0); filter: blur(0); }
}

/* NAV BUTTONS */
.achievement-nav {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
}

/* =========================
   Awards navigation – edge arrows
========================= */

.award-nav-edge{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 5;

  /* hit area (large but invisible) */
  width: 120px;
  height: 220px;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0.8;
  transition: opacity 220ms ease;
}

.award-nav-edge:hover{
  opacity: 0.8;
}


/* The arrow itself */
.award-nav-edge .arrow{
  font-size: 120px;
  font-weight: 300;
  color: rgba(180,180,180,0.8);
  line-height: 1;

  transition: transform 320ms cubic-bezier(.22,.61,.36,1);
  user-select: none;
}

/* Directional hover motion */
.award-prev:hover .arrow{
  transform: translateX(-10px);
}

.award-next:hover .arrow{
  transform: translateX(10px);
}

/* Hide arrows slightly on mobile */
@media (max-width: 768px){
  .award-nav-edge{
    width: 80px;
    height: 160px;
  }

  .award-nav-edge .arrow{
    font-size: 48px;
  }
}

#achievements{
  position: relative; /* already true via .section-bg, but explicit is fine */
}

/* reuse carousel-btn but softer */
#achievements .carousel-btn {
  position: static;
  height: 42px;
  width: 42px;
  border-radius: 999px;
  border: 1px solid rgba(13,110,253,0.25);
  background: #ffffff;
  color: #0d6efd;
  font-size: 1.2rem;
  box-shadow: 0 8px 20px rgba(13,110,253,0.15);
}

#achievements .carousel-btn:hover {
  background: #0d6efd;
  color: #fff;
}

/* MOBILE STACK */
@media (max-width: 768px) {
  .achievement-carousel {
    flex-direction: column;
    text-align: center;
  }

  .achievement-image {
    width: 440px;
    height: 600px;
  }

  .achievement-content p {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Layer that spans the whole section (full width) */
#achievements .award-nav-layer{
  position: absolute;
  inset: 0;
  z-index: 6;            /* above overlay + content */
  pointer-events: none;  /* so only buttons capture clicks */
}

/* Buttons can still be clicked */
#achievements .award-nav-edge{
  pointer-events: auto;
  top: 50%;
  transform: translateY(-50%);
}

/* True screen-edge docking */
#achievements .award-prev{ left: 18px; }
#achievements .award-next{ right: 18px; }

/* ========= Section backgrounds (scenery) ========= */
.section-bg{
  position: relative;
  overflow: hidden;
  color: #ffffff;                 /* force high-contrast text */
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* dark overlay so text pops on any scenery image */
.section-bg::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.20) 40%,
    rgba(0,0,0,0.50) 100%
  );
  z-index: 0;
}

/* keep section content above overlay */
.section-bg > *{
  position: relative;
  z-index: 1;
}

/* improve readability for headings and small labels */
.section-bg h1,
.section-bg h2,
.section-bg h3,
.section-bg p,
.section-bg sup,
.section-bg li{
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

/* If you have links inside bg sections */
.section-bg a{
  color: #fff;
}
.section-bg a:hover{
  opacity: 0.9;
}

.section-bg::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:0;
  height: 120px;                 /* adjust: 80–160px */
  pointer-events:none;

  /* Fade to your page background (match your global bg color) */
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0.25) 35%,
    rgba(0,0,0,0.65) 100%
  );
}

.section-seam{
  position: absolute;
  left: 0; right: 0;
  bottom: -28px;
  height: 56px;
  pointer-events: none;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0)
  );
}


/* ================================
   NAVBAR: dynamic background
================================ */

.nav-dynamic-bg{
  position: relative;
  background: transparent !important;
  border: 0;
  backdrop-filter: none; /* we’ll do the “glass” effect ourselves */
}

/* Two layers so we can crossfade between section backgrounds */
.nav-dynamic-bg::before,
.nav-dynamic-bg::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;

  background-image: var(--nav-bg-1);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* This is what makes it feel like it blends with the section */
  filter: saturate(1.05) contrast(1.05);
  transform: translateZ(0);
}

/* Second layer holds the “incoming” background */
.nav-dynamic-bg::after{
  background-image: var(--nav-bg-2);
  opacity: 0;
  transition: opacity 520ms ease;
}

/* When swapping, fade the new one in */
.nav-dynamic-bg.nav-bg-swap::after{
  opacity: 1;
}

/* Add a subtle readability overlay on top of the image */
.nav-dynamic-bg .container{
  position: relative;
}

.nav-dynamic-bg .container::before{
  content:"";
  position:absolute;
  inset:-10px -16px; /* slightly larger than container so edges blend */
  pointer-events:none;
  border-radius: 18px;

  /* dark-to-transparent-to-dark like your section overlay idea :contentReference[oaicite:4]{index=4} */
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.15) 55%,
    rgba(0,0,0,0.45) 100%
  );
}

/* Ensure navbar content stays above overlay */
.nav-dynamic-bg .container > *{
  position: relative;
  z-index: 1;
}

/* Make links readable on any scenery */
.nav-dynamic-bg .navbar-brand,
.nav-dynamic-bg .nav-link{
  color: #fff !important;
  text-shadow: 0 2px 14px rgba(0,0,0,0.35);
}

/* Optional: add a soft “edge” instead of section borders */
.nav-dynamic-bg{
  box-shadow: 0 8px 30px rgba(0,0,0,0.20);
}

/* Navbar hide/show on scroll */
#topNav{
  transition: transform 260ms ease, opacity 260ms ease;
  will-change: transform, opacity;
}

#topNav.nav-hidden{
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
}

/* Navbar brand (name on the left) */
#topNav .navbar-brand{
  color: #ffffff !important;
  font-weight: 600; /* optional, makes it feel more premium */
  text-shadow: 0 2px 14px rgba(0,0,0,0.35); /* matches rest of nav text */
  font-family:Arial, Helvetica, sans-serif;
  letter-spacing: 0.04rem;
  font-style:bold;
  font-size:xx-large;
}

/* Keep it white on hover/focus as well */
#topNav .navbar-brand:hover,
#topNav .navbar-brand:focus{
  color: #ffffff !important;
}


/* Full-screen panels (Portfolio + Awards + About) */
#portfolio, #achievements, #about{
  min-height: 100vh;
  display: flex;
  align-items: center;
}

#portfolio > .container,
#achievements > .container,
#about > .container{
  width: 100%;
  padding-top: 50px;  /* room for fixed navbar */
  padding-bottom: 70px;
}

/* =========================
   Global blur-to-appearance reveal
========================= */

.reveal {
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  filter: blur(14px);
  transition:
    opacity 1000ms ease,
    transform 1000ms cubic-bezier(.22,.61,.36,1),
    filter 1000ms ease;
  will-change: opacity, transform, filter;
}

.is-visible .reveal {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

/* Optional: stagger helpers */
.reveal.d1 { transition-delay: 120ms; }
.reveal.d2 { transition-delay: 240ms; }
.reveal.d3 { transition-delay: 360ms; }
.reveal.d4 { transition-delay: 480ms; }
.reveal.d5 { transition-delay: 600ms; }

/* =========================
   Back to top button
========================= */
.back-to-top{
  position: fixed;
  right: 44px;
  bottom: 44px;
  z-index: 9999;

  width: 60px;
  height: 60px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 14px;
  background: rgba(0,0,0,0.30);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  color: rgba(255,255,255,0.85);
  font-size: 18px;
  line-height: 1;

  box-shadow: 0 14px 34px rgba(0,0,0,0.35);

  opacity: 0;
  transform: translateY(10px) scale(0.98);
  pointer-events: none;

  transition: opacity 220ms ease, transform 220ms cubic-bezier(.22,.61,.36,1);
}

.back-to-top:hover{
  opacity: 1;
  transform: translateY(0) scale(1.02);
  scale: 1.1;
}

.back-to-top.is-visible{
  opacity: 0.75;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

@media (max-width: 768px){
  .back-to-top{
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }
}

#about p{
  max-width: 75ch;   /* 65–75ch is ideal for reading */
}

/* Widen About section text container */
#about .container{
  max-width: 1100px;   /* try 1100–1250px */
}
#about .about-text{
  max-width: 1100px;
}

/* =========================
   Full-screen Contact section
========================= */

#contact{
  min-height: 100vh;              /* cover entire screen */
  display: flex;
  align-items: center;            /* vertical centering */
  position: relative;
}

/* Ensure inner container uses full width but centered content */
#contact > .container{
  width: 100%;
  padding-top: calc(var(--nav-space, 0px) + 40px); /* respect navbar */
  padding-bottom: 40px;
}

#about{
  min-height: calc(100vh + 120px);
}
