/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #0f0f0f;
  color: #fff;
  line-height: 1.6;
}

/* Container style */
.container {
  display: flex;
  justify-content: space-between;
  padding: 50px;
}

/* Left Section */
.left {
  flex: 1;
  padding-right: 30px;
}

.left h2 {
  font-size: 2rem;
  color: #e2e9e9;
}

.left h1 {
  font-size: 3rem;
  margin-top: 10px;
}

.title {
  font-size: 1.2rem;
  margin: 10px 0;
  color: #aaa;
}

.socials a {
  margin-right: 15px;
  display: inline-block;
  margin-top: 10px;
}

.socials img {
  width: 30px;
  height: 30px;
}

/* Right Section */
.right {
  flex: 1;
  text-align: right;
}

nav a {
  display: inline-block;
  margin-left: 20px;
  text-decoration: none;
  color: #00ffcc;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #ffffff;
}

.profile-image img {
  width: 200px;
  height: auto;
  border-radius: 50%;
  margin-top: 20px;
  border: 3px solid #00ffcc;
}

/* About Section */
#about {
  padding: 50px;
  background-color: #1a1a1a;
}

#about h2 {
  color: #00ffcc;
  margin-bottom: 20px;
}

/* Skills Section */
#skills {
  padding: 50px;
}

#skills h2 {
  color: #00ffcc;
  margin-bottom: 20px;
}

#skills ul {
  list-style: none;
}

#skills li {
  background: #222;
  padding: 10px;
  margin-bottom: 10px;
  border-left: 5px solid #00ffcc;
}