:root{
  --bg:#020611;
  --panel:rgba(7,15,31,.78);
  --panel-dark:rgba(3,8,18,.92);
  --line:rgba(148,163,184,.16);
  --cyan:#25e5ff;
  --blue:#4ea8ff;
  --pink:#ff4fa3;
  --purple:#a66cff;
  --text:#f8fafc;
  --muted:#94a3b8;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:Inter,Arial,sans-serif;
  overflow-x:hidden;
}


/* =====================================================
   BACKGROUND
===================================================== */

.stars{
  position:fixed;
  inset:0;
  z-index:-5;

  background-image:
    radial-gradient(
      circle,
      rgba(37,229,255,.5) 1px,
      transparent 1.5px
    ),
    radial-gradient(
      circle,
      rgba(255,79,163,.4) 1px,
      transparent 1.5px
    );

  background-size:110px 110px,160px 160px;
  background-position:20px 30px,80px 90px;

  opacity:.28;
}

.stars:after{
  content:"";
  position:absolute;
  inset:0;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(37,229,255,.035),
      transparent
    );
}

.glow{
  position:fixed;

  width:360px;
  height:360px;

  border-radius:50%;

  filter:blur(110px);

  z-index:-4;

  opacity:.13;
}

.g1{
  background:var(--cyan);
  left:-180px;
  top:20%;
}

.g2{
  background:var(--pink);
  right:-180px;
  top:55%;
}


/* =====================================================
   NAVBAR
===================================================== */

.nav{
  position:fixed;
  z-index:30;

  top:12px;
  left:2%;
  right:2%;

  height:66px;

  border:1px solid var(--line);
  border-radius:18px;

  background:rgba(2,6,17,.82);

  backdrop-filter:blur(18px);

  display:flex;
  align-items:center;

  padding:0 20px;
  gap:18px;

  box-shadow:
    0 15px 50px rgba(0,0,0,.28);
}

.brand{
  font:700 28px "Space Grotesk",sans-serif;

  text-decoration:none;

  letter-spacing:-2px;

  background:
    linear-gradient(
      90deg,
      var(--cyan),
      var(--pink)
    );

  -webkit-background-clip:text;
  background-clip:text;

  color:transparent;

  min-width:80px;
}

.nav nav{
  display:flex;

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

  gap:18px;

  flex:1;
}

.nav nav a{
  color:#cbd5e1;

  text-decoration:none;

  font-size:10px;
  font-weight:800;

  letter-spacing:.5px;

  padding:23px 0;

  position:relative;

  transition:.25s;
}

.nav nav a:hover{
  color:var(--cyan);
}

.resume{
  color:#fff;

  text-decoration:none;

  border:1px solid var(--pink);

  border-radius:12px;

  padding:10px 16px;

  font-size:10px;
  font-weight:800;

  transition:.25s;
}

.resume:hover{
  background:rgba(255,79,163,.1);

  box-shadow:
    0 0 20px rgba(255,79,163,.18);
}

.hamb{
  display:none;

  background:none;

  color:white;

  border:0;

  font-size:23px;

  margin-left:auto;

  cursor:pointer;
}


/* =====================================================
   HERO
===================================================== */

.hero{
  min-height:100vh;

  max-width:1250px;

  margin:auto;

  padding:150px 28px 80px;

  display:grid;

  grid-template-columns:1.5fr .8fr;

  align-items:center;

  gap:60px;
}

.hero-kicker{
  color:var(--cyan);

  font-weight:800;

  font-size:10px;

  letter-spacing:2px;
}

.hero h1{
  font:700 clamp(50px,7vw,88px)
       "Space Grotesk",sans-serif;

  line-height:.95;

  margin:18px 0;

  background:
    linear-gradient(
      90deg,
      var(--cyan),
      #7c9cff,
      var(--pink)
    );

  -webkit-background-clip:text;
  background-clip:text;

  color:transparent;
}

.hero h2{
  font:600 27px "Space Grotesk",sans-serif;

  margin:20px 0;
}

.hero p{
  color:#cbd5e1;

  max-width:720px;

  line-height:1.8;
}

.buttons{
  display:flex;

  flex-wrap:wrap;

  gap:10px;

  margin:28px 0;
}

.btn{
  display:inline-block;

  color:#fff;

  text-decoration:none;

  border:1px solid rgba(37,229,255,.4);

  padding:13px 17px;

  border-radius:11px;

  font-size:10px;

  font-weight:800;

  background:rgba(8,20,39,.65);

  transition:.25s;
}

.btn:hover{
  transform:translateY(-3px);

  box-shadow:
    0 0 25px rgba(37,229,255,.16);
}

.primary{
  border-color:var(--pink);

  background:
    linear-gradient(
      90deg,
      rgba(37,229,255,.15),
      rgba(255,79,163,.16)
    );
}

.social{
  display:flex;

  gap:8px;
}

