@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(to right, #FFFBDE, rgb(255, 255, 255));
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(125deg, #D1E9F6, #a3d4f7);
  border-radius: 12px;
  transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: #4682A9;
}

nav {
  z-index: 999;
  width: 100%;
  height: 10vh;
  position: fixed;
  top: 0;
  background: linear-gradient(135deg, #D1E9F6, #a3d4f7);
  box-shadow: 0 4px 20px rgba(0.1, 0, 0, 0.1);
  border-bottom-left-radius: 50% 20%;
  border-bottom-right-radius: 50% 20%;
}

.nav-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.logo {
  color: #131212;
  font-size: 2rem;
  font-weight: bold;
}

.logo span {
  color: #4682A9;
  text-shadow: 0 0 10px #91C8E4;
}

.hamburg,
.cancel {
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 15px;
  color: #131212;
  opacity: 0;
  pointer-events: none;
  font-size: clamp(2rem, 0.5rem + 3vw, 3rem);
}

.nav-container .links {
  display: flex;
}

.nav-container .links a {
  position: relative;
  font-size: 1.1rem;
  color: #131212;
  margin: 0 20px;
  text-decoration: none;
  font-weight: 550;
  transition: 0.3s linear;
}

.nav-container .links a::before {
  position: absolute;
  content: "";
  bottom: -3px;
  left: 0;
  width: 0%;
  height: 3px;
  background-color: #4682A9;
  transition: 0.2s linear;
}

.nav-container .links a:hover::before {
  width: 100%;
}

.nav-container .links a:hover {
  color: #4682A9;
}

.nav-container .links a.active {
  color: #4682A9;
}

.nav-container .links a.active::before {
  width: 100%;
}


.dropdown {
  z-index: 100;
  position: absolute;
  top: 0;
  transform: translateY(-500px);
  width: 100%;
  height: auto;
  backdrop-filter: blur(4px) brightness(40%);
  box-shadow: 0 0 20px #131212;
  transition: 0.2s linear;
}

.dropdown .links a {
  display: flex;
  color: #f1f1f1;
  text-decoration: none;
  justify-content: center;
  padding: 15px 0;
  align-items: center;
  transition: 0.2s linear;
}

.dropdown .links a:hover {
  background-color: #91C8E4;
}

section {
  padding-top: 10vh;
  width: 100%;
  min-height: 90vh;
}

section .main-container {
  display: flex;
  justify-content: space-between;
  padding-left: 100px;
  align-items: center;
}

.main-container .image {
  margin-left: 150px;
  margin-top: 80px;
  width: 29%;
  height: 60vh;
  border-radius: 100%;
  overflow: hidden;
  box-shadow: 0 0 30px 10px #4682A9, 0 0 40px #4682A9;
}

.main-container .image img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
}

.main-container .image:hover {
  animation: animate 1.5s ease-in-out infinite;
}

@keyframes animate {
  0% {
    scale: 1;
  }

  50% {
    scale: 1.05;
  }

  100% {
    scale: 1;
  }
}

.main-container .content {
  margin-top: 120px;
  color: #131212;
  width: 50%;
}

.content h1 {
  font-size: clamp(1rem, 1rem + 5vw, 2.5rem);
}

.content h1 span {
  color: #4682A9;
  text-shadow: 0 0 8px #91C8E4;
}

.content .typewriter {
  font-size: clamp(1rem, 1rem + 5vw, 2rem);
  font-weight: 600;
}

.content .typewriter-text {
  color: #4682A9;
  text-shadow: 0 0 8px #91C8E4;
}

.content .typewriter-text label {
  animation: blink-caret 0.7s infinite;
  color: #4682A9;
}

@keyframes blink-caret {

  0%,
  50%,
  100% {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}

.content p {
  font-size: clamp(0.4rem, 0.2rem + 9vw, 1rem);
  margin: 10px 0;
  color: #131212;
}

.social-links i {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  background-color: transparent;
  border: 0.2rem solid #4682A9;
  border-radius: 50%;
  color: #4682A9;
  margin: 5px 8px;
  font-size: 1.5rem;
  transition: 0.2s linear
}

.social-links i:hover {
  scale: 1.3;
  color: #f1f1f1;
  background-color: #4682A9;
  filter: drop-shadow(0 0 8px #91C8E4);
}

.content button {
  width: 50%;
  height: 6vh;
  font-size: 100%;
  margin: 30px 0;
  background-color: #4682A9;
  color: #f1f1f1;
  border: none;
  outline: none;
  font-weight: 700;
  border-radius: 2rem;
  transition: 0.2s linear;
}

.content button:hover {
  scale: 1.1;
  color: #4682A9;
  border: 2px solid #4682A9;
  background-color: transparent;
  font-weight: 700;
  box-shadow: 0 0 40px #91C8E4;
}

.resume-section {
  background: linear-gradient(to left, #FFFBDE, #f1f1f1, #91C8E4);
  color: #f1f1f1;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), #FFFBDE, #f1f1f1, #91C8E4);
  backdrop-filter: blur(10px);
  /* blur efek transparansi */
  -webkit-backdrop-filter: blur(10px);
  margin-top: 59px;
  padding-top: 25px;
  text-align: center;
  box-shadow: 0 -10px -20px rgba(0, 0, 0, 0.02);
  border-top-left-radius: 50% 20%;
  border-top-right-radius: 50% 20%;
  z-index: 1;
  transition: all 0.4s ease;
}

.resume-section h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #4682A9;
}

.resume-section p {
  margin-bottom: 30px;
  color: #131212;
}

.resume-tabs {
  width: 100%;
  max-width: 1000px;
  display: flex;
  padding: 10px 35px;
  gap: 20px;
  justify-content: center;
  margin: 0 auto 30px auto;
  border: 2px solid #4682A9;
  border-radius: 20px;
}

.resume-content {
  text-align: left;
  padding: 20px;
  font-size: 1rem;
  color: #131212;
  max-width: 1000px;
  margin: 0 auto;
}

.resume-content .label {
  color: #131212;
  font-weight: bold;
}

.resume-content .value {
  color: #4682A9;
  font-weight: 700;
}

.tab-btn {
  background-color: transparent;
  border: none;
  color: #131212;
  font-weight: bold;
  padding: 10px 55px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.tab-btn.active,
.tab-btn:hover {
  background-color: #4682A9;
  color: #f1f1f1;
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.experience-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

.card {
  background-color: #D1E9F6;
  padding: 15px;
  border-radius: 10px;
  width: 250px;
  text-align: center;
  color: #f1f1f1;
  transition: transform 0.3s ease;
}

.card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}

.card:hover {
  transform: scale(1.05);
}

.card h4 {
  text-align: left;
  color: #707070;
  font-size: 15px;
  font-weight: 600;
}

.card p {
  margin: 5px 0;
  color: #131212;
}

.skills-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

.skill-card {
  background-color: #D1E9F6;
  padding: 20px;
  border-radius: 15px;
  width: 220px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.skill-card:hover {
  transform: scale(1.05);
}

.skill-card i {
  font-size: 40px;
  color: #4682A9;
  margin-bottom: 10px;
}

.skill-card h4 {
  margin-bottom: 10px;
  color: #131212;
}

.progress-bar {
  width: 100%;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  height: 10px;
}

.progress {
  height: 100%;
  background: linear-gradient(to right, #91C8E4, #4682A9);
  width: 0;
  border-radius: 10px;
  transition: width 1s ease;
}

.project-slider-container {
  max-width: 1000px;
  margin: 10px auto 0;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.project-slider {
  display: flex;
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px;
  padding: 20px;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
}

.project-slider::-webkit-scrollbar-button {
  display: none;
}

.project-card {
  padding: 15px;
  border-radius: 10px;
  width: 250px;
  margin-top: 0;
  position: relative;
  flex: 0 0 calc(100%/3 - 20px);
  /* 3 kartu per layar besar */
  max-width: 350px;
  scroll-snap-align: center;
  background-color: #D1E9F6;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  color: #131212;
  transition: transform 0.3s;
}

.project-card:hover {
  transform: scale(1.05);
}

.project-card img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
  object-fit: cover;
}

.project-card h4 {
  margin: 9px;
  color: #131212;
}

.project-card p {
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 30px;
  margin-left: 10px;
}

/* Tombol Icon Link */
.project-link {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: linear-gradient(to right, #2e98ff, #063c67);
  color: #fff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: background 0.3s;
}

.project-link:hover {
  background: linear-gradient(to right, #4682A9, #22557a);
}

.slider-dots {
  text-align: center;
  margin-top: 15px;
}

.slider-dots .dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s;
}

.slider-dots .dot.active {
  background-color: #4682A9;
}


.involvement-section {
  background: linear-gradient(to top, rgba(255, 255, 255, 0.3), #FFFBDE, #f1f1f1, #91C8E4);
  padding: 65px 20px;
  text-align: center;
  padding-top: 50px;
  backdrop-filter: blur(15px);
  /* blur efek transparansi */
  -webkit-backdrop-filter: blur(10px);
  z-index: 1;
  transition: all 0.4s ease;
}

.involvement-section .resume-tabs {
  width: 100%;
  max-width: 850px;
  display: flex;
  padding: 10px 35px;
  gap: 100px;
  justify-content: center;
  margin: 0 auto 30px auto;
  border: 2px solid #4682A9;
  border-radius: 20px;
}

.involvement-section h2 {
  font-size: 2.5rem;
  color: #4682A9;
  margin-bottom: 25px;
}

.table-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: center;
  margin-top: 10px;
  max-width: 1000px;
}

.table-card,
.activity-card {
  background-color: #D1E9F6;
  border-radius: 12px;
  padding: 20px;
  width: 300px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: transform 0.3s;
}

.table-card:hover,
.activity-card:hover {
  transform: scale(1.03);
}

.table-card img,
.activity-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
}

.table-card h4,
.activity-card h4 {
  color: #22557a;
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.table-card .table-date,
.activity-card .table-date {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.table-card .table-desc,
.activity-card .table-desc {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.5;
}

.activity-slider-container {
  max-width: 1000px;
  margin: 10px auto 0;
  overflow: hidden;
  position: relative;
  width: 100%;
}

/* Untuk activity slider */
.activity-slider {
  display: flex;
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px;
  padding: 20px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

/* Sembunyikan scrollbar */
.activity-slider::-webkit-scrollbar {
  display: none;
}

.activity-card {
  width: 250px;
  margin-top: 0;
  position: relative;
  flex: 0 0 calc(100% / 3 - 20px);
  /* 3 kartu per slide */
  max-width: 350px;
  scroll-snap-align: center;
  color: #131212;
}

/* === Dots Styling untuk Activity === */
.activityDots {
  margin-top: 15px;
  text-align: center;
}

.activityDots::-webkit-scrollbar {
  display: none;
  /* Chrome & Safari */
}

.activityDots .dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.activityDots .dot.active {
  background-color: #4682A9;
}



.article-section {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), #D1E9F6);
  padding: 50px 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  /* blur efek transparansi */
  -webkit-backdrop-filter: blur(10px);
}

.article-section h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #4682A9;
}

.article-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.article-card {
  background-color: #D1E9F6;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 300px;
  padding: 15px;
  text-align: left;
  transition: transform 0.3s;
}

.article-card:hover {
  transform: translateY(-5px);
}

.article-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
}

.article-date {
  font-size: 0.85rem;
  color: #888;
  margin-top: 10px;
}

.article-desc {
  margin: 10px 0;
  color: #333;
}

.read-more {
  color: #4682A9;
  text-decoration: none;
  font-weight: bold;
}

.read-more:hover {
  text-decoration: underline;
}

.see-more-wrapper {
  margin-top: 20px;
}

.see-more-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #4682A9;
  color: white;
  border-radius: 5px;
  margin-top: 15px;
  text-decoration: none;
}

.see-more-btn:hover {
  background: #315f75;
}

/* ============================= */
/* ====== PRICING & FORM ====== */
/* ============================= */


.pricing-contact-wrapper {
  width: 100%;
  overflow-x: hidden;
  overflow: hidden;
}

/* ======= PRICING SECTION ======= */
.pricing-contact-pricing-section {
  z-index: -1;
  background-color: transparent;
  color: black;
  padding: 60px 20px 25px;
  text-align: center;
  margin-top: 100px;
}

.pricing-contact-pricing-section h1 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 40px;
}

.pricing-contact-pricing-section h1 span {
  color: #4682A9;
  font-style: italic;
}

.pricing-contact-pricing-table {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.pricing-contact-card {
  background-color: #91c8e4;
  border-radius: 12px;
  padding: 30px 20px;
  width: 280px;
  position: relative;
  transition: transform 0.3s;
}

.pricing-contact-card.highlight {
  background: linear-gradient(to right,
      #d0ebff 0%,
      #e6f4ff 30%,
      #e6f4ff 1000%);
  color: #000;
}

.pricing-contact-card:hover {
  transform: translateY(-5px);
}

.pricing-contact-card h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.pricing-contact-price {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
}

.pricing-contact-card.highlight .pricing-contact-price {
  color: #000;
}

.pricing-contact-card ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  text-align: left;
}

.pricing-contact-card li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  opacity: 0.8;
}

.pricing-contact-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #f1f1f1;
  font-weight: bold;
}

.pricing-contact-card.highlight li::before {
  color: #000;
}

/* ======= CONTACT SECTION ======= */
.pricing-contact-contact-section {
  background: #fff;
  padding: 60px 20px;

}

.pricing-contact-contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.pricing-contact-info {
  flex: 1;
  min-width: 250px;
  max-width: 350px;
}

.pricing-contact-info h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.pricing-contact-info h2 span {
  color: #4682A9;
  font-style: italic;
}

.pricing-contact-info p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 20px;
}

.pricing-contact-info div {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 0.95rem;
  color: #333;
}

.pricing-contact-info div i {
  background-color: #91C8E4;
  padding: 8px;
  border-radius: 50%;
  margin-right: 10px;
  color: #000;
}

.pricing-contact-form {
  flex: 2;
  min-width: 280px;
  max-width: 600px;
}

.pricing-contact-form form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.pricing-contact-form .form-group {
  width: calc(50% - 10px);
  display: flex;
  flex-direction: column;
}

.pricing-contact-form label {
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #333;
}

.pricing-contact-form input,
.pricing-contact-form select,
.pricing-contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 0.95rem;
  width: 100%;
  /* biar ikuti form-group */
}

.pricing-contact-form textarea {
  height: 120px;
  resize: none;
}

.pricing-contact-form .form-group-full {
  width: 100%;
}

.pricing-contact-form button {
  margin-top: 10px;
  background-color: #4682A9;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s;
}

.pricing-contact-form button:hover {
  background-color: #91c8e4;
  color: #000;
}

span.required {
  color: red;
}

.contact-info a {
  color: #000;
  text-decoration: none;
}
.contact-info a:hover {
  color: #131212;
  /* warna saat hover */
}
.contact-info i {
  margin-right: 5px;
}
.contact-info div {
  margin-bottom: 10px;
}



.footer {
  background-color: #4682A9;
  color: #f1f1f1;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.05);
}

.footer-container {
  max-width: 1000px;
  margin: 0 auto;
}

.footer .logo {
  font-size: 2.2rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 15px;
  position: relative;
  animation: floatLogo 2.5s ease-in-out infinite;
}

.footer .logo span {
  color: #91C8E4;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 10px 0 20px;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-menu li a {
  color: #f1f1f1;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.footer-menu li a:hover {
  color: #FFFBDE;
}

footer .copyright {
  font-size: 0.85rem;
  color: #e1e1e1;
  margin-top: 10px;
}

@keyframes floatLogo {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-5px);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width:968px) {
  body {
    overflow-y: visible;
  }

  .logo {
    position: absolute;
    top: 16px;
    left: 15px;
    font-size: 1.5rem;
  }

  .nav {
    z-index: 999;
  }

  .main-container {
    margin-top: 25px;
  }

  .nav-container .links {
    display: none;
  }

  section .main-container {
    padding-left: 0px;
    display: flex;
    flex-direction: column;
  }

  .main-container .content {
    margin-top: 25px;
    width: 80%;
  }

  .hamburg,
  .cancel {
    opacity: 1;
    pointer-events: visible;
  }

  .cancel {
    display: block;
    color: white;
  }

  .social-links i {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.5rem;
  }

  .main-container .image {
    width: 50%;
    margin-bottom: 0px;
  }

  .resume-tabs {
    gap: 50px;
    padding: 8px 20px;
    flex-wrap: nowrap;
  }

  .tab-btn {
    padding: 6px 20px;
    font-size: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .project-card {
    flex: 0 0 80%;
  }

  .resume-tabs {
    gap: 20px;
    padding: 8px 10px;
    flex-wrap: nowrap;
  }

  .tab-btn {
    padding: 6px 5px;
    font-size: 0.9rem;
  }

  .main-container .image {
    width: 60vw;
    height: 60vw;
    margin: 20px auto;
  }

  .pricing-contact-pricing-table {
    flex-direction: column;
    align-items: center;
  }

  .pricing-contact-form input,
  .pricing-contact-form select {
    width: 100%;
  }

  .pricing-contact-contact-section {
    margin-bottom: 0;
    padding-bottom: 80px;
  }

  .pricing-contact-contact-section *:last-child {
    margin-bottom: 0 !important;
  }

  .footer-container {
    padding: 10px;
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .footer .logo {
    margin-bottom: 30px;
  }
}

@media (max-width: 600px) {

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-nav {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .main-container .image {
    width: 70vw;
    height: 70vw;
  }
}