:root {
  --primary-color: #00d4ff;
  --secondary-color: #0099cc;
  --accent-color: #ff6b6b;
  --accent-purple: #8b5cf6;
  --accent-green: #10b981;
  --bg-dark: #0a0a0a;
  --bg-secondary: #1a1a1a;
  --text-light: #ffffff;
  --text-gray: #b0b0b0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--bg-dark);
  color: var(--text-light);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
  cursor: none;
}

.custom-cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  background: var(--primary-color);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transition: transform 0.1s ease;
}

.custom-cursor.hover {
  transform: scale(2);
  background: var(--accent-color);
}

.particles-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(0, 212, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 107, 107, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 80%,
      rgba(139, 92, 246, 0.1) 0%,
      transparent 50%
    ),
    linear-gradient(45deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
  filter: blur(1px);
}

.particle.type-1 {
  width: 4px;
  height: 4px;
  background: var(--primary-color);
  box-shadow: 0 0 10px var(--primary-color);
}

.particle.type-2 {
  width: 2px;
  height: 2px;
  background: var(--accent-color);
  box-shadow: 0 0 8px var(--accent-color);
}

.particle.type-3 {
  width: 3px;
  height: 3px;
  background: var(--accent-purple);
  box-shadow: 0 0 6px var(--accent-purple);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.4;
  }
  50% {
    transform: translateY(-30px) rotate(180deg);
    opacity: 1;
  }
}

.mesh-gradient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: radial-gradient(circle at 25% 25%, #ff6b6b22 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, #00d4ff22 0%, transparent 50%),
    radial-gradient(circle at 75% 25%, #8b5cf622 0%, transparent 50%),
    radial-gradient(circle at 25% 75%, #10b98122 0%, transparent 50%);
  animation: meshMove 20s ease-in-out infinite;
}

@keyframes meshMove {
  0%,
  100% {
    filter: hue-rotate(0deg);
    transform: scale(1);
  }
  50% {
    filter: hue-rotate(90deg);
    transform: scale(1.1);
  }
}

.navbar {
  background: rgba(10, 10, 10, 0.9) !important;
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 212, 255, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
  font-weight: bold;
  font-size: 1.5rem;
  color: var(--primary-color) !important;
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
  position: relative;
}

.navbar-brand::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    45deg,
    var(--primary-color),
    var(--accent-color),
    var(--accent-purple)
  );
  border-radius: 8px;
  z-index: -1;
  opacity: 0;
  filter: blur(8px);
  transition: opacity 0.3s ease;
}

.navbar-brand:hover::before {
  opacity: 0.7;
}

.navbar-nav .nav-link {
  color: var(--text-light) !important;
  margin: 0 15px;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color) !important;
  transform: translateY(-2px);
}

.navbar-nav .nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 212, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.navbar-nav .nav-link:hover::before {
  left: 100%;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 50%;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
  box-shadow: 0 0 10px var(--primary-color);
}

.vps-spec-list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 1rem 0;
}

.form-select {
  background-color: rgba(26, 26, 26, 0.9);
  color: var(--text-light);
  border: 2px solid rgba(0, 212, 255, 0.3);
  border-radius: 12px;
  padding: 10px 14px;
}

input.is-invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}


.vps-spec-list li {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 4px;
  padding-left: 1em;
  position: relative;
}

.vps-spec-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-color);
}


.hero-section {
  min-height: 120vh; /* ⬅️ dari 100vh jadi 120vh */
  padding-bottom: 50px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: visible;
  padding-top: 100px;
}

.hero-content {
  z-index: 2;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-light) !important;
  text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.about-intro {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 3rem;
  padding: 0 20px;
}

.about-intro strong {
  color: var(--primary-color);
  font-weight: 600;
}

.skills-row {
  margin-bottom: 2rem;
}

.skill-card {
  background: rgba(26, 26, 26, 0.9);
  border-radius: 20px;
  padding: 40px 35px;
  margin-bottom: 30px;
  border: 1px solid rgba(0, 212, 255, 0.2);
  transition: all 0.4s ease;
  backdrop-filter: blur(20px);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.skill-header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  gap: 18px;
}

