body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  background-color: #0f0f0f;
  color: #f1f1f1;
}
.container {
  max-width: 1000px;
  margin: auto;
  padding: 20px;
}
header {
  background: #1a1a1a;
  padding: 20px 0;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 216, 255, 0.2);
}
header h1 {
  margin: 0;
  color: #00d8ff;
}
nav a {
  color: #ccc;
  margin: 0 15px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
nav a:hover,
nav a.active {
  color: #ff6b81;
  border-bottom: 2px solid #ff6b81;
}

/* HERO NEW LAYOUT */
.hero-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 50px 20px;
}
.hero-left {
  flex: 1 1 250px;
  text-align: center;
}
.hero-right {
  flex: 2 1 400px;
}
.hero-right h2 {
  font-size: 28px;
  color: #00d8ff;
}
.hero-right h3 {
  font-size: 22px;
  margin-top: 10px;
  color: #ff6b81;
}
.hero-right p {
  font-size: 16px;
  margin-top: 15px;
}
.highlight {
  color: #ff6b81;
}
.profile-img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #333;
  box-shadow: 0 0 15px rgba(0, 216, 255, 0.3);
}

.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.skills-list li {
  list-style: none;
  background: #1f1f1f;
  padding: 10px 20px;
  border-radius: 8px;
  color: #00d8ff;
  font-weight: 500;
  box-shadow: 0 0 10px rgba(0, 216, 255, 0.1);
}

.project-card {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  background: #1a1a1a;
  padding: 15px;
  margin: 20px 0;
  border-left: 5px solid #00d8ff;
  align-items: center;
  border-radius: 8px;
  transition: transform 0.2s;
}
.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(0, 216, 255, 0.15);
}
.project-card img {
  width: 150px;
  border-radius: 5px;
}
.project-card a {
  color: #00d8ff;
  text-decoration: none;
  font-weight: bold;
}
.project-card a:hover {
  color: #ff6b81;
}

footer {
  background: #1f1f1f;
  text-align: center;
  padding: 30px 10px;
  margin-top: 50px;
  border-top: 1px solid #222;
}
footer a {
  color: #00d8ff;
  text-decoration: none;
}
footer a:hover {
  color: #ff6b81;
}
.center {
  text-align: center;
}
#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #00d8ff;
  color: #121212;
  border: none;
  padding: 10px 14px;
  font-size: 18px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 216, 255, 0.4);
}
#scrollTopBtn:hover {
  background-color: #ff6b81;
  color: #fff;
}
section h2 {
  color: #00d8ff;
  text-align: center;
  margin-bottom: 20px;
  border-bottom: 2px solid #ff6b81;
  display: inline-block;
  padding-bottom: 5px;
}
