:root{
  --A-back-left: 120px;  
  --A-back-top: 450px; 
  --A-back-w: 700px;
  --A-back-rot: -9deg;

  --A-title-left: 360px; 
  --A-title-top: 521px; 
  --A-title-rot: -10deg; 
  --A-title-size: 70px;

  --A-text-left: 250px;
  --A-text-top: 670px;
  --A-text-w: 505px;
  --A-text-rot: -10deg;

  --A-blue-left: 625px;
  --A-blue-top: 600px;
  --A-blue-w: 530px;
}

html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overscroll-behavior: none;
  touch-action: manipulation;

  zoom: 100%;                    
  -ms-content-zooming: none;     
  -moz-transform: scale(1);     
  -moz-transform-origin: 0 0;    
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;       
  transform-origin: 0 0;
}

html::-webkit-scrollbar, body::-webkit-scrollbar {
  display: none;
}

body {
  -webkit-user-select: none; 
  -moz-user-select: none;
  user-select: none;
}

* {
  scroll-behavior: smooth;
}

@supports not (zoom: 1) {
  html, body {
    transform: scale(1);
    transform-origin: 0 0;
  }
}

body.modal-open #sideMenu {
  position: fixed !important;
  overflow: visible !important;
}



/* ====== HERO ====== */
section.position-relative section.about-stage {
  z-index: 0;
}

.hero-collage {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.62) 0%,
    rgba(255,255,255,.40) 40%,
    rgba(255,255,255,.22) 68%,
    rgba(255,255,255,0) 100%
  );
}

/* ================= BURGER ================= */
.hamburger-btn {
  position: fixed;
  top: 40px;
  left: 50px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 55px;
  height: 55px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  
}

.hamburger-btn span {
  display: flex;
  width: 28px;
  height: 4px;
  background-color: #001291;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger-btn.active {
  display: flex;
  background: none;
  border: none;
  box-shadow: none;
  left: 225px; 
  top: 15px;
}

.hamburger-btn.active span {
  background-color: #fff;
  width: 28px;
  height: 3.5px;
}

.hamburger-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}
.hamburger-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* ================= SIDE MENU ================= */
.side-menu {
  position: fixed;
  top: 0;
  left: -320px;
  width: 300px;
  height: 100vh;
  background-color: #001291;
  color: #fff;
  padding: 100px 40px;
  transition: left 0.45s ease;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.side-menu.active {
  left: 0;
}


.side-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.side-menu li {
  margin-bottom: 30px;
}

.side-menu a {
  text-decoration: none;
  color: #fff;
  font-size: 28px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.side-menu a:hover {
  color: #ffc3d1; 
}

/* Animasi hamburger jadi X */
.hamburger-btn.active span:nth-child(1) {
  transform: rotate(45deg) translateY(10px);
}
.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}
.hamburger-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-10px);
}



/* ABOUT */
.about-wrap{
  position: relative;
  height:75rem;
  margin-top: -480px;
  overflow: hidden;
  z-index: 4;
}
.about-stage{
  position: relative;
  width: 1366px;
  height: 768px;
  margin: 0 auto;
}

.card-left {
  position: relative;
  transform: translateX(-160px);
}

/* STICKY NOTE*/
.note-back {
  z-index: 1;
  filter:
    brightness(0.9)
    sepia(1)
    saturate(0.5)
    hue-rotate(350deg)
    drop-shadow(-18px 22px 0 rgba(0,0,0,.08))
    drop-shadow(0 18px 25px rgba(0,0,0,.18));
  opacity: 0.97;
}

.note-blue-wrap {
  position: absolute;
  z-index: 0;
}

/* Kertas biru vertikal */
.note-blue {
  position: relative;
  border-radius: 12px;
  transform: rotate(98deg);
  transform-origin: center;
  filter: drop-shadow(-6px 10px 14px rgba(0,0,0,.10))
          drop-shadow(0 8px 20px rgba(0,0,0,.15));
  opacity: 0.97;
}

.note-blue img[alt="blue note"] {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  filter:
    sepia(1)
    saturate(400%)
    hue-rotate(165deg)
    brightness(1)
    contrast(1);
}

.note-clip {
  position: absolute;
  top: -135px;
  right: 20px;
  transform: rotate(6deg);
  width: 150px;
  z-index: 10;
  filter: none !important;
}


/* Teks */
.note-title{
  z-index: 5;
  font-family:'KiwiSoda', cursive;
  letter-spacing:.5px;
  color:#111;
  mix-blend-mode: multiply;
  opacity:.9;
}

.note-copy{
  z-index: 6;
  color:#1a1a1a;
  font-weight: 800;
  line-height: 1.45;
  font-size: clamp(16px, 1.5vw, 21px);
  mix-blend-mode: multiply;
  opacity: .9;
}