.social a{
  width:38px;
  height:38px;

  border:1px solid var(--line);

  border-radius:10px;

  display:grid;

  place-items:center;

  text-decoration:none;

  color:white;

  font-weight:800;

  background:rgba(7,15,31,.7);

  transition:.25s;
}

.social a:hover{
  color:var(--cyan);

  border-color:var(--cyan);

  transform:translateY(-3px);
}


/* =====================================================
   HERO TERMINAL
===================================================== */

.hero-card{
  justify-self:end;

  width:min(360px,100%);

  padding:1px;

  border-radius:22px;

  background:
    linear-gradient(
      135deg,
      var(--cyan),
      transparent 35%,
      var(--pink)
    );

  box-shadow:
    0 0 60px rgba(37,229,255,.08);
}

.mini-terminal{
  background:rgba(3,8,18,.96);

  border-radius:21px;

  padding:28px;

  font:13px/1.9 monospace;

  color:#b8c7d9;

  min-height:280px;
}

.mini-terminal span{
  color:var(--cyan);
}

.mini-terminal b{
  color:#f8fafc;
}

.mini-terminal em{
  color:#86efac;

  font-style:normal;
}


/* =====================================================
   SECTIONS
===================================================== */

.section{
  max-width:1250px;

  margin:auto;

  padding:100px 28px 30px;
}

.heading{
  text-align:center;

  margin-bottom:34px;
}

.heading small{
  color:var(--cyan);

  font-weight:800;

  font-size:10px;

  letter-spacing:2px;
}

.heading h2{
  font:700 42px "Space Grotesk",sans-serif;

  margin:8px 0;
}

.heading h2 i{
  font-style:normal;

  color:var(--pink);
}

.heading p{
  color:var(--muted);

  font-size:13px;

  margin:0;
}


/* =====================================================
   PREMIUM ABOUT CARD
===================================================== */

.about-card{

  display:grid;

  grid-template-columns:350px 1fr;

  gap:40px;

  padding:22px;

  position:relative;

  border-radius:22px;

  background:
    linear-gradient(
      rgba(5,12,26,.94),
      rgba(5,12,26,.94)
    ) padding-box,

    linear-gradient(
      120deg,
      var(--cyan),
      rgba(37,229,255,.08) 35%,
      rgba(255,79,163,.08) 65%,
      var(--pink)
    ) border-box;

  border:1px solid transparent;

  box-shadow:
    0 0 50px rgba(37,229,255,.05),
    0 0 50px rgba(255,79,163,.04);
}


/* =====================================================
   PROFILE
===================================================== */

.about-profile{

  display:flex;

  flex-direction:column;

  align-items:center;

  width:100%;
}

.profile-image{

  position:relative;

  width:100%;

  height:415px;

  overflow:hidden;

  border-radius:17px;

  border:1px solid var(--cyan);

  background:#07111e;

  box-shadow:
    0 0 30px rgba(37,229,255,.12);
}

.profile-image::before{

  content:"";

  position:absolute;

  inset:0;

  border-radius:17px;

  border:1px solid rgba(255,79,163,.35);

  pointer-events:none;

  z-index:2;
}

.profile-image::after{

  content:"";

  position:absolute;

  left:0;
  right:0;

  top:5%;

  height:2px;

  background:var(--cyan);

  box-shadow:
    0 0 15px var(--cyan),
    0 0 30px var(--cyan);

  animation:profileScan 4s linear infinite;

  z-index:3;
}

@keyframes profileScan{

  0%{
    top:5%;
  }

  50%{
    top:94%;
  }

  100%{
    top:5%;
  }
}

.profile-image img{

  width:100%;

  height:100%;

  object-fit:cover;

  display:block;
}


/* =====================================================
   ABOUT SOCIAL ICONS
===================================================== */
/* SOCIAL ICONS */

.about-social{
  display:flex;
  justify-content:center;
  gap:12px;
  margin-top:16px;
}

.about-social a{
  width:46px;
  height:46px;

  display:grid;
  place-items:center;

  border-radius:11px;

  color:#f8fafc;
  text-decoration:none;

  background:rgba(7,15,31,.9);

  border:1px solid rgba(37,229,255,.35);

  font-size:18px;

  transition:.3s ease;
}

.about-social a:hover{
  transform:translateY(-5px);
  color:var(--cyan);
  border-color:var(--cyan);

  box-shadow:
    0 0 20px rgba(37,229,255,.3);
}


/* INFORMATION ICONS */

.info-icon{
  width:47px;
  height:47px;

  min-width:47px;

  display:grid;
  place-items:center;

  border-radius:10px;

  font-size:18px;
}

.info-icon.cyan{
  color:var(--cyan);
  border:1px solid var(--cyan);
  background:rgba(37,229,255,.05);
}

.info-icon.purple{
  color:var(--purple);
  border:1px solid var(--purple);
  background:rgba(166,108,255,.05);
}