.skill-icon-container {
  width: 65px;
  height: 65px;
  border-radius: 16px;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
  flex-shrink: 0;
}

.skill-icon-container i {
  font-size: 1.6rem;
  color: white;
}

.skill-card h4 {
  margin: 0;
  color: var(--text-light);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.3;
}

/* Custom Form Select */
.form-select {
  background-color: rgba(26, 26, 26, 0.9);
  color: var(--text-light);
  border: 2px solid rgba(0, 212, 255, 0.3);
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-select:focus {
  background-color: rgba(26, 26, 26, 1);
  color: var(--text-light);
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(0, 212, 255, 0.25);
  outline: none;
  transform: translateY(-2px);
}
.payment-box {
  background: rgba(26, 26, 26, 0.9);
  border: 2px solid var(--primary-color);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
}
.qris-image {
  max-width: 300px;   /* Atur ukuran maksimal */
  width: 250px;
  height: auto;       /* Biar responsif */
  max-width: 320px;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
}

.skill-card p {
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 1rem;
  font-weight: 400;
}

.skill-technologies {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}

.skill-tech {
  background: rgba(0, 212, 255, 0.12);
  color: var(--primary-color);
  padding: 8px 14px;
  border-radius: 18px;
  font-size: 0.85rem;
  border: 1px solid rgba(0, 212, 255, 0.25);
  font-weight: 500;
  transition: all 0.3s ease;
}

.skill-tech:hover {
  background: rgba(0, 212, 255, 0.2);
  transform: translateY(-2px);
}

.skill-experience {
  margin-top: 25px;
}

.experience-bar {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 12px;
}

.experience-fill {
  height: 100%;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  border-radius: 4px;
  transition: width 2s ease-in-out;
}

.experience-text {
  color: var(--text-gray);
  font-size: 0.9rem;
  font-weight: 500;
}

.skill-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 212, 255, 0.08),
    transparent
  );
  transition: left 0.8s ease;
}

.skill-card:hover::before {
  left: 100%;
}

.skill-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: var(--primary-color);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.about-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding-top: 2rem;
}

.stat-box {
  text-align: center;
  padding: 30px 25px;
  border-radius: 18px;
  background: rgba(26, 26, 26, 0.7);
  border: 1px solid rgba(0, 212, 255, 0.2);
  min-width: 160px;
  transition: all 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 15px 35px rgba(0, 212, 255, 0.2);
}

.stat-number {
  font-size: 2.8rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 12px;
  line-height: 1;
}

.stat-label {
  color: var(--text-gray);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

@keyframes titleGlow {
  0% {
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.3));
    background-position: 0% 50%;
  }
  100% {
    filter: drop-shadow(0 0 40px rgba(0, 212, 255, 0.8));
    background-position: 100% 50%;
  }
}

.hero-profession {
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--text-gray);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 3px;
  animation: slideInUp 1s ease-out 0.4s both;
  position: relative;
}

.hero-profession::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  animation: underlineGrow 2s ease-out 1.5s both;
}

@keyframes underlineGrow {
  to {
    width: 100%;
  }
}

.rotating-skills {
  font-size: 1.3rem;
  margin-bottom: 30px;
  margin-top: 40px; /* ⬅️ tambahkan ini */
  height: 60px;
  display: flex;
  align-items: center;
  animation: slideInUp 1s ease-out 0.6s both;
}

.skills-input-container {
  background: rgba(26, 26, 26, 0.8);
  border: 2px solid rgba(0, 212, 255, 0.3);
  border-radius: 30px;
  padding: 15px 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  backdrop-filter: blur(20px);
  transition: all 0.4s ease;
  min-width: 400px;
  position: relative;
  overflow: hidden;
}

.skills-input-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 212, 255, 0.1),
    transparent
  );
  transition: left 0.8s ease;
}

.skills-input-container:hover::before {
  left: 100%;
}

