:root {
  --ink: #103b3b;
  --green: #147a58;
  --line: #dce8d9;
  --shadow: 0 10px 30px rgba(25, 79, 60, .07);
  --container: 1180px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 75% 8%, rgba(225, 238, 214, .8), transparent 22%),
    linear-gradient(120deg, #fffef9 0%, #f8f8ee 100%);
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  line-height: 1.6
}

a {
  color: inherit;
  text-decoration: none
}

img {
  max-width: 100%;
  display: block
}

button {
  font: inherit
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: auto
}

.section {
  position: relative;
  padding: 26px 0
}

.page-glow {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .18;
  pointer-events: none;
  z-index: -2
}

.glow-one {
  top: 100px;
  right: -180px;
  background: #8dd7ad
}

.glow-two {
  bottom: -100px;
  left: -160px;
  background: #d4e8b7
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 254, 247, .88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(220, 232, 217, .55)
}

.nav-wrap {
  height: 66px;
  display: flex;
  align-items: center;
  gap: 26px
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto
}

.brand-mark {
  font-family: "Plus Jakarta Sans";
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -2px;
  color: #187d5b
}

.brand strong {
  display: block;
  font: 800 15px "Plus Jakarta Sans";
  letter-spacing: .2px
}

.brand small {
  display: block;
  font-size: 15px;
  color: #55716c;
  margin-top: 1px
}

.main-nav {
  display: flex;
  gap: 27px;
  height: 100%;
  align-items: center
}

.main-nav a {
  font-size: 15px;
  font-weight: 600;
  position: relative;
  padding: 25px 0;
  color: #214541
}

.main-nav a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transition: .25s
}

.main-nav a:hover:after,
.main-nav a.active:after {
  transform: scaleX(1)
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  transition: .25s;
  white-space: nowrap
}

.btn-primary {
  background: linear-gradient(135deg, #116747, #1b8b65);
  color: #fff;
  box-shadow: 0 7px 17px rgba(21, 112, 78, .16)
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 11px 23px rgba(21, 112, 78, .23)
}

.nav-cv {
  padding: 9px 17px
}

.download-icon {
  font-size: 15px
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 7px
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px;
  border-radius: 2px
}

.hero {
  padding-top: 24px;
  padding-bottom: 14px;
  overflow: hidden
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 10px;
  min-height: 355px
}

.hero-copy {
  padding-top: 8px;
  position: relative;
  z-index: 2
}

.eyebrow {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  padding: 5px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .7);
  box-shadow: 0 3px 12px rgba(30, 80, 60, .04);
  font-size: 15px;
  font-weight: 600
}

.hero h1 {
  font: 800 54px/1 "Plus Jakarta Sans";
  letter-spacing: -3px;
  margin: 11px 0 4px
}

.hero h1 span {
  background: linear-gradient(90deg, #119c75, #4e9d72);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.hero h2 {
  font: 700 20px/1.2 "Plus Jakarta Sans";
  margin: 0 0 13px
}

.hero h2 b {
  font-weight: 500;
  color: #6f9188
}

.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: #276159;
  font-size: 15px;
  margin-bottom: 12px
}

.contact-row b {
  font-weight: 500;
  margin-left: 4px
}

.socials {
  display: flex;
  gap: 8px;
  margin-bottom: 12px
}

.socials a {
  padding: 6px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 3px 10px rgba(35, 80, 60, .04);
  font-size: 15px;
  font-weight: 700
}

.socials a span {
  font-weight: 500;
  margin-left: 3px
}

.socials .pill-link {
  background: #167956;
  color: #fff;
  border-color: #167956
}

.lead {
  max-width: 560px;
  color: #355f5a;
  font-size: 15px;
  line-height: 1.72;
  margin: 0 0 17px
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  max-width: 570px
}

.stat {
  display: flex;
  gap: 7px;
  align-items: center;
  padding-right: 7px;
  border-right: 1px solid var(--line)
}

.stat:last-child {
  border: 0
}

.stat-icon {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #eff8e8, #e2f1e3);
  font-size: 15px;
  color: #137454;
  font-weight: 800
}