.info-icon.pink{
  color:var(--pink);
  border:1px solid var(--pink);
  background:rgba(255,79,163,.05);
}

.info-box{
  display:flex;
  align-items:center;
  gap:13px;

  padding:13px;

  border-radius:12px;

  border:1px solid rgba(148,163,184,.12);

  background:rgba(2,6,17,.38);

  transition:.3s ease;
}

.info-box:hover{
  transform:translateY(-3px);
  border-color:var(--cyan);

  box-shadow:
    0 0 18px rgba(37,229,255,.08);
}

.info-box label{
  display:block;

  color:var(--cyan);

  font-size:9px;
  font-weight:800;

  letter-spacing:1px;

  margin-bottom:5px;
}

.info-box strong{
  display:block;

  color:#f8fafc;

  font-size:12px;
}

.info-box span{
  display:block;

  color:var(--muted);

  font-size:11px;

  margin-top:2px;
}
/* =====================================================
   ABOUT CONTENT
===================================================== */

.about-content{

  padding:5px 10px;
}

.hello{

  display:block;

  color:var(--cyan);

  font-size:11px;

  font-weight:800;

  letter-spacing:2px;
}

.about-content h3{

  margin:7px 0 7px;

  font:700 43px
       "Space Grotesk",sans-serif;
}

.about-content h4{

  margin:0 0 23px;

  font-size:18px;

  line-height:1.5;

  font-weight:600;

  background:
    linear-gradient(
      90deg,
      var(--pink),
      var(--purple)
    );

  -webkit-background-clip:text;

  background-clip:text;

  -webkit-text-fill-color:transparent;
}

.about-content h4 span{

  color:#64748b;

  margin:0 4px;
}

.about-content > p{

  color:#cbd5e1;

  font-size:14px;

  line-height:1.8;

  margin:0 0 15px;
}


/* =====================================================
   ABOUT INFORMATION
===================================================== */

.about-info{

  display:grid;

  grid-template-columns:1fr 1fr;

  gap:12px;

  margin-top:23px;

  padding-top:18px;

  border-top:1px solid var(--line);
}

.info-box{

  display:flex;

  align-items:center;

  gap:13px;

  padding:13px;

  min-height:75px;

  border-radius:12px;

  border:1px solid rgba(148,163,184,.12);

  background:rgba(2,6,17,.38);

  transition:.3s ease;
}

.info-box:hover{

  transform:translateY(-3px);

  border-color:var(--cyan);

  box-shadow:
    0 0 18px rgba(37,229,255,.08);
}

.info-icon{

  width:47px;
  height:47px;

  min-width:47px;

  display:grid;

  place-items:center;

  border-radius:10px;

  font-size:18px;
}

.info-icon.cyan{

  color:var(--cyan);

  border:1px solid var(--cyan);

  background:rgba(37,229,255,.05);
}

.info-icon.purple{

  color:var(--purple);

  border:1px solid var(--purple);

  background:rgba(166,108,255,.05);
}

.info-icon.pink{

  color:var(--pink);

  border:1px solid var(--pink);

  background:rgba(255,79,163,.05);
}

.info-box label{

  display:block;

  color:var(--cyan);

  font-size:9px;

  font-weight:800;

  letter-spacing:1px;

  margin-bottom:5px;
}

.info-box strong{

  display:block;

  color:#f8fafc;

  font-size:12px;

  line-height:1.4;
}

.info-box span{

  display:block;

  color:var(--muted);

  font-size:11px;

  margin-top:2px;
}


/* =====================================================
   CURRENT ROLE
===================================================== */

.current-role{

  display:grid;

  grid-template-columns:1.25fr 1fr 220px;

  align-items:center;

  gap:25px;

  margin-top:14px;

  padding:20px;

  border-radius:17px;

  background:
    linear-gradient(
      rgba(5,15,30,.92),
      rgba(5,15,30,.92)
    ) padding-box,

    linear-gradient(
      90deg,
      var(--cyan),
      var(--purple),
      var(--pink)
    ) border-box;

  border:1px solid transparent;

  position:relative;

  overflow:hidden;
}

.current-role::before{

  content:"";

  position:absolute;

  left:0;
  top:0;
  bottom:0;

  width:3px;

  background:
    linear-gradient(
      var(--cyan),
      var(--pink)
    );

  box-shadow:
    0 0 15px var(--cyan);
}


/* ROLE MAIN */

.role-main{

  display:flex;

  align-items:center;

  gap:18px;
}

.role-logo{

  width:68px;
  height:68px;

  min-width:68px;

  display:grid;

  place-items:center;

  border-radius:16px;

  color:var(--cyan);

  font-size:28px;

  border:1px solid var(--cyan);

  background:
    linear-gradient(
      135deg,
      rgba(37,229,255,.12),
      rgba(255,79,163,.08)
    );

  box-shadow:
    0 0 25px rgba(37,229,255,.13);
}