.note-bullets{ margin:0; padding:0; list-style:none; }
.note-bullets li{
  margin:.4rem 0 .4rem 1rem;
  position:relative;
  font-family: 'Deca',cursive;
  letter-spacing:.5px;
  font-size: 23px;
}
.note-bullets li::before{
  content:"•";
  position:absolute;
  left:-1.5rem;
  top:0;
  font-size:1.2em;
}

/* ===== EXPERIENCE SECTION WITH STAR BG ===== */
.experience-wrap {
  position: relative;
  /* background: #fff; */
  padding: 100px 0 0;
  z-index: 3;
  overflow: hidden;
}

.exp-title {
  font-family: "KiwiSoda";
  font-size: 65px;
  color: #001291;
  text-align: center;
  margin-bottom: 50px;
}

.experience-stage {
  position: relative;
  width: 100%;
  background-color: #F5F5F5;
  padding: 100px 0 50px;
  margin: 0 auto;
  z-index: 2;
  box-shadow: 0px 0px 80px 40px rgba(255, 255, 255, 0.9);
}

.experience-stage::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
  pointer-events: none;
  z-index: 1;
}


.exp-star-bg {
  position: absolute;
  top: 5rem;
  right: -15rem;
  width: 1750px;
  transform: rotate(3deg);
  opacity: 0.97;
  z-index: 2;
  pointer-events: none;
}

.exp-item {
  text-align: center;
}
.exp-item img {
  width: 350px;
  transition: 0.25s;
}
.exp-item img:hover {
  transform: scale(1.08) rotate(-2deg);
}
.exp-item p {
  margin-top: -3rem;
  font-weight: 700;
  font-size: 15px;
  color: #111;
  font-family:'Pixel', cursive;
  font-weight: lighter;
}

/* Folder + Pin Orange */
.folder-pin-wrap {
  position: relative;
  display: inline-block;
}

.folder-pin {
  position: absolute;
  top: -95px;
  left: -103px;
  width: 90px;
  transform: rotate(-20deg);
  z-index: -1;
  filter: drop-shadow(0 6px 8px rgba(0,0,0,0.15));
   pointer-events: none; 
}


/* ===== CONTACT OVERLAP ===== */
.contact-block {
  position: relative;
  margin-top: 5px;
  height: 600px;
  margin-bottom: 15rem;
}

.contact-face {
  position: absolute;
  left: 59rem;
  top: 6rem;
  width: 200px;
  z-index: 4;
}

.contact-phone {
  position: absolute;
  width: 950px;
  top: -2rem;
  left: 7rem;
  transform: rotate(-3deg);
  z-index: 2;
}

.contact-text {
  position: absolute;
  top: 8rem;
  left: 72rem;
  z-index: 5;
  color: #000;
  line-height: 1.8;
}

.contact-text h2 {
  font-family: "KiwiSoda";
  font-size: 100px;
  color: #000000;
  margin-bottom: 20px;
}
.contact-text span { color: #ff3ea5; }
.contact-text p {
  display: flex;
  align-items: center;
  font-size: 22px;
  margin: -25px 0;
}
.contact-text p img {
  width: 90px; 
  height: 90px;
}

/* ===== FOOTER ===== */
.footer-ddm {
  background: #001291;
  color: #fff;
  padding-top: 12rem;
  padding-bottom: 9rem;
}
.footer-inner {
  width: 1200px;
  display: flex;
  justify-content: space-between;
}

.footer-left{
  margin-left: 3%
}

.footer-left img {
  max-width: 280px;
  margin-bottom: -10%;
  margin-top: -40%;
  margin-left: -18rem;
  transform: rotate(-2deg);
}
.footer-desc {
  font-size: 20px;
  margin-top: 10px;
  margin-left: -15rem;
  width: 100%;
  opacity: 0.8;
  /* text-align: justify; */
}

.footer-right {
  margin-top: 2%;
  display: flex;
  gap: 25px;
  width: 80%;
  margin-right: -15rem;
  /* text-align: justify; */
}
.footer-col p {
  font-size: 20px;
  margin: 0;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1700px) {

  .about-wrap img[alt="me"] {
    margin-left: -5rem;
  }

  .contact-text {
    grid-column: 2;
    justify-self: start;
    align-self: center;
    max-width: 550px;
    text-align: left;
    margin-left: -14rem;
    top: 9rem;
    z-index: 8;
  }

  .contact-face{
    grid-column: 2;
    justify-self: start;
    align-self: start;
    margin-top: -1rem;
    margin-left: -15rem;
    width: clamp(140px, 18vw, 220px);
    z-index: 5;
    filter: drop-shadow(0 6px 10px rgba(0,0,0,0.2));
  }

  .contact-phone{
    grid-column: 1;
    width: clamp(480px, 55vw, 900px);
    transform: rotate(-6deg) translateY(-1rem);
    opacity: 0.95;
    justify-self: end;
    z-index: 3;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.25));
    margin-left: -3rem;
    margin-top: 5rem;
  }

  .footer-ddm {
    background: #001291;
    color: #fff;
    padding-top: 12rem;
    padding-bottom: 9rem;
  }
  .footer-inner {
    width: 1200px;
    display: flex;
    justify-content: space-between;
  }

  .footer-left{
    margin-left: 6rem;
  }

  .footer-left img {
    max-width: 280px;
    margin-bottom: -10%;
    margin-top: -40%;
    margin-left: -18rem;
    transform: rotate(-2deg);
  }
  .footer-desc {
    font-size: 20px;
    margin-top: 10px;
    margin-left: -15rem;
    width: 100%;
    opacity: 0.8;
    /* text-align: justify; */
  }

  .footer-right {
    margin-top: 2%;
    display: flex;
    gap: 25px;
    width: 80%;
    margin-right: -10rem;
    /* text-align: justify; */
  }
  .footer-col p {
    font-size: 20px;
    margin: 0;
  }

  .exp-star-bg {

    z-index: 3;
  }


}

