/* Technology Stack Section */
.tech-stack {
  background: #fafbfc;
  border-radius: 16px;
  margin: 2rem auto;
  padding: 2rem 1rem;
  max-width: 1100px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}
.tech-stack h2 {
  font-size: 2.3rem;
  color: #222e3a;
  margin-bottom: 0.5rem;
}
.stack-category {
  margin-bottom: 2.5rem;
}
.about-flex {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}
.about-left {
  flex: 2;
}
.about-right {
  flex: 1;
  background: #f6f8fb;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 1.2rem 1rem;
}
.about-summary {
  font-size: 1.08rem;
  color: #444;
  margin-bottom: 1.2rem;
}
.about-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem 0;
}
.about-highlights li {
  font-size: 1rem;
  color: #0078d4;
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 600;
}
.about-right h3 {
  color: #222e3a;
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
  font-weight: 700;
}
.about-tools {
  list-style: none;
  padding: 0;
  margin: 0;
}
.about-tools li {
  font-size: 1rem;
  color: #3a4ca8;
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 500;
}
@media (max-width: 900px) {
  .about-flex {
    flex-direction: column;
    gap: 1.2rem;
    padding: 1rem 0;
  }
  .about-right {
    width: 100%;
    margin-top: 1rem;
  }
}
.hero-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 0;
}
.hero-left {
  flex: 1 1 60%;
  display: flex;
  flex-direction: column;
  .about-center {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem 0;
  }
  .about-title {
    color: #222e3a;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }
  .about-title-underline {
    width: 60px;
    height: 4px;
    background: #0078d4;
    border-radius: 2px;
    margin: 0 auto 2rem auto;
  }
  .about-summary-bold {
    font-size: 1.15rem;
    color: #222e3a;
    font-weight: 700;
    margin-bottom: 1.2rem;
  }
  .about-desc {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 1rem;
  }
  align-items: flex-start;
}
.hero-right {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.profile-photo-circle {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, #ececec 60%, #f6f8fb 100%);
  box-shadow: 0 4px 32px rgba(58,76,168,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.profile-photo-circle i {
  font-size: 5.5rem;
  color: #888;
}
.profile-photo-label {
  margin-top: 0.7rem;
  color: #3a4ca8;
  font-weight: 500;
  font-size: 1.1rem;
}
.tagline {
  font-size: 1.2rem;
  color: #222e3a;
  margin-bottom: 1.2rem;
}
.tagline-blue {
  color: #0078d4;
  font-weight: 600;
}
.hero-summary {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 1.5rem;
  max-width: 500px;
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.btn-primary {
  background: #0078d4;
  color: #fff;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 24px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-primary:hover {
  background: #005fa3;
}
.btn-linkedin {
  background: #0a66c2;
  color: #fff;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 24px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-linkedin:hover {
  background: #084a8c;
}
.btn-outline {
  background: #fff;
  color: #0078d4;
  border: 2px solid #0078d4;
  padding: 0.7rem 1.5rem;
  border-radius: 24px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-outline:hover {
  background: #e3eaf6;
  color: #005fa3;
}
.hero-tags {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}
.hero-tag {
  background: #e3eaf6;
  color: #0078d4;
  padding: 0.4rem 1.2rem;
  border-radius: 16px;
  font-size: 1rem;
  font-weight: 600;
}
@media (max-width: 900px) {
  .hero-flex {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem 0;
  }
  .hero-right {
    width: 100%;
    justify-content: center;
  }
  .profile-photo-circle {
    width: 160px;
    height: 160px;
  }
}
.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.achievement-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 1.5rem 1.2rem 1.2rem 1.2rem;
  min-width: 220px;
  text-align: center;
  margin-bottom: 1rem;
  border: 1px solid #e3eaf6;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ach-icon {
  font-size: 2rem;
  color: #0078d4;
  margin-bottom: 0.7rem;
}
.achievement-card h3 {
  font-size: 1.1rem;
  color: #222e3a;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.ach-metric {
  color: #0078d4;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.achievement-card p {
  color: #555;
  font-size: 1rem;
  margin: 0;
}
@media (max-width: 900px) {
  .achievements-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.stack-category h3 {
  font-size: 1.4rem;
  color: #222e3a;
  margin-bottom: 1rem;
  font-weight: 700;
}
.stack-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.stack-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 2rem 1.2rem 1.2rem 1.2rem;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 260px;
  text-align: center;
  margin-bottom: 1rem;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 1px solid #e3eaf6;
}
.stack-card:hover {
  box-shadow: 0 4px 16px rgba(58,76,168,0.12);
  transform: translateY(-4px) scale(1.03);
}
.stack-card img {
  margin-bottom: 1rem;
  height: 48px;
}
.stack-card h4 {
  font-size: 1.2rem;
  color: #222e3a;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.stack-card p {
  color: #555;
  font-size: 1rem;
  margin: 0;
}
@media (max-width: 900px) {
  .stack-cards {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  .tech-stack {
    padding: 1rem 0.5rem;
  }
}
.tech-stack {
  background: #fafbfc;
  border-radius: 16px;
  margin: 2rem auto;
  padding: 2rem 1rem;
  max-width: 1100px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}
.tech-stack h2 {
  font-size: 2.3rem;
  color: #222e3a;
  margin-bottom: 0.5rem;
}
.stack-category {
  margin-bottom: 2.5rem;
}
.stack-category h3 {
  font-size: 1.4rem;
  color: #222e3a;
  margin-bottom: 1rem;
  font-weight: 700;
}
.stack-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: flex-start;
}
.stack-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  padding: 2rem 1.2rem 1.2rem 1.2rem;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 260px;
  text-align: center;
  margin-bottom: 1rem;
  transition: box-shadow 0.2s;
}
.stack-card:hover {
  box-shadow: 0 4px 16px rgba(58,76,168,0.12);
}
.stack-card img {
  margin-bottom: 1rem;
}
.stack-card h4 {
  font-size: 1.2rem;
  color: #222e3a;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.stack-card p {
  color: #555;
  font-size: 1rem;
  margin: 0;
}
@media (max-width: 900px) {
  .stack-cards {
    flex-direction: column;
    gap: 1rem;
  }
  .tech-stack {
    padding: 1rem 0.5rem;
  }
}
body {
  font-family: 'Inter', Arial, sans-serif;
  margin: 0;
  background: #f6f8fb;
  color: #222e3a;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #e3eaf6;
  padding: 1rem 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.logo {
  font-weight: 700;
  font-size: 1.5rem;
  color: #3a4ca8;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
}
.nav-links a {
  text-decoration: none;
  color: #222e3a;
  font-weight: 600;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: #3a4ca8;
}

.nav-links a.active {
  color: #fff;
  background: #0078d4;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,120,212,0.08);
  font-weight: 700;
  transition: background 0.2s, color 0.2s;
}
.hero {
  background: linear-gradient(90deg, #e3eaf6 0%, #f6f8fb 100%);
  padding: 3rem 1rem 2rem 1rem;
  text-align: center;
}
.profile-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  background: #dbeafe;
  margin-bottom: 1rem;
}
.tagline {
  font-size: 1.2rem;
  color: #3a4ca8;
  margin-bottom: 1.5rem;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.btn {
  background: #3a4ca8;
  color: #fff;
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 24px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.btn:hover {
  background: #222e3a;
}
.btn-secondary {
  background: #e3eaf6;
  color: #3a4ca8;
  border: 1px solid #3a4ca8;
}
.linkedin-badge a {
  color: #0a66c2;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
section {
  padding: 2rem 1rem;
  max-width: 900px;
  margin: 0 auto;
}
h2 {
  color: #3a4ca8;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.about .tools-list span {
  display: inline-block;
  background: #e3eaf6;
  color: #3a4ca8;
  padding: 0.5rem 1rem;
  border-radius: 16px;
  margin: 0.3rem 0.5rem 0.3rem 0;
  font-size: 1rem;
}
.timeline {
  border-left: 3px solid #3a4ca8;
  padding-left: 1.5rem;
}
.timeline-item {
  margin-bottom: 2rem;
  position: relative;
}
.timeline-item:before {
  content: '';
  position: absolute;
  left: -1.1rem;
  top: 0.5rem;
  width: 16px;
  height: 16px;
  background: #3a4ca8;
  border-radius: 50%;
}
.skills-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.tag {
  background: #e3eaf6;
  color: #3a4ca8;
  padding: 0.5rem 1rem;
  border-radius: 16px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.achievements ul {
  list-style: disc inside;
  color: #222e3a;
  font-size: 1.1rem;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto 1rem auto;
}
.contact-form input,
.contact-form textarea {
  padding: 0.7rem;
  border: 1px solid #e3eaf6;
  border-radius: 8px;
  font-size: 1rem;
}
.contact-form button {
  align-self: flex-end;
}
.relocation {
  text-align: center;
  color: #3a4ca8;
  font-weight: 600;
}
.projects .project-list {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.project-item {
  background: #e3eaf6;
  padding: 1rem;
  border-radius: 12px;
  flex: 1 1 300px;
  margin-bottom: 1rem;
}
.testimonials .testimonial-list {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.testimonial-item {
  background: #f6f8fb;
  border-left: 4px solid #3a4ca8;
  padding: 1rem;
  border-radius: 8px;
  flex: 1 1 300px;
  margin-bottom: 1rem;
  font-style: italic;
}
footer {
  background: #e3eaf6;
  text-align: center;
  padding: 1rem;
  color: #222e3a;
  font-size: 1rem;
  margin-top: 2rem;
}
@media (max-width: 700px) {
  .navbar {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  .nav-links {
    flex-direction: column;
    gap: 1rem;
  }
  section {
    padding: 1rem 0.5rem;
  }
  .projects .project-list,
  .testimonials .testimonial-list {
    flex-direction: column;
    gap: 1rem;
  }
}