.role-label{

  color:var(--cyan);

  font-size:10px;

  font-weight:800;

  letter-spacing:1.5px;
}

.role-details h3{

  margin:5px 0;

  color:white;

  font:600 20px
       "Space Grotesk",sans-serif;
}

.role-details h4{

  margin:0;

  color:var(--pink);

  font-size:14px;
}

.role-details p{

  margin:7px 0 0;

  color:var(--muted);

  font-size:11px;
}

.role-details p i{

  color:var(--cyan);

  margin-right:5px;
}


/* =====================================================
   ROLE RESPONSIBILITIES
===================================================== */

.role-responsibilities{

  display:flex;

  flex-direction:column;

  gap:12px;
}

.role-responsibilities div{

  color:#d7dce5;

  font-size:12px;

  line-height:1.4;
}

.role-responsibilities i{

  color:var(--cyan);

  margin-right:7px;
}


/* =====================================================
   OFFER LETTER
===================================================== */

.offer-letter{

  min-height:76px;

  display:flex;

  align-items:center;

  gap:13px;

  padding:14px;

  border-radius:13px;

  border:1px solid var(--cyan);

  background:
    linear-gradient(
      135deg,
      rgba(37,229,255,.05),
      rgba(255,79,163,.03)
    );

  transition:.3s;
}

.offer-letter:hover{

  transform:translateY(-3px);

  box-shadow:
    0 0 25px rgba(37,229,255,.12);
}

.offer-letter > i{

  color:var(--cyan);

  font-size:28px;
}

.offer-letter strong{

  display:block;

  color:white;

  font-size:14px;

  margin-bottom:5px;
}

.offer-letter a{

  color:var(--cyan);

  text-decoration:none;

  font-size:11px;
}

.offer-letter a:hover{

  color:var(--pink);
}

.offer-letter a i{

  margin-left:4px;

  font-size:9px;
}


/* =====================================================
   PROFESSIONAL FOCUS
===================================================== */

.professional-focus{

  margin-top:14px;

  padding:20px;

  border-radius:16px;

  border:1px solid rgba(37,229,255,.22);

  background:
    rgba(5,12,25,.72);
}

.professional-focus > span{

  display:block;

  color:var(--cyan);

  font-size:11px;

  font-weight:800;

  letter-spacing:1.5px;

  margin-bottom:14px;
}

.focus-tags{

  display:flex;

  flex-wrap:wrap;

  gap:10px;
}

.focus-tags b{

  padding:9px 14px;

  border-radius:7px;

  color:#dbe3ec;

  font-size:11px;

  font-weight:500;

  border:1px solid rgba(37,229,255,.35);

  background:rgba(37,229,255,.025);

  transition:.3s ease;
}

.focus-tags b:hover{

  color:white;

  border-color:var(--pink);

  transform:translateY(-3px);

  box-shadow:
    0 0 15px rgba(255,79,163,.12);
}


/* =====================================================
   STATS
===================================================== */

.stats{

  display:grid;

  grid-template-columns:repeat(4,1fr);

  gap:13px;

  margin-top:14px;
}

.stats div{

  padding:22px;

  text-align:center;

  border:1px solid var(--line);

  border-radius:15px;

  background:
    linear-gradient(
      135deg,
      rgba(37,229,255,.06),
      rgba(255,79,163,.06)
    );
}

.stats b{

  display:block;

  font:700 30px "Space Grotesk";

  background:
    linear-gradient(
      90deg,
      var(--cyan),
      var(--pink)
    );

  -webkit-background-clip:text;

  background-clip:text;

  color:transparent;
}

.stats span{

  font-size:9px;

  color:var(--muted);

  font-weight:700;
}


/* =====================================================
   SKILLS
===================================================== */

./* =====================================================
   TECHNICAL SKILLS GRID
===================================================== */

.skill-grid {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 18px;

  width: 100%;

  margin-top: 30px;
}


/* =========================
   SKILL CARD
========================= */

.skill-grid article {
  padding: 24px;

  min-height: 150px;

  background:
    linear-gradient(
      135deg,
      rgba(7, 15, 31, .88),
      rgba(7, 21, 58, .55)
    );

  border: 1px solid var(--line);

  border-radius: 16px;

  transition:
    transform .3s ease,
    border-color .3s ease,
    box-shadow .3s ease;
}


.skill-grid article:hover {
  transform: translateY(-4px);

  border-color:
    rgba(37, 229, 255, .45);

  box-shadow:
    0 15px 40px rgba(0, 0, 0, .25),
    0 0 25px rgba(37, 229, 255, .08);
}


/* =========================
   SKILL TITLE
========================= */

.skill-grid h3 {
  display: flex;

  align-items: center;

  gap: 10px;

  margin: 0 0 18px;

  font:
    600 18px "Space Grotesk";

  color: var(--text);
}


