* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Arial', sans-serif;
  background-color: #0f1220;
  color: #f5f5f5;
  line-height: 1.6;
}
h1, h2, h3 {
  color: #fff;
}
a { color: #7aa2ff; text-decoration: none; }
a:hover { text-decoration: underline; }

.kk {
  text-decoration: none;
}
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #1c1f35, #0f1220);
}
.hero-content {
  display: flex;
  max-width: 1000px;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.hero-text h2 { font-size: 24px; color: #aaa; }
.hero-text h1 { font-size: 48px; margin: 10px 0; }
.hero-text span { color: #7aa2ff; }
.hero-text h3 { font-size: 22px; margin-bottom: 20px; color: #52d1b2; }
.buttons { margin-top: 20px; }
.btn {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #7aa2ff;
  border-radius: 25px;
  margin-right: 10px;
  color: #fff;
  transition: 0.3s;
}
.btn.primary {
  background-color: #7aa2ff;
  color: #0f1220;
}
.btn:hover {
  background-color: #52d1b2;
  border-color: #52d1b2;
  color: #0f1220;
}
.btnkk {
  display: inline-block;
  padding: 2px 10px;
  border: 1px solid #000000;
  border-radius: 5px;
  margin-right: 5px;
  color: #000000;
  background-color: #7aa2ff;
  transition: 0.3s;
}
.btntf {
  display: inline-block;
  padding: 2px 5px;
  border: 1px solid #7aa2ff;
  border-radius: 2px;
  margin-right: 2px;
  color: #fefefe;
  background-color: #1759f300;
  transition: 0.3s;
}
.btntf:hover {
  background-color: #7aa2ff;
  border-color: #ffffff;
  color: #0f1220;
}
.hero-photo img {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 4px solid #7aa2ff;
  object-fit: cover;
  background: #222;
}
section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.about p {
  max-width: 700px;
  margin-bottom: 20px;
}
.stats {
  display: flex;
  gap: 40px;
}
.stat h3 {
  font-size: 28px;
  color: #7aa2ff;
}
.projects .project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.card {
  background: #1c1f35;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #333;
}
.skills ul {
  list-style: none;
}
.skills li {
  padding: 10px 0;
  border-bottom: 1px solid #333;
}
.contact p {
  margin: 10px 0;
}
footer {
  text-align: center;
  padding: 20px;
  background: #1c1f35;
  margin-top: 40px;
}