.skills-input-container:hover {
  border-color: var(--primary-color);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.3),
    inset 0 0 20px rgba(0, 212, 255, 0.1);
  transform: translateY(-2px);
}

.skills-icon {
  color: var(--primary-color);
  font-size: 1.2rem;
  animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.rotating-text {
  color: var(--primary-color);
  font-weight: 600;
  min-width: 200px;
  position: relative;
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.typing-cursor {
  color: var(--primary-color);
  animation: blink 1s infinite;
  font-weight: normal;
}

.btn-custom {
  padding: 15px 35px;
  margin: 10px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
  width: 200px;
  text-align: center;
  font-size: 0.9rem;
  vertical-align: top;
  box-sizing: border-box;
}

.btn-primary-custom {
  background: linear-gradient(
    45deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.btn-secondary-custom {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-custom:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 50px rgba(0, 212, 255, 0.5);
}

.btn-custom::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
}

.btn-custom:hover::before {
  left: 100%;
}

.btn-custom::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
}

.btn-custom:hover::after {
  width: 300px;
  height: 300px;
}

.profile-container {
  position: relative;
  animation: slideInRight 1s ease-out;
}

.profile-container {
  position: relative;
  animation: slideInRight 1s ease-out;
}

.profile-image-container {
  position: relative;
  width: 320px;
  height: 320px;
  margin: 0 auto;
}

.profile-image {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 4px solid var(--primary-color);
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.5), 0 0 80px rgba(0, 212, 255, 0.2);
  object-fit: cover;
  object-position: center;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.profile-image-container::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: conic-gradient(
    from 0deg,
    var(--primary-color),
    var(--accent-color),
    var(--accent-purple),
    var(--accent-green),
    var(--primary-color)
  );
  border-radius: 50%;
  animation: profileRotate 15s linear infinite;
  z-index: 1;
  opacity: 0.8;
}

.profile-image-container::after {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: var(--bg-dark);
  border-radius: 50%;
  z-index: 1;
}

.profile-image:hover {
  transform: scale(1.05);
  box-shadow: 0 0 60px rgba(0, 212, 255, 0.7), 0 0 100px rgba(0, 212, 255, 0.3);
}

.profile-image-container:hover::before {
  animation-duration: 8s;
  opacity: 1;
}

@keyframes profileRotate {
  to {
    transform: rotate(360deg);
  }
}

.social-links {
  margin-top: 60px;
  margin-bottom: 60px;
  animation: slideInUp 1s ease-out 0.9s both;
}

.social-link {
  display: inline-flex;
  margin: 0 15px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.1);
  color: var(--primary-color);
  text-decoration: none;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: conic-gradient(
    var(--primary-color),
    var(--accent-color),
    var(--accent-purple),
    var(--primary-color)
  );
  border-radius: 50%;
  z-index: -1;
  transform: scale(0);
  transition: transform 0.4s ease;
}

.social-link:hover::before {
  transform: scale(1);
}

.social-link:hover {
  color: white;
  transform: translateY(-8px) scale(1.15);
  box-shadow: 0 15px 35px rgba(0, 212, 255, 0.5);
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.shape {
  position: absolute;
  opacity: 0.15;
  animation: float-shape 20s ease-in-out infinite;
  filter: blur(1px);
}

.shape:nth-child(1) {
  top: 15%;
  left: 8%;
  animation-delay: 0s;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
}

.shape:nth-child(2) {
  top: 55%;
  right: 8%;
  animation-delay: 7s;
  background: linear-gradient(45deg, var(--accent-color), var(--accent-purple));
}

.shape:nth-child(3) {
  bottom: 15%;
  left: 15%;
  animation-delay: 14s;
  background: linear-gradient(45deg, var(--accent-purple), var(--accent-green));
}

.shape:nth-child(4) {
  top: 25%;
  right: 25%;
  animation-delay: 3s;
  background: linear-gradient(45deg, var(--accent-green), var(--primary-color));
}

@keyframes float-shape {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg) scale(1);
    opacity: 0.1;
  }
  25% {
    transform: translateY(-40px) rotate(90deg) scale(1.1);
    opacity: 0.2;
  }
  50% {
    transform: translateY(-20px) rotate(180deg) scale(0.9);
    opacity: 0.15;
  }
  75% {
    transform: translateY(40px) rotate(270deg) scale(1.05);
    opacity: 0.25;
  }
}

