/*--/ CSS nya experience /--*/
/* 
.title-box {
  margin-bottom: 4rem;
}

.title-a {
  font-size: 3rem;
  font-weight: bold;
  text-transform: uppercase;
}

.subtitle-a {
  color: #4e4e4e;
}

.line-mf {
  width: 40px;
  height: 5px;
  background-color: #0a0a0a;
  margin: 0 auto;
} */


/* particles */
/* #particles-js {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height:100vh;
  background: #000000;
}


/* .container{
  overflow-x: hidden;
} */

/* .jumbotron {
  margin-bottom: 12rem;
  position: relative;
}

.section {
  padding-top: 5rem;
}  */

/* ===== PERBAIKAN JUMBOTRON & PARTICLES ===== */
#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  z-index: 0;
  pointer-events: none;
}

/* Jumbotron Section */
.jumbotron {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  margin-bottom: 0;
  background: transparent;
}

/* Profile Image */
.jumbotron img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
  margin-bottom: 1.5rem;
}

.jumbotron img:hover {
  transform: scale(1.03);
}

/* Name Styling */
.jumbotron h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  word-break: break-word;
}

/* Typing Container */
.typing-container {
  font-size: 1.4rem;
  font-weight: 500;
  /* background: rgba(0, 0, 0, 0.45); */
  /* backdrop-filter: blur(8px); */
  display: inline-block;
  padding: 0.6rem 1.8rem;
  border-radius: 50px;
  margin-top: 0.5rem;
  /* border: 1px solid rgba(255, 255, 255, 0.25); */
}