.stat strong {
  display: block;
  font-size: 15px
}

.stat small {
  display: block;
  font-size: 15px;
  color: #6b8680
}

.hero-art {
  position: relative;
  min-height: 390px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: visible
}

.hero-reference {
  width: 100%;
  max-width: 590px;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 4px;
  filter: drop-shadow(0 14px 26px rgba(31, 94, 67, .09));
  transition: transform .45s ease, filter .45s ease
}

.hero-art:hover .hero-reference {
  transform: translateY(-5px) scale(1.01);
  filter: drop-shadow(0 18px 32px rgba(31, 94, 67, .14))
}

.skills-panel {
  display: grid;
  grid-template-columns: 1.05fr 1.95fr;
  gap: 28px;
  padding: 15px 20px;
  border: 1px solid rgba(211, 226, 210, .8);
  background: rgba(255, 255, 250, .52);
  border-radius: 17px;
  box-shadow: var(--shadow)
}

.mini-label {
  font-size: 15px;
  letter-spacing: 1.2px;
  color: #2b8068;
  font-weight: 800
}

.skills-intro h2,
.value-copy h2 {
  font: 800 21px/1.15 "Plus Jakarta Sans";
  margin: 7px 0 9px;
  letter-spacing: -.7px
}

.skills-intro p {
  font-size: 15px;
  line-height: 1.65;
  color: #55766f;
  max-width: 275px;
  margin: 0 0 16px
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 7px
}

.tech-card {
  min-height: 76px;
  background: rgba(255, 255, 255, .76);
  border: 1px solid #e0e9df;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  transition: .25s;
  box-shadow: 0 5px 14px rgba(35, 80, 60, .035)
}

.tech-card:hover {
  transform: translateY(-4px);
  border-color: #b7d8c4;
  box-shadow: 0 10px 20px rgba(25, 100, 70, .09)
}

.tech-card b {
  font-size: 15px
}

.tech-logo {
  font-size: 28px;
  font-weight: 800;
  line-height: 1
}

.react {
  color: #00b7e9
}

.next {
  background: #111;
  color: #fff;
  border-radius: 50%;
  font-size: 20px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center
}

.node {
  color: #69b82c
}

.py {
  font-size: 20px
}

.pg {
  font-size: 23px
}

.mongo {
  color: #52a81f
}

.aws {
  color: #f18c19;
  font-size: 18px
}

.azure {
  color: #178ed0;
  font-size: 20px
}

.docker {
  color: #1d8ad0
}

.git {
  color: #ed5b3e
}

.lang {
  color: #157454
}

.openai {
  color: #14a86d
}

.value {
  padding-top: 12px
}

.value-panel {
  display: grid;
  grid-template-columns: 190px 1fr 395px;
  align-items: center;
  gap: 22px;
  padding: 18px 28px;
  background: linear-gradient(100deg, rgba(235, 246, 226, .88), rgba(255, 255, 246, .7));
  border: 1px solid #e2eadb;
  border-radius: 17px;
  overflow: hidden
}

.ai-image {
  width: 170px;
  height: auto;
  display: block;
  border-radius: 14px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(31, 94, 67, .12));
  justify-self: center
}

.value-copy p {
  margin: 0;
  color: #58736e;
  font-size: 15px;
  line-height: 1.55
}

.principles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 20px;
  border-left: 1px solid #d6e3d3;
  padding-left: 30px
}

.principles span {
  font-size: 15px;
  color: #42665f
}

.principles span:first-letter {
  color: #16825d
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin: 5px 5px 14px
}

.section-heading h2 {
  font: 800 27px/1.15 "Plus Jakarta Sans";
  letter-spacing: -.7px;
  margin-bottom: 0
}

.section-heading p {
  margin: 3px 0 0;
  color: #66827d;
  font-size: 15px
}

.section-heading>a {
  font-size: 15px;
  color: #287a63;
  border-bottom: 1px solid #8abda7;
  padding-bottom: 2px
}