.about-section {
  padding: 100px 0;
  background: rgba(26, 26, 26, 0.6);
  position: relative;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 30%,
      rgba(0, 212, 255, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 70%,
      rgba(255, 107, 107, 0.05) 0%,
      transparent 50%
    );
  z-index: -1;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.project-card {
  background: rgba(26, 26, 26, 0.9);
  border-radius: 20px;
  border: 1px solid rgba(0, 212, 255, 0.2);
  transition: all 0.4s ease;
  backdrop-filter: blur(20px);
  height: 100%;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.project-image {
  position: relative;
  background: linear-gradient(135deg, var(--bg-secondary), #2a2a3e);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}
.admin-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.admin-link:hover {
  color: var(--accent-color);
  text-decoration: underline;
}


.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-icon {
  font-size: 2.8rem;
  color: var(--primary-color);
  z-index: 2;
  transition: all 0.3s ease;
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 3;
}

.project-links {
  display: flex;
  gap: 15px;
}

.project-link {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  transform: translateY(20px);
}

.project-link:hover {
  background: var(--accent-color);
  transform: translateY(0) scale(1.1);
  color: white;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-card:hover .project-link {
  transform: translateY(0);
}

.project-card:hover .project-icon {
  transform: scale(1.1);
  color: var(--accent-color);
}

.project-content {
  padding: 35px 30px 30px;
}

.project-content h4 {
  margin-bottom: 18px;
  color: var(--text-light);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
}

.project-description {
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 25px;
  font-size: 1rem;
  font-weight: 400;
}

.project-features {
  margin-bottom: 25px;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.5;
}

.feature-item i {
  color: var(--accent-green);
  margin-right: 12px;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}

.project-tech .tech-tag {
  background: rgba(0, 212, 255, 0.15);
  color: var(--primary-color);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  border: 1px solid rgba(0, 212, 255, 0.3);
  font-weight: 500;
}

.project-stats {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 212, 255, 0.15);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-gray);
  font-size: 0.9rem;
  font-weight: 500;
}

.stat-item i {
  color: var(--primary-color);
  font-size: 0.95rem;
}

.project-card:hover {
  transform: translateY(-10px) scale(1.01);
  border-color: var(--primary-color);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.project-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 212, 255, 0.08),
    transparent
  );
  transition: left 0.8s ease;
  z-index: 1;
}

.project-card:hover::before {
  left: 100%;
}

.contact-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 2rem;
}

.contact-info {
  padding: 40px 30px;
  background: rgba(26, 26, 26, 0.6);
  border-radius: 20px;
  border: 1px solid rgba(0, 212, 255, 0.2);
  height: 100%;
}