.typing {
  color: #fff;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */
@media (max-width: 992px) {
  .jumbotron img {
    width: 170px;
    height: 170px;
  }
  .jumbotron h1 {
    font-size: 2.3rem;
  }
  .typing-container {
    font-size: 1.2rem;
    padding: 0.5rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .jumbotron {
    min-height: 90vh;
    padding: 1.5rem;
  }
  .jumbotron img {
    width: 150px;
    height: 150px;
  }
  .jumbotron h1 {
    font-size: 1.9rem;
  }
  .typing-container {
    font-size: 1rem;
    padding: 0.4rem 1.2rem;
  }
}

@media (max-width: 576px) {
  .jumbotron img {
    width: 130px;
    height: 130px;
  }
  .jumbotron h1 {
    font-size: 1.6rem;
  }
  .typing-container {
    font-size: 0.85rem;
    padding: 0.35rem 1rem;
  }
}


/* ========== ABOUT SECTION - MODERN & RESPONSIVE ========== */

.about-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
}

.about-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.about-card {
  background: white;
  border-radius: 28px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 2.5rem;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

/* Profile Wrapper */
.profile-wrapper {
  text-align: center;
  padding: 1rem;
}

.profile-image {
  width: 220px;
  height: 220px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.profile-image:hover {
  transform: scale(1.02);
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.profile-image img:hover {
  transform: scale(1.05);
}

/* Profile Info */
.profile-info {
  text-align: left;
  background: #f8f9fa;
  border-radius: 20px;
  padding: 1.5rem;
  margin-top: 0.5rem;
}

.info-item {
  display: flex;
  align-items: baseline;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px dashed #e0e0e0;
  flex-wrap: wrap;
}

.info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.info-label {
  font-weight: 700;
  color: #1e1e1e;
  min-width: 80px;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

.info-value {
  color: #4a5568;
  font-size: 0.95rem;
  flex: 1;
  word-break: break-word;
}

/* About Content */
.about-content {
  padding: 0.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.section-title {
  margin-bottom: 1.5rem;
}

.section-title h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.section-title h2 i {
  color: #0a0a0a;
  font-size: 1.8rem;
}

.title-line {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #0a0a0a, #6c757d);
  border-radius: 2px;
  margin-top: 0.5rem;
}

.about-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #4a5568;
  margin-bottom: 1.8rem;
  text-align: justify;
}

/* Highlights */
.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 0.5rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.75rem 1rem;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: default;
}

.highlight-item:hover {
  background: #e9ecef;
  transform: translateX(5px);
}

.highlight-item i {
  color: #0a0a0a;
  font-size: 1.1rem;
  font-weight: bold;
}

.highlight-item span {
  color: #2d3748;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .about-section {
    padding: 4rem 0;
  }
  
  .about-card {
    padding: 1.8rem;
  }
  
  .profile-image {
    width: 180px;
    height: 180px;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .about-text {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 3rem 0;
  }
  
  .about-card {
    padding: 1.5rem;
    border-radius: 20px;
  }
  
  .profile-wrapper {
    margin-bottom: 1rem;
  }
  
  .profile-image {
    width: 160px;
    height: 160px;
  }
  
  .profile-info {
    padding: 1.2rem;
  }
  
  .info-item {
    margin-bottom: 0.75rem;
    padding-bottom: 0.6rem;
  }
  
  .info-label {
    min-width: 70px;
    font-size: 0.85rem;
  }
  
  .info-value {
    font-size: 0.85rem;
  }
  
  .section-title h2 {
    font-size: 1.6rem;
  }
  
  .section-title h2 i {
    font-size: 1.5rem;
  }
  
  .about-text {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  
  .about-highlights {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  
  .highlight-item {
    padding: 0.6rem 0.8rem;
  }
  
  .highlight-item i {
    font-size: 0.9rem;
  }
  
  .highlight-item span {
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .about-card {
    padding: 1.2rem;
  }
  
  .profile-image {
    width: 140px;
    height: 140px;
  }
  
  .profile-info {
    padding: 1rem;
  }
  
  .info-label {
    min-width: 65px;
    font-size: 0.8rem;
  }
  
  .info-value {
    font-size: 0.8rem;
  }
  
  .section-title h2 {
    font-size: 1.4rem;
  }
  
  .section-title h2 i {
    font-size: 1.3rem;
  }
  
  .about-text {
    font-size: 0.85rem;
    line-height: 1.5;
  }
  
  .about-highlights {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
  
  .highlight-item {
    padding: 0.5rem 0.75rem;
  }
  
  .highlight-item span {
    font-size: 0.8rem;
  }
}

/* Animation */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.profile-wrapper {
  animation: fadeInLeft 0.6s ease forwards;
}

.about-content {
  animation: fadeInRight 0.6s ease forwards;
}

/* skills */
/* Skills Responsive */
#skills {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  color: #1e1e1e;
}

.skill-card {
  padding: 1.5rem 0.5rem;
  transition: transform 0.3s ease;
  height: 100%;
  
}


.skill-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.skill-name {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0;
  color: #333;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .skill-icon {
    width: 40px;
    height: 40px;
  }
  
  .skill-name {
    font-size: 0.8rem;
  }
  
  .skill-card {
    padding: 1rem 0.25rem;
  }
}

@media (max-width: 576px) {
  .skill-icon {
    width: 35px;
    height: 35px;
  }
  
  .skill-name {
    font-size: 0.75rem;
  }
  
  .skill-card {
    padding: 0.75rem 0.25rem;
  }
}

/* tulisan experience nya  */
/* .title-a{
  padding-top: 5rem;
  
}
.experience-box {
  background-color: #fff;
  padding: 2.5rem 1.3rem;
  border-radius: 1rem;
  margin-bottom: 3rem;
}

.experience-box .service-ico {
  margin-bottom: 1rem;
  color: #1e1e1e;
}

.experience-box .ico-circle {
  transition: all 500ms ease;
  font-size: 4rem;
}

.experience-box .s-title {
  font-size: 1.4rem;
  text-transform: uppercase;
  text-align: center;
  padding: .4rem 0;
}

.experience-box .s-description {
  color: #4e4e4e;
}


/* timeline experience nya */
/* .main-timeline {
  position: relative
}

.main-timeline:before {
  content: "";
  display: block;
  width: 2px;
  height: 100%;
  background: #c6c6c6;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0
}

.main-timeline .timeline {
  margin-bottom: 40px;
  position: relative
}

.main-timeline .timeline:after {
  content: "";
  display: block;
  clear: both
}

.main-timeline .icon {
  width: 18px;
  height: 18px;
  line-height: 18px;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0
}

.main-timeline .icon:before,
.main-timeline .icon:after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.33s ease-out 0s
}

.main-timeline .icon:before {
  background: #fff;
  border: 2px solid #232323;
  left: -3px
}

.main-timeline .icon:after {
  border: 2px solid #c6c6c6;
  left: 3px
}

.main-timeline .timeline:hover .icon:before {
  left: 3px
}

.main-timeline .timeline:hover .icon:after {
  left: -3px
}

.main-timeline .date-content {
  width: 50%;
  float: left;
  margin-top: 22px;
  position: relative
}

.main-timeline .date-content:before {
  content: "";
  width: 36.5%;
  height: 2px;
  background: #c6c6c6;
  margin: auto 0;
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0
}

.main-timeline .date-outer {
  width: 125px;
  height: 125px;
  font-size: 16px;
  text-align: center;
  margin: auto;
  z-index: 1
}

.main-timeline .date-outer:before,
.main-timeline .date-outer:after {
  content: "";
  width: 125px;
  height: 125px;
  margin: 0 auto;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transition: all 0.33s ease-out 0s
}

.main-timeline .date-outer:before {
  background: #fff;
  border: 2px solid #232323;
  left: -6px
}

.main-timeline .date-outer:after {
  border: 2px solid #c6c6c6;
  left: 6px
}

.main-timeline .timeline:hover .date-outer:before {
  left: 6px
}

.main-timeline .timeline:hover .date-outer:after {
  left: -6px
}

.main-timeline .date {
  width: 100%;
  margin: auto;
  position: absolute;
  top: 27%;
  left: 0
}

.main-timeline .month {
  font-size: 18px;
  font-weight: 700
}

.main-timeline .year {
  display: block;
  font-size: 30px;
  font-weight: 700;
  color: #232323;
  line-height: 36px
}

.main-timeline .timeline-content {
  width: 50%;
  padding: 20px 0 20px 50px;
  float: right
}

.main-timeline .title {
  font-size: 19px;
  font-weight: 700;
  line-height: 24px;
  margin: 0 0 15px 0
}

.main-timeline .description {
  margin-bottom: 0
}

.main-timeline .timeline:nth-child(2n) .date-content {
  float: right
}

.main-timeline .timeline:nth-child(2n) .date-content:before {
  left: 10px
}

.main-timeline .timeline:nth-child(2n) .timeline-content {
  padding: 20px 50px 20px 0;
  text-align: right
}

@media only screen and (max-width: 991px) {
  .main-timeline .date-content {
      margin-top: 35px
  }
  .main-timeline .date-content:before {
      width: 22.5%
  }
  .main-timeline .timeline-content {
      padding: 10px 0 10px 30px
  }
  .main-timeline .title {
      font-size: 17px
  }
  .main-timeline .timeline:nth-child(2n) .timeline-content {
      padding: 10px 30px 10px 0
  }
}

@media only screen and (max-width: 767px) {
  .main-timeline:before {
      margin: 0;
      left: 7px
  }
  .main-timeline .timeline {
      margin-bottom: 20px
  }
  .main-timeline .timeline:last-child {
      margin-bottom: 0
  }
  .main-timeline .icon {
      margin: auto 0
  }
  .main-timeline .date-content {
      width: 95%;
      float: right;
      margin-top: 0
  }
  .main-timeline .date-content:before {
      display: none
  }
  .main-timeline .date-outer {
      width: 110px;
      height: 110px
  }
  .main-timeline .date-outer:before,
  .main-timeline .date-outer:after {
      width: 110px;
      height: 110px
  }
  .main-timeline .date {
      top: 30%
  }
  .main-timeline .year {
      font-size: 24px
  }
  .main-timeline .timeline-content,
  .main-timeline .timeline:nth-child(2n) .timeline-content {
      width: 95%;
      text-align: center;
      padding: 10px 0
  }
  .main-timeline .title {
      margin-bottom: 10px
  }
} */ 

/* ========== EXPERIENCE SECTION - MODERN TIMELINE ========== */

.experience-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 5rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem;
}

.section-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1e1e1e;
}

.section-header h1 i {
  margin-right: 10px;
}

.section-header .subtitle {
  color: #6c757d;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.section-header .line-mf {
  width: 60px;
  height: 4px;
  background: #0a0a0a;
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* Modern Timeline Container */
.timeline-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  padding: 20px 0;
}

/* Vertical Line */
.timeline-container::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: calc(100% - 40px);
  background: linear-gradient(to bottom, #0a0a0a, #adb5bd, #0a0a0a);
  border-radius: 3px;
  top: 20px;
}

/* Timeline Item */
.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: 30px;
  position: relative;
  margin-bottom: 3rem;
  width: 50%;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.3s; }
.timeline-item:nth-child(3) { animation-delay: 0.5s; }

.timeline-item:nth-child(even) {
  justify-content: flex-start;
  padding-left: 30px;
  padding-right: 0;
  margin-left: auto;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Timeline Dot */
.timeline-dot {
  position: absolute;
  right: -11px;
  top: 20px;
  width: 22px;
  height: 22px;
  background: #0a0a0a;
  border: 3px solid white;
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 0 3px rgba(10, 10, 10, 0.2);
  transition: all 0.3s ease;
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -11px;
  right: auto;
}

.timeline-item:hover .timeline-dot {
  background: #ff6b6b;
  transform: scale(1.2);
  box-shadow: 0 0 0 5px rgba(255, 107, 107, 0.3);
}

/* Timeline Content Card */
.timeline-card {
  background: white;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.timeline-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.timeline-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #1e1e1e, #2c3e50);
  color: white;
  padding: 0.3rem 1.2rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.3px;
}

.timeline-date i {
  font-size: 0.9rem;
}

.timeline-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1e1e1e;
}

.timeline-card ul {
  padding-left: 1.2rem;
  margin-bottom: 0;
}

.timeline-card li {
  margin-bottom: 0.6rem;
  color: #4a5568;
  line-height: 1.5;
  font-size: 0.95rem;
}

.timeline-card li::marker {
  color: #0a0a0a;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .experience-section {
    padding: 3rem 0;
  }
  
  .section-header h1 {
    font-size: 1.5rem;
  }
  
  .section-header .subtitle {
    font-size: 0.95rem;
  }
  
  .timeline-container::before {
    left: 20px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 50px;
    padding-right: 0;
    justify-content: flex-start;
    margin-bottom: 2rem;
  }
  
  .timeline-item:nth-child(even) {
    padding-left: 50px;
    padding-right: 0;
  }
  
  .timeline-dot {
    left: 9px !important;
    right: auto !important;
    top: 20px;
  }
  
  .timeline-card {
    width: 100%;
  }
  
  .timeline-card h3 {
    font-size: 1.1rem;
  }
  
  .timeline-card li {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
  }
  
  .timeline-date {
    font-size: 0.75rem;
    padding: 0.25rem 1rem;
  }
}

@media (max-width: 480px) {
  .timeline-card {
    padding: 1rem;
  }
  
  .timeline-card h3 {
    font-size: 1rem;
  }
  
  .timeline-card li {
    font-size: 0.8rem;
  }
  
  .timeline-date {
    font-size: 0.7rem;
    padding: 0.2rem 0.8rem;
  }
}


/* Projects Section Enhancement */
#projects {
  padding-top: 2rem;
  background-color: #ffffff;
  color: #1e1e1e;
}

/* Project Card Styling */
.project-card {
  background-color: rgb(231, 231, 231);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  border: none;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;
}

.project-img-container {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-img {
  transform: scale(1.05);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(231, 231, 231, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-links {
  text-align: center;
}

.view-details {
  background-color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.view-details:hover {
  background-color: #f8f9fa;
  transform: scale(1.05);
}

.project-content {
  padding: 1.5rem;
}

.project-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #333;
}

.project-description {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 1rem;
}

.tech-stack .badge {
  font-size: 0.7rem;
  padding: 5px 8px;
  font-weight: 500;
}

.badge.bg-purple {
  background-color: #7952b3 !important;
  color: white;
}

.project-actions {
  display: flex;
  gap: 10px;
}

.project-actions .btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 0.85rem;
  padding: 8px 12px;
}

/* Modal Styling */
.modal-content {
  border-radius: 12px;
  border: none;
}

.modal-header {
  background-color: rgb(231, 231, 231);
  color: black;
  border-radius: 12px 12px 0 0;
  padding: 1rem 1.5rem;
}

.modal-title {
  font-weight: 600;
}

.modal-body {
  padding: 1.5rem;
}

.modal-body h6 {
  font-weight: 600;
  margin-top: 1rem;
  color: #333;
}

.modal-body p {
  color: #666;
  line-height: 1.6;
}

.modal-body ul {
  padding-left: 1.2rem;
  color: #666;
}

.modal-body ul li {
  margin-bottom: 0.5rem;
}

/* Responsive adjustments for projects */
@media (max-width: 768px) {
  .project-img-container {
    height: 180px;
  }
  
  .project-content {
    padding: 1.25rem;
  }
  
  .project-title {
    font-size: 1.1rem;
  }
  
  .project-description {
    font-size: 0.85rem;
  }
  
  .project-actions .btn {
    font-size: 0.8rem;
    padding: 6px 10px;
  }
}

@media (max-width: 576px) {
  .project-img-container {
    height: 160px;
  }
  
  .project-content {
    padding: 1rem;
  }
  
  .project-actions {
    flex-direction: column;
  }
  
  .project-actions .btn {
    width: 100%;
  }
}
/* contact css */

/* #contact {
  padding-top: 6rem;
} */

/* kontak css */

.gradient-brand-color {
  background-color: white;
  color: #080808;
}
.contact-info__wrapper {
  overflow: hidden;
  border-radius: .625rem .625rem 0 0
}

@media (min-width: 1024px) {
  .contact-info__wrapper {
      border-radius: 0 .625rem .625rem 0;
      padding: 5rem !important
      
  }
}
.contact-info__list span.position-absolute {
  left: 0
}

.z-index-101 {
  z-index: 101;
}
.list-style--none {
  list-style: none;
}
.contact__wrapper {
  background-color: #fff;
  border-radius: 0 0 .625rem .625rem
}

@media (min-width: 1024px) {
  .contact__wrapper {
      border-radius: .625rem 0 .625rem .625rem
  }
}
@media (min-width: 1024px) {
  .contact-form__wrapper {
      padding: 5rem !important
  }
}
.shadow-lg, .shadow-lg--on-hover:hover {
  box-shadow: 0 1rem 3rem rgba(132,138,163,0.1) !important;
}


/* responsiv ceritanya */

@media only screen and (max-width: 767px) {
  /* Experience */

  .jumbotron {
    padding-top: 12rem;
    max-width: 500px;
  }

  .jumbotron h1 {
    font-size: 1.5rem;
  }
  .section {
    padding-top: 8rem;
  }
  
  .navbar-brand {
    font-size: 1rem;
  }
  .title-a {
    font-size: 2rem;
  }

  .experience-box {
    padding: 2rem 0.5rem;
  }

  .s-title {
    font-size: 1.2rem;
  }

  .s-description {
    font-size: 0.8rem;
  }

  /* Others */
  #about {
    padding-top: 14rem;
  }
  
  .about-mf .about-img img {
    width: 100%;
    max-width: 500px;
    padding: 2rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .about-mf .title-s {
    font-size: 1rem;
  }
 
}

@media (max-width: 767px) {
  #particles-js {
    /* Mengurangi jumlah partikel dan kecepatan partikel pada perangkat yang lebih kecil. */
    particle:nth-child(-n + 1) {
      display: none;
    }
  }
}

@media only screen and (max-width: 767px) {
  /* Tampilan mobile */

  #particles-js {
    width: 100%;
    height: 100vh;
    /* max-height: 500px; */
    /* margin: 0 auto; */

    .particles {
      particle:nth-child(-n + 1) {
        display: none;
      }
    }
  }
}



/* Custom Hamburger Menu with Checkbox Style */
.custom-hamburger {
  border: none;
  background: transparent;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1000;
}

.hamburger-box {
  width: 30px;
  height: 20px;
  position: relative;
}

.hamburger-inner {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  border-radius: 3px;
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.hamburger-line:nth-child(1) {
  top: 0;
}

.hamburger-line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger-line:nth-child(3) {
  bottom: 0;
}

/* Close icon (X) */
.close-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 28px;
  color: #000;
  opacity: 0;
  transition: opacity 0.3s ease;
  line-height: 1;
}

/* When menu is open */
.custom-hamburger[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.custom-hamburger[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.custom-hamburger[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.custom-hamburger[aria-expanded="true"] .close-icon {
  opacity: 0;
}

/* Navbar menu items styling */

.navbar {
    background-color: rgba(0, 0, 0, 0.7) !important; /* Semi-transparan hitam */
    backdrop-filter: blur(10px); /* Efek blur */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
    color: #ffffff !important;
    font-weight: 600;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    border-radius: 5px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #ffffff !important;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    
}

.navbar-nav .nav-link i {
  margin-right: 8px;
  font-size: 1.1rem;
  border-radius: 5px;
}

/* Mobile menu specific styles */
@media (max-width: 991px) {
  .navbar-collapse {
    background-color: rgba(0, 0, 0, 0.9) !important;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 15px;
    margin-top: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .navbar-nav .nav-link {
    padding: 12px 20px;
    margin: 5px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9) !important;
  }
  
}

/* Desktop menu - hide checkbox */
@media (min-width: 992px) {

/* Navbar background when scrolled */
.navbar {
  transition: all 0.3s ease;
  background-color: transparent;
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Animation for menu items */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.navbar-collapse.show .nav-item {
  animation: slideIn 0.3s ease forwards;
}

.navbar-collapse.show .nav-item:nth-child(1) { animation-delay: 0.1s; }
.navbar-collapse.show .nav-item:nth-child(2) { animation-delay: 0.15s; }
.navbar-collapse.show .nav-item:nth-child(3) { animation-delay: 0.2s; }
.navbar-collapse.show .nav-item:nth-child(4) { animation-delay: 0.25s; }
.navbar-collapse.show .nav-item:nth-child(5) { animation-delay: 0.3s; }
.navbar-collapse.show .nav-item:nth-child(6) { animation-delay: 0.35s; }
}

/* Footer Styling */
footer {
  background-color: #212529 !important;
}

footer .social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

footer .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: black;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

footer .social-icon:hover {
  background-color: #4e4e4e;
  color: rgb(0, 0, 0);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

footer a {
  color: rgb(0, 0, 0) !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #ffffff !important;
}

footer p {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Responsive footer */
@media (max-width: 576px) {
  footer .social-icons {
    gap: 15px;
  }
  
  footer .social-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  
  footer p {
    font-size: 0.85rem;
  }
}