 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: "Segoe UI", sans-serif;
      background-color: #0f0f0f;
      color: #ffffff;
      line-height: 1.6;
    }

    /* Container */
    .container {
      width: 90%;
      max-width: 1200px;
      margin: auto;
    }

    /* Header */
    .header {
      background-color: #131313;
      padding: 20px 0;
      border-bottom: 1px solid #222;
    }

    .logo {
      color: #fff;
      font-size: 24px;
      font-weight: bold;
    }

    .nav-links {
      list-style: none;
      display: flex;
      justify-content: flex-end;
      gap: 30px;
    }

    .nav-links a {
      color: #ccc;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s;
    }

    .nav-links a:hover {
      color: rgb(14, 36, 235);
    }

    /* Photo */
    .robert {
      display: flex;
      align-items: center;
      padding: 60px 0;
      background: #101010;
    }

    .robert-content {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
    }

    .robert-text {
      flex: 1;
    }

    .robert-img img {
      width: 300px;
      border-radius: 50%;
      border: 4px solid rgb(14, 36, 235);
      background-color: #1e1e1e;
    }

    .title {
      font-size: 2.5rem;
      color: #fff;
    }

    .highlight {
      color: rgb(14, 36, 235);
      font-weight: bold;
    }

    .buttons {
      margin: 20px 0;
    }

    .btn {
      text-decoration: none;
      padding: 10px 20px;
      border: 2px solid rgb(14, 36, 235);
      margin-right: 10px;
      border-radius: 5px;
      color: #fff;
      transition: 0.3s;
    }

    .btn:hover {
      background-color: rgb(14, 36, 235);
    }

    .primary {
      background-color: rgb(14, 36, 235);
      color: #fff;
    }

    /* Skills */
    .skills {
  margin-top: 20px;
}

.skills span {
  background-color: #222;
  padding: 5px 10px;
  border-radius: 5px;
  margin-right: 10px;
  display: inline-block;
}

/* About */
.about {
  background-color: #181818;
  padding: 60px 0;
  text-align: center;
}

.about h2 {
  margin-bottom: 20px;
  color: rgb(14, 36, 235);
}



/* Services */
.services {
  background-color: #101010;
  padding: 60px 0;
}

.services h2 {
  text-align: center;
  margin-bottom: 30px;
  color: rgb(14, 36, 235);
}

.service-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.service-card {
  background: #1e1e1e;
  padding: 20px;
  border-radius: 10px;
  width: 300px;
  color: #eee;
  text-align: center;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

/* Footer */
footer {
  background-color: #131313;
  text-align: center;
  padding: 20px;
  color: #aaa;
  font-size: 14px;
}