.skill-grid h3 i {
  color: var(--cyan);

  font-size: 17px;
}


/* =========================
   SKILL TAGS
========================= */

.tags {
  display: flex;

  flex-wrap: wrap;

  gap: 7px;
}


.tags span {
  display: inline-flex;

  align-items: center;

  padding: 8px 10px;

  font-size: 10px;

  line-height: 1;

  color: #cbd5e1;

  background:
    rgba(7, 21, 58, .55);

  border:
    1px solid rgba(148, 163, 184, .17);

  border-radius: 7px;

  transition:
    .25s ease;
}


.tags span:hover {
  color: #ffffff;

  border-color:
    rgba(37, 229, 255, .45);

  background:
    rgba(37, 229, 255, .08);

  transform:
    translateY(-2px);

  box-shadow:
    0 0 15px rgba(37, 229, 255, .08);
}


/* =========================
   GLASS EFFECT
========================= */

.skill-grid article.glass {
  backdrop-filter: blur(15px);

  -webkit-backdrop-filter: blur(15px);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 850px) {

  .skill-grid {
    grid-template-columns: 1fr 1fr;

    gap: 14px;
  }

  .skill-grid article {
    padding: 20px;
  }

}


/* =====================================================
   MOBILE
===================================================== */

/* =====================================================
   MOBILE RESPONSIVE FIX
   ABOUT + ROLE + SKILLS + STATS
===================================================== */

