@font-face {
  font-family: 'High Cruiser';
  src: url('font/HighCruiser-PersonalUseOnly.otf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  background-color: #0c3bd5;
  color: white;
  height: 100vh;
}

/* ===== NAVBAR ===== */
.custom-navbar {
  background-color: #0c3bd5;
  padding: 18px 0;
  z-index: 1000;
}

.navbar-nav {
  background-color: white;
  border-radius: 50px;
  padding: 8px 25px;
}

.navbar-nav .nav-link {
  color: #0c3bd5 !important;
  font-weight: 700;
  margin: 0 10px;
  transition: 0.3s;
}

.navbar-nav .nav-link:hover {
  text-decoration: underline;
}

.navbar-wrapper {
  display: flex;
  align-items: center;
  border-radius: 50px;
  padding: 8px 30px;
  gap: 15px; 
}

.home-icon img {
  width: 40px;
  height: 40px;
  margin-left: 10px;
  filter: brightness(0) invert(1);
}

/* Dropdown */
.dropdown-menu {
  background-color: #0c3bd5;
  border: none;
  border-radius: 10px;
}

.dropdown-item {
  color: white;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 10px 0;
  transition: 0.3s;
}

.dropdown-item:hover {
  background-color: #fff;
  color: #0c3bd5;
}

/* Toggle button */
.custom-toggler {
  border: none;
  background: transparent;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* ===== HERO SECTION ===== */
.home-section {
  height: 100vh;
  position: relative;
  text-transform: uppercase;
  background-color: #0c3bd5;
  overflow: hidden;
}

.hero-text {
  margin-top: 120px;
}

.line {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

/* ==== Text Style ==== */
.hi {
  font-size: 8rem;
  font-weight: 900;
  letter-spacing: 2px;
}

.i {
  font-size: 6rem;
  font-weight: 900;
  transform: rotate(90deg);
  display: inline-block;
}

.need {
  font-size: 8rem;
  font-weight: 900;
  letter-spacing: 2px;
}

.graphic {
  font-size: 7rem;
  font-weight: 900;
  letter-spacing: 3px;
  margin-top: -10px;
}

.designer {
  font-size: 7rem;
  font-weight: 900;
  letter-spacing: 2px;
  margin-top: -20px;
}

/* ==== Wave effect ==== */
.wave-divider {
  width: 100%;
  height: 100px;
  background: url('img/wave1.png') repeat-x;
  background-size: cover;
  position: relative;
  top: 0;
  margin-bottom: -50px; /* rapat dengan about section */
  z-index: 5;
  justify-content: center;
  align-items: center;
  left: -0.2px;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  background-color: #fff;
  color: #0c3bd5;
  padding: 100px 0;
  font-family: 'Poppins', sans-serif;
  background: url('img/bg.png') no-repeat center center/cover;
}

.about-title {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.about-text {
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-contact {
  font-weight: 600;
  font-size: 1rem;
}

.rigth-about-contact {
  font-weight: 600;
  font-size: 1rem;
  margin-left: 100px;
}

.about-contact i {
  color: #0c3bd5;
  margin-right: 6px;
}

/* Blob Image */
.blob-container {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle at 30% 30%, #d9e3ff, #fff);
  border-radius: 58% 42% 40% 60% / 53% 47% 53% 47%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.blob-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Subtitles */
.sub-title {
  font-weight: 900;
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

/* Skill Tags */
.tags span {
  display: inline-block;
  background-color: #0c3bd5;
  color: white;
  padding: 6px 14px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  margin: 5px;
}

/* Lists & Paragraphs */
.info-list {
  list-style: none;
  padding-left: 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
}

.org-text, .edu-text, .award-text {
  font-size: 1rem;
  line-height: 1.8;
}

/* Software Icons */
.software-icons .icons {
  display: flex;
  align-items: center;
  gap: 30px; /* jarak antara kiri dan kanan */
  flex-wrap: wrap;
  max-width: 600px;
}
.software-icons-left img,
.software-icons-right img {
  width: 60px;
  margin-right: 15px;
  transition: transform 0.3s;
}

.software-icons-left img:hover,
.software-icons-right img:hover {
  transform: scale(1.1);
}

.lingkaran{
    display: flex;
    align-items: center;
    gap: 20px; /* jarak antara kiri dan kanan */
    flex-wrap: wrap;
    max-width: 400px;
}

.lingkaran .software-circles-left,
.lingkaran .software-circles-right {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.lingkaran .circle {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #0c3bd5; /* warna biru border */
  background-color: transparent;
  transition: 0.3s;
}

/* Lingkaran yang terisi (filled) */
.lingkaran .circle.filled {
  background-color: #0c3bd5;
  border-color: #0c3bd5;
}

/* Efek hover lembut */
.lingkaran .circle:hover {
  transform: scale(1.2);
}

/* Rapi sejajar */
.lingkaran .software-circles-left {
  margin-left: 0;
}
.lingkaran .software-circles-right {
  margin-left: 60px;
}

/* ==== Wave effect ==== */
.wave-divider1 {
  width: 100%;
  height: 100px;
  background: url('img/wave2.png') repeat-x;
  background-size: cover;
  position: relative;
  margin-top: -50px;
  margin-bottom: -50px; 
  z-index: 100;
  justify-content: center;
  align-items: center;
  left: -0.2px;
}

/* ===== LOGOFOLIO SECTION ===== */
.logofolio-section {
  background-color: #fff;
  color: #000;
  padding: 100px 0;
  position: relative;
  background: url('img/bg.png') no-repeat center center/cover;
}

.logofolio-title {
  font-size: 80px;
  font-weight: 800;
  color: #0c3bd5;
  letter-spacing: 4px;
}

.arrow-down {
  font-size: 40px;
  color: #0c3bd5;
  margin-top: 10px;
}

.title{
  margin-top: 100px;
}

.portfolio-subtitle {
  color: #0c3bd5;
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 50px;
}

.side-title {
  color: #0c3bd5;
  font-weight: 800;
  font-size: 32px;
  margin-top: 20px;
  margin-bottom: 15px;
}

.side-text {
  font-size: 18px;
  color: #0c3bd5;
  line-height: 1.6;
  text-align: justify;
  width: 100%;
}

.date {
  color: #0c3bd5;
  font-weight: 500;
  margin-top: 50px;
  font-size: 16px;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  margin-right: -5px;
}

/* === Garis vertikal di tengah === */
.logo-grid::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background-color: #d9d9d9;
  transform: translateX(-50%);
  z-index: 1;
}

/* === Garis horizontal di antara baris === */
.logo-grid .horizontal-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #d9d9d9;
  z-index: 1;
}

/* === Logo items === */
.logo-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px;
  background: transparent;
  position: relative;
  z-index: 2;
}

.logo-item img {
  width: 100%;
  height: auto;
  filter: brightness(0);
  transition: transform 0.3s ease;
}
.logo-item img:hover {
  transform: scale(1.05);
}

.wave-divider2 {
  width: 100%;
  height: 100px;
  background: url('img/wave3.png') repeat-x;
  background-size: cover;
  position: relative;
  margin-top: -50px;
  margin-bottom: -50px; 
  z-index: 100;
  justify-content: center;
  align-items: center;
  left: -0.2px;
}

/* ===== VISUAL IDENTITY SECTION ===== */
.visual-section {
  background-color: #fff;
  color: #000;
  padding: 100px 0;
  position: relative;
  background: url('img/bg.png') no-repeat center center/cover;
}

.visual-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 60px;
  letter-spacing: 2px;
  color: #0c3bd5;
  line-height: 1.1;
}

.visual-section .arrow-down i {
  font-size: 32px;
  color: #0c3bd5;
}

/* === Project Layout === */
.visual-project {
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 60px;
  margin-bottom: 60px;
}

.project-title {
  color: #0c3bd5;
  font-weight: 800;
  font-size: 28px;
  margin-bottom: 15px;
}

.project-text {
  font-size: 18px;
  color: #0c3bd5;
  line-height: 1.6;
  max-width: 450px;
}

.project-date {
  font-size: 16px;
  margin-top: 50px;
  color: #0c3bd5;
}

/* === Grid Gambar === */
.image-grid img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.image-grid img:hover {
  transform: scale(1.03);
}

.wave-divider3 {
  width: 100%;
  height: 100px;
  background: url('img/wave4.png') repeat-x;
  background-size: cover;
  position: relative;
  margin-top: -50px;
  margin-bottom: -50px; 
  z-index: 100;
  justify-content: center;
  align-items: center;
  left: -0.2px;
}

/* ===== SOCIAL MEDIA SECTION ===== */
.social-section {
  background-color: #fff;
  color: #000;
  padding: 100px 0;
  position: relative;
  background: url('img/bg.png') no-repeat center center/cover;
}

.social-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  color: #0033cc;
  letter-spacing: 2px;
  font-size: 3rem;
}

.social-section .arrow-down i {
  color: #0033cc;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.portfolio-subtitle {
  font-size: 1.5rem;
  font-weight: 100;
  margin-bottom: 8px;
}

.project-text {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 1100px;
}

.titledes{
  font-size: 20px;
}

.project-textt {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 980px;
  color: #0c3bd5;
  margin-top: -10px;
  margin-left: 120px;
}

.project-date {
  font-size: 1rem;
  margin-top: 30px;
  font-weight: 600;
}

.image-row {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  margin-top: -80px;
}

/* Gambar biasa */
.social-img {
  width: 180px;
  border-radius: 8px;
  transition: transform 0.3s;
  transform: rotate(-3deg);
  z-index: 1;
}

/* Gambar tengah (handphone) */
.social-img-phone {
  width: 200px;
  border-radius: 8px;
  transition: transform 0.3s;
  transform: rotate(-3deg);
  position: relative;
  top: 100px; /* naik ke atas agar tidak sejajar */
  z-index: 2;
}

/* Efek hover */
.social-img:hover,
.social-img-phone:hover {
  transform: scale(1.05);
}

.social-img2 {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s;
  margin-top: 100px;

}

.social-img2:hover {
  transform: scale(1.05);
}

.wave-divider4 {
  width: 100%;
  height: 100px;
  background: url('img/wave5.png') repeat-x;
  background-size: cover;
  position: relative;
  margin-top: -50px;
  margin-bottom: -50px; 
  z-index: 100;
  justify-content: center;
  align-items: center;
  left: -0.2px;
}

/* ===== PACKAGING SECTION ===== */
.packaging-section {
  background-color: #fff;
  color: #000;
  padding: 100px 0;
  position: relative;
  background: url('img/bg.png') no-repeat center center/cover;
}

.packaging-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 80px;
  line-height: 1;
  color: #0c3bd5;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.packaging-project {
  margin-top: 120px;
}

.packaging-images {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 25px;
  flex-wrap: wrap;
}

/* ===== COLOR PALETTE STYLE ===== */
.color-palette {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 35px;
  gap: 0;
}

.color-box {
  border-radius: 4px 4px 0 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.color-box:hover {
  transform: translateY(-5px);
}

.packaging-img {
  width: 80%;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.packaging-img:hover {
  transform: scale(1.05);
}

.jenius-project {
  margin-bottom: 120px;
}

.jenius-images {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px; /* jarak antara kolom kiri dan kanan */
}

.left-column {
  display: flex;
  flex-direction: column; /* gambar jadi vertikal */
  align-items: center;
  gap: 15px; /* jarak antar gambar kecil */
}

.jenius-small-img {
  width: 100px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.jenius-main-img {
  width: 300px;
  border-radius: 10px;
  margin-left: 60px;
  transition: transform 0.3s ease;
}

.jenius-small-img:hover,
.jenius-main-img:hover {
  transform: scale(1.05);
}

.jenius-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.jenius-bottom-img {
  width: 100%;
  height: 480px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.jenius-bottom-img:hover {
  transform: scale(1.05);
}

.jenius-palette {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  margin-left: -530px;
  margin-right: 50px;
}

.palette-box {
  border-radius: 5px;
}

.project-texttt {
  font-size: 18px;
  line-height: 1.5;
  max-width: 400px;
  color: #0c3bd5;
}

.packaging-images2 {
  display: flex;
  justify-content: center; /* Tengah horizontal */
  align-items: center;
  gap: 50px; /* Jarak antar gambar */
  flex-wrap: nowrap; /* Tetap sejajar satu baris */
  overflow-x: auto; /* Bisa di-scroll kalau terlalu lebar */
  padding: 10px;
}

.packaging-img2-1 {
  width: 200px;
  border-radius: 10px;
  transform: rotate(-5deg);
  transition: 0.3s ease;
  height: 280px;
}

.packaging-img2-2 {
  width: 135px;
  border-radius: 10px;
  transform: rotate(5deg);
  transition: 0.3s ease;
  height: 300px;
}

.packaging-img2-3 {
  width: 170px;
  border-radius: 10px;
  transition: 0.3s ease;
  height: 280px;
  margin-left: -50px;
}

.packaging-img2-1:hover,
.packaging-img2-2:hover,
.packaging-img2-3:hover {
  transform: scale(1.05);
}

.wave-divider5 {
  width: 100%;
  height: 100px;
  background: url('img/wave6.png') repeat-x;
  background-size: cover;
  position: relative;
  margin-top: -50px;
  margin-bottom: -50px; 
  z-index: 100;
  justify-content: center;
  align-items: center;
  left: -0.2px;
}

/* ===== GAME DESIGN SECTION ===== */
.game-section {
  background-color: #fff;
  color: #0c3bd5;
  padding: 100px 0;
  position: relative;
  background: url('img/bg.png') no-repeat center center/cover;
}

/* Title */
.game-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  color: #0c3bd5;
  font-size: 60px;
  letter-spacing: 2px;
  line-height: 1;
  text-transform: uppercase;
}

/* Hero banner */
.game-hero-img {
  width: 100%;
  max-width: 960px;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
  transform: translateY(0);
  display: inline-block;
}

/* Project text */
.game-project-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  color: #0c3bd5;
  font-size: 28px;
  margin-top: 16px;
}

.game-project-text {
  max-width: 780px;
  margin: 12px auto 10px auto;
  color: #303030;
  line-height: 1.75;
  font-size: 15px;
}

/* Visual style area */
.visual-style-title {
  font-weight: 700;
  color: #0c3bd5;
  font-size: 28px;
  margin-bottom: 8px;
}

/* Sprite + items layout */
.visual-grid {
  max-width: 1100px;
  margin: 0 auto;
}

.sprites {
  flex: 0 0 520px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.spritesheet {
  width: 520px;
  height: auto;
  border-radius: 8px;
}

.items {
  flex: 1 1 420px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.item-row {
  display: flex;
}

.item-thumb {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 6px;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 5px 14px rgba(0,0,0,0.12);
  padding: 8px;
}

/* Demo mockups */
.demo-title {
  font-weight: 700;
  color: #0c3bd5;
  font-size: 28px;
  margin-bottom: 12px;
}

.demo-mockups {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-top: 60px;
  position: relative;
}

.mockup-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: -10px;
  position: relative;
}

/* Gaya umum */
.mockup {
  width: 360px;
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Rotasi dan posisi untuk efek “berantakan rapi” */
.mock-top {
  transform: rotate(2deg) translateY(10px);
  z-index: 3;
  margin-bottom: -30px;
}

.mock-mid-left {
  transform: rotate(2deg) translateY(10px);
  z-index: 2;
  margin-top: -120px;
}

.mock-mid-right {
  transform: rotate(2deg) translateY(10px);
  z-index: 2;
  margin-top: 50px;
}

.mock-bottom {
  transform: rotate(2deg) translateY(10px);
  z-index: 3;
  margin-top: -70px;
}

/* Hover efek */
.mockup:hover {
  transform: scale(1.05);
  z-index: 5;
}

.wave-divider6 {
  width: 100%;
  height: 100px;
  background: url('img/wave7.png') repeat-x;
  background-size: cover;
  position: relative;
  margin-top: -50px;
  margin-bottom: -50px; 
  z-index: 100;
  justify-content: center;
  align-items: center;
  left: -0.2px;
}

/* ===== POSTER SECTION ===== */
.poster-section {
  background-color: #fff;
  color: #000;
  padding: 100px 0;
  position: relative;
  background: url('img/bg.png') no-repeat center center/cover;
}

.poster-title {
  font-size: 72px;
  font-weight: 900;
  color: #0c3bd5;
  letter-spacing: 2px;
  line-height: 1.1;
}

.poster-subtitle {
  font-weight: 700;
  font-size: 20px;
  color: #0c3bd5;
  margin-bottom: 20px;
}

.poster-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.poster-img {
  width: 320px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.poster-img:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.arrow-down i {
  font-size: 32px;
  color: #0c3bd5;
}


.wave-divider7{
  width: 100%;
  height: 100px;
  background: url('img/wave8.png') repeat-x;
  background-size: cover;
  position: relative;
  margin-top: -50px;
  margin-bottom: -50px; 
  z-index: 100;
  justify-content: center;
  align-items: center;
  left: -0.2px;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  background-color: #fff;
  color: #0c3bd5;
  padding: 100px 0;
  position: relative;
  background: url('img/bg.png') no-repeat center center/cover;
}

.contact-title {
  font-size: 90px;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 5px;
}

.contact-you {
  display: inline-block;
  position: relative;
}

.smile-face {
  font-size: 40px;
  margin-top: -20px;
}

.eyes {
  display: inline-block;
  letter-spacing: 20px;
  color: #0c3bd5;
}

.contact-subtext {
  color: #0c3bd5;
  font-size: 14px;
  font-style: italic;
  margin-top: 10px;
}

.contact-info {
  margin-top: 60px;
  font-size: 18px;
  color: #0c3bd5;
}

.contact-link {
  color: #0c3bd5;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #0c3bd5;
}

.social-links {
  margin-top: 15px;
}

.social-links a {
  color: #0c3bd5;
  font-weight: 600;
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #0c3bd5;
}

.wave-divider8{
  width: 100%;
  height: 100px;
  background: url('img/wave9.png') repeat-x;
  background-size: cover;
  position: relative;
  margin-top: -50px;
  margin-bottom: -50px; 
  z-index: 100;
  justify-content: center;
  align-items: center;
  left: -0.2px;
}

/* --- 1024px (Laptop kecil / Tablet landscape) --- */
@media (max-width: 1024px) {
  .navbar-nav {
    padding: 8px 20px;
  }

  .navbar-nav .nav-link {
    margin: 0 6px;
    font-size: 15px;
  }

  .home-icon img {
    width: 36px;
    height: 36px;
  }

  .navbar-wrapper {
    gap: 10px;
    padding: 8px 20px;
  }

  .home-icon img {
    width: 35px;
    height: 35px;
  }

  .hero-text {
    margin-top: 100px;
  }

  .hi, .need {
    font-size: 6rem;
  }

  .i {
    font-size: 4.5rem;
  }

  .graphic, .designer {
    font-size: 5.5rem;
  }

  .line {
    gap: 20px;
  }

  .wave-divider {
    height: 80px;
  }

  .about-section {
    padding: 80px 0;
  }

  .about-title {
    font-size: 2.4rem;
  }

  .about-text {
    font-size: 1rem;
  }

  .blob-container {
    width: 240px;
    height: 240px;
  }

  .rigth-about-contact {
    margin-left: 50px;
  }

  .software-icons-left img,
  .software-icons-right img {
    width: 50px;
  }

  .lingkaran .software-circles-right {
    margin-left: 40px;
  }

  .logofolio-title {
    font-size: 60px;
  }

  .portfolio-subtitle {
    font-size: 22px;
    margin-bottom: 30px;
  }

  .side-title {
    font-size: 28px;
  }

  .side-text {
    font-size: 17px;
  }

  .logo-grid {
    max-width: 500px;
  }

  .logo-item {
    padding: 20px;
  }

  .visual-section {
    padding: 80px 40px;
  }

  .visual-title {
    font-size: 52px;
  }

  .project-title {
    font-size: 26px;
  }

  .project-text {
    font-size: 17px;
    max-width: 400px;
  }

  .project-date {
    font-size: 15px;
  }

  .image-grid img {
    max-width: 95%;
    margin: 0 auto;
  }

  .social-section {
    padding: 80px 40px;
  }

  .social-title {
    font-size: 2.5rem;
  }

  .portfolio-subtitle {
    font-size: 1.3rem;
  }

  .project-text,
  .project-textt {
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 90%;
  }

  .project-textt {
    margin-left: 60px;
  }

  .image-row {
    gap: 15px;
    margin-top: -60px;
  }

  .social-img {
    width: 160px;
  }

  .social-img-phone {
    width: 180px;
    top: 80px;
  }

  .social-img2 {
    width: 90%;
    margin-top: 80px;
  }
  .packaging-title {
    font-size: 60px;
  }

  .packaging-project {
    margin-top: 80px;
  }

  .project-title {
    font-size: 38px !important;
    margin-top: 60px !important;
  }

  .project-texttt,
  .project-text {
    font-size: 16px;
    max-width: 90%;
  }

  .packaging-img {
    width: 90%;
    margin-top: 60px;
  }

  .color-palette {
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 20px;
  }

  .color-box {
    width: 100px !important;
    height: 50px !important;
  }

  .jenius-images {
    flex-direction: row;
    gap: 20px;
  }

  .jenius-small-img {
    width: 80px;
  }

  .jenius-main-img {
    width: 240px;
    margin-left: 20px;
  }

  .jenius-bottom {
    flex-direction: column;
    gap: 20px;
  }

  .jenius-palette {
    margin-left: 0;
    align-items: center;
  }

  .jenius-bottom-img {
    width: 80%;
    height: auto;
  }

  .game-title {
    font-size: 48px;
  }

  .game-hero-img {
    max-width: 720px;
  }

  .project-text {
    font-size: 15px;
    padding: 0 30px;
  }

  .visual-grid {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .sprites {
    flex: 0 0 auto;
  }

  .spritesheet {
    width: 80%;
    max-width: 480px;
  }

  .mockup {
    width: 300px;
  }

  .mockup-row.middle {
    flex-direction: column;
    gap: 20px;
  }

  .mock-mid-left, .mock-mid-right {
    margin: 0;
    transform: rotate(0deg);
  }

  .mock-top, .mock-bottom {
    transform: rotate(0deg);
    margin: 0;
  }

  .poster-title {
    font-size: 56px;
  }

  .poster-subtitle {
    font-size: 18px;
  }

  .poster-grid {
    gap: 30px;
  }

  .poster-img {
    width: 280px;
  }

  .contact-title {
    font-size: 70px;
    letter-spacing: 4px;
  }

  .contact-subtext {
    font-size: 13px;
  }

  .contact-section {
    padding: 80px 0;
  }
}

/* --- 768px (Tablet portrait) --- */
@media (max-width: 768px) {
  .custom-navbar {
    padding: 12px 0;
  }

  .navbar-wrapper {
    width: 100%;
    justify-content: space-between;
    padding: 8px 20px;
  }

  .home-icon img {
    width: 32px;
    height: 32px;
    margin-left: 0;
  }

  /* Saat collapse aktif */
  .navbar-collapse {
    background-color: white;
    border-radius: 20px;
    margin-top: 10px;
    padding: 10px 0;
  }

  .navbar-nav {
    flex-direction: column;
    align-items: center;
    background-color: transparent;
    padding: 0;
  }

  .navbar-nav .nav-link {
    color: #0c3bd5 !important;
    padding: 10px 0;
    font-size: 16px;
    width: 100%;
  }

  .dropdown-menu {
    background-color: #0c3bd5;
    border-radius: 10px;
    margin-top: 5px;
  }

  .dropdown-item {
    font-size: 15px;
  }

  .custom-toggler {
    display: block;
  }

  .home-icon img {
    width: 35px;
    height: 35px;
  }

  .home-section {
    height: 90vh;
  }

  .hero-text {
    margin-top: 80px;
  }

  .line {
    flex-direction: row;
    gap: 15px;
  }

  .hi, .need {
    font-size: 4rem;
  }

  .i {
    font-size: 3rem;
  }

  .graphic, .designer {
    font-size: 3.8rem;
  }

  .wave-divider {
    height: 70px;
    margin-bottom: -40px;
  }

  .about-section {
    padding: 60px 0;
    text-align: center;
  }

  .about-title {
    font-size: 2rem;
  }

  .about-text {
    font-size: 0.95rem;
  }

  .blob-container {
    width: 200px;
    height: 200px;
    margin-bottom: 30px;
  }

  .about-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .rigth-about-contact {
    margin-left: 0;
  }

  .software-icons .icons {
    justify-content: center;
  }

  .software-icons-left img,
  .software-icons-right img {
    width: 45px;
    margin-right: 10px;
  }

  .lingkaran {
    justify-content: center;
    max-width: 100%;
  }

  .lingkaran .software-circles-right {
    margin-left: 20px;
  }

  .sub-title {
    margin-top: 30px;
  }

  .wave-divider1 {
    height: 80px;
    margin-top: -30px;
  }

  .logofolio-section {
    padding: 80px 20px;
  }

  .logofolio-title {
    font-size: 50px;
  }

  .title {
    margin-top: 50px;
    text-align: center;
  }

  .portfolio-subtitle {
    font-size: 20px;
  }

  .side-title {
    font-size: 26px;
  }

  .side-text {
    font-size: 16px;
    text-align: center;
  }

  .date {
    text-align: center;
    margin-top: 30px;
  }

  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 400px;
  }

  .logo-item {
    padding: 15px;
  }

  .arrow-down {
    font-size: 32px;
  }

  .visual-section {
    padding: 70px 25px;
  }

  .visual-title {
    font-size: 45px;
    line-height: 1.2;
  }

  .visual-section .arrow-down i {
    font-size: 28px;
  }

  .visual-project {
    flex-direction: column;
    text-align: center;
    padding-bottom: 50px;
    margin-bottom: 50px;
  }

  .visual-project .col-lg-5,
  .visual-project .col-lg-7 {
    width: 100%;
    text-align: center;
  }

  .portfolio-subtitle {
    font-size: 20px;
  }

  .project-title {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .project-text {
    font-size: 16px;
    max-width: 100%;
    text-align: center;
  }

  .project-date {
    font-size: 15px;
    margin-top: 30px;
  }

  .image-grid img {
    width: 90%;
    max-width: 500px;
    margin-top: 30px;
  }

  .social-section {
    padding: 70px 25px;
  }

  .social-title {
    font-size: 2.2rem;
    line-height: 1.2;
  }

  .social-section .arrow-down i {
    font-size: 1.6rem;
  }

  .portfolio-subtitle {
    font-size: 1.2rem;
    text-align: center;
  }

  .project-text,
  .project-textt {
    text-align: center;
    margin: 0 auto;
    max-width: 95%;
    font-size: 0.95rem;
  }

  .titledes {
    font-size: 1rem;
  }

  .project-textt {
    margin-top: 0;
  }

  .project-date {
    text-align: center;
    font-size: 0.9rem;
  }

  .image-row {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    margin-top: 0;
  }

  .social-img {
    width: 140px;
    transform: rotate(0deg);
  }

  .social-img-phone {
    width: 160px;
    top: 20px;
    transform: rotate(0deg);
  }

  .social-img2 {
    width: 95%;
    margin-top: 60px;
  }

  .packaging-title {
    font-size: 48px;
  }

  .packaging-project {
    margin-top: 60px;
  }

  /* TEARY PROJECT */
  .packaging-project .row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .packaging-project .col-lg-5 {
    order: 1;
    text-align: center;
  }

  .packaging-project .col-lg-7 {
    order: 2;
    margin-top: 30px;
  }

  .project-title {
    margin-top: 30px !important;
  }

  .project-texttt,
  .project-text {
    max-width: 90%;
    margin: 0 auto;
    text-align: center;
  }

  .color-palette {
    justify-content: center;
    gap: 4px;
    margin-top: 25px;
  }

  .color-box {
    width: 60px !important;
    height: 30px !important;
  }

  /* UNCLE G */
  .packaging-images2 {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .packaging-img2-1,
  .packaging-img2-2,
  .packaging-img2-3 {
    transform: none;
    width: 150px;
    height: auto;
    margin: 0;
  }

  /* JENIUS */
  .jenius-images {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .left-column {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
  }

  .jenius-small-img {
    width: 70px;
  }

  .jenius-main-img {
    width: 250px;
    margin-left: 0;
  }

  .jenius-bottom {
    flex-direction: column;
    gap: 10px;
  }

  .jenius-palette {
    margin-left: 0;
    align-items: center;
  }

  .palette-box {
    width: 250px !important;
  }

  .jenius-bottom-img {
    width: 70%;
    height: auto;
  }

  .game-title {
    font-size: 40px;
    line-height: 1.2;
  }

  .game-hero-img {
    width: 90%;
    max-width: 600px;
  }

  .project-text {
    font-size: 14px;
    line-height: 1.7;
    padding: 0 20px;
  }

  .visual-style-title,
  .demo-title {
    font-size: 22px;
  }

  .visual-grid {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .spritesheet {
    width: 90%;
    max-width: 400px;
  }

  .mockup {
    width: 260px;
  }

  .demo-mockups {
    margin-top: 30px;
    gap: 25px;
  }

  .mockup-row.middle {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .mockup-row.bottom {
    margin-top: 0;
  }

  .poster-section {
    padding: 80px 0;
  }

  .poster-title {
    font-size: 42px;
    line-height: 1.2;
  }

  .poster-subtitle {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .poster-grid {
    flex-direction: column;
    gap: 25px;
  }

  .poster-img {
    width: 80%;
    max-width: 320px;
  }

  .arrow-down i {
    font-size: 28px;
  }

  .contact-title {
    font-size: 60px;
    line-height: 1;
    letter-spacing: 3px;
  }

  .contact-you {
    display: block;
    margin-top: 8px;
  }

  .contact-subtext {
    font-size: 12px;
    margin-top: 8px;
  }

  .contact-info {
    font-size: 16px;
  }

  .social-links a {
    font-size: 14px;
    margin: 0 6px;
  }

  .contact-section {
    padding: 70px 0;
  }
}

/* --- 480px (Smartphone) --- */
@media (max-width: 480px) {
    .custom-navbar {
    padding: 8px 0;
  }

  .navbar-wrapper {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px;
  }

  .home-icon img {
    width: 28px;
    height: 28px;
  }

  .navbar-toggler {
    margin-right: 10px;
  }

  .navbar-collapse {
    background-color: #fff;
    border-radius: 15px;
    margin-top: 10px;
    padding: 10px 0;
  }

  .navbar-nav {
    flex-direction: column;
    background: transparent;
    border-radius: 0;
    padding: 0;
  }

  .navbar-nav .nav-link {
    font-size: 14px;
    padding: 8px 0;
  }

  .dropdown-menu {
    font-size: 14px;
    background-color: #0c3bd5;
    border-radius: 10px;
  }

  .dropdown-item {
    padding: 8px 0;
  }
  .home-section {
    height: 80vh;
  }

  .hero-text {
    margin-top: 70px;
  }

  .line {
    flex-direction: column;
    gap: 5px;
  }

  .hi, .need {
    font-size: 2.8rem;
  }

  .i {
    font-size: 2rem;
    transform: rotate(0deg); /* supaya vertikal "I" tidak aneh di mobile */
  }

  .graphic, .designer {
    font-size: 3rem;
  }

  .wave-divider {
    height: 60px;
    width: 100%;
    background-size: contain;
  }

  .about-section {
    padding: 50px 0;
  }

  .about-title {
    font-size: 1.8rem;
  }

  .about-text {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .blob-container {
    width: 180px;
    height: 180px;
  }

  .tags span {
    font-size: 0.8rem;
    padding: 5px 10px;
  }

  .info-list,
  .org-text,
  .edu-text,
  .award-text {
    font-size: 0.9rem;
  }

  .software-icons-left img,
  .software-icons-right img {
    width: 40px;
  }

  .lingkaran .circle {
    width: 7px;
    height: 7px;
  }

  .lingkaran .software-circles-right {
    margin-right: -50px;
  }

  .lingkaran .software-circles-left{
    margin-left: -85px;
  } 

  .wave-divider1 {
    height: 60px;
    margin-top: -20px;
  }

  .logofolio-section {
    padding: 60px 15px;
  }

  .logofolio-title {
    font-size: 36px;
    letter-spacing: 2px;
  }

  .arrow-down {
    font-size: 28px;
  }

  .title {
    margin-top: 40px;
  }

  .portfolio-subtitle {
    font-size: 18px;
    margin-bottom: 25px;
  }

  .side-title {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .side-text {
    font-size: 15px;
    text-align: justify;
  }

  .date {
    font-size: 14px;
  }

  .wave-divider2 {
    height: 70px;
    margin-top: -30px;
    margin-bottom: -30px;
  }

  .visual-section {
    padding: 60px 15px;
  }

  .visual-title {
    font-size: 34px;
    letter-spacing: 1px;
    line-height: 1.3;
  }

  .visual-section .arrow-down i {
    font-size: 26px;
  }

  .portfolio-subtitle {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .project-title {
    font-size: 22px;
    margin-bottom: 8px;
  }

  .project-text {
    font-size: 15px;
    line-height: 1.5;
    text-align: justify;
  }

  .project-date {
    font-size: 14px;
    margin-top: 20px;
  }

  .image-grid img {
    width: 100%;
    max-width: 350px;
    border-radius: 8px;
  }

  .wave-divider3 {
    height: 70px;
    margin-top: -30px;
    margin-bottom: -30px;
  }

  .social-section {
    padding: 60px 15px;
  }

  .social-title {
    font-size: 1.8rem;
    letter-spacing: 1px;
    line-height: 1.3;
  }

  .social-section .arrow-down i {
    font-size: 1.4rem;
  }

  .portfolio-subtitle {
    font-size: 1rem;
    margin-bottom: 10px;
    text-align: center;
  }

  .project-text,
  .project-textt {
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: justify;
    margin: 0 auto;
  }

  .project-textt {
    margin-left: 0;
    color: #0c3bd5;
  }

  .project-date {
    font-size: 0.85rem;
    text-align: center;
    margin-top: 20px;
  }

  .image-row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
    margin-left: -90px;
  }

  .social-img,
  .social-img-phone {
    width: 80%;
    transform: rotate(0deg);
    top: 0;
  }

  .social-img2 {
    width: 90%;
    margin-top: 40px;
    margin-left: 67px;
  }

  .wave-divider4 {
    height: 70px;
    margin-top: -30px;
    margin-bottom: -30px;
  }

  .packaging-title {
    font-size: 36px;
  }

  .portfolio-subtitle {
    font-size: 12px;
  }

  .project-title {
    font-size: 28px !important;
  }

  .project-texttt,
  .project-text {
    font-size: 14px;
    max-width: 95%;
    line-height: 1.4;
    color: #0c3bd5;
  }

  .packaging-img {
    width: 100%;
    margin-top: 30px;
  }

  .color-palette {
    flex-wrap: wrap;
    justify-content: center;
    gap: 3px;
    margin-top: 15px;
  }

  .color-box {
    width: 45px !important;
    height: 25px !important;
  }

  /* UNCLE G */
  .packaging-images2 {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .packaging-img2-1,
  .packaging-img2-2,
  .packaging-img2-3 {
    width: 120px;
    height: auto;
    transform: none;
  }

  /* JENIUS */
  .jenius-images {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .left-column {
    flex-direction: row;
    justify-content: center;
    gap: 8px;
  }

  .jenius-small-img {
    width: 60px;
  }

  .jenius-main-img {
    width: 200px;
  }

  .jenius-bottom {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
  }

  .jenius-palette {
    margin: 0 auto !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }

  .palette-box {
    width: 180px !important;
    height: 35px !important;
  }

  .jenius-bottom-img {
    width: 80%;
    height: auto;
  }

  .game-title {
    font-size: 32px;
  }

  .game-hero-img {
    width: 95%;
    max-width: 360px;
    border-radius: 6px;
  }

  .project-text {
    font-size: 13px;
    padding: 0 15px;
  }

  .visual-style-title,
  .demo-title {
    font-size: 20px;
  }

  .visual-grid {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 80%;
  }

  .spritesheet {
    width: 95%;
    max-width: 320px;
  }

  .mockup {
    width: 220px;
    border-radius: 14px;
  }

  .mockup-row.middle,
  .mockup-row.top,
  .mockup-row.bottom {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin: 0;
  }

  .mock-top, .mock-mid-left, .mock-mid-right, .mock-bottom {
    transform: none;
    margin: 0;
  }

  .poster-section {
    padding: 60px 0;
  }

  .poster-title {
    font-size: 32px;
    letter-spacing: 1px;
    line-height: 1.3;
  }

  .poster-subtitle {
    font-size: 15px;
  }

  .poster-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    justify-items: center;
  }

  .poster-img {
    width: 100%;
    max-width: 200px;
  }

  .arrow-down i {
    font-size: 24px;
  }

  .contact-title {
    font-size: 42px;
    line-height: 1.1;
    letter-spacing: 2px;
  }

  .contact-you {
    display: block;
    margin-top: 5px;
  }

  .contact-subtext {
    font-size: 11px;
    margin-top: 6px;
  }

  .contact-info {
    font-size: 14px;
    line-height: 1.4;
    margin-top: 30px;
  }

  .social-links a {
    display: inline-block;
    font-size: 13px;
    margin: 4px 8px;
  }

  .contact-section {
    padding: 60px 0;
  }
}