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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.header {
  border-bottom: 1px solid #e5e7eb;
  background-color: #ffffff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  font-size: 20px;
  font-weight: bold;
  color: #333;
}

.nav-links {
  display: none;
  gap: 32px;
}

.nav-links a, nav a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #3b82f6;
}

.download-btn {
  background-color: #333;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.download-btn:hover {
  background-color: #1f2937;
}

/* Hero Section */
.hero {
  padding: 64px 0 96px;
}

.hero-content {
  display: flex;
  gap: 48px;
  align-items: center;
}

.hero h1 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero-description {
  font-size: 18px;
  color: #6b7280;
  margin-bottom: 32px;
  line-height: 1.6;
}

.location {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  color: #6b7280;
}

.location-icon {
  width: 20px;
  height: 20px;
}

.availability {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  color: #6b7280;
}

.status-dot {
  width: 12px;
  height: 12px;
  background-color: #10b981;
  border-radius: 50%;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #6b7280;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #333;
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.hero-image {
  display: flex;
  justify-content: center;
}

.hero-image img {
  width: 320px;
  height: 400px;
  object-fit: cover;
  box-shadow: 30px 30px 0 rgba(0, 0, 0, 0.281);
}

/* About Section */
.about {
  padding: 64px 0;
  background-color: #f9fafb;
}
.about .section-title {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #333;
}

.about-content {
  display: grid;
  gap: 48px;
}

.about-image {
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 320px;
  height: 400px;
  object-fit: cover;
  /* border-radius: 8px; */
  box-shadow: -30px 30px 0 rgba(0, 0, 0, 0.281);
}

.about h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 24px;
}

.about-description {
  color: #6b7280;
  line-height: 1.6;
}

.about-description p {
  margin-bottom: 16px;
}

.about-description ul {
  margin: 16px 0 16px 24px;
}

.about-description li {
  margin-bottom: 8px;
}

/* Skills Section */
.skills {
  padding: 64px 0;
}

.skills-intro {
  text-align: center;
  color: #6b7280;
  margin-bottom: 48px;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  justify-items: center;
}

.skill-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s ease;
}
.skill-item:hover {
  transform: translateY(-4px);
}

.skill-icon {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.skill-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.skill-item span {
  font-size: 14px;
  color: #6b7280;
}

/* Experience Section */
.experience {
  padding: 64px 0;
  background-color: #f9fafb;
}

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 16px;
  color: #333;
}
.section-subtitle {
  text-align: center;
  color: #6b7280;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.experience-timeline {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.experience-item {
  background-color: white;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.company-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
}
.upwork-logo {
  background-color: #14a800;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 14px;
  text-transform: lowercase;
}

.job-details {
  flex: 1;
}
.job-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 16px;
  color: #333;
}
.job-responsibilities {
  list-style: none;
  padding: 0;
}

.job-responsibilities li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  color: #6b7280;
  line-height: 1.5;
}

.job-responsibilities li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #14a800;
  font-weight: bold;
}

.job-duration {
  text-align: right;
  color: #6b7280;
  font-size: 14px;
  white-space: nowrap;
}

/* Copyright section styles */
.copyright {
  background-color: #f3f4f6;
  border-top: 1px solid #e5e7eb;
  padding: 24px 0;
  text-align: center;
}
.copyright p {
  color: #6b7280;
  font-size: 14px;
  margin: 0;
}

/* Footer */
.footer {
  padding: 64px 0 0;
  text-align: center;
}

.footer-intro {
  color: #6b7280;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-info {
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.contact-icon {
  width: 24px;
  height: 24px;
}

.email {
  font-size: 24px;
  font-weight: bold;
}

.phone {
  font-size: 20px;
  font-weight: bold;
}

.social-intro {
  color: #6b7280;
  margin-bottom: 16px;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* Responsive Design */
@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .hero-content {
    grid-template-columns: 1fr 1fr;
  }

  .hero h1 {
    font-size: 64px;
  }

  .about-content {
    grid-template-columns: 1fr 1fr;
  }

  .skills-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  .experience-item {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 16px;
  }

  .job-duration {
    text-align: center;
  }

  .section-title {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
    .hero-content {
        flex-direction: column-reverse;
        align-items: center;
    }

  .hero h1 {
    font-size: 36px;
  }

  .hero-image img,
  .about-image img {
    width: 280px;
    height: 350px;
    box-shadow: -10px 0px 0px rgba(0, 0, 0, 0.281),
    10px 0px 0px rgba(0, 0, 0, 0.281),
    0px 10px 0px rgba(0, 0, 0, 0.281);
  }

  .skills-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .email {
    font-size: 18px;
  }

  .phone {
    font-size: 16px;
  }
  .experience-item {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 16px;
  }

  .job-duration {
    text-align: center;
  }

  .section-title {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 2rem 0 3rem;
  }

  .about,
  .skills,
  .footer {
    padding: 32px 0;
  }

  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .experience {
    padding: 2rem 0;
  }

  .experience-item {
    padding: 24px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero-description {
    font-size: 16px;
  }

  .about h2 {
    font-size: 24px;
  }
  .section-title {
    font-size: 24px;
  }

  .job-title {
    font-size: 18px;
  }
}