@media (max-width: 760px) {

  /* ---------- GLOBAL ---------- */

  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  * {
    max-width: 100%;
  }


  /* ---------- NAVBAR ---------- */

  .nav {
    top: 8px;
    left: 12px;
    right: 12px;

    width: auto;
    height: 58px;

    padding: 0 12px;

    border-radius: 15px;

    gap: 8px;
  }

  .brand {
    min-width: 0;

    font-size: 20px;

    line-height: 1.05;
  }

  .hamb {
    display: block;

    margin-left: auto;

    font-size: 21px;
  }

  .resume {
    display: block;

    padding: 8px 10px;

    font-size: 8px;

    border-radius: 9px;
  }

  .nav nav {
    display: none;

    position: absolute;

    top: 64px;
    left: 0;
    right: 0;

    width: 100%;

    padding: 12px;

    flex-direction: column;

    background: rgba(2, 6, 17, .98);

    border: 1px solid var(--line);

    border-radius: 14px;

    gap: 3px;
  }

  .nav nav.open {
    display: flex;
  }

  .nav nav a {
    width: 100%;

    padding: 11px;

    text-align: center;

    font-size: 10px;
  }


  /* ---------- SECTIONS ---------- */

  .section {
    width: 100%;

    padding:
      80px
      15px
      25px;

    margin: 0 auto;
  }

  .heading {
    width: 100%;

    margin-bottom: 25px;
  }

  .heading h2 {
    font-size: 32px;

    line-height: 1.1;
  }

  .heading p {
    font-size: 11px;
  }


  /* =================================================
     ABOUT CARD
  ================================================= */

  .about-card {
    width: 100%;

    display: flex;

    flex-direction: column;

    gap: 24px;

    padding: 16px;

    margin: 0;

    overflow: hidden;

    border-radius: 18px;

    background:
      linear-gradient(
        135deg,
        rgba(7,15,31,.92),
        rgba(5,12,27,.82)
      );
  }


  /* ---------- PROFILE ---------- */

  .about-profile {
    width: 100%;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 15px;
  }


  .profile-image {
    width: min(100%, 340px);

    height: 390px;

    margin: 0 auto;

    overflow: hidden;

    border-radius: 16px;

    border: 1px solid var(--cyan);

    box-shadow:
      0 0 30px rgba(37,229,255,.12);
  }

  .profile-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
  }


  /* ---------- SOCIAL ICONS ---------- */

  .about-social {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 10px;

    width: 100%;
  }

  .about-social a {
    width: 40px;
    height: 40px;

    display: grid;

    place-items: center;

    color: #fff;

    text-decoration: none;

    border: 1px solid rgba(37,229,255,.3);

    border-radius: 10px;

    background:
      rgba(7,15,31,.8);

    transition: .25s;
  }

  .about-social a:hover {
    color: var(--cyan);

    border-color: var(--cyan);

    transform: translateY(-3px);

    box-shadow:
      0 0 18px rgba(37,229,255,.15);
  }


  /* ---------- ABOUT CONTENT ---------- */

  .about-content {
    width: 100%;

    min-width: 0;

    padding: 0;
  }

  .about-content .hello {
    display: block;

    color: var(--cyan);

    font-size: 10px;

    letter-spacing: 2px;

    font-weight: 800;
  }

  .about-content h3 {
    font-size: 30px;

    line-height: 1.15;

    margin: 7px 0 10px;

    word-break: normal;
  }

  .about-content h4 {
    font-size: 14px;

    line-height: 1.6;

    margin-bottom: 18px;
  }

  .about-content p {
    font-size: 13px;

    line-height: 1.7;

    overflow-wrap: break-word;
  }


  /* =================================================
     INFORMATION CARDS
  ================================================= */

  .about-info {
    width: 100%;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 10px;

    margin-top: 20px;
  }

  .info-box {
    width: 100%;

    min-width: 0;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 12px;

    border: 1px solid var(--line);

    border-radius: 12px;

    background:
      rgba(7,15,31,.6);
  }

  .info-icon {
    flex-shrink: 0;

    width: 38px;
    height: 38px;

    display: grid;

    place-items: center;

    border-radius: 9px;

    font-size: 14px;
  }

  .info-box > div:last-child {
    min-width: 0;
  }

  .info-box label {
    display: block;

    margin-bottom: 4px;

    font-size: 8px;

    letter-spacing: 1px;

    color: var(--cyan);

    font-weight: 800;
  }

  .info-box strong {
    display: block;

    font-size: 10px;

    line-height: 1.35;

    overflow-wrap: anywhere;
  }

  .info-box span {
    display: block;

    margin-top: 2px;

    color: var(--muted);

    font-size: 9px;

    line-height: 1.3;
  }


  /* =================================================
     CURRENT ROLE
  ================================================= */

  .current-role {
    width: 100%;

    margin-top: 18px;

    padding: 16px;

    display: grid;

    grid-template-columns: 1fr;

    gap: 18px;

    overflow: hidden;

    border-radius: 15px;
  }

  .role-main {
    width: 100%;

    display: flex;

    align-items: flex-start;

    gap: 12px;
  }

  .role-logo {
    flex-shrink: 0;

    width: 48px;
    height: 48px;

    display: grid;

    place-items: center;

    border-radius: 11px;

    color: var(--cyan);

    border: 1px solid rgba(37,229,255,.35);

    background:
      rgba(37,229,255,.07);

    font-size: 18px;
  }

  .role-details {
    min-width: 0;

    flex: 1;
  }

  .role-label {
    font-size: 8px;

    letter-spacing: 1.5px;

    color: var(--cyan);

    font-weight: 800;
  }

  .role-details h3 {
    margin: 5px 0;

    font-size: 17px;

    line-height: 1.3;

    overflow-wrap: break-word;
  }

  .role-details h4 {
    margin: 0;

    color: var(--pink);

    font-size: 11px;

    line-height: 1.4;
  }

  .role-details p {
    margin: 6px 0 0;

    color: var(--muted);

    font-size: 9px;
  }


  /* ---------- RESPONSIBILITIES ---------- */

  .role-responsibilities {
    width: 100%;

    display: grid;

    gap: 9px;

    padding: 0;
  }

  .role-responsibilities div {
    display: flex;

    align-items: flex-start;

    gap: 8px;

    color: #cbd5e1;

    font-size: 10px;

    line-height: 1.4;
  }

  .role-responsibilities i {
    flex-shrink: 0;

    color: var(--cyan);

    margin-top: 2px;
  }


  /* ---------- OFFER LETTER ---------- */

  .offer-letter {
    width: 100%;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 12px;

    border: 1px solid var(--line);

    border-radius: 10px;
  }

  .offer-letter > i {
    color: var(--cyan);

    font-size: 20px;
  }

  .offer-letter strong {
    display: block;

    font-size: 11px;
  }

  .offer-letter a {
    display: block;

    margin-top: 3px;

    color: var(--cyan);

    text-decoration: none;

    font-size: 9px;
  }


  /* =================================================
     PROFESSIONAL FOCUS
  ================================================= */

  .professional-focus {
    width: 100%;

    margin-top: 16px;

    padding: 16px;

    overflow: hidden;

    border-radius: 14px;

    border: 1px solid var(--line);

    background:
      rgba(7,15,31,.55);
  }

  .professional-focus > span {
    display: block;

    margin-bottom: 12px;

    color: var(--cyan);

    font-size: 8px;

    letter-spacing: 1.5px;

    font-weight: 800;
  }

  .focus-tags {
    display: flex;

    flex-wrap: wrap;

    gap: 7px;
  }

  .focus-tags b {
    padding: 7px 9px;

    color: #cbd5e1;

    font-size: 8px;

    font-weight: 500;

    border: 1px solid rgba(37,229,255,.2);

    border-radius: 7px;

    background:
      rgba(2,6,17,.6);
  }


  /* =================================================
     STATS
  ================================================= */

  .stats {
    width: 100%;

    display: grid;

    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap: 10px;

    margin-top: 14px;
  }

  .stats div {
    min-width: 0;

    padding: 18px 10px;

    border-radius: 12px;
  }

  .stats b {
    font-size: 25px;
  }

  .stats span {
    display: block;

    margin-top: 5px;

    font-size: 7px;

    line-height: 1.4;
  }


  /* =================================================
     SKILLS
  ================================================= */

  .skill-grid {
    width: 100%;

    display: grid;

    grid-template-columns: 1fr;

    gap: 12px;

    margin-top: 20px;
  }

  .skill-grid article {
    width: 100%;

    min-width: 0;

    padding: 18px;

    min-height: auto;
  }

  .skill-grid h3 {
    font-size: 16px;

    margin-bottom: 13px;
  }

  .skill-grid h3 i {
    font-size: 14px;
  }

  .tags {
    width: 100%;

    display: flex;

    flex-wrap: wrap;

    gap: 6px;
  }

  .tags span {
    font-size: 8px;

    padding: 7px 8px;

    white-space: normal;
  }

}


