:root {
  --bg: #0f1724;
  --accent: #6ee7b7;
  --muted: #94a3b8;
  --glass: rgba(255,255,255,0.04);
  --maxw: 1100px;
  font-family: 'Inter', sans-serif;
}

* { box-sizing: border-box; }
body {
    height: 100%;
    padding: 0;
    width: 100%;
  margin: 0;
  background: linear-gradient(180deg, #071027, #061227);
  color: #e6eef6;
  scroll-behavior: smooth;
}
.section h2 {
  border-left: 4px solid #6ee7b7;
  padding-left: 10px;
  word-spacing: 2px;
  margin-bottom: 12px;
  font-family:'Cambria', sans-serif;
}


.wrap {  max-width: 1200px;
  margin: 80px auto;
  padding: 40px;
  border-radius: 20px;
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4); }
.avatar {
 max-width: 1200px;
  margin: 80px auto;
  padding: 40px;
  border-radius: 20px;
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}
.about-me {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.profile-photo {
  width: 200px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.about-text {
  flex: 1;
  font-size: 16px;
  color: #e6eef6;
  line-height: 1.6;
  text-align: justify;
}

/* Make it stack on smaller screens */
@media (max-width: 768px) {
  .about-me {
    flex-direction: column;
    text-align: center;
  }
  .about-text {
    text-align: center;
  }
}

.name { margin: 0; font-size: 24px; font-weight: 800; }
.role { color: var(--muted); font-weight: 500; font-size: 14px; }
.pill { background: var(--glass); padding: 10px 10px; border-radius: 999px; font-size: 13px; color: var(--muted); }
.cta { background: linear-gradient(90deg, var(--accent), #34d3c3f3); color: #04263a
  ; padding: 8px 12px; border-radius: 8px; 
  font-weight: 600; border: none; cursor: pointer; }

.section {
  margin: 18px 0;
  padding: 22px;
  background: rgba(255,255,255,0.04);
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.section:hover { transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.4); }
.email-link {
  color: yellow;
  text-decoration: none;
  font-weight: bold;
}

.github-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #24292e; 
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: 10px;
}

.github-btn:hover {
  background-color: #333;
  transform: translateY(-2px);
}

.github-btn i {
  font-size: 16px;
}


.skills, .contact-links { 
    display: flex;  
    flex-wrap: wrap; 
    gap: 8px; }
.skill { 
    background: rgba(255,255,255,0.03); 
    padding: 8px 10px; 
    border-radius: 8px; 
    font-size: 13px;
  font-family: 'Inter', sans-serif;}

.project { display: flex; justify-content: space-between; align-items: center; margin: 10px 0; }

footer { text-align: center; font-size: 12px; color: var(--muted); margin-top: 20px; }

.grid { display: grid; grid-template-columns: 1fr 340px; gap: 20px; }
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }
  .grid {
    grid-template-columns: 1fr;
  }
  .wrap {
    margin: 20px;
    padding: 20px;
  }
} 
.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #0077b6;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #023e8a;
}