@media (max-width: 1100px) {
 
 .about-wrap {
    transform-origin: top;
    /* margin-top: -50px; */
    margin-left: -40rem;
    transform: scale(0.8);
    margin-right: -10rem; 
    margin-bottom: -20rem;
    }


  .about-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .card-left {
    transform: none;
    margin-left: 15rem;
    margin-bottom: -19rem;
  }

  .about-wrap img[alt="me"] {
    position: relative !important;
    display: flex;
    width: 70%;
    max-width: 700px;
    margin-left: 10rem;
    margin-top: 20rem;
    margin-bottom: 6rem;
  }

  .experience-stage .row {
      display: grid !important;             
      grid-template-columns: repeat(2, 1fr);
      gap: clamp(2rem, 4vw, 3rem);
      justify-items: center;                
      align-items: start;                 
    }

  .exp-item img { 
    max-width: 280px; 
    padding-bottom: 7%;
    margin-left: -4rem;
  }

  .contact-face {
  position: relative !important;   
  left: auto !important;          
  top: auto !important;
  margin: 2rem auto !important; 
  display: block;
  width: clamp(140px, 20vw, 200px);
  z-index: 5;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,0.2));
  }

  .contact-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .contact-text {
    grid-column: 2;
    justify-self: start;
    align-self: center;
    max-width: 550px;
    text-align: left;
    margin-left: -24rem;
    top: 9rem;
    z-index: 8;
  }

  .contact-text h2{
    font-size: 5rem;
    margin-bottom: -1rem;
    margin-left: -15rem;
  }
  
  .contact-text p{
    font-size: 1rem;
    margin-bottom: -3rem;
    margin-left: -15rem;
  }

    .contact-phone{
      top: 3rem !important;
    }

  .footer-ddm {
    margin-top: 0;               
    position: relative;          
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 2rem;            
    padding-bottom: 2rem;
    background: #001f99;          
    z-index: 1;                  
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    gap: 2.5rem;
  }

  .footer-left {
    margin: 0;
  }

  .footer-left img {
    max-width: 220px;
    margin: 0 auto 1.5rem;
    transform: none;
  }

  .footer-desc {
    font-size: 18px;
    margin: 0 auto;
    text-align: center;
    width: 90%;
  }

  .footer-right {
    margin: 0;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
  }

  .footer-col {
    width: 90%;
    max-width: 500px;
  }

  .footer-col p {
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
  }

  .exp-star-bg {
    margin-top: 28rem;
    width: 180%;
    right: -20rem;
    opacity: 0.7;
    z-index: 3;
  }
}