/* =====================================================
   SMALL PHONES
===================================================== */

@media (max-width: 480px) {

  .section {
    padding-left: 12px;
    padding-right: 12px;
  }

  .nav {
    left: 8px;
    right: 8px;
  }

  .brand {
    font-size: 18px;
  }

  .resume {
    padding: 7px 8px;

    font-size: 7px;
  }


  /* ABOUT */

  .about-card {
    padding: 12px;
  }

  .profile-image {
    height: 340px;
  }

  .about-content h3 {
    font-size: 27px;
  }

  .about-content h4 {
    font-size: 13px;
  }

  .about-content p {
    font-size: 12px;
  }


  /* INFORMATION */

  .about-info {
    grid-template-columns: 1fr;
  }

  .info-box {
    padding: 11px;
  }


  /* ROLE */

  .current-role {
    padding: 13px;
  }

  .role-main {
    gap: 9px;
  }

  .role-logo {
    width: 42px;
    height: 42px;
  }

  .role-details h3 {
    font-size: 15px;
  }


  /* STATS */

  .stats {
    grid-template-columns: 1fr 1fr;

    gap: 8px;
  }

  .stats div {
    padding: 16px 7px;
  }


  /* SKILLS */

  .skill-grid article {
    padding: 16px;
  }

  .skill-grid h3 {
    font-size: 15px;
  }

  .tags span {
    font-size: 8px;

    padding: 6px 7px;
  }

}

/* =====================================================
   PROJECTS
===================================================== */

.project-grid{

  display:grid;

  grid-template-columns:repeat(3,1fr);

  gap:16px;
}

.project{

  padding:24px;

  min-height:235px;

  transition:.3s;
}

.project:hover,
.cert:hover,
.exp:hover{

  transform:translateY(-5px);

  border-color:rgba(37,229,255,.45);

  box-shadow:
    0 20px 50px rgba(0,0,0,.22);
}

.project>small{

  color:var(--cyan);

  font-weight:800;
}

.project h3{

  font:600 22px "Space Grotesk";
}

.project p{

  color:var(--muted);

  line-height:1.65;

  font-size:13px;
}

.project a{

  display:inline-block;

  color:var(--cyan);

  font-size:10px;

  font-weight:800;

  text-decoration:none;

  margin-top:18px;
}


/* =====================================================
   CERTIFICATIONS
===================================================== */

.cert-grid{

  display:grid;

  grid-template-columns:repeat(3,1fr);

  gap:16px;
}

.cert{

  overflow:hidden;

  transition:.3s;
}

.cert img{

  width:100%;

  height:210px;

  object-fit:cover;

  display:block;

  background:#111827;
}

.cert div{

  padding:17px;
}

.cert h3{

  font:600 17px "Space Grotesk";

  margin:0 0 5px;
}

.cert p{

  font-size:11px;

  color:var(--muted);
}

.cert button{

  background:none;

  border:0;

  color:var(--cyan);

  font-size:9px;

  font-weight:800;

  padding:0;

  cursor:pointer;
}


/* =====================================================
   EXPERIENCE
===================================================== */

.experience{

  display:grid;

  gap:14px;

  max-width:900px;

  margin:auto;
}

.exp{

  display:grid;

  grid-template-columns:55px 1fr;

  gap:18px;

  padding:22px;

  transition:.3s;
}

.exp>span{

  width:38px;
  height:38px;

  border-radius:10px;

  display:grid;

  place-items:center;

  color:var(--cyan);

  background:rgba(37, 230, 255, 0.305);

  border:1px solid rgba(37, 230, 255, 0.232);

  font-weight:800;
}

.exp h3{

  font:600 21px "Space Grotesk";

  margin:0;
}

.exp b{

  color:var(--red);

  font-size:11px;
}

.exp p{

  color:var(--muted);

  font-size:12px;

  line-height:1.6;
}

/*/* =====================================================
   PROFESSIONAL GALLERY SLIDER
===================================================== */

.gallery-slider {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: auto;

  display: flex;
  align-items: center;
  gap: 15px;
}