.contact-info-title {
  color: var(--text-light);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.contact-info-text {
  color: var(--text-gray);
  margin-bottom: 30px;
  line-height: 1.6;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  gap: 15px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.contact-details h5 {
  color: var(--text-light);
  margin-bottom: 5px;
  font-size: 1rem;
  font-weight: 600;
}

.contact-details p {
  color: var(--text-gray);
  margin: 0;
  font-size: 0.95rem;
}

.contact-social {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.contact-social h5 {
  color: var(--text-light);
  margin-bottom: 15px;
  font-size: 1rem;
  font-weight: 600;
}

.social-links-contact {
  display: flex;
  gap: 12px;
}

.social-link-contact {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  background: rgba(0, 212, 255, 0.1);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 212, 255, 0.2);
}

.social-link-contact:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
  border-color: var(--primary-color);
}

.form-title {
  color: var(--text-light);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
}

.form-floating > .form-control {
  background: rgba(26, 26, 26, 0.9);
  border: 2px solid rgba(0, 212, 255, 0.3);
  color: var(--text-light);
  border-radius: 12px;
  padding: 25px 20px 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-floating > label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  padding: 10px 20px;
}

.form-floating > .form-control:focus {
  background: rgba(26, 26, 26, 0.95);
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(0, 212, 255, 0.25);
  color: var(--text-light);
  transform: translateY(-2px);
}

.form-floating > .form-control:focus ~ label {
  color: var(--primary-color);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1rem;
}

.footer {
  background: var(--bg-secondary);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(0, 212, 255, 0.2);
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 25% 25%,
      rgba(0, 212, 255, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(255, 107, 107, 0.05) 0%,
      transparent 50%
    );
  z-index: -1;
}

.tech-tag {
  background: rgba(0, 212, 255, 0.15);
  color: var(--primary-color);
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.85rem;
  border: 1px solid rgba(0, 212, 255, 0.3);
  transition: all 0.3s ease;
  display: inline-block;
  margin: 4px;
}

.tech-tag:hover {
  background: rgba(0, 212, 255, 0.25);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

@media (max-width: 768px) {
  body {
    cursor: auto;
  }

  .custom-cursor {
    display: none;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .profile-image {
    width: 250px;
    height: 250px;
  }

  .profile-image-container {
    width: 250px;
    height: 250px;
  }

  .skills-input-container {
    min-width: 280px;
    padding: 12px 18px;
  }
  .profile-container {
    display: flex;
    justify-content: center;
  }

  .contact-form-container {
    padding: 40px 25px;
    margin: 0 15px;
  }
  .rotating-skills {
    margin-top: 30px;
    font-size: 1rem;
    height: auto;
  }
  .skills-input-container {
    min-width: unset; /* Hapus batas minimal lebar */
    width: 90%;       /* Sesuaikan dengan layar HP */
    padding: 12px 16px; /* Kurangi padding agar tidak membengkak */
    flex-direction: column;
    align-items: flex-start; /* Posisi teks ke kiri */
    gap: 1px; /* Atur jarak antar elemen */
  }
  .rotating-text {
    font-size: 1rem;
    min-width: unset;
    word-break: break-word;
  }
  .social-links {
    margin-bottom: 50px;
  }
  .hero-content {
    margin-top: 5px;
  }
}

@keyframes slideInUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}

@keyframes cursorBlink {
  0%,
  50% {
    border-color: var(--primary-color);
    opacity: 1;
  }
  51%,
  100% {
    border-color: transparent;
    opacity: 1;
  }
}

.skill-transition-enter {
  animation: skillSlideIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.skill-transition-exit {
  animation: skillSlideOut 0.3s ease-in;
}

@keyframes skillSlideIn {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes skillSlideOut {
  0% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px) scale(0.9);
    filter: blur(5px);
  }
}
.projects-intro {
  font-size: 1.2rem !important;
  line-height: 1.8 !important;
  color: var(--text-gray) !important;
  max-width: 700px !important;
  margin: 0 auto 4rem !important;
  padding: 0 20px !important;
  font-weight: 400 !important;
} /* Enhanced Skill Cards */
.skill-card {
  background: rgba(26, 26, 26, 0.8);
  border-radius: 20px;
  padding: 35px;
  margin: 20px 0;
  border: 1px solid rgba(0, 212, 255, 0.2);
  transition: all 0.4s ease;
  backdrop-filter: blur(20px);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.skill-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 212, 255, 0.1),
    transparent
  );
  transition: left 0.8s ease;
}

.skill-card:hover::before {
  left: 100%;
}

.skill-card:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: var(--primary-color);
  box-shadow: 0 25px 50px rgba(0, 212, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.skill-card h4 {
  margin-bottom: 20px;
  color: var(--text-light);
  font-size: 1.3rem;
  font-weight: 600;
  background: linear-gradient(45deg, var(--text-light), var(--primary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.skill-card p {
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}