.timeline {
  position: relative;
  padding-left: 28px
}

.timeline:before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 10px;
  width: 1px;
  background: #b9d9c3
}

.job {
  position: relative;
  display: grid;
      grid-template-columns: 42px 202px 144px 1fr;
  align-items: start;
  gap: 10px;
  padding: 11px 14px 11px 12px;
  margin-bottom: 8px;
  border: 1px solid #e3e9df;
  border-radius: 13px;
  background: rgba(255, 255, 251, .7);
  box-shadow: 0 4px 12px rgba(35, 80, 60, .035);
  min-height: 64px
}

.job-dot {
  position: absolute;
  left: -24px;
  top: 27px;
  width: 8px;
  height: 8px;
  background: #16815c;
  border-radius: 50%;
  box-shadow: 0 0 0 3px #d9ecdc
}

.company-logo {
  width: 39px;
  height: 39px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 15px;
  border: 1px solid #dfe8de
}

.emr {
  background: #fff
}

.dn {
  background: #174e55;
  color: #fff
}

.sd {
  background: #f7ead1;
  color: #7d6a37
}

.tt {
  background: #e8f4e8;
  color: #17694f
}

.cm {
  background: #eef4f4;
  color: #1b5756
}

.job-title strong {
  display: block;
  font-size: 15px
}

.job-title span {
  display: block;
  font-size: 15px;
  color: #45665f
}

.job-title small {
  display: block;
  color: #78908b;
  font-size: 15px;
  margin-top: 2px
}

.job time {
  justify-self: start;
  background: #eef6e9;
  border-radius: 999px;
  padding: 4px 9px;
  color: #378069;
  font-size: 12px;
  white-space: nowrap
}

.job ul {
  margin: 0;
  padding-left: 15px;
  color: #55716c;
  font-size: 15px;
  line-height: 1.55
}

.job li {
  padding-left: 2px
}

.projects {
  padding-top: 12px
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px
}

.project-card {
  padding: 10px;
  border: 1px solid #e0e8dd;
  background: rgba(255, 255, 251, .78);
  border-radius: 13px;
  box-shadow: 0 5px 15px rgba(35, 80, 60, .035);
  transition: .25s
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 13px 24px rgba(25, 90, 65, .1)
}

.project-visual {
  height: 52px;
  width: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 23px;
  color: #fff;
  margin-bottom: 7px
}