/* =========================
   SLIDER FRAME
========================= */

.gallery-track {
  width: 100%;
  overflow: hidden;

  border-radius: 22px;
  border: 1px solid var(--line);

  background: #020611;

  box-shadow:
    0 20px 60px rgba(0, 0, 0, .30);

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


/* =========================
   SLIDE
========================= */

.gallery-slide {
  display: none;

  width: 100%;
  min-height: 520px;

  align-items: center;
  justify-content: center;
}


.gallery-slide.active {
  display: flex;

  animation:
    galleryFade .5s ease;
}


/* =========================
   FULL IMAGE
========================= */

.gallery-slide img {
  display: block;

  width: 100%;
  height: 520px;

  /*
    IMPORTANT:
    contain = show the complete image
    without cropping.
  */

  object-fit: contain;

  object-position: center;

  background: #020611;

  cursor: pointer;

  transition: transform .3s ease;
}


.gallery-slide img:hover {
  transform: scale(1.01);
}


/* =========================
   SLIDE ANIMATION
========================= */

@keyframes galleryFade {

  from {
    opacity: .2;
    transform: scale(.98);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }

}


/* =====================================================
   PREVIOUS / NEXT BUTTONS
===================================================== */

.gallery-btn {
  flex-shrink: 0;

  width: 48px;
  height: 48px;

  border-radius: 50%;

  border: 1px solid rgba(37, 229, 255, .4);

  background: rgba(7, 15, 31, .92);

  color: var(--cyan);

  display: grid;
  place-items: center;

  cursor: pointer;

  transition: .25s;

  z-index: 5;
}


.gallery-btn:hover {
  color: white;

  border-color: var(--pink);

  box-shadow:
    0 0 25px rgba(37, 229, 255, .20);

  transform: scale(1.08);
}


.gallery-btn:active {
  transform: scale(.95);
}


/* =====================================================
   DOTS
===================================================== */

.gallery-dots {
  display: flex;

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

  gap: 8px;

  margin-top: 18px;
}


.gallery-dots .dot {
  width: 9px;
  height: 9px;

  padding: 0;

  border: 1px solid var(--cyan);

  border-radius: 50%;

  background: transparent;

  cursor: pointer;

  transition: .25s;
}


.gallery-dots .dot:hover {
  box-shadow:
    0 0 12px rgba(37, 229, 255, .5);
}


.gallery-dots .dot.active {
  width: 28px;

  border-radius: 10px;

  background:
    linear-gradient(
      90deg,
      var(--cyan),
      var(--pink)
    );

  border-color: transparent;

  box-shadow:
    0 0 15px rgba(37, 229, 255, .25);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 950px) {

  .gallery-slider {
    max-width: 100%;
  }

  .gallery-slide {
    min-height: 480px;
  }

  .gallery-slide img {
    height: 480px;
  }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 760px) {

  .gallery-slider {
    gap: 7px;
  }

  .gallery-slide {
    min-height: 420px;
  }

  .gallery-slide img {
    height: 420px;

    /*
      Keep complete photo visible
    */
    object-fit: contain;
  }

  .gallery-btn {
    width: 40px;
    height: 40px;

    font-size: 12px;
  }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 520px) {

  .gallery-slider {
    display: block;
  }

  .gallery-track {
    width: 100%;

    border-radius: 18px;
  }

  .gallery-slide {
    min-height: 360px;
  }

  .gallery-slide img {
    width: 100%;
    height: 360px;

    object-fit: contain;
    object-position: center;
  }


  /* Position arrows over image */

  .gallery-btn {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);
  }


  .gallery-btn:hover {
    transform:
      translateY(-50%)
      scale(1.08);
  }


  .gallery-btn.prev {
    left: 10px;
  }


  .gallery-btn.next {
    right: 10px;
  }

}

/* =====================================================
   CONTACT
===================================================== */

.contact{

  display:grid;

  grid-template-columns:1fr 1fr;

  gap:35px;

  padding:30px;
}

.contact h3{

  font:600 35px "Space Grotesk";

  margin:10px 0;
}

.contact p{

  color:var(--muted);

  line-height:1.7;
}

.contact-buttons{

  display:flex;

  gap:8px;

  flex-wrap:wrap;

  margin-top:25px;
}

.contact-buttons a{

  color:white;

  text-decoration:none;

  border:1px solid var(--line);

  padding:10px 13px;

  border-radius:9px;

  font-size:9px;

  font-weight:800;
}

.contact form{

  display:grid;

  gap:10px;
}

.contact input,
.contact textarea{

  background:rgba(2,6,17,.7);

  border:1px solid var(--line);

  border-radius:10px;

  padding:13px;

  color:white;

  font:inherit;

  outline:none;
}

.contact input:focus,
.contact textarea:focus{

  border-color:var(--cyan);

  box-shadow:
    0 0 15px rgba(37,229,255,.12);