@media (max-width: 1200px) {
 
 .about-wrap {
    transform-origin: top;
    /* margin-top: -50px; */
    margin-left: -40rem;
    transform: scale(0.8);
    margin-right: -10rem; 
    margin-bottom: -20rem;
    }


  .about-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .card-left {
    transform: none;
    margin-left: 15rem;
    margin-bottom: -19rem;
  }

  .about-wrap img[alt="me"] {
    position: relative !important;
    display: flex;
    width: 70%;
    max-width: 700px;
    margin-left: 10rem;
    margin-top: 20rem;
    margin-bottom: 6rem;
  }

  .experience-stage .row {
      display: grid !important;             
      grid-template-columns: repeat(2, 1fr);
      gap: clamp(2rem, 4vw, 3rem);
      justify-items: center;                
      align-items: start;                 
    }

  .exp-item img { 
    max-width: 280px; 
    padding-bottom: 7%;
    margin-left: -4rem;
  }

  .contact-text {
    grid-column: 2;
    justify-self: start;
    align-self: center;
    max-width: 550px;
    text-align: left;
    margin-left: -30rem;
    top: 9rem;
    z-index: 8;
  }

  .contact-text h2{
    font-size: 5rem;
    margin-bottom: -1rem;
  }
  
  .contact-text p{
    font-size: 1rem;
    margin-top: -2rem;
  }

  .contact-face{
    grid-column: 2;
    justify-self: start;
    align-self: start;
    margin-top: -1rem;
    margin-left: -30rem;
    width: clamp(140px, 18vw, 220px);
    z-index: 5;
    filter: drop-shadow(0 6px 10px rgba(0,0,0,0.2));
  }

  .contact-phone{
    grid-column: 1;
    width: clamp(480px, 55vw, 900px);
    transform: rotate(-6deg) translateY(-1rem);
    opacity: 0.95;
    justify-self: end;
    z-index: 3;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.25));
    margin-left: -3rem;
    margin-top: 5rem;
  }

  .footer-ddm {
    margin-top: 0;               
    position: relative;          
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 2rem;            
    padding-bottom: 2rem;
    background: #001f99;          
    z-index: 1;                  
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    gap: 2.5rem;
  }

  .footer-left {
    margin: 0;
  }

  .footer-left img {
    max-width: 220px;
    margin: 0 auto 1.5rem;
    transform: none;
  }

  .footer-desc {
    font-size: 18px;
    margin: 0 auto;
    text-align: center;
    width: 90%;
  }

  .footer-right {
    margin: 0;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
  }

  .footer-col {
    width: 90%;
    max-width: 500px;
  }

  .footer-col p {
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
  }

  .exp-star-bg {
    margin-top: 28rem;
    width: 180%;
    right: -20rem;
    opacity: 0.7;
    z-index: 3;
  }
}

@media (max-width: 1300px) {
 
 .about-wrap {
    transform-origin: top;
    /* margin-top: -50px; */
    margin-left: -40rem;
    transform: scale(0.8);
    margin-right: -10rem; 
    margin-bottom: -20rem;
    }


  .about-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .card-left {
    transform: none;
    margin-left: 15rem;
    margin-bottom: -19rem;
  }

  .about-wrap img[alt="me"] {
    position: relative !important;
    display: flex;
    width: 70%;
    max-width: 700px;
    margin-left: 10rem;
    margin-top: 20rem;
    margin-bottom: 6rem;
  }

   .experience-stage .row {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)); /* 🔹 Paksa 3 kolom sejajar */
    gap: clamp(2rem, 3vw, 3rem);
    justify-items: center;  /* 🔹 Tengahin isi per kolom */
    align-items: start;
    width: 100vw;           /* 🔹 Lebarkan penuh 1 viewport */
    max-width: none;        /* 🔹 Hapus batas lebar */
    margin: 0 auto;
    padding: 0 3rem;        /* 🔹 Biar gak nempel sisi kiri-kanan */
    box-sizing: border-box;
  }

  .exp-item {
    text-align: center;
    width: 100%;
  }

  .exp-item img { 
    display: block;
    margin: 0 auto;
    width: clamp(200px, 28vw, 300px); /* 🔹 Ukuran fleksibel, pas untuk 3 dalam 1 baris */
    height: auto;
    padding-bottom: 7%;
    transition: transform .25s ease;
  }

  .exp-item img:hover {
    transform: scale(1.05);
  }

  .contact-text {
    grid-column: 2;
    justify-self: start;
    align-self: center;
    max-width: 550px;
    text-align: left;
    margin-left: -26rem;
    top: 9rem;
    z-index: 8;
  }

  .contact-text h2{
    font-size: 5rem;
    margin-bottom: -1rem;
  }
  
  .contact-text p{
    font-size: 1rem;
    margin-top: -2rem;
  }

  .contact-face{
    grid-column: 2;
    justify-self: start;
    align-self: start;
    margin-top: -1rem;
    margin-left: -27rem;
    width: clamp(140px, 18vw, 220px);
    z-index: 5;
    filter: drop-shadow(0 6px 10px rgba(0,0,0,0.2));
  }

  .contact-phone{
    grid-column: 1;
    width: clamp(480px, 55vw, 900px);
    transform: rotate(-6deg) translateY(-1rem);
    opacity: 0.95;
    justify-self: end;
    z-index: 3;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.25));
    margin-left: -3rem;
    margin-top: 5rem;
  }

  .footer-ddm {
    margin-top: 0;               
    position: relative;          
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 2rem;            
    padding-bottom: 2rem;
    background: #001f99;          
    z-index: 1;                  
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    gap: 2.5rem;
  }

  .footer-left {
    margin: 0;
  }

  .footer-left img {
    max-width: 220px;
    margin: 0 auto 1.5rem;
    transform: none;
  }

  .footer-desc {
    font-size: 18px;
    margin: 0 auto;
    text-align: center;
    width: 90%;
  }

  .footer-right {
    margin: 0;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
  }

  .footer-col {
    width: 90%;
    max-width: 500px;
  }

  .footer-col p {
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
  }

  .exp-star-bg {
    margin-top: 28rem;
    width: 180%;
    right: -20rem;
    opacity: 0.7;
    z-index: 3;
  }
}