.graph {
  background: radial-gradient(circle, #0d6f7c, #0a4e61)
}

.sachi {
  background: linear-gradient(145deg, #2cbd82, #14815c)
}

.vidary {
  background: linear-gradient(145deg, #258d73, #176c62)
}

.family {
  background: linear-gradient(145deg, #b5dc76, #4f9b61)
}

.project-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px
}

.project-top h3 {
  margin: 0;
  font: 800 15px "Plus Jakarta Sans"
}

.project-top span {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #eaf6e9;
  color: #218060;
  display: grid;
  place-items: center;
  font-size: 15px
}

.project-card>small {
  display: block;
  font-size: 15px;
  color: #58746e;
  margin: 1px 0 6px
}

.chips {
  display: flex;
  gap: 3px;
  flex-wrap: wrap
}

.chips i {
  font-style: normal;
  font-size: 15px;
  padding: 3px 5px;
  background: #edf6e9;
  color: #348067;
  border-radius: 999px
}

.project-card p {
  font-size: 15px;
  line-height: 1.55;
  color: #59736e;
  margin: 7px 0 1px
}

.project-view {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 6px 0 0;
  background: none;
  border: 0;
  border-top: 1px solid #e2ece0;
  width: 100%;
  font-weight: 700;
  font-size: 13px;
  color: #176f51;
  cursor: pointer;
  transition: color .25s
}

.project-view span {
  transition: transform .25s
}

.project-view:hover {
  color: #0d9c6e
}

.project-view:hover span {
  transform: translateX(4px)
}

body.no-scroll {
  overflow: hidden
}

.project-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  visibility: hidden;
  opacity: 0;
  transition: opacity .32s ease, visibility .32s ease
}

.project-modal.open {
  visibility: visible;
  opacity: 1
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 44, 41, .52);
  backdrop-filter: blur(3px)
}

.modal-drawer {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(470px, 100%);
  background: linear-gradient(180deg, #fffef8, #f7fbf4);
  box-shadow: -18px 0 45px rgba(16, 59, 59, .24);
  transform: translateX(102%);
  transition: transform .4s cubic-bezier(.2, .8, .3, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column
}

.project-modal.open .modal-drawer {
  transform: none
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 10;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #dce8d9;
  background: #fff;
  color: #2a5c52;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: .25s
}

.modal-close:hover {
  background: #eaf6e9;
  color: #0d6e4e;
  transform: rotate(90deg)
}

.modal-content {
  padding: 26px 24px 34px
}

.modal-head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e4eee1
}

.modal-head .project-visual {
  flex: none;
  width: 64px;
  height: 64px;
  font-size: 28px;
  margin-bottom: 0
}

.modal-head-text small {
  display: block;
  color: #64817c;
  font-size: 13px;
  margin-bottom: 2px
}

.modal-head-text h3 {
  margin: 0 0 8px;
  font: 800 24px/1.2 "Plus Jakarta Sans";
  color: var(--ink);
  letter-spacing: -.5px
}

.modal-head-text .chips i {
  font-size: 11px
}

.modal-body h4 {
  margin: 24px 0 8px;
  font: 800 15px "Plus Jakarta Sans";
  color: #145a46;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 12px
}

.modal-body p {
  margin: 0;
  color: #45665f;
  font-size: 14px;
  line-height: 1.65
}

.feature-list {
  margin: 0;
  padding: 0 0 0 20px;
  color: #45665f;
  font-size: 14px;
  line-height: 1.7
}

.feature-list li {
  margin-bottom: 6px
}

.feature-list li::marker {
  color: #19a47a
}

.cta {
  padding-top: 13px
}

.cta-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 48px 1fr 210px 160px;
  align-items: center;
  gap: 12px;
  padding: 17px 32px;
  background: linear-gradient(100deg, #eef7e7, #fdfcf1);
  border-top: 1px solid #dce8d9;
  border-bottom: 1px solid #dce8d9
}

.send-icon {
  width: 37px;
  height: 37px;
  border-radius: 50%;
  background: #7fb96b;
  color: #fff;
  display: grid;
  place-items: center;
  transform: rotate(-15deg)
}

.cta-panel h2 {
  font: 800 15px "Plus Jakarta Sans";
  margin: 0
}

.cta-panel p {
  font-size: 15px;
  color: #6a817b;
  margin: 1px 0
}

.cta-contact {
  display: grid;
  gap: 3px;
  color: #55766f;
  font-size: 15px
}

.cta-panel .btn {
  font-size: 15px;
  padding: 8px 12px
}

.bot-art {
  position: absolute;
  right: -5px;
  bottom: -19px;
  opacity: .55;
  display: flex;
  align-items: end;
  gap: 5px;
  transform: scale(.8)
}

.bot {
  width: 62px;
  height: 58px;
  border-radius: 14px 14px 22px 22px;
  background: #79c7a0;
  border: 3px solid #edf8e9;
  color: #fff;
  display: grid;
  place-items: center;
  letter-spacing: 13px;
  padding-left: 10px
}

.bot-art>span {
  align-self: start;
  background: #8ecfb0;
  padding: 5px;
  border-radius: 7px;
  color: #fff;
  font-size: 15px
}
.glow-three{
  background-image: url('./assets/footer_bg.png');
  background-size: cover;
  background-position: bottom center;
}
.site-footer {
  padding: 14px 0 17px;
  background: rgba(255, 254, 247, .6);
  
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.footer-inner .brand-mark {
  font-size: 20px
}

.footer-inner .brand strong {
  font-size: 15px
}

.footer-inner .brand small {
  font-size: 15px
}

.footer-inner p {
  font-size: 15px;
  color: #66817b
}

.footer-social {
  display: flex;
  gap: 17px;
  font-size: 15px
}

.footer-social a:hover {
  color: var(--green)
}

.reveal {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity .65s ease, transform .65s ease
}

.reveal.is-visible {
  opacity: 1;
  transform: none
}

@media(max-width:900px) {
  :root {
    --container: 900px
  }

  .main-nav {
    gap: 17px
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px
  }

  .hero h1 {
    font-size: 48px
  }

  .hero h2 {
    font-size: 19px
  }

  .hero-reference {
    max-width: 510px
  }

  .job {
    grid-template-columns: 42px 1fr 105px
  }

  .job ul {
    grid-column: 2/5
  }

  .value-panel {
    grid-template-columns: 160px 1fr
  }

  .ai-image {
    width: 140px
  }

  .principles {
    grid-column: 1/-1;
    border-left: 0;
    border-top: 1px solid #d6e3d3;
    padding: 12px 0 0
  }

  .project-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:680px) {
  .container {
    width: min(100% - 28px, 540px)
  }

  .nav-wrap {
    height: 60px
  }

  .main-nav {
    position: absolute;
    top: 60px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    height: auto;
    gap: 0;
    padding: 8px;
    background: #fffef8;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 18px 35px rgba(30, 80, 60, .12);
    z-index: 60
  }

  .main-nav.open {
    display: flex
  }

  .main-nav a {
    padding: 11px 14px
  }

  .main-nav a:after {
    bottom: 5px
  }

  .menu-toggle {
    display: block
  }

  .nav-cv {
    display: none
  }

  .hero {
    padding-top: 18px
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 0
  }

  .hero-copy {
    padding-top: 0
  }

  .hero h1 {
    font-size: 44px;
    letter-spacing: -2.3px
  }

  .hero h2 {
    font-size: 17px
  }

  .contact-row {
    gap: 8px 14px
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px
  }

  .stat {
    border: 0
  }

  .hero-art {
    min-height: 300px;
    margin-top: 3px;
    justify-content: center
  }

  .hero-reference {
    width: 100%;
    max-width: 510px
  }

  .skills-panel {
    grid-template-columns: 1fr;
    padding: 18px
  }

  .skills-intro p {
    max-width: none
  }

  .tech-grid {
    grid-template-columns: repeat(4, 1fr)
  }

  .tech-card {
    min-height: 70px
  }

  .value-panel {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px
  }

  .ai-image {
    width: 100%;
    max-width: 300px;
    margin: 0 auto
  }

  .principles {
    grid-template-columns: 1fr 1fr
  }

  .section-heading {
    align-items: start
  }

  .section-heading>a {
    display: none
  }

  .timeline {
    padding-left: 19px
  }

  .timeline:before {
    left: 5px
  }

  .job {
    grid-template-columns: 38px 1fr;
    padding: 10px;
    gap: 8px
  }

  .job-dot {
    left: -18px
  }

  .job time {
    grid-column: 2;
    justify-self: start
  }

  .job ul {
    grid-column: 1/-1;
    padding-left: 18px;
    font-size: 15px
  }

  .project-grid {
    grid-template-columns: 1fr 1fr
  }

  .cta-panel {
    grid-template-columns: 40px 1fr;
    gap: 10px;
    padding: 17px
  }

  .cta-contact {
    grid-column: 1/-1;
    grid-template-columns: 1fr 1fr
  }

  .cta-panel>.btn {
    grid-column: 1/-1;
    justify-self: start
  }

  .bot-art {
    right: -22px
  }

  .footer-inner {
    flex-wrap: wrap;
    gap: 10px
  }

  .footer-inner p {
    order: 3;
    width: 100%;
    text-align: center
  }
}

@media(max-width:430px) {
  .hero h1 {
    font-size: 39px
  }

  .tech-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .project-grid {
    grid-template-columns: 1fr
  }

  .principles {
    grid-template-columns: 1fr
  }

  .hero-art {
    min-height: 270px
  }

  .hero-reference {
    width: 108%;
    max-width: none;
    margin-left: -4%
  }
}