body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #000;
  color: #fff;
  margin: 0;
  scroll-behavior: smooth;
}
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 100;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
}
.navbar .navbar-profile {
  display: none;
  align-items: center;
  margin-right: 16px;
}
.navbar-profile-img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  margin-right: 8px;
}
.navbar .menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  margin-left: 16px;
}
.navbar ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.navbar a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.18rem;
  transition: color 0.2s;
  padding: 0 8px;
}
.navbar a:hover {
  color: #3b82f6;
}
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  padding: 120px 0 60px 0;
  background: #000;
  min-height: 600px;
  width: 100vw;
  box-sizing: border-box;
}
.hero-left, .hero-right {
  max-width: 600px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.hero-left {
  padding-left: 5vw;
}
.hero-right {
  padding-right: 5vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img-circle {
  width: 420px;
  height: 420px;
  border-radius: 10px; /* changed from 50% to 10px for square corners */
  object-fit: cover;
  border: none; /* removed blue outline */
  box-shadow: 0 2px 24px rgba(59,130,246,0.18);
}
.hero-name {
  font-size: 4rem;
  font-weight: 800;
  color: #fff;
}
.hero-highlight {
  color: #3b82f6;
  font-weight: 700;
  font-size: 1.7rem;
}
.hero-desc {
  font-size: 1.25rem;
  color: #cbd5e1;
  margin-bottom: 40px;
  max-width: 580px;
}
.hero-resume-btn {
  background: #3b82f6;
  color: #fff;
  padding: 16px 44px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.2rem;
  box-shadow: 0 4px 16px rgba(59,130,246,0.10);
  transition: background 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
  display: inline-block;
}
.hero-resume-btn:hover {
  background: #2563eb;
  box-shadow: 0 6px 24px rgba(59,130,246,0.18);
}
.about-section, .skills-section, .experience-section, .projects-section, .contact-section {
  background: #000;
  color: #fff;
  max-width: 1200px;
  margin: 0 auto 0 auto;
  padding: 40px 5vw 0 5vw;
}
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 24px;
  margin-top: 18px;
}
.skill-card {
  background: #111;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(59,130,246,0.07);
  padding: 18px;
  text-align: center;
  font-size: 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
/* Experience Timeline */
.exp-title {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
}
.exp-subtitle {
  color: #cbd5e1;
  font-size: 1.15rem;
  text-align: center;
  margin-bottom: 32px;
}
.exp-timeline {
  position: relative;
  margin: 0 auto;
  max-width: 700px;
}
.exp-timeline-row {
  display: flex;
  align-items: flex-start;
  position: relative;
  margin-bottom: 36px;
}
.exp-timeline-dot {
  width: 14px;
  height: 14px;
  background: #8b5cf6;
  border-radius: 50%;
  position: absolute;
  left: -30px;
  top: 24px;
  border: 2px solid #fff;
  z-index: 2;
}
.exp-timeline-line {
  position: absolute;
  left: -23px;
  top: 0;
  width: 2px;
  height: 100%;
  background: #8b5cf6;
  z-index: 1;
}
.exp-card-vertical {
  background: #23232a;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(59,130,246,0.10);
  padding: 22px 28px;
  color: #fff;
  margin-left: 32px;
  min-width: 0;
  flex: 1;
  border: 2px solid #3b82f6;
}
.exp-card-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 8px;
}
.exp-logo {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  object-fit: cover;
  background: #fff;
  border: 2px solid #3b82f6;
}
.exp-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.exp-card-company {
  color: #cbd5e1;
  font-size: 1rem;
  font-weight: 500;
}
.exp-card-date {
  color: #8b5cf6;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 6px;
}
.exp-card-desc {
  font-size: 1.05rem;
  margin-bottom: 12px;
  color: #e5e7eb;
}
.exp-card-skills {
  font-size: 1rem;
  color: #fff;
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.exp-card-skills-label {
  font-weight: 700;
  color: #fff;
  margin-right: 8px;
}
.exp-card-skill {
  color: #fff;
  background: none;
  font-size: 1rem;
  margin-right: 8px;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 18px;
}
.project-card-adv {
  background: #23232a;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(59,130,246,0.07);
  padding: 18px;
  text-align: center;
  transition: transform 0.2s;
}
.project-card-adv:hover {
  transform: translateY(-4px) scale(1.03);
}
.project-card-adv img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}
.project-tags {
  margin-top: 8px;
}
.project-tag {
  display: inline-block;
  background: #2563eb;
  color: #fff;
  border-radius: 6px;
  padding: 2px 10px;
  font-size: 0.95rem;
  margin-right: 6px;
  margin-bottom: 4px;
}
.project-link {
  display: inline-block;
  margin-top: 8px;
  color: #2563eb;
  text-decoration: underline;
  font-weight: 500;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}
.contact-form input,
.contact-form textarea {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #cbd5e1;
  font-size: 1rem;
}
.contact-form button {
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.2s;
}
.contact-form button:hover {
  background: #1e40af;
}
.contact-info {
  font-size: 1.05rem;
  color: #555;
}
footer {
  text-align: center;
  color: #888;
  font-size: 0.95rem;
  margin-top: 32px;
}
@media (max-width: 900px) {
  .navbar {
    min-height: 54px;
    font-size: 1rem;
    padding: 0 8px;
  }
  .navbar ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    width: 100vw;
    background: #111;
    padding: 16px 0;
    z-index: 101;
  }
  .navbar.open ul {
    display: flex;
  }
  .navbar .menu-toggle {
    display: block;
  }
  .navbar .navbar-profile {
    display: flex;
  }
  .hero {
    flex-direction: column;
    padding-top: 120px;
    align-items: center;
  }
  .hero-right {
    display: block !important;
    width: 100%;
    margin: 0 auto 18px auto;
    text-align: center;
  }
  .hero-left, .hero-right {
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
    padding: 0;
  }
  .hero-right {
    margin-top: 18px;
  }
  .hero-name {
    font-size: 2.2rem;
  }
  .hero-desc {
    font-size: 1rem;
    margin-bottom: 24px;
  }
  .hero-img-circle {
    width: 140px;
    height: 140px;
    margin: 0 auto;
    display: block;
  }
  .about-section, .skills-section, .experience-section, .projects-section, .contact-section {
    padding: 24px 8px 0 8px;
    max-width: 100vw;
  }
  .skills-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
  }
  .exp-timeline {
    max-width: 100vw;
    padding: 0 4px;
  }
  .exp-card-vertical {
    padding: 16px 10px;
    font-size: 0.98rem;
  }
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .project-card-adv {
    padding: 16px 8px;
    font-size: 1rem;
  }
  .contact-form input,
  .contact-form textarea {
    font-size: 0.98rem;
    padding: 8px;
  }
  .contact-form button {
    font-size: 1rem;
    padding: 8px;
  }
}