@media (max-width: 1400px) {
 
 .about-wrap {
    transform-origin: top;
    /* margin-top: -50px; */
    margin-left: -40rem;
    transform: scale(0.8);
    margin-right: -10rem; 
    margin-bottom: -20rem;
    }


  .about-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .card-left {
    transform: none;
    margin-left: 15rem;
    margin-bottom: -19rem;
  }

  .about-wrap img[alt="me"] {
    position: relative !important;
    display: flex;
    width: 70%;
    max-width: 700px;
    margin-left: 10rem;
    margin-top: 20rem;
    margin-bottom: 6rem;
  }

  .experience-stage .row {
      display: grid !important;             
      grid-template-columns: repeat(2, 1fr);
      gap: clamp(2rem, 4vw, 3rem);
      justify-items: center;                
      align-items: start;                 
    }

  .exp-item img { 
    max-width: 280px; 
    padding-bottom: 7%;
    margin-left: -4rem;
  }

  .contact-text {
    grid-column: 2;
    justify-self: start;
    align-self: center;
    max-width: 550px;
    text-align: left;
    margin-left: -26rem;
    top: 9rem;
    z-index: 8;
  }

  .contact-text h2{
    font-size: 5rem;
    margin-bottom: -1rem;
  }
  
  .contact-text p{
    font-size: 1rem;
    margin-top: -2rem;
  }

  .contact-face{
    grid-column: 2;
    justify-self: start;
    align-self: start;
    margin-top: -1rem;
    margin-left: -27rem;
    width: clamp(140px, 18vw, 220px);
    z-index: 5;
    filter: drop-shadow(0 6px 10px rgba(0,0,0,0.2));
  }

  .contact-phone{
    grid-column: 1;
    width: clamp(480px, 55vw, 900px);
    transform: rotate(-6deg) translateY(-1rem);
    opacity: 0.95;
    justify-self: end;
    z-index: 3;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.25));
    margin-left: -3rem;
    margin-top: 5rem;
  }

 .footer-ddm {
    margin-top: 0;               
    position: relative;          
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 2rem;            
    padding-bottom: 2rem;
    background: #001f99;          
    z-index: 1;                  
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    gap: 2.5rem;
  }

  .footer-left {
    margin: 0;
  }

  .footer-left img {
    max-width: 220px;
    margin: 0 auto 1.5rem;
    transform: none;
  }

  .footer-desc {
    font-size: 18px;
    margin: 0 auto;
    text-align: center;
    width: 90%;
  }

  .footer-right {
    margin: 0;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
  }

  .footer-col {
    width: 90%;
    max-width: 500px;
  }

  .footer-col p {
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
  }

  .exp-star-bg {
    margin-top: 28rem;
    width: 180%;
    right: -20rem;
    opacity: 0.7;
    z-index: 3;
  }
}

@media (max-width: 1500px) {
 
 .about-wrap {
    transform-origin: top;
    /* margin-top: -50px; */
    margin-left: -40rem;
    transform: scale(0.8);
    margin-right: -10rem; 
    margin-bottom: -20rem;
    }


  .about-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .card-left {
    transform: none;
    margin-left: 15rem;
    margin-bottom: -19rem;
  }

  .about-wrap img[alt="me"] {
    position: relative !important;
    display: flex;
    width: 70%;
    max-width: 700px;
    margin-left: 10rem;
    margin-top: 20rem;
    margin-bottom: 6rem;
  }

  .experience-stage .row {
      display: grid !important;             
      grid-template-columns: repeat(2, 1fr);
      gap: clamp(2rem, 4vw, 3rem);
      justify-items: center;                
      align-items: start;                 
    }

  .exp-item img { 
    max-width: 280px; 
    padding-bottom: 7%;
    margin-left: -4rem;
  }

  .contact-text {
    grid-column: 2;
    justify-self: start;
    align-self: center;
    max-width: 550px;
    text-align: left;
    margin-left: -18rem;
    top: 15rem;
    z-index: 8;
  }

  .contact-text h2{
    font-size: 5rem;
    margin-bottom: -1rem;
  }
  
  .contact-text p{
    font-size: 1rem;
    margin-top: -2rem;
  }

  .contact-face{
    grid-column: 2;
    justify-self: start;
    align-self: start;
    margin-top: 4rem;
    margin-left: -20rem;
    width: clamp(140px, 18vw, 220px);
    z-index: 5;
    filter: drop-shadow(0 6px 10px rgba(0,0,0,0.2));
  }

  .contact-phone{
    grid-column: 1;
    width: clamp(480px, 55vw, 900px);
    transform: rotate(-6deg) translateY(-1rem);
    opacity: 0.95;
    justify-self: end;
    z-index: 3;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.25));
    margin-left: -3rem;
    margin-top: 5rem;
  }

  .exp-star-bg {
    margin-top: 28rem;
    width: 180%;
    right: -25rem;
    opacity: 0.7;
    z-index: 3;
  }

    .footer-ddm {
    margin-top: 0;               
    position: relative;          
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 2rem;            
    padding-bottom: 2rem;
    background: #001f99;          
    z-index: 1;                  
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    gap: 2.5rem;
  }

  .footer-left {
    margin: 0;
  }

  .footer-left img {
    max-width: 220px;
    margin: 0 auto 1.5rem;
    transform: none;
  }

  .footer-desc {
    font-size: 18px;
    margin: 0 auto;
    text-align: center;
    width: 90%;
  }

  .footer-right {
    margin: 0;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
  }

  .footer-col {
    width: 90%;
    max-width: 500px;
  }

  .footer-col p {
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
  }
}

