/*

Credate By: Fauzialifatah
Follow me: https://whatsapp.com/channel/0029VawsCnQ9mrGkOuburC1z
Youtube: https://www.youtube.com/@Fauzialifatah

*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, sans-serif;
  line-height: 1.5;
  color: #1a1a1a;
  background-color: #f9fafb;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/*

Credate By: Fauzialifatah
Follow me: https://whatsapp.com/channel/0029VawsCnQ9mrGkOuburC1z
Youtube: https://www.youtube.com/@Fauzialifatah

*/
.click-animation {
  transition: transform 0.2s;
}

.click-animation:active {
  transform: scale(0.95);
}

/*

Credate By: Fauzialifatah
Follow me: https://whatsapp.com/channel/0029VawsCnQ9mrGkOuburC1z
Youtube: https://www.youtube.com/@Fauzialifatah

*/
.navbar {
  background-color: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 50;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  height: 4rem;
}

.nav-left {
  display: flex;
  align-items: center;
}

.menu-button {
  padding: 0.5rem;
  border: none;
  background: none;
  color: #4b5563;
  cursor: pointer;
  display: none;
}

.logo {
  margin-left: 0.5rem;
  font-size: 1.25rem;
  font-weight: bold;
  color: #1f2937;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: #4b5563;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
}

.nav-link:hover {
  color: #2563eb;
}

/*

Credate By: Fauzialifatah
Follow me: https://whatsapp.com/channel/0029VawsCnQ9mrGkOuburC1z
Youtube: https://www.youtube.com/@Fauzialifatah

*/
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 16rem;
  background-color: white;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  z-index: 40;
  box-shadow: 4px 0 6px rgba(0, 0, 0, 0.1);
}

.sidebar.open {
  transform: translateX(0);
}

.sidebar-content {
  padding: 1.5rem;
  height: 100%;
  position: relative;
}
/*

Credate By: Fauzialifatah
Follow me: https://whatsapp.com/channel/0029VawsCnQ9mrGkOuburC1z
Youtube: https://www.youtube.com/@Fauzialifatah

*/
.close-button {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: #4b5563;
  cursor: pointer;
}
/*

Credate By: Fauzialifatah
Follow me: https://whatsapp.com/channel/0029VawsCnQ9mrGkOuburC1z
Youtube: https://www.youtube.com/@Fauzialifatah

*/
.sidebar-links {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-link {
  color: #4b5563;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem;
  font-size: 1.125rem;
  transition: color 0.2s;
}

.sidebar-link:hover {
  color: #2563eb;
}
/*

Credate By: Fauzialifatah
Follow me: https://whatsapp.com/channel/0029VawsCnQ9mrGkOuburC1z
Youtube: https://www.youtube.com/@Fauzialifatah

*/
.sidebar-social {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  padding: 0 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.social-link {
  color: #4b5563;
  transition: color 0.2s;
}

.social-link:hover {
  color: #2563eb;
}

/*

Credate By: Fauzialifatah
Follow me: https://whatsapp.com/channel/0029VawsCnQ9mrGkOuburC1z
Youtube: https://www.youtube.com/@Fauzialifatah

*/
.main-content {
  padding-top: 4rem;
}

/*

Credate By: Fauzialifatah
Follow me: https://whatsapp.com/channel/0029VawsCnQ9mrGkOuburC1z
Youtube: https://www.youtube.com/@Fauzialifatah

*/
.hero {
  background: linear-gradient(to right, #3b82f6, #8b5cf6);
  color: white;
  padding: 8rem 1rem;
  text-align: center;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-links a {
  color: white;
  padding: 0.5rem;
  transition: color 0.2s;
}

.social-links a:hover {
  color: #bfdbfe;
}
/*

Credate By: Fauzialifatah
Follow me: https://whatsapp.com/channel/0029VawsCnQ9mrGkOuburC1z
Youtube: https://www.youtube.com/@Fauzialifatah

*/
.about {
  padding: 5rem 0;
  background-color: white;
  overflow: hidden;
}

.section-title {
  font-size: 1.875rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.about-image img {
  width: 100%;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

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

.about-text {
  color: #4b5563;
}

.skills {
  padding: 5rem 0;
  background-color: #f9fafb;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.skill-card {
  background-color: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.skill-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.skill-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.skill-icon {
  font-size: 1.875rem;
}

.skill-info {
  flex: 1;
}

.skill-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.skill-name {
  font-weight: 500;
  color: #374151;
}

.skill-level {
  color: #2563eb;
}

.skill-bar {
  width: 100%;
  height: 0.625rem;
  background-color: #e5e7eb;
  border-radius: 9999px;
  overflow: hidden;
}

.skill-progress {
  height: 100%;
  background-color: #2563eb;
  border-radius: 9999px;
  transition: width 1s;
}


.testimonials {
  padding: 5rem 0;
  background-color: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background-color: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1 );
  transition: box-shadow 0.3s;
}

.testimonial-card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
  display: flex;
  align-items: start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testimonial-image {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  object-fit: cover;
}

.testimonial-info h3 {
  font-weight: 600;
  color: #1f2937;
}

.testimonial-info p {
  font-size: 0.875rem;
  color: #4b5563;
}

.quote-icon {
  width: 2rem;
  height: 2rem;
  color: #2563eb;
  margin-bottom: 0.5rem;
}

.testimonial-text {
  color: #4b5563;
  font-style: italic;
}

/*

Credate By: Fauzialifatah
Follow me: https://whatsapp.com/channel/0029VawsCnQ9mrGkOuburC1z
Youtube: https://www.youtube.com/@Fauzialifatah

*/
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

.fade-in-up-delay-1 {
  animation-delay: 0.2s;
}

.fade-in-up-delay-2 {
  animation-delay: 0.4s;
}

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

.parallax-container {
  perspective: 1000px;
}

.parallax-content {
  transition: transform 0.7s;
}

.parallax-content:hover {
  transform: rotateX(5deg) rotateY(5deg);
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }

  .menu-button {
    display: block;
  }
}
/*

Credate By: Fauzialifatah
Follow me: https://whatsapp.com/channel/0029VawsCnQ9mrGkOuburC1z
Youtube: https://www.youtube.com/@Fauzialifatah

*/