@media (max-width: 1000px) {
  .about-wrap {
    transform-origin: top;
    /* margin-top: -50px; */
    margin-left: -40rem;
    transform: scale(0.8);
    margin-right: -10rem; 
    margin-bottom: -20rem;
    }


  .about-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .card-left {
    transform: none;
    margin-left: 15rem;
    margin-bottom: -19rem;
  }

  .about-wrap img[alt="me"] {
    position: relative !important;
    display: flex;
    width: 70%;
    max-width: 700px;
    margin-left: 10rem;
    margin-top: 20rem;
    margin-bottom: 6rem;
  }

.experience-stage .row {
    display: grid !important;             
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(2rem, 4vw, 3rem);
    justify-items: center;                
    align-items: start;                 
  }

  .exp-item img { 
    max-width: 280px; 
    padding-bottom: 7%;
    margin-left: -4rem;
  }

  .contact-block{
    margin-top: -9rem;
  }

  .contact-text{
    margin-left: -20rem;
    margin-top: 1rem;
  }

  .contact-face{
    margin-top: -2rem;
    margin-left: 27rem !important
  }

  .contact-phone{
    margin-left: -5rem;
  }
  
  .contact-block{
    margin-bottom: 1rem;
  }

  .contact-text h2 { 
    font-size: 45px; 
  }

  .contact-text p { 
    font-size: 14px; 
    flex-wrap: wrap; 
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .exp-star-bg {
    margin-top: 10rem;
    width: 180%;
    right: -20rem;
    opacity: 0.7;
    z-index: 3;
  }
}

@media (max-width: 900px) {
  .about-wrap {
    transform-origin: top;
    /* margin-top: -50px; */
    margin-left: -40rem;
    transform: scale(0.8);
    margin-right: -10rem; 
    margin-bottom: -20rem;
    }


  .about-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .card-left {
    transform: none;
    margin-left: 15rem;
    margin-bottom: -19rem;
  }

  .about-wrap img[alt="me"] {
    position: relative !important;
    display: flex;
    width: 70%;
    max-width: 700px;
    margin-left: 10rem;
    margin-top: 20rem;
    margin-bottom: 6rem;
  }

.experience-stage .row {
    display: grid !important;             
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(2rem, 4vw, 3rem);
    justify-items: center;                
    align-items: start;                 
  }

  .exp-item img { 
    max-width: 280px; 
    padding-bottom: 7%;
    margin-left: -4rem;
  }

  .contact-block{
    margin-top: -9rem;
  }

  .contact-text{
    margin-left: -20rem;
    margin-top: 1rem;
  }

  .contact-face{
    margin-top: -2rem;
    margin-left: 27rem !important
  }

  .contact-phone{
    margin-left: -5rem;
  }
  
  .contact-block{
    margin-bottom: 1rem;
  }

  .contact-text h2 { 
    font-size: 45px; 
  }

  .contact-text p { 
    font-size: 14px; 
    flex-wrap: wrap; 
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .exp-star-bg {
    margin-top: 10rem;
    width: 180%;
    right: -20rem;
    opacity: 0.7;
    z-index: 3;
  }
}

@media (max-width: 800px) {
  .about-wrap {
    transform-origin: top;
    /* margin-top: -50px; */
    margin-left: -40rem;
    transform: scale(0.8);
    margin-right: -10rem; 
    margin-bottom: -20rem;
    }


  .about-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .card-left {
    transform: none;
    margin-left: 15rem;
    margin-bottom: -19rem;
  }

  .about-wrap img[alt="me"] {
    position: relative !important;
    display: flex;
    width: 70%;
    max-width: 700px;
    margin-left: 10rem;
    margin-top: 20rem;
    margin-bottom: 6rem;
  }

.experience-stage .row {
    display: grid !important;             
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(2rem, 4vw, 3rem);
    justify-items: center;                
    align-items: start;                 
  }

  .exp-item img { 
    max-width: 280px; 
    padding-bottom: 7%;
    margin-left: -4rem;
  }

  .contact-block{
    margin-top: -9rem;
  }

  .contact-text{
    margin-left: -28rem;
    margin-top: 1rem;
  }

  .contact-face{
    margin-top: -2rem;
    margin-left: 21rem !important
  }

  .contact-phone{
    margin-left: -7rem;
  }
  
  .contact-block{
    margin-bottom: 1rem;
  }

  .contact-text h2 { 
    font-size: 45px; 
  }

  .contact-text p { 
    font-size: 14px; 
    flex-wrap: wrap; 
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .exp-star-bg {
    margin-top: 14rem;
    width: 180%;
    right: -20rem;
    opacity: 0.7;
    z-index: 3;
  }
}

@media (max-width: 700px) {
  .about-wrap {
    transform-origin: top;
    /* margin-top: -50px; */
    margin-left: -43rem;
    transform: scale(0.7);
    margin-right: -15rem; 
    margin-bottom: -30rem;
    }


  .about-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .card-left {
    transform: none;
    margin-left: 15rem;
    margin-bottom: -19rem;
  }

  .about-wrap img[alt="me"] {
    position: relative !important;
    display: flex;
    width: 70%;
    max-width: 700px;
    margin-left: 10rem;
    margin-top: 20rem;
    margin-bottom: 6rem;
  }

.experience-stage .row {
    display: grid !important;             
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(2rem, 4vw, 3rem);
    justify-items: center;                
    align-items: start;                 
  }

  .exp-item img { 
    max-width: 350px; 
    padding-bottom: 7%;
    margin-left: -4rem;
  }
  
  .exp-item p {
    margin-top: -2rem;
    font-weight: 700;
    font-size: 10px;
    color: #111;
  }

  .folder-pin {
    position: absolute;
    top: -3rem;
    left: -3rem;
    width: 150px !important;
    transform: rotate(-20deg);
    z-index: -1;
    filter: drop-shadow(0 6px 8px rgba(0,0,0,0.15));
    pointer-events: none; 
  }

  .contact-block{
    margin-top: -9rem;
  }

  .contact-text{
    margin-left: -33rem;
    margin-top: -2rem;
  }

  .contact-face{
    margin-top: -5rem !important;
    margin-left: 15rem !important
  }

  .contact-phone{
    margin-left: -9rem;
    width: 60%;
  }
  
  .contact-block{
    margin-bottom: 1rem;
  }

  .contact-text h2 { 
    font-size: 45px; 
  }

  .contact-text p { 
    font-size: 14px; 
    flex-wrap: wrap; 
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .exp-star-bg {
    margin-top: 25rem;
    width: 180%;
    right: -20rem;
    opacity: 0.7;
    z-index: 3;
  }
}

@media (max-width: 600px) {
  .about-wrap {
    transform-origin: top;
    /* margin-top: -50px; */
    margin-left: -43rem;
    transform: scale(0.6);
    margin-right: -19rem; 
    margin-bottom: -50rem;
    }

  .hero-collage {
    position: relative !important;
    inset: unset !important;
    width: 100vw !important;
    height: auto !important;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin: 0 auto;
    margin-top: -10rem !important;
  }

  .hero-collage img {
    width: 280% !important;
    height: auto !important;
    max-width: 820px !important;
    object-fit: contain !important;
    transform: none !important;
    margin: 0 auto !important;
  }

  #home .container {
    position: relative !important;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: -1rem; 
  }

  #home .container img[alt="SAB’s Portfolio"] {
    width: 150% !important;  
    max-width: 380px !important;
    height: auto !important;
    transform: rotate(0deg) !important;
    filter: drop-shadow(0 6px 12px rgba(0,0,0,.25));
    margin-top: -10rem !important;
  }

  #home {
    min-height: 100vh !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }


  .about-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: -25rem;
  }

  .card-left {
    transform: none;
    margin-left: 15rem;
    margin-bottom: -19rem;
  }

  .about-wrap img[alt="me"] {
    position: relative !important;
    display: flex;
    width: 70%;
    max-width: 700px;
    margin-left: 10rem;
    margin-top: 20rem;
    margin-bottom: 6rem;
  }

.experience-stage .row {
    display: grid !important;             
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(2rem, 4vw, 3rem);
    justify-items: center;                
    align-items: start;                 
  }

  .exp-item img { 
    max-width: 350px; 
    padding-bottom: 7%;
    margin-left: -4rem;
  }
  
  .exp-item p {
    margin-top: -2rem;
    font-weight: 700;
    font-size: 10px;
    color: #111;
  }

  .folder-pin {
    position: absolute;
    top: -3rem;
    left: -3rem;
    width: 150px !important;
    transform: rotate(-20deg);
    z-index: -1;
    filter: drop-shadow(0 6px 8px rgba(0,0,0,0.15));
    pointer-events: none; 
  }

  .contact-block{
    margin-top: -10rem;
  }

  .contact-text{
    margin-left: -40rem;
  }

  .contact-face{
    margin-top: -5rem !important;
    margin-left: 9rem !important
  }

  .contact-phone {
    position: absolute;
    top: 12rem !important; 
    left: auto;
    right: auto;
    margin-left: -9rem;
    width: 85%;
  }

  
  .contact-block{
    margin-bottom: 1rem;
  }

  .contact-text h2 { 
    font-size: 45px; 
  }

  .contact-text p { 
    font-size: 14px; 
    flex-wrap: wrap; 
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .exp-star-bg {
    margin-top: 35rem;
    width: 180%;
    right: -20rem;
    opacity: 0.7;
    z-index: 3;
  }
}

@media (max-width: 500px) {
  .about-wrap {
    transform-origin: top;
    margin-left: -46rem;
    transform: scale(0.4);
    margin-right: -30rem; 
    margin-bottom: -55rem;
    }

  .hero-collage {
    position: relative !important;
    inset: unset !important;
    width: 100vw !important;
    height: auto !important;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin: 0 auto;
    margin-top: -10rem !important;
  }

  .hero-collage img {
    width: 280% !important;
    height: auto !important;
    max-width: 820px !important;
    object-fit: contain !important;
    transform: none !important;
    margin: 0 auto !important;
  }

  #home .container {
    position: relative !important;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: -1rem; 
  }

  #home .container img[alt="SAB’s Portfolio"] {
    width: 150% !important;  
    max-width: 380px !important;
    height: auto !important;
    transform: rotate(0deg) !important;
    filter: drop-shadow(0 6px 12px rgba(0,0,0,.25));
    margin-top: -10rem !important;
  }

  #home {
    min-height: 100vh !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
  .about-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: -15rem;
  }

  .exp-title{
    font-size: 35px;
  }

  .card-left {
    transform: none;
    margin-left: 15rem;
    margin-bottom: -19rem;
  }

  .about-wrap img[alt="me"] {
    position: relative !important;
    display: flex;
    width: 70%;
    max-width: 700px;
    margin-left: 10rem;
    margin-top: 20rem;
    margin-bottom: 6rem;
  }
  .experience-stage{
    margin-top: -5rem;
  }

.experience-stage .row {
    display: grid !important;             
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(2rem, 4vw, 3rem);
    justify-items: center;                
    align-items: start;                 
  }

  .exp-item img { 
    max-width: 190px; 
    padding-bottom: 7%;
    margin-left: -5rem;
  }
  
  .exp-item p {
    margin-top: -2rem;    
    font-weight: 700;
    font-size: 10px;   
    margin-left: -1rem;    
    color: #111;
    text-align: center;   
  }

  .folder-pin {
    position: absolute;
    top: -3rem;
    left: -3rem;
    width: 150px !important;
    transform: rotate(-20deg);
    z-index: -1;
    filter: drop-shadow(0 6px 8px rgba(0,0,0,0.15));
    pointer-events: none; 
  }

  .contact-block{
    margin-top: -10rem;
  }

  .contact-text{
    margin-left: -46rem;
    margin-top: 5rem;
  }

  .contact-text p{
   font-size: 15px;
  }

  .contact-face{
    margin-top: 6rem !important;
    margin-left: 5rem !important;
    width: 95px !important;
    height: 95px !important;
  }

  .contact-phone {
    position: absolute;
    top: 16rem !important; 
    left: auto;
    right: auto;
    margin-left: -9rem;
    width: 85%;
  }
  
  .contact-block{
    margin-bottom: 1rem;
  }

  .contact-text h2 { 
    font-size: 40px; 
    margin-bottom: 5rem;
  }

  .contact-text p { 
    font-size: 15px; 
    flex-wrap: wrap; 
  }

  .contact-text img { 
    width: 30px !important;
    height: 30px !important;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-left img{
    width: 150px;
    height: 150px;
  }

  .footer-desc{
    margin-top: -3rem;
    font-size: 15px;
  }

  .footer-col p{
    font-size: 15px;
  }

  .exp-star-bg {
    margin-top: 40rem;
    width: 180%;
    right: -10rem;
    opacity: 0.7;
    z-index: 3;
  }
}


/* Fonts */
@font-face{
  font-family:"KiwiSoda";
  src:url("./assets/FONT/kiwisoda/KiwiSoda.ttf") format("truetype");
  font-weight:400; font-style:normal; font-display:swap;
}
@font-face{
  font-family:"Deca";
  src:url("./assets/FONT/Lexend_Deca/LexendDeca-VariableFont_wght.ttf") format("truetype");
  font-weight:400; font-style:normal; font-display:swap;
}
@font-face{
  font-family:"Pixel";
  src:url("./assets/FONT/Pixeled-Regular/Pixeled.ttf") format("truetype");
  font-weight:400; font-style:normal; font-display:swap;
}

@media (max-width:1366px){
  .about-wrap{ margin-top:-420px; }
}
